2 * tifm_core.c - TI FlashMedia driver
4 * Copyright (C) 2006 Alex Dubov <oakad@yahoo.com>
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.
12 #include <linux/tifm.h>
13 #include <linux/init.h>
14 #include <linux/idr.h>
16 #define DRIVER_NAME "tifm_core"
17 #define DRIVER_VERSION "0.7"
19 static DEFINE_IDR(tifm_adapter_idr);
20 static DEFINE_SPINLOCK(tifm_adapter_lock);
22 static tifm_media_id *tifm_device_match(tifm_media_id *ids,
26 if (dev->media_id == *ids)
33 static int tifm_match(struct device *dev, struct device_driver *drv)
35 struct tifm_dev *fm_dev = container_of(dev, struct tifm_dev, dev);
36 struct tifm_driver *fm_drv;
38 fm_drv = container_of(drv, struct tifm_driver, driver);
39 if (!fm_drv->id_table)
41 if (tifm_device_match(fm_drv->id_table, fm_dev))
46 static int tifm_uevent(struct device *dev, char **envp, int num_envp,
47 char *buffer, int buffer_size)
49 struct tifm_dev *fm_dev;
52 const char *card_type_name[] = {"INV", "SM", "MS", "SD"};
54 if (!dev || !(fm_dev = container_of(dev, struct tifm_dev, dev)))
56 if (add_uevent_var(envp, num_envp, &i, buffer, buffer_size, &length,
57 "TIFM_CARD_TYPE=%s", card_type_name[fm_dev->media_id]))
65 static int tifm_device_suspend(struct device *dev, pm_message_t state)
67 struct tifm_dev *fm_dev = container_of(dev, struct tifm_dev, dev);
68 struct tifm_driver *drv = fm_dev->drv;
70 if (drv && drv->suspend)
71 return drv->suspend(fm_dev, state);
75 static int tifm_device_resume(struct device *dev)
77 struct tifm_dev *fm_dev = container_of(dev, struct tifm_dev, dev);
78 struct tifm_driver *drv = fm_dev->drv;
80 if (drv && drv->resume)
81 return drv->resume(fm_dev);
87 #define tifm_device_suspend NULL
88 #define tifm_device_resume NULL
90 #endif /* CONFIG_PM */
92 static struct bus_type tifm_bus_type = {
95 .uevent = tifm_uevent,
96 .suspend = tifm_device_suspend,
97 .resume = tifm_device_resume
100 static void tifm_free(struct class_device *cdev)
102 struct tifm_adapter *fm = container_of(cdev, struct tifm_adapter, cdev);
108 static struct class tifm_adapter_class = {
109 .name = "tifm_adapter",
113 struct tifm_adapter *tifm_alloc_adapter(void)
115 struct tifm_adapter *fm;
117 fm = kzalloc(sizeof(struct tifm_adapter), GFP_KERNEL);
119 fm->cdev.class = &tifm_adapter_class;
120 spin_lock_init(&fm->lock);
121 class_device_initialize(&fm->cdev);
125 EXPORT_SYMBOL(tifm_alloc_adapter);
127 void tifm_free_adapter(struct tifm_adapter *fm)
129 class_device_put(&fm->cdev);
131 EXPORT_SYMBOL(tifm_free_adapter);
133 int tifm_add_adapter(struct tifm_adapter *fm,
134 int (*mediathreadfn)(void *data))
138 if (!idr_pre_get(&tifm_adapter_idr, GFP_KERNEL))
141 spin_lock(&tifm_adapter_lock);
142 rc = idr_get_new(&tifm_adapter_idr, fm, &fm->id);
143 spin_unlock(&tifm_adapter_lock);
145 snprintf(fm->cdev.class_id, BUS_ID_SIZE, "tifm%u", fm->id);
146 fm->media_switcher = kthread_create(mediathreadfn,
147 fm, "tifm/%u", fm->id);
149 if (!IS_ERR(fm->media_switcher))
150 return class_device_add(&fm->cdev);
152 spin_lock(&tifm_adapter_lock);
153 idr_remove(&tifm_adapter_idr, fm->id);
154 spin_unlock(&tifm_adapter_lock);
159 EXPORT_SYMBOL(tifm_add_adapter);
161 void tifm_remove_adapter(struct tifm_adapter *fm)
163 class_device_del(&fm->cdev);
165 spin_lock(&tifm_adapter_lock);
166 idr_remove(&tifm_adapter_idr, fm->id);
167 spin_unlock(&tifm_adapter_lock);
169 EXPORT_SYMBOL(tifm_remove_adapter);
171 void tifm_free_device(struct device *dev)
173 struct tifm_dev *fm_dev = container_of(dev, struct tifm_dev, dev);
176 EXPORT_SYMBOL(tifm_free_device);
178 static void tifm_dummy_signal_irq(struct tifm_dev *sock,
179 unsigned int sock_irq_status)
184 struct tifm_dev *tifm_alloc_device(struct tifm_adapter *fm)
186 struct tifm_dev *dev = kzalloc(sizeof(struct tifm_dev), GFP_KERNEL);
189 spin_lock_init(&dev->lock);
191 dev->dev.parent = fm->dev;
192 dev->dev.bus = &tifm_bus_type;
193 dev->dev.release = tifm_free_device;
194 dev->signal_irq = tifm_dummy_signal_irq;
198 EXPORT_SYMBOL(tifm_alloc_device);
200 void tifm_eject(struct tifm_dev *sock)
202 struct tifm_adapter *fm = dev_get_drvdata(sock->dev.parent);
205 EXPORT_SYMBOL(tifm_eject);
207 int tifm_map_sg(struct tifm_dev *sock, struct scatterlist *sg, int nents,
210 return pci_map_sg(to_pci_dev(sock->dev.parent), sg, nents, direction);
212 EXPORT_SYMBOL(tifm_map_sg);
214 void tifm_unmap_sg(struct tifm_dev *sock, struct scatterlist *sg, int nents,
217 pci_unmap_sg(to_pci_dev(sock->dev.parent), sg, nents, direction);
219 EXPORT_SYMBOL(tifm_unmap_sg);
221 static int tifm_device_probe(struct device *dev)
223 struct tifm_driver *drv;
224 struct tifm_dev *fm_dev;
226 const tifm_media_id *id;
228 drv = container_of(dev->driver, struct tifm_driver, driver);
229 fm_dev = container_of(dev, struct tifm_dev, dev);
231 if (!fm_dev->drv && drv->probe && drv->id_table) {
233 id = tifm_device_match(drv->id_table, fm_dev);
235 rc = drv->probe(fm_dev);
246 static int tifm_device_remove(struct device *dev)
248 struct tifm_dev *fm_dev = container_of(dev, struct tifm_dev, dev);
249 struct tifm_driver *drv = fm_dev->drv;
252 fm_dev->signal_irq = tifm_dummy_signal_irq;
262 int tifm_register_driver(struct tifm_driver *drv)
264 drv->driver.bus = &tifm_bus_type;
265 drv->driver.probe = tifm_device_probe;
266 drv->driver.remove = tifm_device_remove;
267 drv->driver.suspend = tifm_device_suspend;
268 drv->driver.resume = tifm_device_resume;
270 return driver_register(&drv->driver);
272 EXPORT_SYMBOL(tifm_register_driver);
274 void tifm_unregister_driver(struct tifm_driver *drv)
276 driver_unregister(&drv->driver);
278 EXPORT_SYMBOL(tifm_unregister_driver);
280 static int __init tifm_init(void)
282 int rc = bus_register(&tifm_bus_type);
285 rc = class_register(&tifm_adapter_class);
287 bus_unregister(&tifm_bus_type);
293 static void __exit tifm_exit(void)
295 class_unregister(&tifm_adapter_class);
296 bus_unregister(&tifm_bus_type);
299 subsys_initcall(tifm_init);
300 module_exit(tifm_exit);
302 MODULE_LICENSE("GPL");
303 MODULE_AUTHOR("Alex Dubov");
304 MODULE_DESCRIPTION("TI FlashMedia core driver");
305 MODULE_LICENSE("GPL");
306 MODULE_VERSION(DRIVER_VERSION);