pcmcia: do not use io_req_t when calling pcmcia_request_io()
[deliverable/linux.git] / drivers / net / wireless / b43 / pcmcia.c
1 /*
2
3 Broadcom B43 wireless driver
4
5 Copyright (c) 2007 Michael Buesch <mb@bu3sch.de>
6
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2 of the License, or
10 (at your option) any later version.
11
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
16
17 You should have received a copy of the GNU General Public License
18 along with this program; see the file COPYING. If not, write to
19 the Free Software Foundation, Inc., 51 Franklin Steet, Fifth Floor,
20 Boston, MA 02110-1301, USA.
21
22 */
23
24 #include "pcmcia.h"
25
26 #include <linux/ssb/ssb.h>
27 #include <linux/slab.h>
28
29 #include <pcmcia/cs.h>
30 #include <pcmcia/cistpl.h>
31 #include <pcmcia/ciscode.h>
32 #include <pcmcia/ds.h>
33 #include <pcmcia/cisreg.h>
34
35
36 static /*const */ struct pcmcia_device_id b43_pcmcia_tbl[] = {
37 PCMCIA_DEVICE_MANF_CARD(0x2D0, 0x448),
38 PCMCIA_DEVICE_MANF_CARD(0x2D0, 0x476),
39 PCMCIA_DEVICE_NULL,
40 };
41
42 MODULE_DEVICE_TABLE(pcmcia, b43_pcmcia_tbl);
43
44 #ifdef CONFIG_PM
45 static int b43_pcmcia_suspend(struct pcmcia_device *dev)
46 {
47 struct ssb_bus *ssb = dev->priv;
48
49 return ssb_bus_suspend(ssb);
50 }
51
52 static int b43_pcmcia_resume(struct pcmcia_device *dev)
53 {
54 struct ssb_bus *ssb = dev->priv;
55
56 return ssb_bus_resume(ssb);
57 }
58 #else /* CONFIG_PM */
59 # define b43_pcmcia_suspend NULL
60 # define b43_pcmcia_resume NULL
61 #endif /* CONFIG_PM */
62
63 static int __devinit b43_pcmcia_probe(struct pcmcia_device *dev)
64 {
65 struct ssb_bus *ssb;
66 win_req_t win;
67 memreq_t mem;
68 int err = -ENOMEM;
69 int res = 0;
70
71 ssb = kzalloc(sizeof(*ssb), GFP_KERNEL);
72 if (!ssb)
73 goto out_error;
74
75 err = -ENODEV;
76
77 dev->conf.Attributes = CONF_ENABLE_IRQ;
78 dev->conf.IntType = INT_MEMORY_AND_IO;
79
80 win.Attributes = WIN_ADDR_SPACE_MEM | WIN_MEMORY_TYPE_CM |
81 WIN_ENABLE | WIN_DATA_WIDTH_16 |
82 WIN_USE_WAIT;
83 win.Base = 0;
84 win.Size = SSB_CORE_SIZE;
85 win.AccessSpeed = 250;
86 res = pcmcia_request_window(dev, &win, &dev->win);
87 if (res != 0)
88 goto err_kfree_ssb;
89
90 mem.CardOffset = 0;
91 mem.Page = 0;
92 res = pcmcia_map_mem_page(dev, dev->win, &mem);
93 if (res != 0)
94 goto err_disable;
95
96 if (!dev->irq)
97 goto err_disable;
98
99 res = pcmcia_request_configuration(dev, &dev->conf);
100 if (res != 0)
101 goto err_disable;
102
103 err = ssb_bus_pcmciabus_register(ssb, dev, win.Base);
104 if (err)
105 goto err_disable;
106 dev->priv = ssb;
107
108 return 0;
109
110 err_disable:
111 pcmcia_disable_device(dev);
112 err_kfree_ssb:
113 kfree(ssb);
114 out_error:
115 printk(KERN_ERR "b43-pcmcia: Initialization failed (%d, %d)\n",
116 res, err);
117 return err;
118 }
119
120 static void __devexit b43_pcmcia_remove(struct pcmcia_device *dev)
121 {
122 struct ssb_bus *ssb = dev->priv;
123
124 ssb_bus_unregister(ssb);
125 pcmcia_disable_device(dev);
126 kfree(ssb);
127 dev->priv = NULL;
128 }
129
130 static struct pcmcia_driver b43_pcmcia_driver = {
131 .owner = THIS_MODULE,
132 .drv = {
133 .name = "b43-pcmcia",
134 },
135 .id_table = b43_pcmcia_tbl,
136 .probe = b43_pcmcia_probe,
137 .remove = __devexit_p(b43_pcmcia_remove),
138 .suspend = b43_pcmcia_suspend,
139 .resume = b43_pcmcia_resume,
140 };
141
142 int b43_pcmcia_init(void)
143 {
144 return pcmcia_register_driver(&b43_pcmcia_driver);
145 }
146
147 void b43_pcmcia_exit(void)
148 {
149 pcmcia_unregister_driver(&b43_pcmcia_driver);
150 }
This page took 0.034303 seconds and 5 git commands to generate.