2 * WHCI UWB Multi-interface Controller enumerator.
4 * Copyright (C) 2007 Cambridge Silicon Radio Ltd.
6 * This file is released under the GNU GPL v2.
8 #include <linux/delay.h>
9 #include <linux/kernel.h>
10 #include <linux/pci.h>
11 #include <linux/dma-mapping.h>
12 #include <linux/slab.h>
13 #include <linux/uwb/whci.h>
14 #include <linux/uwb/umc.h>
18 void __iomem
*uwbbase
;
20 struct umc_dev
*devs
[0];
24 /* Fix faulty HW :( */
26 u64
whci_capdata_quirks(struct whci_card
*card
, u64 capdata
)
28 u64 capdata_orig
= capdata
;
29 struct pci_dev
*pci_dev
= card
->pci
;
30 if (pci_dev
->vendor
== PCI_VENDOR_ID_INTEL
31 && (pci_dev
->device
== 0x0c3b || pci_dev
->device
== 0004)
32 && pci_dev
->class == 0x0d1010) {
33 switch (UWBCAPDATA_TO_CAP_ID(capdata
)) {
34 /* WLP capability has 0x100 bytes of aperture */
36 capdata
|= 0x40 << 8; break;
37 /* WUSB capability has 0x80 bytes of aperture
45 if (capdata_orig
!= capdata
)
46 dev_warn(&pci_dev
->dev
,
47 "PCI v%04x d%04x c%06x#%02x: "
48 "corrected capdata from %016Lx to %016Lx\n",
49 pci_dev
->vendor
, pci_dev
->device
, pci_dev
->class,
50 (unsigned)UWBCAPDATA_TO_CAP_ID(capdata
),
51 (unsigned long long)capdata_orig
,
52 (unsigned long long)capdata
);
58 * whci_wait_for - wait for a WHCI register to be set
60 * Polls (for at most @max_ms ms) until '*@reg & @mask == @result'.
62 int whci_wait_for(struct device
*dev
, u32 __iomem
*reg
, u32 mask
, u32 result
,
63 unsigned long max_ms
, const char *tag
)
69 if ((val
& mask
) == result
)
72 dev_err(dev
, "%s timed out\n", tag
);
80 EXPORT_SYMBOL_GPL(whci_wait_for
);
84 * NOTE: the capinfo and capdata registers are slightly different
85 * (size and cap-id fields). So for cap #0, we need to fill
86 * in. Size comes from the size of the register block
87 * (statically calculated); cap_id comes from nowhere, we use
88 * zero, that is reserved, for the radio controller, because
89 * none was defined at the spec level.
91 static int whci_add_cap(struct whci_card
*card
, int n
)
97 umc
= umc_device_create(&card
->pci
->dev
, n
);
101 capdata
= le_readq(card
->uwbbase
+ UWBCAPDATA(n
));
103 bar
= UWBCAPDATA_TO_BAR(capdata
) << 1;
105 capdata
= whci_capdata_quirks(card
, capdata
);
106 /* Capability 0 is the radio controller. It's size is 32
107 * bytes (WHCI0.95[2.3, T2-9]). */
108 umc
->version
= UWBCAPDATA_TO_VERSION(capdata
);
109 umc
->cap_id
= n
== 0 ? 0 : UWBCAPDATA_TO_CAP_ID(capdata
);
111 umc
->resource
.start
= pci_resource_start(card
->pci
, bar
)
112 + UWBCAPDATA_TO_OFFSET(capdata
);
113 umc
->resource
.end
= umc
->resource
.start
114 + (n
== 0 ? 0x20 : UWBCAPDATA_TO_SIZE(capdata
)) - 1;
115 umc
->resource
.name
= dev_name(&umc
->dev
);
116 umc
->resource
.flags
= card
->pci
->resource
[bar
].flags
;
117 umc
->resource
.parent
= &card
->pci
->resource
[bar
];
118 umc
->irq
= card
->pci
->irq
;
120 err
= umc_device_register(umc
);
131 static void whci_del_cap(struct whci_card
*card
, int n
)
133 struct umc_dev
*umc
= card
->devs
[n
];
136 umc_device_unregister(umc
);
139 static int whci_n_caps(struct pci_dev
*pci
)
141 void __iomem
*uwbbase
;
144 uwbbase
= pci_iomap(pci
, 0, 8);
147 capinfo
= le_readq(uwbbase
+ UWBCAPINFO
);
148 pci_iounmap(pci
, uwbbase
);
150 return UWBCAPINFO_TO_N_CAPS(capinfo
);
153 static int whci_probe(struct pci_dev
*pci
, const struct pci_device_id
*id
)
155 struct whci_card
*card
;
158 err
= pci_enable_device(pci
);
164 if (!pci_set_dma_mask(pci
, DMA_BIT_MASK(64)))
165 pci_set_consistent_dma_mask(pci
, DMA_BIT_MASK(64));
166 else if (!pci_set_dma_mask(pci
, DMA_BIT_MASK(32)))
167 pci_set_consistent_dma_mask(pci
, DMA_BIT_MASK(32));
171 err
= n_caps
= whci_n_caps(pci
);
176 card
= kzalloc(sizeof(struct whci_card
)
177 + sizeof(struct whci_dev
*) * (n_caps
+ 1),
182 card
->n_caps
= n_caps
;
185 if (!request_mem_region(pci_resource_start(pci
, 0),
186 UWBCAPDATA_SIZE(card
->n_caps
),
187 "whci (capability data)"))
188 goto error_request_memregion
;
190 card
->uwbbase
= pci_iomap(pci
, 0, UWBCAPDATA_SIZE(card
->n_caps
));
194 /* Add each capability. */
195 for (n
= 0; n
<= card
->n_caps
; n
++) {
196 err
= whci_add_cap(card
, n
);
197 if (err
< 0 && n
== 0) {
198 dev_err(&pci
->dev
, "cannot bind UWB radio controller:"
203 dev_warn(&pci
->dev
, "warning: cannot bind capability "
204 "#%u: %d\n", n
, err
);
206 pci_set_drvdata(pci
, card
);
210 pci_iounmap(pci
, card
->uwbbase
);
212 release_mem_region(pci_resource_start(pci
, 0), UWBCAPDATA_SIZE(card
->n_caps
));
213 error_request_memregion
:
218 pci_disable_msi(pci
);
219 pci_disable_device(pci
);
224 static void whci_remove(struct pci_dev
*pci
)
226 struct whci_card
*card
= pci_get_drvdata(pci
);
229 pci_set_drvdata(pci
, NULL
);
230 /* Unregister each capability in reverse (so the master device
231 * is unregistered last). */
232 for (n
= card
->n_caps
; n
>= 0 ; n
--)
233 whci_del_cap(card
, n
);
234 pci_iounmap(pci
, card
->uwbbase
);
235 release_mem_region(pci_resource_start(pci
, 0), UWBCAPDATA_SIZE(card
->n_caps
));
237 pci_disable_msi(pci
);
238 pci_disable_device(pci
);
241 static struct pci_device_id whci_id_table
[] = {
242 { PCI_DEVICE_CLASS(PCI_CLASS_WIRELESS_WHCI
, ~0) },
245 MODULE_DEVICE_TABLE(pci
, whci_id_table
);
248 static struct pci_driver whci_driver
= {
250 .id_table
= whci_id_table
,
252 .remove
= whci_remove
,
255 static int __init
whci_init(void)
257 return pci_register_driver(&whci_driver
);
260 static void __exit
whci_exit(void)
262 pci_unregister_driver(&whci_driver
);
265 module_init(whci_init
);
266 module_exit(whci_exit
);
268 MODULE_DESCRIPTION("WHCI UWB Multi-interface Controller enumerator");
269 MODULE_AUTHOR("Cambridge Silicon Radio Ltd.");
270 MODULE_LICENSE("GPL");