Linux 5.1.15
[linux/fpc-iii.git] / drivers / misc / cb710 / core.c
blob2c43fd09d602fd0abddf3996213eb1446a894b46
1 /*
2 * cb710/core.c
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.
9 */
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);
20 void cb710_pci_update_config_reg(struct pci_dev *pdev,
21 int reg, uint32_t mask, uint32_t xor)
23 u32 rval;
25 pci_read_config_dword(pdev, reg, &rval);
26 rval = (rval & mask) ^ xor;
27 pci_write_config_dword(pdev, reg, rval);
29 EXPORT_SYMBOL_GPL(cb710_pci_update_config_reg);
31 /* Some magic writes based on Windows driver init code */
32 static int cb710_pci_configure(struct pci_dev *pdev)
34 unsigned int devfn = PCI_DEVFN(PCI_SLOT(pdev->devfn), 0);
35 struct pci_dev *pdev0;
36 u32 val;
38 cb710_pci_update_config_reg(pdev, 0x48,
39 ~0x000000FF, 0x0000003F);
41 pci_read_config_dword(pdev, 0x48, &val);
42 if (val & 0x80000000)
43 return 0;
45 pdev0 = pci_get_slot(pdev->bus, devfn);
46 if (!pdev0)
47 return -ENODEV;
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);
62 pci_dev_put(pdev0);
64 return 0;
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;
72 unsigned nr;
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);
84 return handled;
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);
95 #endif
98 static int 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];
103 int err;
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() */
111 ++chip->slots;
112 smp_wmb();
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);
124 #endif
126 if (err) {
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 */
132 --chip->slots;
133 return err;
136 chip->slot_mask |= slot_mask;
138 return 0;
141 static void cb710_unregister_slot(struct cb710_chip *chip,
142 unsigned slot_mask)
144 int nr = chip->slots - 1;
146 if (!(chip->slot_mask & slot_mask))
147 return;
149 platform_device_unregister(&chip->slot[nr].pdev);
151 /* complementary to spin_unlock() in cb710_set_irq_handler() */
152 smp_rmb();
153 BUG_ON(chip->slot[nr].irq_handler != NULL);
155 /* slot->irq_handler == NULL here, so no lock needed */
156 --chip->slots;
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);
164 unsigned long flags;
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);
172 #ifdef CONFIG_PM
174 static int cb710_suspend(struct pci_dev *pdev, pm_message_t state)
176 struct cb710_chip *chip = pci_get_drvdata(pdev);
178 devm_free_irq(&pdev->dev, 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_D3hot);
183 return 0;
186 static int cb710_resume(struct pci_dev *pdev)
188 struct cb710_chip *chip = pci_get_drvdata(pdev);
189 int err;
191 pci_set_power_state(pdev, PCI_D0);
192 pci_restore_state(pdev);
193 err = pcim_enable_device(pdev);
194 if (err)
195 return err;
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 cb710_probe(struct pci_dev *pdev,
204 const struct pci_device_id *ent)
206 struct cb710_chip *chip;
207 u32 val;
208 int err;
209 int n = 0;
211 err = cb710_pci_configure(pdev);
212 if (err)
213 return err;
215 /* this is actually magic... */
216 pci_read_config_dword(pdev, 0x48, &val);
217 if (!(val & 0x80000000)) {
218 pci_write_config_dword(pdev, 0x48, val|0x71000000);
219 pci_read_config_dword(pdev, 0x48, &val);
222 dev_dbg(&pdev->dev, "PCI config[0x48] = 0x%08X\n", val);
223 if (!(val & 0x70000000))
224 return -ENODEV;
225 val = (val >> 28) & 7;
226 if (val & CB710_SLOT_MMC)
227 ++n;
228 if (val & CB710_SLOT_MS)
229 ++n;
230 if (val & CB710_SLOT_SM)
231 ++n;
233 chip = devm_kzalloc(&pdev->dev, struct_size(chip, slot, n),
234 GFP_KERNEL);
235 if (!chip)
236 return -ENOMEM;
238 err = pcim_enable_device(pdev);
239 if (err)
240 return err;
242 err = pcim_iomap_regions(pdev, 0x0001, KBUILD_MODNAME);
243 if (err)
244 return err;
246 spin_lock_init(&chip->irq_lock);
247 chip->pdev = pdev;
248 chip->iobase = pcim_iomap_table(pdev)[0];
250 pci_set_drvdata(pdev, chip);
252 err = devm_request_irq(&pdev->dev, pdev->irq,
253 cb710_irq_handler, IRQF_SHARED, KBUILD_MODNAME, chip);
254 if (err)
255 return err;
257 err = ida_alloc(&cb710_ida, GFP_KERNEL);
258 if (err < 0)
259 return err;
260 chip->platform_id = err;
262 dev_info(&pdev->dev, "id %d, IO 0x%p, IRQ %d\n",
263 chip->platform_id, chip->iobase, pdev->irq);
265 if (val & CB710_SLOT_MMC) { /* MMC/SD slot */
266 err = cb710_register_slot(chip,
267 CB710_SLOT_MMC, 0x00, "cb710-mmc");
268 if (err)
269 return err;
272 if (val & CB710_SLOT_MS) { /* MemoryStick slot */
273 err = cb710_register_slot(chip,
274 CB710_SLOT_MS, 0x40, "cb710-ms");
275 if (err)
276 goto unreg_mmc;
279 if (val & CB710_SLOT_SM) { /* SmartMedia slot */
280 err = cb710_register_slot(chip,
281 CB710_SLOT_SM, 0x60, "cb710-sm");
282 if (err)
283 goto unreg_ms;
286 return 0;
287 unreg_ms:
288 cb710_unregister_slot(chip, CB710_SLOT_MS);
289 unreg_mmc:
290 cb710_unregister_slot(chip, CB710_SLOT_MMC);
292 #ifdef CONFIG_CB710_DEBUG_ASSUMPTIONS
293 BUG_ON(atomic_read(&chip->slot_refs_count) != 0);
294 #endif
295 return err;
298 static void cb710_remove_one(struct pci_dev *pdev)
300 struct cb710_chip *chip = pci_get_drvdata(pdev);
302 cb710_unregister_slot(chip, CB710_SLOT_SM);
303 cb710_unregister_slot(chip, CB710_SLOT_MS);
304 cb710_unregister_slot(chip, CB710_SLOT_MMC);
305 #ifdef CONFIG_CB710_DEBUG_ASSUMPTIONS
306 BUG_ON(atomic_read(&chip->slot_refs_count) != 0);
307 #endif
309 ida_free(&cb710_ida, chip->platform_id);
312 static const struct pci_device_id cb710_pci_tbl[] = {
313 { PCI_VENDOR_ID_ENE, PCI_DEVICE_ID_ENE_CB710_FLASH,
314 PCI_ANY_ID, PCI_ANY_ID, },
315 { 0, }
318 static struct pci_driver cb710_driver = {
319 .name = KBUILD_MODNAME,
320 .id_table = cb710_pci_tbl,
321 .probe = cb710_probe,
322 .remove = cb710_remove_one,
323 #ifdef CONFIG_PM
324 .suspend = cb710_suspend,
325 .resume = cb710_resume,
326 #endif
329 static int __init cb710_init_module(void)
331 return pci_register_driver(&cb710_driver);
334 static void __exit cb710_cleanup_module(void)
336 pci_unregister_driver(&cb710_driver);
337 ida_destroy(&cb710_ida);
340 module_init(cb710_init_module);
341 module_exit(cb710_cleanup_module);
343 MODULE_AUTHOR("Michał Mirosław <mirq-linux@rere.qmqm.pl>");
344 MODULE_DESCRIPTION("ENE CB710 memory card reader driver");
345 MODULE_LICENSE("GPL");
346 MODULE_DEVICE_TABLE(pci, cb710_pci_tbl);