blob: 44d4475a09ddd5a23947debf1a53fa3a37739dcf [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>
16
17#define DRIVER_NAME "tifm_core"
Alex Dubov4552f0c2007-04-12 16:59:12 +100018#define DRIVER_VERSION "0.8"
Alex Dubov4020f2d2006-10-04 02:15:37 -070019
Alex Dubov3540af82007-04-12 16:59:15 +100020static struct workqueue_struct *workqueue;
Alex Dubov4020f2d2006-10-04 02:15:37 -070021static DEFINE_IDR(tifm_adapter_idr);
22static DEFINE_SPINLOCK(tifm_adapter_lock);
23
Alex Dubove23f2b82007-04-12 16:59:14 +100024static const char *tifm_media_type_name(unsigned char type, unsigned char nt)
Alex Dubov4020f2d2006-10-04 02:15:37 -070025{
Alex Dubove23f2b82007-04-12 16:59:14 +100026 const char *card_type_name[3][3] = {
27 { "SmartMedia/xD", "MemoryStick", "MMC/SD" },
28 { "XD", "MS", "SD"},
29 { "xd", "ms", "sd"}
30 };
31
32 if (nt > 2 || type < 1 || type > 3)
33 return NULL;
34 return card_type_name[nt][type - 1];
Alex Dubov4020f2d2006-10-04 02:15:37 -070035}
36
Alex Dubove23f2b82007-04-12 16:59:14 +100037static int tifm_dev_match(struct tifm_dev *sock, struct tifm_device_id *id)
Alex Dubov4020f2d2006-10-04 02:15:37 -070038{
Alex Dubove23f2b82007-04-12 16:59:14 +100039 if (sock->type == id->type)
Alex Dubov4020f2d2006-10-04 02:15:37 -070040 return 1;
Alex Dubove23f2b82007-04-12 16:59:14 +100041 return 0;
42}
43
44static int tifm_bus_match(struct device *dev, struct device_driver *drv)
45{
46 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
47 struct tifm_driver *fm_drv = container_of(drv, struct tifm_driver,
48 driver);
49 struct tifm_device_id *ids = fm_drv->id_table;
50
51 if (ids) {
52 while (ids->type) {
53 if (tifm_dev_match(sock, ids))
54 return 1;
55 ++ids;
56 }
57 }
58 return 0;
Alex Dubov4020f2d2006-10-04 02:15:37 -070059}
60
Kay Sievers7eff2e72007-08-14 15:15:12 +020061static int tifm_uevent(struct device *dev, struct kobj_uevent_env *env)
Alex Dubov4020f2d2006-10-04 02:15:37 -070062{
Alex Dubove23f2b82007-04-12 16:59:14 +100063 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
Alex Dubov4020f2d2006-10-04 02:15:37 -070064
Kay Sievers7eff2e72007-08-14 15:15:12 +020065 if (add_uevent_var(env, "TIFM_CARD_TYPE=%s", tifm_media_type_name(sock->type, 1)))
Alex Dubov4020f2d2006-10-04 02:15:37 -070066 return -ENOMEM;
67
68 return 0;
69}
70
Alex Dubov8dc4a612007-04-12 16:59:13 +100071static int tifm_device_probe(struct device *dev)
72{
73 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
74 struct tifm_driver *drv = container_of(dev->driver, struct tifm_driver,
75 driver);
76 int rc = -ENODEV;
77
78 get_device(dev);
79 if (dev->driver && drv->probe) {
80 rc = drv->probe(sock);
81 if (!rc)
82 return 0;
83 }
84 put_device(dev);
85 return rc;
86}
87
88static void tifm_dummy_event(struct tifm_dev *sock)
89{
90 return;
91}
92
93static int tifm_device_remove(struct device *dev)
94{
95 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
96 struct tifm_driver *drv = container_of(dev->driver, struct tifm_driver,
97 driver);
98
99 if (dev->driver && drv->remove) {
100 sock->card_event = tifm_dummy_event;
101 sock->data_event = tifm_dummy_event;
102 drv->remove(sock);
103 sock->dev.driver = NULL;
104 }
105
106 put_device(dev);
107 return 0;
108}
109
Alex Dubov41d78f742006-12-11 01:55:37 +1100110#ifdef CONFIG_PM
111
112static int tifm_device_suspend(struct device *dev, pm_message_t state)
113{
Alex Dubov91f8d012007-04-12 17:05:26 +1000114 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
Alex Dubov8dc4a612007-04-12 16:59:13 +1000115 struct tifm_driver *drv = container_of(dev->driver, struct tifm_driver,
116 driver);
Alex Dubov41d78f742006-12-11 01:55:37 +1100117
Alex Dubov8dc4a612007-04-12 16:59:13 +1000118 if (dev->driver && drv->suspend)
Alex Dubov91f8d012007-04-12 17:05:26 +1000119 return drv->suspend(sock, state);
Alex Dubov41d78f742006-12-11 01:55:37 +1100120 return 0;
121}
122
123static int tifm_device_resume(struct device *dev)
124{
Alex Dubov91f8d012007-04-12 17:05:26 +1000125 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
Alex Dubov8dc4a612007-04-12 16:59:13 +1000126 struct tifm_driver *drv = container_of(dev->driver, struct tifm_driver,
127 driver);
Alex Dubov41d78f742006-12-11 01:55:37 +1100128
Alex Dubov8dc4a612007-04-12 16:59:13 +1000129 if (dev->driver && drv->resume)
Alex Dubov91f8d012007-04-12 17:05:26 +1000130 return drv->resume(sock);
Alex Dubov41d78f742006-12-11 01:55:37 +1100131 return 0;
132}
133
134#else
135
136#define tifm_device_suspend NULL
137#define tifm_device_resume NULL
138
139#endif /* CONFIG_PM */
140
Alex Dubov4e64f222007-04-12 16:59:20 +1000141static ssize_t type_show(struct device *dev, struct device_attribute *attr,
142 char *buf)
143{
144 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
145 return sprintf(buf, "%x", sock->type);
146}
147
148static struct device_attribute tifm_dev_attrs[] = {
149 __ATTR(type, S_IRUGO, type_show, NULL),
150 __ATTR_NULL
151};
152
Alex Dubov4020f2d2006-10-04 02:15:37 -0700153static struct bus_type tifm_bus_type = {
Alex Dubov91f8d012007-04-12 17:05:26 +1000154 .name = "tifm",
155 .dev_attrs = tifm_dev_attrs,
156 .match = tifm_bus_match,
157 .uevent = tifm_uevent,
158 .probe = tifm_device_probe,
159 .remove = tifm_device_remove,
160 .suspend = tifm_device_suspend,
161 .resume = tifm_device_resume
Alex Dubov4020f2d2006-10-04 02:15:37 -0700162};
163
Tony Jones7dd817d2007-09-25 02:03:03 +0200164static void tifm_free(struct device *dev)
Alex Dubov4020f2d2006-10-04 02:15:37 -0700165{
Tony Jones7dd817d2007-09-25 02:03:03 +0200166 struct tifm_adapter *fm = container_of(dev, struct tifm_adapter, dev);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700167
Alex Dubov4020f2d2006-10-04 02:15:37 -0700168 kfree(fm);
169}
170
171static struct class tifm_adapter_class = {
172 .name = "tifm_adapter",
Tony Jones7dd817d2007-09-25 02:03:03 +0200173 .dev_release = tifm_free
Alex Dubov4020f2d2006-10-04 02:15:37 -0700174};
175
Alex Dubov6113ed72007-04-12 16:59:17 +1000176struct tifm_adapter *tifm_alloc_adapter(unsigned int num_sockets,
177 struct device *dev)
Alex Dubov4020f2d2006-10-04 02:15:37 -0700178{
179 struct tifm_adapter *fm;
180
Alex Dubov6113ed72007-04-12 16:59:17 +1000181 fm = kzalloc(sizeof(struct tifm_adapter)
182 + sizeof(struct tifm_dev*) * num_sockets, GFP_KERNEL);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700183 if (fm) {
Tony Jones7dd817d2007-09-25 02:03:03 +0200184 fm->dev.class = &tifm_adapter_class;
185 fm->dev.parent = dev;
186 device_initialize(&fm->dev);
Alex Dubov6113ed72007-04-12 16:59:17 +1000187 spin_lock_init(&fm->lock);
188 fm->num_sockets = num_sockets;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700189 }
190 return fm;
191}
192EXPORT_SYMBOL(tifm_alloc_adapter);
193
Alex Dubov3540af82007-04-12 16:59:15 +1000194int tifm_add_adapter(struct tifm_adapter *fm)
Alex Dubov4020f2d2006-10-04 02:15:37 -0700195{
196 int rc;
197
198 if (!idr_pre_get(&tifm_adapter_idr, GFP_KERNEL))
199 return -ENOMEM;
200
201 spin_lock(&tifm_adapter_lock);
202 rc = idr_get_new(&tifm_adapter_idr, fm, &fm->id);
203 spin_unlock(&tifm_adapter_lock);
Alex Dubov6113ed72007-04-12 16:59:17 +1000204 if (rc)
205 return rc;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700206
Kay Sievers0bad16a2009-01-06 10:44:35 -0800207 dev_set_name(&fm->dev, "tifm%u", fm->id);
Tony Jones7dd817d2007-09-25 02:03:03 +0200208 rc = device_add(&fm->dev);
Alex Dubov6113ed72007-04-12 16:59:17 +1000209 if (rc) {
210 spin_lock(&tifm_adapter_lock);
211 idr_remove(&tifm_adapter_idr, fm->id);
212 spin_unlock(&tifm_adapter_lock);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700213 }
Alex Dubov6113ed72007-04-12 16:59:17 +1000214
Alex Dubov4020f2d2006-10-04 02:15:37 -0700215 return rc;
216}
217EXPORT_SYMBOL(tifm_add_adapter);
218
219void tifm_remove_adapter(struct tifm_adapter *fm)
220{
Alex Dubov6113ed72007-04-12 16:59:17 +1000221 unsigned int cnt;
222
Alex Dubov3540af82007-04-12 16:59:15 +1000223 flush_workqueue(workqueue);
Alex Dubov6113ed72007-04-12 16:59:17 +1000224 for (cnt = 0; cnt < fm->num_sockets; ++cnt) {
225 if (fm->sockets[cnt])
226 device_unregister(&fm->sockets[cnt]->dev);
227 }
Alex Dubov4020f2d2006-10-04 02:15:37 -0700228
229 spin_lock(&tifm_adapter_lock);
230 idr_remove(&tifm_adapter_idr, fm->id);
231 spin_unlock(&tifm_adapter_lock);
Tony Jones7dd817d2007-09-25 02:03:03 +0200232 device_del(&fm->dev);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700233}
234EXPORT_SYMBOL(tifm_remove_adapter);
235
Alex Dubov6113ed72007-04-12 16:59:17 +1000236void tifm_free_adapter(struct tifm_adapter *fm)
237{
Tony Jones7dd817d2007-09-25 02:03:03 +0200238 put_device(&fm->dev);
Alex Dubov6113ed72007-04-12 16:59:17 +1000239}
240EXPORT_SYMBOL(tifm_free_adapter);
241
Alex Dubov4020f2d2006-10-04 02:15:37 -0700242void tifm_free_device(struct device *dev)
243{
Alex Dubov2428a8f2007-04-12 16:59:18 +1000244 struct tifm_dev *sock = container_of(dev, struct tifm_dev, dev);
245 kfree(sock);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700246}
247EXPORT_SYMBOL(tifm_free_device);
248
Alex Dubov2428a8f2007-04-12 16:59:18 +1000249struct tifm_dev *tifm_alloc_device(struct tifm_adapter *fm, unsigned int id,
250 unsigned char type)
Alex Dubov4020f2d2006-10-04 02:15:37 -0700251{
Alex Dubov2428a8f2007-04-12 16:59:18 +1000252 struct tifm_dev *sock = NULL;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700253
Alex Dubov2428a8f2007-04-12 16:59:18 +1000254 if (!tifm_media_type_name(type, 0))
255 return sock;
Alex Dubov8e02f852006-12-08 16:50:51 +1100256
Alex Dubov2428a8f2007-04-12 16:59:18 +1000257 sock = kzalloc(sizeof(struct tifm_dev), GFP_KERNEL);
258 if (sock) {
259 spin_lock_init(&sock->lock);
260 sock->type = type;
261 sock->socket_id = id;
262 sock->card_event = tifm_dummy_event;
263 sock->data_event = tifm_dummy_event;
264
Tony Jones7dd817d2007-09-25 02:03:03 +0200265 sock->dev.parent = fm->dev.parent;
Alex Dubov2428a8f2007-04-12 16:59:18 +1000266 sock->dev.bus = &tifm_bus_type;
Tony Jones7dd817d2007-09-25 02:03:03 +0200267 sock->dev.dma_mask = fm->dev.parent->dma_mask;
Alex Dubov2428a8f2007-04-12 16:59:18 +1000268 sock->dev.release = tifm_free_device;
269
Kay Sievers0bad16a2009-01-06 10:44:35 -0800270 dev_set_name(&sock->dev, "tifm_%s%u:%u",
271 tifm_media_type_name(type, 2), fm->id, id);
Alex Dubov2428a8f2007-04-12 16:59:18 +1000272 printk(KERN_INFO DRIVER_NAME
273 ": %s card detected in socket %u:%u\n",
274 tifm_media_type_name(type, 0), fm->id, id);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700275 }
Alex Dubov2428a8f2007-04-12 16:59:18 +1000276 return sock;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700277}
278EXPORT_SYMBOL(tifm_alloc_device);
279
280void tifm_eject(struct tifm_dev *sock)
281{
282 struct tifm_adapter *fm = dev_get_drvdata(sock->dev.parent);
283 fm->eject(fm, sock);
284}
285EXPORT_SYMBOL(tifm_eject);
286
Alex Dubovbaf85322008-02-09 10:20:54 -0800287int tifm_has_ms_pif(struct tifm_dev *sock)
288{
289 struct tifm_adapter *fm = dev_get_drvdata(sock->dev.parent);
290 return fm->has_ms_pif(fm, sock);
291}
292EXPORT_SYMBOL(tifm_has_ms_pif);
293
Alex Dubov4020f2d2006-10-04 02:15:37 -0700294int tifm_map_sg(struct tifm_dev *sock, struct scatterlist *sg, int nents,
295 int direction)
296{
297 return pci_map_sg(to_pci_dev(sock->dev.parent), sg, nents, direction);
298}
299EXPORT_SYMBOL(tifm_map_sg);
300
301void tifm_unmap_sg(struct tifm_dev *sock, struct scatterlist *sg, int nents,
302 int direction)
303{
304 pci_unmap_sg(to_pci_dev(sock->dev.parent), sg, nents, direction);
305}
306EXPORT_SYMBOL(tifm_unmap_sg);
307
Alex Dubov3540af82007-04-12 16:59:15 +1000308void tifm_queue_work(struct work_struct *work)
309{
310 queue_work(workqueue, work);
311}
312EXPORT_SYMBOL(tifm_queue_work);
313
Alex Dubov4020f2d2006-10-04 02:15:37 -0700314int tifm_register_driver(struct tifm_driver *drv)
315{
316 drv->driver.bus = &tifm_bus_type;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700317
318 return driver_register(&drv->driver);
319}
320EXPORT_SYMBOL(tifm_register_driver);
321
322void tifm_unregister_driver(struct tifm_driver *drv)
323{
324 driver_unregister(&drv->driver);
325}
326EXPORT_SYMBOL(tifm_unregister_driver);
327
328static int __init tifm_init(void)
329{
Alex Dubov3540af82007-04-12 16:59:15 +1000330 int rc;
Alex Dubov4020f2d2006-10-04 02:15:37 -0700331
Tejun Heo58a69cb2011-02-16 09:25:31 +0100332 workqueue = create_freezable_workqueue("tifm");
Alex Dubov3540af82007-04-12 16:59:15 +1000333 if (!workqueue)
334 return -ENOMEM;
335
336 rc = bus_register(&tifm_bus_type);
337
338 if (rc)
339 goto err_out_wq;
340
341 rc = class_register(&tifm_adapter_class);
342 if (!rc)
343 return 0;
344
345 bus_unregister(&tifm_bus_type);
346
347err_out_wq:
348 destroy_workqueue(workqueue);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700349
350 return rc;
351}
352
353static void __exit tifm_exit(void)
354{
355 class_unregister(&tifm_adapter_class);
356 bus_unregister(&tifm_bus_type);
Alex Dubov3540af82007-04-12 16:59:15 +1000357 destroy_workqueue(workqueue);
Alex Dubov4020f2d2006-10-04 02:15:37 -0700358}
359
360subsys_initcall(tifm_init);
361module_exit(tifm_exit);
362
363MODULE_LICENSE("GPL");
364MODULE_AUTHOR("Alex Dubov");
365MODULE_DESCRIPTION("TI FlashMedia core driver");
366MODULE_LICENSE("GPL");
367MODULE_VERSION(DRIVER_VERSION);