2 * smssdio.c - Siano 1xxx SDIO interface driver
4 * Copyright 2008 Pierre Ossman
6 * Based on code by Siano Mobile Silicon, Inc.,
7 * Copyright (C) 2006-2008, Uri Shkolnik
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or (at
12 * your option) any later version.
15 * This hardware is a bit odd in that all transfers should be done
16 * to/from the SMSSDIO_DATA register, yet the "increase address" bit
17 * always needs to be set.
19 * Also, buffers from the card are always aligned to 128 byte
24 * General cleanup notes:
26 * - only typedefs should be name *_t
28 * - use ERR_PTR and friends for smscore_register_device()
30 * - smscore_getbuffer should zero fields
35 #include <linux/moduleparam.h>
36 #include <linux/slab.h>
37 #include <linux/firmware.h>
38 #include <linux/delay.h>
39 #include <linux/mmc/card.h>
40 #include <linux/mmc/sdio_func.h>
41 #include <linux/mmc/sdio_ids.h>
43 #include "smscoreapi.h"
44 #include "sms-cards.h"
48 #define SMSSDIO_DATA 0x00
49 #define SMSSDIO_INT 0x04
50 #define SMSSDIO_BLOCK_SIZE 128
52 static const struct sdio_device_id smssdio_ids
[] __devinitconst
= {
53 {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO
, SDIO_DEVICE_ID_SIANO_STELLAR
),
54 .driver_data
= SMS1XXX_BOARD_SIANO_STELLAR
},
55 {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO
, SDIO_DEVICE_ID_SIANO_NOVA_A0
),
56 .driver_data
= SMS1XXX_BOARD_SIANO_NOVA_A
},
57 {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO
, SDIO_DEVICE_ID_SIANO_NOVA_B0
),
58 .driver_data
= SMS1XXX_BOARD_SIANO_NOVA_B
},
59 {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO
, SDIO_DEVICE_ID_SIANO_VEGA_A0
),
60 .driver_data
= SMS1XXX_BOARD_SIANO_VEGA
},
61 {SDIO_DEVICE(SDIO_VENDOR_ID_SIANO
, SDIO_DEVICE_ID_SIANO_VENICE
),
62 .driver_data
= SMS1XXX_BOARD_SIANO_VEGA
},
63 { /* end: all zeroes */ },
66 MODULE_DEVICE_TABLE(sdio
, smssdio_ids
);
68 struct smssdio_device
{
69 struct sdio_func
*func
;
71 struct smscore_device_t
*coredev
;
73 struct smscore_buffer_t
*split_cb
;
76 /*******************************************************************/
77 /* Siano core callbacks */
78 /*******************************************************************/
80 static int smssdio_sendrequest(void *context
, void *buffer
, size_t size
)
83 struct smssdio_device
*smsdev
;
87 sdio_claim_host(smsdev
->func
);
89 while (size
>= smsdev
->func
->cur_blksize
) {
90 ret
= sdio_memcpy_toio(smsdev
->func
, SMSSDIO_DATA
,
91 buffer
, smsdev
->func
->cur_blksize
);
95 buffer
+= smsdev
->func
->cur_blksize
;
96 size
-= smsdev
->func
->cur_blksize
;
100 ret
= sdio_memcpy_toio(smsdev
->func
, SMSSDIO_DATA
,
105 sdio_release_host(smsdev
->func
);
110 /*******************************************************************/
112 /*******************************************************************/
114 static void smssdio_interrupt(struct sdio_func
*func
)
118 struct smssdio_device
*smsdev
;
119 struct smscore_buffer_t
*cb
;
120 struct SmsMsgHdr_ST
*hdr
;
123 smsdev
= sdio_get_drvdata(func
);
126 * The interrupt register has no defined meaning. It is just
127 * a way of turning of the level triggered interrupt.
129 isr
= sdio_readb(func
, SMSSDIO_INT
, &ret
);
131 sms_err("Unable to read interrupt register!\n");
135 if (smsdev
->split_cb
== NULL
) {
136 cb
= smscore_getbuffer(smsdev
->coredev
);
138 sms_err("Unable to allocate data buffer!\n");
142 ret
= sdio_memcpy_fromio(smsdev
->func
,
147 sms_err("Error %d reading initial block!\n", ret
);
153 if (hdr
->msgFlags
& MSG_HDR_FLAG_SPLIT_MSG
) {
154 smsdev
->split_cb
= cb
;
158 if (hdr
->msgLength
> smsdev
->func
->cur_blksize
)
159 size
= hdr
->msgLength
- smsdev
->func
->cur_blksize
;
163 cb
= smsdev
->split_cb
;
166 size
= hdr
->msgLength
- sizeof(struct SmsMsgHdr_ST
);
168 smsdev
->split_cb
= NULL
;
174 buffer
= cb
->p
+ (hdr
->msgLength
- size
);
175 size
= ALIGN(size
, SMSSDIO_BLOCK_SIZE
);
177 BUG_ON(smsdev
->func
->cur_blksize
!= SMSSDIO_BLOCK_SIZE
);
180 * First attempt to transfer all of it in one go...
182 ret
= sdio_memcpy_fromio(smsdev
->func
,
186 if (ret
&& ret
!= -EINVAL
) {
187 smscore_putbuffer(smsdev
->coredev
, cb
);
188 sms_err("Error %d reading data from card!\n", ret
);
193 * ..then fall back to one block at a time if that is
196 * (we have to do this manually because of the
197 * problem with the "increase address" bit)
199 if (ret
== -EINVAL
) {
201 ret
= sdio_memcpy_fromio(smsdev
->func
,
202 buffer
, SMSSDIO_DATA
,
203 smsdev
->func
->cur_blksize
);
205 smscore_putbuffer(smsdev
->coredev
, cb
);
206 sms_err("Error %d reading "
207 "data from card!\n", ret
);
211 buffer
+= smsdev
->func
->cur_blksize
;
212 if (size
> smsdev
->func
->cur_blksize
)
213 size
-= smsdev
->func
->cur_blksize
;
220 cb
->size
= hdr
->msgLength
;
223 smscore_onresponse(smsdev
->coredev
, cb
);
226 static int __devinit
smssdio_probe(struct sdio_func
*func
,
227 const struct sdio_device_id
*id
)
232 struct smssdio_device
*smsdev
;
233 struct smsdevice_params_t params
;
235 board_id
= id
->driver_data
;
237 smsdev
= kzalloc(sizeof(struct smssdio_device
), GFP_KERNEL
);
243 memset(¶ms
, 0, sizeof(struct smsdevice_params_t
));
245 params
.device
= &func
->dev
;
246 params
.buffer_size
= 0x5000; /* ?? */
247 params
.num_buffers
= 22; /* ?? */
248 params
.context
= smsdev
;
250 snprintf(params
.devpath
, sizeof(params
.devpath
),
251 "sdio\\%s", sdio_func_id(func
));
253 params
.sendrequest_handler
= smssdio_sendrequest
;
255 params
.device_type
= sms_get_board(board_id
)->type
;
257 if (params
.device_type
!= SMS_STELLAR
)
258 params
.flags
|= SMS_DEVICE_FAMILY2
;
261 * FIXME: Stellar needs special handling...
267 ret
= smscore_register_device(¶ms
, &smsdev
->coredev
);
271 smscore_set_board_id(smsdev
->coredev
, board_id
);
273 sdio_claim_host(func
);
275 ret
= sdio_enable_func(func
);
279 ret
= sdio_set_block_size(func
, SMSSDIO_BLOCK_SIZE
);
283 ret
= sdio_claim_irq(func
, smssdio_interrupt
);
287 sdio_set_drvdata(func
, smsdev
);
289 sdio_release_host(func
);
291 ret
= smscore_start_device(smsdev
->coredev
);
298 sdio_claim_host(func
);
299 sdio_release_irq(func
);
301 sdio_disable_func(func
);
303 sdio_release_host(func
);
304 smscore_unregister_device(smsdev
->coredev
);
311 static void smssdio_remove(struct sdio_func
*func
)
313 struct smssdio_device
*smsdev
;
315 smsdev
= sdio_get_drvdata(func
);
318 if (smsdev
->split_cb
)
319 smscore_putbuffer(smsdev
->coredev
, smsdev
->split_cb
);
321 smscore_unregister_device(smsdev
->coredev
);
323 sdio_claim_host(func
);
324 sdio_release_irq(func
);
325 sdio_disable_func(func
);
326 sdio_release_host(func
);
331 static struct sdio_driver smssdio_driver
= {
333 .id_table
= smssdio_ids
,
334 .probe
= smssdio_probe
,
335 .remove
= smssdio_remove
,
338 /*******************************************************************/
339 /* Module functions */
340 /*******************************************************************/
342 static int __init
smssdio_module_init(void)
346 printk(KERN_INFO
"smssdio: Siano SMS1xxx SDIO driver\n");
347 printk(KERN_INFO
"smssdio: Copyright Pierre Ossman\n");
349 ret
= sdio_register_driver(&smssdio_driver
);
354 static void __exit
smssdio_module_exit(void)
356 sdio_unregister_driver(&smssdio_driver
);
359 module_init(smssdio_module_init
);
360 module_exit(smssdio_module_exit
);
362 MODULE_DESCRIPTION("Siano SMS1xxx SDIO driver");
363 MODULE_AUTHOR("Pierre Ossman");
364 MODULE_LICENSE("GPL");