4 * Copyright by Michał Mirosław, 2008-2009
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/kernel.h>
11 #include <linux/module.h>
12 #include <linux/pci.h>
13 #include <linux/spinlock.h>
14 #include <linux/idr.h>
15 #include <linux/cb710.h>
16 #include <linux/gfp.h>
18 static DEFINE_IDA(cb710_ida
);
19 static DEFINE_SPINLOCK(cb710_ida_lock
);
21 void cb710_pci_update_config_reg(struct pci_dev
*pdev
,
22 int reg
, uint32_t mask
, uint32_t xor)
26 pci_read_config_dword(pdev
, reg
, &rval
);
27 rval
= (rval
& mask
) ^ xor;
28 pci_write_config_dword(pdev
, reg
, rval
);
30 EXPORT_SYMBOL_GPL(cb710_pci_update_config_reg
);
32 /* Some magic writes based on Windows driver init code */
33 static int __devinit
cb710_pci_configure(struct pci_dev
*pdev
)
35 unsigned int devfn
= PCI_DEVFN(PCI_SLOT(pdev
->devfn
), 0);
36 struct pci_dev
*pdev0
= pci_get_slot(pdev
->bus
, devfn
);
39 cb710_pci_update_config_reg(pdev
, 0x48,
40 ~0x000000FF, 0x0000003F);
42 pci_read_config_dword(pdev
, 0x48, &val
);
49 if (pdev0
->vendor
== PCI_VENDOR_ID_ENE
50 && pdev0
->device
== PCI_DEVICE_ID_ENE_720
) {
51 cb710_pci_update_config_reg(pdev0
, 0x8C,
52 ~0x00F00000, 0x00100000);
53 cb710_pci_update_config_reg(pdev0
, 0xB0,
54 ~0x08000000, 0x08000000);
57 cb710_pci_update_config_reg(pdev0
, 0x8C,
58 ~0x00000F00, 0x00000200);
59 cb710_pci_update_config_reg(pdev0
, 0x90,
60 ~0x00060000, 0x00040000);
67 static irqreturn_t
cb710_irq_handler(int irq
, void *data
)
69 struct cb710_chip
*chip
= data
;
70 struct cb710_slot
*slot
= &chip
->slot
[0];
71 irqreturn_t handled
= IRQ_NONE
;
74 spin_lock(&chip
->irq_lock
); /* incl. smp_rmb() */
76 for (nr
= chip
->slots
; nr
; ++slot
, --nr
) {
77 cb710_irq_handler_t handler_func
= slot
->irq_handler
;
78 if (handler_func
&& handler_func(slot
))
79 handled
= IRQ_HANDLED
;
82 spin_unlock(&chip
->irq_lock
);
87 static void cb710_release_slot(struct device
*dev
)
89 #ifdef CONFIG_CB710_DEBUG_ASSUMPTIONS
90 struct cb710_slot
*slot
= cb710_pdev_to_slot(to_platform_device(dev
));
91 struct cb710_chip
*chip
= cb710_slot_to_chip(slot
);
93 /* slot struct can be freed now */
94 atomic_dec(&chip
->slot_refs_count
);
98 static int __devinit
cb710_register_slot(struct cb710_chip
*chip
,
99 unsigned slot_mask
, unsigned io_offset
, const char *name
)
101 int nr
= chip
->slots
;
102 struct cb710_slot
*slot
= &chip
->slot
[nr
];
105 dev_dbg(cb710_chip_dev(chip
),
106 "register: %s.%d; slot %d; mask %d; IO offset: 0x%02X\n",
107 name
, chip
->platform_id
, nr
, slot_mask
, io_offset
);
109 /* slot->irq_handler == NULL here; this needs to be
110 * seen before platform_device_register() */
114 slot
->iobase
= chip
->iobase
+ io_offset
;
115 slot
->pdev
.name
= name
;
116 slot
->pdev
.id
= chip
->platform_id
;
117 slot
->pdev
.dev
.parent
= &chip
->pdev
->dev
;
118 slot
->pdev
.dev
.release
= cb710_release_slot
;
120 err
= platform_device_register(&slot
->pdev
);
122 #ifdef CONFIG_CB710_DEBUG_ASSUMPTIONS
123 atomic_inc(&chip
->slot_refs_count
);
127 /* device_initialize() called from platform_device_register()
128 * wants this on error path */
129 platform_device_put(&slot
->pdev
);
131 /* slot->irq_handler == NULL here anyway, so no lock needed */
136 chip
->slot_mask
|= slot_mask
;
141 static void cb710_unregister_slot(struct cb710_chip
*chip
,
144 int nr
= chip
->slots
- 1;
146 if (!(chip
->slot_mask
& slot_mask
))
149 platform_device_unregister(&chip
->slot
[nr
].pdev
);
151 /* complementary to spin_unlock() in cb710_set_irq_handler() */
153 BUG_ON(chip
->slot
[nr
].irq_handler
!= NULL
);
155 /* slot->irq_handler == NULL here, so no lock needed */
157 chip
->slot_mask
&= ~slot_mask
;
160 void cb710_set_irq_handler(struct cb710_slot
*slot
,
161 cb710_irq_handler_t handler
)
163 struct cb710_chip
*chip
= cb710_slot_to_chip(slot
);
166 spin_lock_irqsave(&chip
->irq_lock
, flags
);
167 slot
->irq_handler
= handler
;
168 spin_unlock_irqrestore(&chip
->irq_lock
, flags
);
170 EXPORT_SYMBOL_GPL(cb710_set_irq_handler
);
174 static int cb710_suspend(struct pci_dev
*pdev
, pm_message_t state
)
176 struct cb710_chip
*chip
= pci_get_drvdata(pdev
);
178 free_irq(pdev
->irq
, chip
);
179 pci_save_state(pdev
);
180 pci_disable_device(pdev
);
181 if (state
.event
& PM_EVENT_SLEEP
)
182 pci_set_power_state(pdev
, PCI_D3cold
);
186 static int cb710_resume(struct pci_dev
*pdev
)
188 struct cb710_chip
*chip
= pci_get_drvdata(pdev
);
191 pci_set_power_state(pdev
, PCI_D0
);
192 pci_restore_state(pdev
);
193 err
= pcim_enable_device(pdev
);
197 return devm_request_irq(&pdev
->dev
, pdev
->irq
,
198 cb710_irq_handler
, IRQF_SHARED
, KBUILD_MODNAME
, chip
);
201 #endif /* CONFIG_PM */
203 static int __devinit
cb710_probe(struct pci_dev
*pdev
,
204 const struct pci_device_id
*ent
)
206 struct cb710_chip
*chip
;
212 err
= cb710_pci_configure(pdev
);
216 /* this is actually magic... */
217 pci_read_config_dword(pdev
, 0x48, &val
);
218 if (!(val
& 0x80000000)) {
219 pci_write_config_dword(pdev
, 0x48, val
|0x71000000);
220 pci_read_config_dword(pdev
, 0x48, &val
);
223 dev_dbg(&pdev
->dev
, "PCI config[0x48] = 0x%08X\n", val
);
224 if (!(val
& 0x70000000))
226 val
= (val
>> 28) & 7;
227 if (val
& CB710_SLOT_MMC
)
229 if (val
& CB710_SLOT_MS
)
231 if (val
& CB710_SLOT_SM
)
234 chip
= devm_kzalloc(&pdev
->dev
,
235 sizeof(*chip
) + n
* sizeof(*chip
->slot
), GFP_KERNEL
);
239 err
= pcim_enable_device(pdev
);
243 err
= pcim_iomap_regions(pdev
, 0x0001, KBUILD_MODNAME
);
247 spin_lock_init(&chip
->irq_lock
);
249 chip
->iobase
= pcim_iomap_table(pdev
)[0];
251 pci_set_drvdata(pdev
, chip
);
253 err
= devm_request_irq(&pdev
->dev
, pdev
->irq
,
254 cb710_irq_handler
, IRQF_SHARED
, KBUILD_MODNAME
, chip
);
259 if (!ida_pre_get(&cb710_ida
, GFP_KERNEL
))
262 spin_lock_irqsave(&cb710_ida_lock
, flags
);
263 err
= ida_get_new(&cb710_ida
, &chip
->platform_id
);
264 spin_unlock_irqrestore(&cb710_ida_lock
, flags
);
266 if (err
&& err
!= -EAGAIN
)
271 dev_info(&pdev
->dev
, "id %d, IO 0x%p, IRQ %d\n",
272 chip
->platform_id
, chip
->iobase
, pdev
->irq
);
274 if (val
& CB710_SLOT_MMC
) { /* MMC/SD slot */
275 err
= cb710_register_slot(chip
,
276 CB710_SLOT_MMC
, 0x00, "cb710-mmc");
281 if (val
& CB710_SLOT_MS
) { /* MemoryStick slot */
282 err
= cb710_register_slot(chip
,
283 CB710_SLOT_MS
, 0x40, "cb710-ms");
288 if (val
& CB710_SLOT_SM
) { /* SmartMedia slot */
289 err
= cb710_register_slot(chip
,
290 CB710_SLOT_SM
, 0x60, "cb710-sm");
297 cb710_unregister_slot(chip
, CB710_SLOT_MS
);
299 cb710_unregister_slot(chip
, CB710_SLOT_MMC
);
301 #ifdef CONFIG_CB710_DEBUG_ASSUMPTIONS
302 BUG_ON(atomic_read(&chip
->slot_refs_count
) != 0);
307 static void __devexit
cb710_remove_one(struct pci_dev
*pdev
)
309 struct cb710_chip
*chip
= pci_get_drvdata(pdev
);
312 cb710_unregister_slot(chip
, CB710_SLOT_SM
);
313 cb710_unregister_slot(chip
, CB710_SLOT_MS
);
314 cb710_unregister_slot(chip
, CB710_SLOT_MMC
);
315 #ifdef CONFIG_CB710_DEBUG_ASSUMPTIONS
316 BUG_ON(atomic_read(&chip
->slot_refs_count
) != 0);
319 spin_lock_irqsave(&cb710_ida_lock
, flags
);
320 ida_remove(&cb710_ida
, chip
->platform_id
);
321 spin_unlock_irqrestore(&cb710_ida_lock
, flags
);
324 static const struct pci_device_id cb710_pci_tbl
[] = {
325 { PCI_VENDOR_ID_ENE
, PCI_DEVICE_ID_ENE_CB710_FLASH
,
326 PCI_ANY_ID
, PCI_ANY_ID
, },
330 static struct pci_driver cb710_driver
= {
331 .name
= KBUILD_MODNAME
,
332 .id_table
= cb710_pci_tbl
,
333 .probe
= cb710_probe
,
334 .remove
= __devexit_p(cb710_remove_one
),
336 .suspend
= cb710_suspend
,
337 .resume
= cb710_resume
,
341 static int __init
cb710_init_module(void)
343 return pci_register_driver(&cb710_driver
);
346 static void __exit
cb710_cleanup_module(void)
348 pci_unregister_driver(&cb710_driver
);
349 ida_destroy(&cb710_ida
);
352 module_init(cb710_init_module
);
353 module_exit(cb710_cleanup_module
);
355 MODULE_AUTHOR("Michał Mirosław <mirq-linux@rere.qmqm.pl>");
356 MODULE_DESCRIPTION("ENE CB710 memory card reader driver");
357 MODULE_LICENSE("GPL");
358 MODULE_DEVICE_TABLE(pci
, cb710_pci_tbl
);