]> bbs.cooldavid.org Git - net-next-2.6.git/blame - drivers/telephony/ixj_pcmcia.c
[PATCH] remove many unneeded #includes of sched.h
[net-next-2.6.git] / drivers / telephony / ixj_pcmcia.c
CommitLineData
1da177e4
LT
1#include "ixj-ver.h"
2
3#include <linux/module.h>
4
5#include <linux/init.h>
1da177e4
LT
6#include <linux/kernel.h> /* printk() */
7#include <linux/fs.h> /* everything... */
8#include <linux/errno.h> /* error codes */
9#include <linux/slab.h>
10
1da177e4
LT
11#include <pcmcia/cs_types.h>
12#include <pcmcia/cs.h>
13#include <pcmcia/cistpl.h>
14#include <pcmcia/ds.h>
15
16#include "ixj.h"
17
18/*
19 * PCMCIA service support for Quicknet cards
20 */
21
22#ifdef PCMCIA_DEBUG
23static int pc_debug = PCMCIA_DEBUG;
24module_param(pc_debug, int, 0644);
25#define DEBUG(n, args...) if (pc_debug>(n)) printk(KERN_DEBUG args)
26#else
27#define DEBUG(n, args...)
28#endif
29
30typedef struct ixj_info_t {
31 int ndev;
32 dev_node_t node;
33 struct ixj *port;
34} ixj_info_t;
35
cc3b4866 36static void ixj_detach(struct pcmcia_device *p_dev);
15b99ac1 37static int ixj_config(struct pcmcia_device * link);
fba395ee 38static void ixj_cs_release(struct pcmcia_device * link);
1da177e4 39
15b99ac1 40static int ixj_probe(struct pcmcia_device *p_dev)
1da177e4 41{
1da177e4
LT
42 DEBUG(0, "ixj_attach()\n");
43 /* Create new ixj device */
fd238232
DB
44 p_dev->io.Attributes1 = IO_DATA_PATH_WIDTH_8;
45 p_dev->io.Attributes2 = IO_DATA_PATH_WIDTH_8;
46 p_dev->io.IOAddrLines = 3;
47 p_dev->conf.IntType = INT_MEMORY_AND_IO;
48 p_dev->priv = kmalloc(sizeof(struct ixj_info_t), GFP_KERNEL);
49 if (!p_dev->priv) {
f8cfa618 50 return -ENOMEM;
1da177e4 51 }
fd238232 52 memset(p_dev->priv, 0, sizeof(struct ixj_info_t));
f8cfa618 53
15b99ac1 54 return ixj_config(p_dev);
1da177e4
LT
55}
56
fba395ee 57static void ixj_detach(struct pcmcia_device *link)
1da177e4 58{
1da177e4 59 DEBUG(0, "ixj_detach(0x%p)\n", link);
b4635811 60
e2d40963 61 ixj_cs_release(link);
cc3b4866 62
1da177e4 63 kfree(link->priv);
1da177e4
LT
64}
65
66#define CS_CHECK(fn, ret) \
67do { last_fn = (fn); if ((last_ret = (ret)) != 0) goto cs_failed; } while (0)
68
fba395ee 69static void ixj_get_serial(struct pcmcia_device * link, IXJ * j)
1da177e4 70{
1da177e4 71 char *str;
a9606fd3 72 int i, place;
1da177e4 73 DEBUG(0, "ixj_get_serial(0x%p)\n", link);
a9606fd3
DB
74
75 str = link->prod_id[0];
76 if (!str)
77 goto cs_failed;
1da177e4 78 printk("%s", str);
a9606fd3
DB
79 str = link->prod_id[1];
80 if (!str)
81 goto cs_failed;
1da177e4 82 printk(" %s", str);
a9606fd3
DB
83 str = link->prod_id[2];
84 if (!str)
85 goto cs_failed;
1da177e4
LT
86 place = 1;
87 for (i = strlen(str) - 1; i >= 0; i--) {
88 switch (str[i]) {
89 case '0':
90 case '1':
91 case '2':
92 case '3':
93 case '4':
94 case '5':
95 case '6':
96 case '7':
97 case '8':
98 case '9':
99 j->serial += (str[i] - 48) * place;
100 break;
101 case 'A':
102 case 'B':
103 case 'C':
104 case 'D':
105 case 'E':
106 case 'F':
107 j->serial += (str[i] - 55) * place;
108 break;
109 case 'a':
110 case 'b':
111 case 'c':
112 case 'd':
113 case 'e':
114 case 'f':
115 j->serial += (str[i] - 87) * place;
116 break;
117 }
118 place = place * 0x10;
119 }
a9606fd3
DB
120 str = link->prod_id[3];
121 if (!str)
122 goto cs_failed;
1da177e4
LT
123 printk(" version %s\n", str);
124 cs_failed:
125 return;
126}
127
15b99ac1 128static int ixj_config(struct pcmcia_device * link)
1da177e4
LT
129{
130 IXJ *j;
1da177e4
LT
131 ixj_info_t *info;
132 tuple_t tuple;
133 u_short buf[128];
134 cisparse_t parse;
1da177e4
LT
135 cistpl_cftable_entry_t *cfg = &parse.cftable_entry;
136 cistpl_cftable_entry_t dflt =
137 {
138 0
139 };
140 int last_ret, last_fn;
1da177e4
LT
141 info = link->priv;
142 DEBUG(0, "ixj_config(0x%p)\n", link);
143 tuple.TupleData = (cisdata_t *) buf;
144 tuple.TupleOffset = 0;
145 tuple.TupleDataMax = 255;
1da177e4
LT
146 tuple.DesiredTuple = CISTPL_CFTABLE_ENTRY;
147 tuple.Attributes = 0;
fba395ee 148 CS_CHECK(GetFirstTuple, pcmcia_get_first_tuple(link, &tuple));
1da177e4 149 while (1) {
fba395ee
DB
150 if (pcmcia_get_tuple_data(link, &tuple) != 0 ||
151 pcmcia_parse_tuple(link, &tuple, &parse) != 0)
1da177e4
LT
152 goto next_entry;
153 if ((cfg->io.nwin > 0) || (dflt.io.nwin > 0)) {
154 cistpl_io_t *io = (cfg->io.nwin) ? &cfg->io : &dflt.io;
155 link->conf.ConfigIndex = cfg->index;
156 link->io.BasePort1 = io->win[0].base;
157 link->io.NumPorts1 = io->win[0].len;
158 if (io->nwin == 2) {
159 link->io.BasePort2 = io->win[1].base;
160 link->io.NumPorts2 = io->win[1].len;
161 }
fba395ee 162 if (pcmcia_request_io(link, &link->io) != 0)
1da177e4
LT
163 goto next_entry;
164 /* If we've got this far, we're done */
165 break;
166 }
167 next_entry:
168 if (cfg->flags & CISTPL_CFTABLE_DEFAULT)
169 dflt = *cfg;
fba395ee 170 CS_CHECK(GetNextTuple, pcmcia_get_next_tuple(link, &tuple));
1da177e4
LT
171 }
172
fba395ee 173 CS_CHECK(RequestConfiguration, pcmcia_request_configuration(link, &link->conf));
1da177e4
LT
174
175 /*
176 * Register the card with the core.
177 */
178 j=ixj_pcmcia_probe(link->io.BasePort1,link->io.BasePort1 + 0x10);
179
180 info->ndev = 1;
181 info->node.major = PHONE_MAJOR;
fd238232 182 link->dev_node = &info->node;
1da177e4 183 ixj_get_serial(link, j);
15b99ac1 184 return 0;
1da177e4 185 cs_failed:
fba395ee 186 cs_error(link, last_fn, last_ret);
1da177e4 187 ixj_cs_release(link);
15b99ac1 188 return -ENODEV;
1da177e4
LT
189}
190
fba395ee 191static void ixj_cs_release(struct pcmcia_device *link)
1da177e4
LT
192{
193 ixj_info_t *info = link->priv;
194 DEBUG(0, "ixj_cs_release(0x%p)\n", link);
195 info->ndev = 0;
fba395ee 196 pcmcia_disable_device(link);
1da177e4
LT
197}
198
07081273
DB
199static struct pcmcia_device_id ixj_ids[] = {
200 PCMCIA_DEVICE_MANF_CARD(0x0257, 0x0600),
201 PCMCIA_DEVICE_NULL
202};
203MODULE_DEVICE_TABLE(pcmcia, ixj_ids);
204
1da177e4
LT
205static struct pcmcia_driver ixj_driver = {
206 .owner = THIS_MODULE,
207 .drv = {
208 .name = "ixj_cs",
209 },
15b99ac1 210 .probe = ixj_probe,
cc3b4866 211 .remove = ixj_detach,
07081273 212 .id_table = ixj_ids,
1da177e4
LT
213};
214
215static int __init ixj_pcmcia_init(void)
216{
217 return pcmcia_register_driver(&ixj_driver);
218}
219
220static void ixj_pcmcia_exit(void)
221{
222 pcmcia_unregister_driver(&ixj_driver);
1da177e4
LT
223}
224
225module_init(ixj_pcmcia_init);
226module_exit(ixj_pcmcia_exit);
227
228MODULE_LICENSE("GPL");