blob: 0ab7c922212cd860703d78a85621bfe68a067825 [file] [log] [blame]
Alex Dubov4020f2d2006-10-04 02:15:37 -07001/*
2 * tifm_core.c - TI FlashMedia driver
3 *
4 * Copyright (C) 2006 Alex Dubov <oakad@yahoo.com>
5 *
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 */
11
12#include <linux/tifm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Alex Dubov4020f2d2006-10-04 02:15:37 -070014#include <linux/init.h>
15#include <linux/idr.h>
Paul Gortmakereb12a672011-07-03 15:14:56 -040016#include <linux/module.h>
Alex Dubov4020f2d2006-10-04 02:15:37 -070017
18#define DRIVER_NAME "tifm_core"
Alex Dubov4552f0c2007-04-12 16:59:12 +100019#define DRIVER_VERSION "0.8"
Alex Dubov4020f2d2006-10-04 02:15:37 -070020
Alex Dubov3540af82007-04-12 16:59:15 +100021static struct workqueue_struct *workqueue;
Alex Dubov4020f2d2006-10-04 02:15:37 -070022static DEFINE_IDR(tifm_adapter_idr);
23static DEFINE_SPINLOCK(tifm_adapter_lock);
24
Alex Dubove23f2b82007-04-12 16:59:14 +100025static const char *tifm_media_type_name(unsigned char type, unsigned char nt)
Alex Dubov4020f2d2006-10-04 02:15:37 -070026{
Alex Dubove23f2b82007-04-12 16:59:14 +100027 const char *card_type_name[3][3] = {
28 { "SmartMedia/xD", "MemoryStick", "MMC/SD" },
29 { "XD", "MS", "SD"},
30 { "xd", "ms", "sd"}
31 };
32
33 if (nt > 2 || type < 1 || type > 3)
34 return NULL;
35 return card_type_name[nt][type - 1];
Alex Dubov4020f2d2006-10-04 02:15:37 -070036}
37
Alex Dubove23f2b82007-04-12 16:59:14 +100038static int tifm_dev_match(struct tifm_dev *sock, struct tifm_device_id *id)
Alex Dubov4020f2d2006-10-04 02:15:37 -070039{
Alex Dubove23f2b82007-04-12 16:59:14 +100040 if (sock->type == id->type)
Alex Dubov4020f2d2006-10-04 02:15:37 -070041 return 1;
Alex Dubove23f2b82007-04-12 16:59:14 +100042 return 0;
43}
44
45static int tifm_bus_match(struct device *dev, struct device_driver *drv)
46{
47 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
48 struct tifm_driver *fm_drv = container_of(drv, struct tifm_driver,
49 driver);
50 struct tifm_device_id *ids = fm_drv->id_table;
51
52 if (ids) {
53 while (ids->type) {
54 if (tifm_dev_match(sock, ids))
55 return 1;
56 ++ids;
57 }
58 }
59 return 0;
Alex Dubov4020f2d2006-10-04 02:15:37 -070060}
61
Kay Sievers7eff2e72007-08-14 15:15:12 +020062static int tifm_uevent(struct device *dev, struct kobj_uevent_env *env)
Alex Dubov4020f2d2006-10-04 02:15:37 -070063{
Alex Dubove23f2b82007-04-12 16:59:14 +100064 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
Alex Dubov4020f2d2006-10-04 02:15:37 -070065
Kay Sievers7eff2e72007-08-14 15:15:12 +020066 if (add_uevent_var(env, "TIFM_CARD_TYPE=%s", tifm_media_type_name(sock->type, 1)))
Alex Dubov4020f2d2006-10-04 02:15:37 -070067 return -ENOMEM;
68
69 return 0;
70}
71
Alex Dubov8dc4a612007-04-12 16:59:13 +100072static int tifm_device_probe(struct device *dev)
73{
74 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
75 struct tifm_driver *drv = container_of(dev->driver, struct tifm_driver,
76 driver);
77 int rc = -ENODEV;
78
79 get_device(dev);
80 if (dev->driver && drv->probe) {
81 rc = drv->probe(sock);
82 if (!rc)
83 return 0;
84 }
85 put_device(dev);
86 return rc;
87}
88
89static void tifm_dummy_event(struct tifm_dev *sock)
90{
91 return;
92}
93
94static int tifm_device_remove(struct device *dev)
95{
96 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
97 struct tifm_driver *drv = container_of(dev->driver, struct tifm_driver,
98 driver);
99
100 if (dev->driver && drv->remove) {
101 sock->card_event = tifm_dummy_event;
102 sock->data_event = tifm_dummy_event;
103 drv->remove(sock);
104 sock->dev.driver = NULL;
105 }
106
107 put_device(dev);
108 return 0;
109}
110
Alex Dubov41d78f742006-12-11 01:55:37 +1100111#ifdef CONFIG_PM
112
113static int tifm_device_suspend(struct device *dev, pm_message_t state)
114{
Alex Dubov91f8d012007-04-12 17:05:26 +1000115 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
Alex Dubov8dc4a612007-04-12 16:59:13 +1000116 struct tifm_driver *drv = container_of(dev->driver, struct tifm_driver,
117 driver);
Alex Dubov41d78f742006-12-11 01:55:37 +1100118
Alex Dubov8dc4a612007-04-12 16:59:13 +1000119 if (dev->driver && drv->suspend)
Alex Dubov91f8d012007-04-12 17:05:26 +1000120 return drv->suspend(sock, state);
Alex Dubov41d78f742006-12-11 01:55:37 +1100121 return 0;
122}
123
124static int tifm_device_resume(struct device *dev)
125{
Alex Dubov91f8d012007-04-12 17:05:26 +1000126 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
Alex Dubov8dc4a612007-04-12 16:59:13 +1000127 struct tifm_driver *drv = container_of(dev->driver, struct tifm_driver,
128 driver);
Alex Dubov41d78f742006-12-11 01:55:37 +1100129
Alex Dubov8dc4a612007-04-12 16:59:13 +1000130 if (dev->driver && drv->resume)
Alex Dubov91f8d012007-04-12 17:05:26 +1000131 return drv->resume(sock);
Alex Dubov41d78f742006-12-11 01:55:37 +1100132 return 0;
133}
134
135#else
136
137#define tifm_device_suspend NULL
138#define tifm_device_resume NULL
139
140#endif /* CONFIG_PM */
141
Alex Dubov4e64f222007-04-12 16:59:20 +1000142static ssize_t type_show(struct device *dev, struct device_attribute *attr,
143 char *buf)
144{
145 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
146 return sprintf(buf, "%x", sock->type);
147}
148
149static struct device_attribute tifm_dev_attrs[] = {
150 __ATTR(type, S_IRUGO, type_show, NULL),
151 __ATTR_NULL
152};
153
Alex Dubov4020f2d2006-10-04 02:15:37 -0700154static struct bus_type tifm_bus_type = {
Alex Dubov91f8d012007-04-12 17:05:26 +1000155 .name = "tifm",
156 .dev_attrs = tifm_dev_attrs,
157 .match = tifm_bus_match,
158 .uevent = tifm_uevent,
159 .probe = tifm_device_probe,
160 .remove = tifm_device_remove,
161 .suspend = tifm_device_suspend,
162 .resume = tifm_device_resume
Alex Dubov4020f2d2006-10-04 02:15:37 -0700163};
164
Tony Jones7dd817d2007-09-25 02:03:03 +0200165static void tifm_free(struct device *dev)
Alex Dubov4020f2d2006-10-04 02:15:37 -0700166{
Tony Jones7dd817d2007-09-25 02:03:03 +0200167 struct tifm_adapter *fm = container_of(dev, struct tifm_adapter, dev);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700168
Alex Dubov4020f2d2006-10-04 02:15:37 -0700169 kfree(fm);
170}
171
172static struct class tifm_adapter_class = {
173 .name = "tifm_adapter",
Tony Jones7dd817d2007-09-25 02:03:03 +0200174 .dev_release = tifm_free
Alex Dubov4020f2d2006-10-04 02:15:37 -0700175};
176
Alex Dubov6113ed72007-04-12 16:59:17 +1000177struct tifm_adapter *tifm_alloc_adapter(unsigned int num_sockets,
178 struct device *dev)
Alex Dubov4020f2d2006-10-04 02:15:37 -0700179{
180 struct tifm_adapter *fm;
181
Alex Dubov6113ed72007-04-12 16:59:17 +1000182 fm = kzalloc(sizeof(struct tifm_adapter)
183 + sizeof(struct tifm_dev*) * num_sockets, GFP_KERNEL);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700184 if (fm) {
Tony Jones7dd817d2007-09-25 02:03:03 +0200185 fm->dev.class = &tifm_adapter_class;
186 fm->dev.parent = dev;
187 device_initialize(&fm->dev);
Alex Dubov6113ed72007-04-12 16:59:17 +1000188 spin_lock_init(&fm->lock);
189 fm->num_sockets = num_sockets;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700190 }
191 return fm;
192}
193EXPORT_SYMBOL(tifm_alloc_adapter);
194
Alex Dubov3540af82007-04-12 16:59:15 +1000195int tifm_add_adapter(struct tifm_adapter *fm)
Alex Dubov4020f2d2006-10-04 02:15:37 -0700196{
197 int rc;
198
Tejun Heo57f26672013-02-27 17:04:31 -0800199 idr_preload(GFP_KERNEL);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700200 spin_lock(&tifm_adapter_lock);
Tejun Heo57f26672013-02-27 17:04:31 -0800201 rc = idr_alloc(&tifm_adapter_idr, fm, 0, 0, GFP_NOWAIT);
202 if (rc >= 0)
203 fm->id = rc;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700204 spin_unlock(&tifm_adapter_lock);
Tejun Heo57f26672013-02-27 17:04:31 -0800205 idr_preload_end();
206 if (rc < 0)
Alex Dubov6113ed72007-04-12 16:59:17 +1000207 return rc;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700208
Kay Sievers0bad16a2009-01-06 10:44:35 -0800209 dev_set_name(&fm->dev, "tifm%u", fm->id);
Tony Jones7dd817d2007-09-25 02:03:03 +0200210 rc = device_add(&fm->dev);
Alex Dubov6113ed72007-04-12 16:59:17 +1000211 if (rc) {
212 spin_lock(&tifm_adapter_lock);
213 idr_remove(&tifm_adapter_idr, fm->id);
214 spin_unlock(&tifm_adapter_lock);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700215 }
Alex Dubov6113ed72007-04-12 16:59:17 +1000216
Alex Dubov4020f2d2006-10-04 02:15:37 -0700217 return rc;
218}
219EXPORT_SYMBOL(tifm_add_adapter);
220
221void tifm_remove_adapter(struct tifm_adapter *fm)
222{
Alex Dubov6113ed72007-04-12 16:59:17 +1000223 unsigned int cnt;
224
Alex Dubov3540af82007-04-12 16:59:15 +1000225 flush_workqueue(workqueue);
Alex Dubov6113ed72007-04-12 16:59:17 +1000226 for (cnt = 0; cnt < fm->num_sockets; ++cnt) {
227 if (fm->sockets[cnt])
228 device_unregister(&fm->sockets[cnt]->dev);
229 }
Alex Dubov4020f2d2006-10-04 02:15:37 -0700230
231 spin_lock(&tifm_adapter_lock);
232 idr_remove(&tifm_adapter_idr, fm->id);
233 spin_unlock(&tifm_adapter_lock);
Tony Jones7dd817d2007-09-25 02:03:03 +0200234 device_del(&fm->dev);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700235}
236EXPORT_SYMBOL(tifm_remove_adapter);
237
Alex Dubov6113ed72007-04-12 16:59:17 +1000238void tifm_free_adapter(struct tifm_adapter *fm)
239{
Tony Jones7dd817d2007-09-25 02:03:03 +0200240 put_device(&fm->dev);
Alex Dubov6113ed72007-04-12 16:59:17 +1000241}
242EXPORT_SYMBOL(tifm_free_adapter);
243
Alex Dubov4020f2d2006-10-04 02:15:37 -0700244void tifm_free_device(struct device *dev)
245{
Alex Dubov2428a8f2007-04-12 16:59:18 +1000246 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
247 kfree(sock);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700248}
249EXPORT_SYMBOL(tifm_free_device);
250
Alex Dubov2428a8f2007-04-12 16:59:18 +1000251struct tifm_dev *tifm_alloc_device(struct tifm_adapter *fm, unsigned int id,
252 unsigned char type)
Alex Dubov4020f2d2006-10-04 02:15:37 -0700253{
Alex Dubov2428a8f2007-04-12 16:59:18 +1000254 struct tifm_dev *sock = NULL;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700255
Alex Dubov2428a8f2007-04-12 16:59:18 +1000256 if (!tifm_media_type_name(type, 0))
257 return sock;
Alex Dubov8e02f852006-12-08 16:50:51 +1100258
Alex Dubov2428a8f2007-04-12 16:59:18 +1000259 sock = kzalloc(sizeof(struct tifm_dev), GFP_KERNEL);
260 if (sock) {
261 spin_lock_init(&sock->lock);
262 sock->type = type;
263 sock->socket_id = id;
264 sock->card_event = tifm_dummy_event;
265 sock->data_event = tifm_dummy_event;
266
Tony Jones7dd817d2007-09-25 02:03:03 +0200267 sock->dev.parent = fm->dev.parent;
Alex Dubov2428a8f2007-04-12 16:59:18 +1000268 sock->dev.bus = &tifm_bus_type;
Tony Jones7dd817d2007-09-25 02:03:03 +0200269 sock->dev.dma_mask = fm->dev.parent->dma_mask;
Alex Dubov2428a8f2007-04-12 16:59:18 +1000270 sock->dev.release = tifm_free_device;
271
Kay Sievers0bad16a2009-01-06 10:44:35 -0800272 dev_set_name(&sock->dev, "tifm_%s%u:%u",
273 tifm_media_type_name(type, 2), fm->id, id);
Alex Dubov2428a8f2007-04-12 16:59:18 +1000274 printk(KERN_INFO DRIVER_NAME
275 ": %s card detected in socket %u:%u\n",
276 tifm_media_type_name(type, 0), fm->id, id);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700277 }
Alex Dubov2428a8f2007-04-12 16:59:18 +1000278 return sock;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700279}
280EXPORT_SYMBOL(tifm_alloc_device);
281
282void tifm_eject(struct tifm_dev *sock)
283{
284 struct tifm_adapter *fm = dev_get_drvdata(sock->dev.parent);
285 fm->eject(fm, sock);
286}
287EXPORT_SYMBOL(tifm_eject);
288
Alex Dubovbaf85322008-02-09 10:20:54 -0800289int tifm_has_ms_pif(struct tifm_dev *sock)
290{
291 struct tifm_adapter *fm = dev_get_drvdata(sock->dev.parent);
292 return fm->has_ms_pif(fm, sock);
293}
294EXPORT_SYMBOL(tifm_has_ms_pif);
295
Alex Dubov4020f2d2006-10-04 02:15:37 -0700296int tifm_map_sg(struct tifm_dev *sock, struct scatterlist *sg, int nents,
297 int direction)
298{
299 return pci_map_sg(to_pci_dev(sock->dev.parent), sg, nents, direction);
300}
301EXPORT_SYMBOL(tifm_map_sg);
302
303void tifm_unmap_sg(struct tifm_dev *sock, struct scatterlist *sg, int nents,
304 int direction)
305{
306 pci_unmap_sg(to_pci_dev(sock->dev.parent), sg, nents, direction);
307}
308EXPORT_SYMBOL(tifm_unmap_sg);
309
Alex Dubov3540af82007-04-12 16:59:15 +1000310void tifm_queue_work(struct work_struct *work)
311{
312 queue_work(workqueue, work);
313}
314EXPORT_SYMBOL(tifm_queue_work);
315
Alex Dubov4020f2d2006-10-04 02:15:37 -0700316int tifm_register_driver(struct tifm_driver *drv)
317{
318 drv->driver.bus = &tifm_bus_type;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700319
320 return driver_register(&drv->driver);
321}
322EXPORT_SYMBOL(tifm_register_driver);
323
324void tifm_unregister_driver(struct tifm_driver *drv)
325{
326 driver_unregister(&drv->driver);
327}
328EXPORT_SYMBOL(tifm_unregister_driver);
329
330static int __init tifm_init(void)
331{
Alex Dubov3540af82007-04-12 16:59:15 +1000332 int rc;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700333
Tejun Heo58a69cb2011-02-16 09:25:31 +0100334 workqueue = create_freezable_workqueue("tifm");
Alex Dubov3540af82007-04-12 16:59:15 +1000335 if (!workqueue)
336 return -ENOMEM;
337
338 rc = bus_register(&tifm_bus_type);
339
340 if (rc)
341 goto err_out_wq;
342
343 rc = class_register(&tifm_adapter_class);
344 if (!rc)
345 return 0;
346
347 bus_unregister(&tifm_bus_type);
348
349err_out_wq:
350 destroy_workqueue(workqueue);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700351
352 return rc;
353}
354
355static void __exit tifm_exit(void)
356{
357 class_unregister(&tifm_adapter_class);
358 bus_unregister(&tifm_bus_type);
Alex Dubov3540af82007-04-12 16:59:15 +1000359 destroy_workqueue(workqueue);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700360}
361
362subsys_initcall(tifm_init);
363module_exit(tifm_exit);
364
365MODULE_LICENSE("GPL");
366MODULE_AUTHOR("Alex Dubov");
367MODULE_DESCRIPTION("TI FlashMedia core driver");
368MODULE_LICENSE("GPL");
369MODULE_VERSION(DRIVER_VERSION);