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/slab.h>
14 #include <linux/init.h>
15 #include <linux/idr.h>
16 #include <linux/module.h>
18 #define DRIVER_NAME "tifm_core"
19 #define DRIVER_VERSION "0.8"
21 static struct workqueue_struct
*workqueue
;
22 static DEFINE_IDR(tifm_adapter_idr
);
23 static DEFINE_SPINLOCK(tifm_adapter_lock
);
25 static const char *tifm_media_type_name(unsigned char type
, unsigned char nt
)
27 const char *card_type_name
[3][3] = {
28 { "SmartMedia/xD", "MemoryStick", "MMC/SD" },
33 if (nt
> 2 || type
< 1 || type
> 3)
35 return card_type_name
[nt
][type
- 1];
38 static int tifm_dev_match(struct tifm_dev
*sock
, struct tifm_device_id
*id
)
40 if (sock
->type
== id
->type
)
45 static int tifm_bus_match(struct device
*dev
, struct device_driver
*drv
)
47 struct tifm_dev
*sock
= container_of(dev
, struct tifm_dev
, dev
);
48 struct tifm_driver
*fm_drv
= container_of(drv
, struct tifm_driver
,
50 struct tifm_device_id
*ids
= fm_drv
->id_table
;
54 if (tifm_dev_match(sock
, ids
))
62 static int tifm_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
64 struct tifm_dev
*sock
= container_of(dev
, struct tifm_dev
, dev
);
66 if (add_uevent_var(env
, "TIFM_CARD_TYPE=%s", tifm_media_type_name(sock
->type
, 1)))
72 static int tifm_device_probe(struct device
*dev
)
74 struct tifm_dev
*sock
= container_of(dev
, struct tifm_dev
, dev
);
75 struct tifm_driver
*drv
= container_of(dev
->driver
, struct tifm_driver
,
80 if (dev
->driver
&& drv
->probe
) {
81 rc
= drv
->probe(sock
);
89 static void tifm_dummy_event(struct tifm_dev
*sock
)
94 static int tifm_device_remove(struct device
*dev
)
96 struct tifm_dev
*sock
= container_of(dev
, struct tifm_dev
, dev
);
97 struct tifm_driver
*drv
= container_of(dev
->driver
, struct tifm_driver
,
100 if (dev
->driver
&& drv
->remove
) {
101 sock
->card_event
= tifm_dummy_event
;
102 sock
->data_event
= tifm_dummy_event
;
104 sock
->dev
.driver
= NULL
;
113 static int tifm_device_suspend(struct device
*dev
, pm_message_t state
)
115 struct tifm_dev
*sock
= container_of(dev
, struct tifm_dev
, dev
);
116 struct tifm_driver
*drv
= container_of(dev
->driver
, struct tifm_driver
,
119 if (dev
->driver
&& drv
->suspend
)
120 return drv
->suspend(sock
, state
);
124 static int tifm_device_resume(struct device
*dev
)
126 struct tifm_dev
*sock
= container_of(dev
, struct tifm_dev
, dev
);
127 struct tifm_driver
*drv
= container_of(dev
->driver
, struct tifm_driver
,
130 if (dev
->driver
&& drv
->resume
)
131 return drv
->resume(sock
);
137 #define tifm_device_suspend NULL
138 #define tifm_device_resume NULL
140 #endif /* CONFIG_PM */
142 static ssize_t
type_show(struct device
*dev
, struct device_attribute
*attr
,
145 struct tifm_dev
*sock
= container_of(dev
, struct tifm_dev
, dev
);
146 return sprintf(buf
, "%x", sock
->type
);
148 static DEVICE_ATTR_RO(type
);
150 static struct attribute
*tifm_dev_attrs
[] = {
154 ATTRIBUTE_GROUPS(tifm_dev
);
156 static struct bus_type tifm_bus_type
= {
158 .dev_groups
= tifm_dev_groups
,
159 .match
= tifm_bus_match
,
160 .uevent
= tifm_uevent
,
161 .probe
= tifm_device_probe
,
162 .remove
= tifm_device_remove
,
163 .suspend
= tifm_device_suspend
,
164 .resume
= tifm_device_resume
167 static void tifm_free(struct device
*dev
)
169 struct tifm_adapter
*fm
= container_of(dev
, struct tifm_adapter
, dev
);
174 static struct class tifm_adapter_class
= {
175 .name
= "tifm_adapter",
176 .dev_release
= tifm_free
179 struct tifm_adapter
*tifm_alloc_adapter(unsigned int num_sockets
,
182 struct tifm_adapter
*fm
;
184 fm
= kzalloc(sizeof(struct tifm_adapter
)
185 + sizeof(struct tifm_dev
*) * num_sockets
, GFP_KERNEL
);
187 fm
->dev
.class = &tifm_adapter_class
;
188 fm
->dev
.parent
= dev
;
189 device_initialize(&fm
->dev
);
190 spin_lock_init(&fm
->lock
);
191 fm
->num_sockets
= num_sockets
;
195 EXPORT_SYMBOL(tifm_alloc_adapter
);
197 int tifm_add_adapter(struct tifm_adapter
*fm
)
201 idr_preload(GFP_KERNEL
);
202 spin_lock(&tifm_adapter_lock
);
203 rc
= idr_alloc(&tifm_adapter_idr
, fm
, 0, 0, GFP_NOWAIT
);
206 spin_unlock(&tifm_adapter_lock
);
211 dev_set_name(&fm
->dev
, "tifm%u", fm
->id
);
212 rc
= device_add(&fm
->dev
);
214 spin_lock(&tifm_adapter_lock
);
215 idr_remove(&tifm_adapter_idr
, fm
->id
);
216 spin_unlock(&tifm_adapter_lock
);
221 EXPORT_SYMBOL(tifm_add_adapter
);
223 void tifm_remove_adapter(struct tifm_adapter
*fm
)
227 flush_workqueue(workqueue
);
228 for (cnt
= 0; cnt
< fm
->num_sockets
; ++cnt
) {
229 if (fm
->sockets
[cnt
])
230 device_unregister(&fm
->sockets
[cnt
]->dev
);
233 spin_lock(&tifm_adapter_lock
);
234 idr_remove(&tifm_adapter_idr
, fm
->id
);
235 spin_unlock(&tifm_adapter_lock
);
236 device_del(&fm
->dev
);
238 EXPORT_SYMBOL(tifm_remove_adapter
);
240 void tifm_free_adapter(struct tifm_adapter
*fm
)
242 put_device(&fm
->dev
);
244 EXPORT_SYMBOL(tifm_free_adapter
);
246 void tifm_free_device(struct device
*dev
)
248 struct tifm_dev
*sock
= container_of(dev
, struct tifm_dev
, dev
);
251 EXPORT_SYMBOL(tifm_free_device
);
253 struct tifm_dev
*tifm_alloc_device(struct tifm_adapter
*fm
, unsigned int id
,
256 struct tifm_dev
*sock
= NULL
;
258 if (!tifm_media_type_name(type
, 0))
261 sock
= kzalloc(sizeof(struct tifm_dev
), GFP_KERNEL
);
263 spin_lock_init(&sock
->lock
);
265 sock
->socket_id
= id
;
266 sock
->card_event
= tifm_dummy_event
;
267 sock
->data_event
= tifm_dummy_event
;
269 sock
->dev
.parent
= fm
->dev
.parent
;
270 sock
->dev
.bus
= &tifm_bus_type
;
271 sock
->dev
.dma_mask
= fm
->dev
.parent
->dma_mask
;
272 sock
->dev
.release
= tifm_free_device
;
274 dev_set_name(&sock
->dev
, "tifm_%s%u:%u",
275 tifm_media_type_name(type
, 2), fm
->id
, id
);
276 printk(KERN_INFO DRIVER_NAME
277 ": %s card detected in socket %u:%u\n",
278 tifm_media_type_name(type
, 0), fm
->id
, id
);
282 EXPORT_SYMBOL(tifm_alloc_device
);
284 void tifm_eject(struct tifm_dev
*sock
)
286 struct tifm_adapter
*fm
= dev_get_drvdata(sock
->dev
.parent
);
289 EXPORT_SYMBOL(tifm_eject
);
291 int tifm_has_ms_pif(struct tifm_dev
*sock
)
293 struct tifm_adapter
*fm
= dev_get_drvdata(sock
->dev
.parent
);
294 return fm
->has_ms_pif(fm
, sock
);
296 EXPORT_SYMBOL(tifm_has_ms_pif
);
298 int tifm_map_sg(struct tifm_dev
*sock
, struct scatterlist
*sg
, int nents
,
301 return pci_map_sg(to_pci_dev(sock
->dev
.parent
), sg
, nents
, direction
);
303 EXPORT_SYMBOL(tifm_map_sg
);
305 void tifm_unmap_sg(struct tifm_dev
*sock
, struct scatterlist
*sg
, int nents
,
308 pci_unmap_sg(to_pci_dev(sock
->dev
.parent
), sg
, nents
, direction
);
310 EXPORT_SYMBOL(tifm_unmap_sg
);
312 void tifm_queue_work(struct work_struct
*work
)
314 queue_work(workqueue
, work
);
316 EXPORT_SYMBOL(tifm_queue_work
);
318 int tifm_register_driver(struct tifm_driver
*drv
)
320 drv
->driver
.bus
= &tifm_bus_type
;
322 return driver_register(&drv
->driver
);
324 EXPORT_SYMBOL(tifm_register_driver
);
326 void tifm_unregister_driver(struct tifm_driver
*drv
)
328 driver_unregister(&drv
->driver
);
330 EXPORT_SYMBOL(tifm_unregister_driver
);
332 static int __init
tifm_init(void)
336 workqueue
= create_freezable_workqueue("tifm");
340 rc
= bus_register(&tifm_bus_type
);
345 rc
= class_register(&tifm_adapter_class
);
349 bus_unregister(&tifm_bus_type
);
352 destroy_workqueue(workqueue
);
357 static void __exit
tifm_exit(void)
359 class_unregister(&tifm_adapter_class
);
360 bus_unregister(&tifm_bus_type
);
361 destroy_workqueue(workqueue
);
364 subsys_initcall(tifm_init
);
365 module_exit(tifm_exit
);
367 MODULE_LICENSE("GPL");
368 MODULE_AUTHOR("Alex Dubov");
369 MODULE_DESCRIPTION("TI FlashMedia core driver");
370 MODULE_LICENSE("GPL");
371 MODULE_VERSION(DRIVER_VERSION
);
This page took 0.040761 seconds and 5 git commands to generate.