blob: ffcb10ac434156adc89e4e9237d30e4ade530830 [file] [log] [blame]
Alex Dubovbaf85322008-02-09 10:20:54 -08001/*
2 * Sony MemoryStick support
3 *
4 * Copyright (C) 2007 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 * Special thanks to Carlos Corbacho for providing various MemoryStick cards
11 * that made this driver possible.
12 *
13 */
14
15#include <linux/memstick.h>
16#include <linux/idr.h>
17#include <linux/fs.h>
18#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090019#include <linux/slab.h>
Paul Gortmakerc47e7892011-07-03 15:12:37 -040020#include <linux/module.h>
Alex Dubovbaf85322008-02-09 10:20:54 -080021
22#define DRIVER_NAME "memstick"
Alex Dubovbaf85322008-02-09 10:20:54 -080023
24static unsigned int cmd_retries = 3;
25module_param(cmd_retries, uint, 0644);
26
27static struct workqueue_struct *workqueue;
28static DEFINE_IDR(memstick_host_idr);
29static DEFINE_SPINLOCK(memstick_host_lock);
30
31static int memstick_dev_match(struct memstick_dev *card,
32 struct memstick_device_id *id)
33{
34 if (id->match_flags & MEMSTICK_MATCH_ALL) {
35 if ((id->type == card->id.type)
36 && (id->category == card->id.category)
37 && (id->class == card->id.class))
38 return 1;
39 }
40
41 return 0;
42}
43
44static int memstick_bus_match(struct device *dev, struct device_driver *drv)
45{
46 struct memstick_dev *card = container_of(dev, struct memstick_dev,
47 dev);
48 struct memstick_driver *ms_drv = container_of(drv,
49 struct memstick_driver,
50 driver);
51 struct memstick_device_id *ids = ms_drv->id_table;
52
53 if (ids) {
54 while (ids->match_flags) {
55 if (memstick_dev_match(card, ids))
56 return 1;
57 ++ids;
58 }
59 }
60 return 0;
61}
62
63static int memstick_uevent(struct device *dev, struct kobj_uevent_env *env)
64{
65 struct memstick_dev *card = container_of(dev, struct memstick_dev,
66 dev);
67
68 if (add_uevent_var(env, "MEMSTICK_TYPE=%02X", card->id.type))
69 return -ENOMEM;
70
71 if (add_uevent_var(env, "MEMSTICK_CATEGORY=%02X", card->id.category))
72 return -ENOMEM;
73
74 if (add_uevent_var(env, "MEMSTICK_CLASS=%02X", card->id.class))
75 return -ENOMEM;
76
77 return 0;
78}
79
80static int memstick_device_probe(struct device *dev)
81{
82 struct memstick_dev *card = container_of(dev, struct memstick_dev,
83 dev);
84 struct memstick_driver *drv = container_of(dev->driver,
85 struct memstick_driver,
86 driver);
87 int rc = -ENODEV;
88
89 if (dev->driver && drv->probe) {
90 rc = drv->probe(card);
91 if (!rc)
92 get_device(dev);
93 }
94 return rc;
95}
96
97static int memstick_device_remove(struct device *dev)
98{
99 struct memstick_dev *card = container_of(dev, struct memstick_dev,
100 dev);
101 struct memstick_driver *drv = container_of(dev->driver,
102 struct memstick_driver,
103 driver);
104
105 if (dev->driver && drv->remove) {
106 drv->remove(card);
107 card->dev.driver = NULL;
108 }
109
110 put_device(dev);
111 return 0;
112}
113
114#ifdef CONFIG_PM
115
116static int memstick_device_suspend(struct device *dev, pm_message_t state)
117{
118 struct memstick_dev *card = container_of(dev, struct memstick_dev,
119 dev);
120 struct memstick_driver *drv = container_of(dev->driver,
121 struct memstick_driver,
122 driver);
123
124 if (dev->driver && drv->suspend)
125 return drv->suspend(card, state);
126 return 0;
127}
128
129static int memstick_device_resume(struct device *dev)
130{
131 struct memstick_dev *card = container_of(dev, struct memstick_dev,
132 dev);
133 struct memstick_driver *drv = container_of(dev->driver,
134 struct memstick_driver,
135 driver);
136
137 if (dev->driver && drv->resume)
138 return drv->resume(card);
139 return 0;
140}
141
142#else
143
144#define memstick_device_suspend NULL
145#define memstick_device_resume NULL
146
147#endif /* CONFIG_PM */
148
149#define MEMSTICK_ATTR(name, format) \
150static ssize_t name##_show(struct device *dev, struct device_attribute *attr, \
151 char *buf) \
152{ \
153 struct memstick_dev *card = container_of(dev, struct memstick_dev, \
154 dev); \
155 return sprintf(buf, format, card->id.name); \
156}
157
158MEMSTICK_ATTR(type, "%02X");
159MEMSTICK_ATTR(category, "%02X");
160MEMSTICK_ATTR(class, "%02X");
161
162#define MEMSTICK_ATTR_RO(name) __ATTR(name, S_IRUGO, name##_show, NULL)
163
164static struct device_attribute memstick_dev_attrs[] = {
165 MEMSTICK_ATTR_RO(type),
166 MEMSTICK_ATTR_RO(category),
167 MEMSTICK_ATTR_RO(class),
168 __ATTR_NULL
169};
170
171static struct bus_type memstick_bus_type = {
172 .name = "memstick",
173 .dev_attrs = memstick_dev_attrs,
174 .match = memstick_bus_match,
175 .uevent = memstick_uevent,
176 .probe = memstick_device_probe,
177 .remove = memstick_device_remove,
178 .suspend = memstick_device_suspend,
179 .resume = memstick_device_resume
180};
181
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100182static void memstick_free(struct device *dev)
Alex Dubovbaf85322008-02-09 10:20:54 -0800183{
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100184 struct memstick_host *host = container_of(dev, struct memstick_host,
185 dev);
Alex Dubovbaf85322008-02-09 10:20:54 -0800186 kfree(host);
187}
188
189static struct class memstick_host_class = {
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700190 .name = "memstick_host",
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100191 .dev_release = memstick_free
Alex Dubovbaf85322008-02-09 10:20:54 -0800192};
193
194static void memstick_free_card(struct device *dev)
195{
196 struct memstick_dev *card = container_of(dev, struct memstick_dev,
197 dev);
198 kfree(card);
199}
200
201static int memstick_dummy_check(struct memstick_dev *card)
202{
203 return 0;
204}
205
206/**
207 * memstick_detect_change - schedule media detection on memstick host
208 * @host - host to use
209 */
210void memstick_detect_change(struct memstick_host *host)
211{
212 queue_work(workqueue, &host->media_checker);
213}
214EXPORT_SYMBOL(memstick_detect_change);
215
216/**
217 * memstick_next_req - called by host driver to obtain next request to process
218 * @host - host to use
219 * @mrq - pointer to stick the request to
220 *
221 * Host calls this function from idle state (*mrq == NULL) or after finishing
222 * previous request (*mrq should point to it). If previous request was
223 * unsuccessful, it is retried for predetermined number of times. Return value
224 * of 0 means that new request was assigned to the host.
225 */
226int memstick_next_req(struct memstick_host *host, struct memstick_request **mrq)
227{
228 int rc = -ENXIO;
229
230 if ((*mrq) && (*mrq)->error && host->retries) {
231 (*mrq)->error = rc;
232 host->retries--;
233 return 0;
234 }
235
236 if (host->card && host->card->next_request)
237 rc = host->card->next_request(host->card, mrq);
238
239 if (!rc)
Alex Dubov29196dc2008-03-10 11:43:38 -0700240 host->retries = cmd_retries > 1 ? cmd_retries - 1 : 1;
Alex Dubovbaf85322008-02-09 10:20:54 -0800241 else
242 *mrq = NULL;
243
244 return rc;
245}
246EXPORT_SYMBOL(memstick_next_req);
247
248/**
249 * memstick_new_req - notify the host that some requests are pending
250 * @host - host to use
251 */
252void memstick_new_req(struct memstick_host *host)
253{
Alex Dubovf1d82692008-07-25 19:45:02 -0700254 if (host->card) {
255 host->retries = cmd_retries;
256 INIT_COMPLETION(host->card->mrq_complete);
257 host->request(host);
258 }
Alex Dubovbaf85322008-02-09 10:20:54 -0800259}
260EXPORT_SYMBOL(memstick_new_req);
261
262/**
263 * memstick_init_req_sg - set request fields needed for bulk data transfer
264 * @mrq - request to use
265 * @tpc - memstick Transport Protocol Command
266 * @sg - TPC argument
267 */
268void memstick_init_req_sg(struct memstick_request *mrq, unsigned char tpc,
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700269 const struct scatterlist *sg)
Alex Dubovbaf85322008-02-09 10:20:54 -0800270{
271 mrq->tpc = tpc;
272 if (tpc & 8)
273 mrq->data_dir = WRITE;
274 else
275 mrq->data_dir = READ;
276
277 mrq->sg = *sg;
Alex Dubove1f19992008-03-10 11:43:37 -0700278 mrq->long_data = 1;
Alex Dubovbaf85322008-02-09 10:20:54 -0800279
280 if (tpc == MS_TPC_SET_CMD || tpc == MS_TPC_EX_SET_CMD)
281 mrq->need_card_int = 1;
282 else
283 mrq->need_card_int = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800284}
285EXPORT_SYMBOL(memstick_init_req_sg);
286
287/**
288 * memstick_init_req - set request fields needed for short data transfer
289 * @mrq - request to use
290 * @tpc - memstick Transport Protocol Command
291 * @buf - TPC argument buffer
292 * @length - TPC argument size
293 *
294 * The intended use of this function (transfer of data items several bytes
295 * in size) allows us to just copy the value between request structure and
296 * user supplied buffer.
297 */
298void memstick_init_req(struct memstick_request *mrq, unsigned char tpc,
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700299 const void *buf, size_t length)
Alex Dubovbaf85322008-02-09 10:20:54 -0800300{
301 mrq->tpc = tpc;
302 if (tpc & 8)
303 mrq->data_dir = WRITE;
304 else
305 mrq->data_dir = READ;
306
307 mrq->data_len = length > sizeof(mrq->data) ? sizeof(mrq->data) : length;
308 if (mrq->data_dir == WRITE)
309 memcpy(mrq->data, buf, mrq->data_len);
310
Alex Dubove1f19992008-03-10 11:43:37 -0700311 mrq->long_data = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800312
313 if (tpc == MS_TPC_SET_CMD || tpc == MS_TPC_EX_SET_CMD)
314 mrq->need_card_int = 1;
315 else
316 mrq->need_card_int = 0;
Alex Dubovbaf85322008-02-09 10:20:54 -0800317}
318EXPORT_SYMBOL(memstick_init_req);
319
320/*
321 * Functions prefixed with "h_" are protocol callbacks. They can be called from
322 * interrupt context. Return value of 0 means that request processing is still
323 * ongoing, while special error value of -EAGAIN means that current request is
324 * finished (and request processor should come back some time later).
325 */
326
327static int h_memstick_read_dev_id(struct memstick_dev *card,
328 struct memstick_request **mrq)
329{
330 struct ms_id_register id_reg;
331
332 if (!(*mrq)) {
333 memstick_init_req(&card->current_mrq, MS_TPC_READ_REG, NULL,
334 sizeof(struct ms_id_register));
335 *mrq = &card->current_mrq;
336 return 0;
337 } else {
338 if (!(*mrq)->error) {
339 memcpy(&id_reg, (*mrq)->data, sizeof(id_reg));
340 card->id.match_flags = MEMSTICK_MATCH_ALL;
341 card->id.type = id_reg.type;
342 card->id.category = id_reg.category;
343 card->id.class = id_reg.class;
Jiri Slabyb873c2f2009-09-23 15:57:31 -0700344 dev_dbg(&card->dev, "if_mode = %02x\n", id_reg.if_mode);
Alex Dubovbaf85322008-02-09 10:20:54 -0800345 }
346 complete(&card->mrq_complete);
347 return -EAGAIN;
348 }
349}
350
351static int h_memstick_set_rw_addr(struct memstick_dev *card,
352 struct memstick_request **mrq)
353{
354 if (!(*mrq)) {
355 memstick_init_req(&card->current_mrq, MS_TPC_SET_RW_REG_ADRS,
356 (char *)&card->reg_addr,
357 sizeof(card->reg_addr));
358 *mrq = &card->current_mrq;
359 return 0;
360 } else {
361 complete(&card->mrq_complete);
362 return -EAGAIN;
363 }
364}
365
366/**
367 * memstick_set_rw_addr - issue SET_RW_REG_ADDR request and wait for it to
368 * complete
369 * @card - media device to use
370 */
371int memstick_set_rw_addr(struct memstick_dev *card)
372{
373 card->next_request = h_memstick_set_rw_addr;
374 memstick_new_req(card->host);
375 wait_for_completion(&card->mrq_complete);
376
377 return card->current_mrq.error;
378}
379EXPORT_SYMBOL(memstick_set_rw_addr);
380
381static struct memstick_dev *memstick_alloc_card(struct memstick_host *host)
382{
383 struct memstick_dev *card = kzalloc(sizeof(struct memstick_dev),
384 GFP_KERNEL);
385 struct memstick_dev *old_card = host->card;
386 struct ms_id_register id_reg;
387
388 if (card) {
389 card->host = host;
Kay Sievers0252c3b2009-01-06 10:44:38 -0800390 dev_set_name(&card->dev, "%s", dev_name(&host->dev));
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100391 card->dev.parent = &host->dev;
Alex Dubovbaf85322008-02-09 10:20:54 -0800392 card->dev.bus = &memstick_bus_type;
393 card->dev.release = memstick_free_card;
394 card->check = memstick_dummy_check;
395
396 card->reg_addr.r_offset = offsetof(struct ms_register, id);
397 card->reg_addr.r_length = sizeof(id_reg);
398 card->reg_addr.w_offset = offsetof(struct ms_register, id);
399 card->reg_addr.w_length = sizeof(id_reg);
400
401 init_completion(&card->mrq_complete);
402
403 host->card = card;
404 if (memstick_set_rw_addr(card))
405 goto err_out;
406
407 card->next_request = h_memstick_read_dev_id;
408 memstick_new_req(host);
409 wait_for_completion(&card->mrq_complete);
410
411 if (card->current_mrq.error)
412 goto err_out;
413 }
414 host->card = old_card;
415 return card;
416err_out:
417 host->card = old_card;
418 kfree(card);
419 return NULL;
420}
421
Alex Dubovb7789992008-07-25 19:45:00 -0700422static int memstick_power_on(struct memstick_host *host)
Alex Dubovbaf85322008-02-09 10:20:54 -0800423{
Alex Dubovb7789992008-07-25 19:45:00 -0700424 int rc = host->set_param(host, MEMSTICK_POWER, MEMSTICK_POWER_ON);
425
426 if (!rc)
427 rc = host->set_param(host, MEMSTICK_INTERFACE, MEMSTICK_SERIAL);
428
429 return rc;
Alex Dubovbaf85322008-02-09 10:20:54 -0800430}
431
432static void memstick_check(struct work_struct *work)
433{
434 struct memstick_host *host = container_of(work, struct memstick_host,
435 media_checker);
436 struct memstick_dev *card;
437
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100438 dev_dbg(&host->dev, "memstick_check started\n");
Alex Dubovbaf85322008-02-09 10:20:54 -0800439 mutex_lock(&host->lock);
Alex Dubov17017d82008-07-25 19:45:01 -0700440 if (!host->card) {
441 if (memstick_power_on(host))
442 goto out_power_off;
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700443 } else if (host->card->stop)
Alex Dubov17017d82008-07-25 19:45:01 -0700444 host->card->stop(host->card);
Alex Dubovbaf85322008-02-09 10:20:54 -0800445
446 card = memstick_alloc_card(host);
447
448 if (!card) {
449 if (host->card) {
450 device_unregister(&host->card->dev);
451 host->card = NULL;
452 }
453 } else {
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100454 dev_dbg(&host->dev, "new card %02x, %02x, %02x\n",
Alex Dubovbaf85322008-02-09 10:20:54 -0800455 card->id.type, card->id.category, card->id.class);
456 if (host->card) {
457 if (memstick_set_rw_addr(host->card)
458 || !memstick_dev_match(host->card, &card->id)
459 || !(host->card->check(host->card))) {
460 device_unregister(&host->card->dev);
461 host->card = NULL;
Alex Dubov8e82f8c2008-09-13 02:33:26 -0700462 } else if (host->card->start)
Alex Dubov17017d82008-07-25 19:45:01 -0700463 host->card->start(host->card);
Alex Dubovbaf85322008-02-09 10:20:54 -0800464 }
465
466 if (!host->card) {
467 host->card = card;
468 if (device_register(&card->dev)) {
Vasiliy Kulikov01933832011-01-12 17:01:00 -0800469 put_device(&card->dev);
Alex Dubovbaf85322008-02-09 10:20:54 -0800470 kfree(host->card);
471 host->card = NULL;
472 }
473 } else
474 kfree(card);
475 }
476
Alex Dubov17017d82008-07-25 19:45:01 -0700477out_power_off:
Alex Dubovbaf85322008-02-09 10:20:54 -0800478 if (!host->card)
479 host->set_param(host, MEMSTICK_POWER, MEMSTICK_POWER_OFF);
480
481 mutex_unlock(&host->lock);
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100482 dev_dbg(&host->dev, "memstick_check finished\n");
Alex Dubovbaf85322008-02-09 10:20:54 -0800483}
484
485/**
486 * memstick_alloc_host - allocate a memstick_host structure
487 * @extra: size of the user private data to allocate
488 * @dev: parent device of the host
489 */
490struct memstick_host *memstick_alloc_host(unsigned int extra,
491 struct device *dev)
492{
493 struct memstick_host *host;
494
495 host = kzalloc(sizeof(struct memstick_host) + extra, GFP_KERNEL);
496 if (host) {
497 mutex_init(&host->lock);
498 INIT_WORK(&host->media_checker, memstick_check);
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100499 host->dev.class = &memstick_host_class;
500 host->dev.parent = dev;
501 device_initialize(&host->dev);
Alex Dubovbaf85322008-02-09 10:20:54 -0800502 }
503 return host;
504}
505EXPORT_SYMBOL(memstick_alloc_host);
506
507/**
508 * memstick_add_host - start request processing on memstick host
509 * @host - host to use
510 */
511int memstick_add_host(struct memstick_host *host)
512{
513 int rc;
514
Tejun Heo7b51f472013-02-27 17:04:28 -0800515 idr_preload(GFP_KERNEL);
516 spin_lock(&memstick_host_lock);
Alex Dubovbaf85322008-02-09 10:20:54 -0800517
Tejun Heo7b51f472013-02-27 17:04:28 -0800518 rc = idr_alloc(&memstick_host_idr, host, 0, 0, GFP_NOWAIT);
519 if (rc >= 0)
520 host->id = rc;
521
522 spin_unlock(&memstick_host_lock);
523 idr_preload_end();
524 if (rc < 0)
525 return rc;
Alex Dubovbaf85322008-02-09 10:20:54 -0800526
Kay Sievers0252c3b2009-01-06 10:44:38 -0800527 dev_set_name(&host->dev, "memstick%u", host->id);
Alex Dubovbaf85322008-02-09 10:20:54 -0800528
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100529 rc = device_add(&host->dev);
Alex Dubovbaf85322008-02-09 10:20:54 -0800530 if (rc) {
531 spin_lock(&memstick_host_lock);
532 idr_remove(&memstick_host_idr, host->id);
533 spin_unlock(&memstick_host_lock);
534 return rc;
535 }
536
537 host->set_param(host, MEMSTICK_POWER, MEMSTICK_POWER_OFF);
538 memstick_detect_change(host);
539 return 0;
540}
541EXPORT_SYMBOL(memstick_add_host);
542
543/**
544 * memstick_remove_host - stop request processing on memstick host
545 * @host - host to use
546 */
547void memstick_remove_host(struct memstick_host *host)
548{
549 flush_workqueue(workqueue);
550 mutex_lock(&host->lock);
551 if (host->card)
552 device_unregister(&host->card->dev);
553 host->card = NULL;
554 host->set_param(host, MEMSTICK_POWER, MEMSTICK_POWER_OFF);
555 mutex_unlock(&host->lock);
556
557 spin_lock(&memstick_host_lock);
558 idr_remove(&memstick_host_idr, host->id);
559 spin_unlock(&memstick_host_lock);
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100560 device_del(&host->dev);
Alex Dubovbaf85322008-02-09 10:20:54 -0800561}
562EXPORT_SYMBOL(memstick_remove_host);
563
564/**
565 * memstick_free_host - free memstick host
566 * @host - host to use
567 */
568void memstick_free_host(struct memstick_host *host)
569{
570 mutex_destroy(&host->lock);
Greg Kroah-Hartmanc4c66cf2008-03-04 00:13:36 +0100571 put_device(&host->dev);
Alex Dubovbaf85322008-02-09 10:20:54 -0800572}
573EXPORT_SYMBOL(memstick_free_host);
574
Alex Dubovd114ad52008-03-10 11:43:38 -0700575/**
576 * memstick_suspend_host - notify bus driver of host suspension
577 * @host - host to use
578 */
579void memstick_suspend_host(struct memstick_host *host)
580{
581 mutex_lock(&host->lock);
582 host->set_param(host, MEMSTICK_POWER, MEMSTICK_POWER_OFF);
583 mutex_unlock(&host->lock);
584}
585EXPORT_SYMBOL(memstick_suspend_host);
586
587/**
588 * memstick_resume_host - notify bus driver of host resumption
589 * @host - host to use
590 */
591void memstick_resume_host(struct memstick_host *host)
592{
Alex Dubovb7789992008-07-25 19:45:00 -0700593 int rc = 0;
594
Alex Dubovd114ad52008-03-10 11:43:38 -0700595 mutex_lock(&host->lock);
Alex Dubovead70772008-03-19 17:01:06 -0700596 if (host->card)
Alex Dubovb7789992008-07-25 19:45:00 -0700597 rc = memstick_power_on(host);
Alex Dubovd114ad52008-03-10 11:43:38 -0700598 mutex_unlock(&host->lock);
Alex Dubovb7789992008-07-25 19:45:00 -0700599
600 if (!rc)
601 memstick_detect_change(host);
Alex Dubovd114ad52008-03-10 11:43:38 -0700602}
603EXPORT_SYMBOL(memstick_resume_host);
604
Alex Dubovbaf85322008-02-09 10:20:54 -0800605int memstick_register_driver(struct memstick_driver *drv)
606{
607 drv->driver.bus = &memstick_bus_type;
608
609 return driver_register(&drv->driver);
610}
611EXPORT_SYMBOL(memstick_register_driver);
612
613void memstick_unregister_driver(struct memstick_driver *drv)
614{
615 driver_unregister(&drv->driver);
616}
617EXPORT_SYMBOL(memstick_unregister_driver);
618
619
620static int __init memstick_init(void)
621{
622 int rc;
623
Tejun Heo58a69cb2011-02-16 09:25:31 +0100624 workqueue = create_freezable_workqueue("kmemstick");
Alex Dubovbaf85322008-02-09 10:20:54 -0800625 if (!workqueue)
626 return -ENOMEM;
627
628 rc = bus_register(&memstick_bus_type);
629 if (!rc)
630 rc = class_register(&memstick_host_class);
631
632 if (!rc)
633 return 0;
634
635 bus_unregister(&memstick_bus_type);
636 destroy_workqueue(workqueue);
637
638 return rc;
639}
640
641static void __exit memstick_exit(void)
642{
643 class_unregister(&memstick_host_class);
644 bus_unregister(&memstick_bus_type);
645 destroy_workqueue(workqueue);
646 idr_destroy(&memstick_host_idr);
647}
648
649module_init(memstick_init);
650module_exit(memstick_exit);
651
652MODULE_AUTHOR("Alex Dubov");
653MODULE_LICENSE("GPL");
654MODULE_DESCRIPTION("Sony MemoryStick core driver");