3 Broadcom B43 wireless driver
5 Copyright (c) 2007 Michael Buesch <m@bues.ch>
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.
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.
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.
26 #include <linux/ssb/ssb.h>
27 #include <linux/slab.h>
28 #include <linux/module.h>
30 #include <pcmcia/cistpl.h>
31 #include <pcmcia/ciscode.h>
32 #include <pcmcia/ds.h>
33 #include <pcmcia/cisreg.h>
36 static const struct pcmcia_device_id b43_pcmcia_tbl
[] = {
37 PCMCIA_DEVICE_MANF_CARD(0x2D0, 0x448),
38 PCMCIA_DEVICE_MANF_CARD(0x2D0, 0x476),
42 MODULE_DEVICE_TABLE(pcmcia
, b43_pcmcia_tbl
);
45 static int b43_pcmcia_suspend(struct pcmcia_device
*dev
)
47 struct ssb_bus
*ssb
= dev
->priv
;
49 return ssb_bus_suspend(ssb
);
52 static int b43_pcmcia_resume(struct pcmcia_device
*dev
)
54 struct ssb_bus
*ssb
= dev
->priv
;
56 return ssb_bus_resume(ssb
);
59 # define b43_pcmcia_suspend NULL
60 # define b43_pcmcia_resume NULL
61 #endif /* CONFIG_PM */
63 static int __devinit
b43_pcmcia_probe(struct pcmcia_device
*dev
)
69 ssb
= kzalloc(sizeof(*ssb
), GFP_KERNEL
);
75 dev
->config_flags
|= CONF_ENABLE_IRQ
;
77 dev
->resource
[2]->flags
|= WIN_ENABLE
| WIN_DATA_WIDTH_16
|
79 dev
->resource
[2]->start
= 0;
80 dev
->resource
[2]->end
= SSB_CORE_SIZE
;
81 res
= pcmcia_request_window(dev
, dev
->resource
[2], 250);
85 res
= pcmcia_map_mem_page(dev
, dev
->resource
[2], 0);
92 res
= pcmcia_enable_device(dev
);
96 err
= ssb_bus_pcmciabus_register(ssb
, dev
, dev
->resource
[2]->start
);
104 pcmcia_disable_device(dev
);
108 printk(KERN_ERR
"b43-pcmcia: Initialization failed (%d, %d)\n",
113 static void __devexit
b43_pcmcia_remove(struct pcmcia_device
*dev
)
115 struct ssb_bus
*ssb
= dev
->priv
;
117 ssb_bus_unregister(ssb
);
118 pcmcia_disable_device(dev
);
123 static struct pcmcia_driver b43_pcmcia_driver
= {
124 .owner
= THIS_MODULE
,
125 .name
= "b43-pcmcia",
126 .id_table
= b43_pcmcia_tbl
,
127 .probe
= b43_pcmcia_probe
,
128 .remove
= __devexit_p(b43_pcmcia_remove
),
129 .suspend
= b43_pcmcia_suspend
,
130 .resume
= b43_pcmcia_resume
,
133 int b43_pcmcia_init(void)
135 return pcmcia_register_driver(&b43_pcmcia_driver
);
138 void b43_pcmcia_exit(void)
140 pcmcia_unregister_driver(&b43_pcmcia_driver
);