[ARM] pxa: Gumstix Verdex PCMCIA support
[linux-2.6/verdex.git] / drivers / net / wimax / i2400m / sdio.c
blob2981e211e04f2b77dd40a6b0bccf0186d7fcab81
1 /*
2 * Intel Wireless WiMAX Connection 2400m
3 * Linux driver model glue for the SDIO device, reset & fw upload
6 * Copyright (C) 2007-2008 Intel Corporation <linux-wimax@intel.com>
7 * Dirk Brandewie <dirk.j.brandewie@intel.com>
8 * Inaky Perez-Gonzalez <inaky.perez-gonzalez@intel.com>
9 * Yanir Lubetkin <yanirx.lubetkin@intel.com>
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License version
13 * 2 as published by the Free Software Foundation.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
23 * 02110-1301, USA.
26 * See i2400m-sdio.h for a general description of this driver.
28 * This file implements driver model glue, and hook ups for the
29 * generic driver to implement the bus-specific functions (device
30 * communication setup/tear down, firmware upload and resetting).
32 * ROADMAP
34 * i2400m_probe()
35 * alloc_netdev()
36 * i2400ms_netdev_setup()
37 * i2400ms_init()
38 * i2400m_netdev_setup()
39 * i2400ms_enable_function()
40 * i2400m_setup()
42 * i2400m_remove()
43 * i2400m_release()
44 * free_netdev(net_dev)
46 * i2400ms_bus_reset() Called by i2400m->bus_reset
47 * __i2400ms_reset()
48 * __i2400ms_send_barker()
50 * i2400ms_bus_dev_start() Called by i2400m_dev_start() [who is
51 * i2400ms_tx_setup() called by i2400m_setup()]
52 * i2400ms_rx_setup()
54 * i2400ms_bus_dev_stop() Called by i2400m_dev_stop() [who is
55 * i2400ms_rx_release() is called by i2400m_release()]
56 * i2400ms_tx_release()
60 #include <linux/debugfs.h>
61 #include <linux/mmc/sdio_ids.h>
62 #include <linux/mmc/sdio.h>
63 #include <linux/mmc/sdio_func.h>
64 #include "i2400m-sdio.h"
65 #include <linux/wimax/i2400m.h>
67 #define D_SUBMODULE main
68 #include "sdio-debug-levels.h"
70 /* IOE WiMAX function timeout in seconds */
71 static int ioe_timeout = 2;
72 module_param(ioe_timeout, int, 0);
74 /* Our firmware file name list */
75 static const char *i2400ms_bus_fw_names[] = {
76 #define I2400MS_FW_FILE_NAME "i2400m-fw-sdio-1.3.sbcf"
77 I2400MS_FW_FILE_NAME,
78 NULL
82 static const struct i2400m_poke_table i2400ms_pokes[] = {
83 I2400M_FW_POKE(0x6BE260, 0x00000088),
84 I2400M_FW_POKE(0x080550, 0x00000005),
85 I2400M_FW_POKE(0xAE0000, 0x00000000),
86 I2400M_FW_POKE(0x000000, 0x00000000), /* MUST be 0 terminated or bad
87 * things will happen */
91 * Enable the SDIO function
93 * Tries to enable the SDIO function; might fail if it is still not
94 * ready (in some hardware, the SDIO WiMAX function is only enabled
95 * when we ask it to explicitly doing). Tries until a timeout is
96 * reached.
98 * The reverse of this is...sdio_disable_function()
100 * Returns: 0 if the SDIO function was enabled, < 0 errno code on
101 * error (-ENODEV when it was unable to enable the function).
103 static
104 int i2400ms_enable_function(struct sdio_func *func)
106 u64 timeout;
107 int err;
108 struct device *dev = &func->dev;
110 d_fnstart(3, dev, "(func %p)\n", func);
111 /* Setup timeout (FIXME: This needs to read the CIS table to
112 * get a real timeout) and then wait for the device to signal
113 * it is ready */
114 timeout = get_jiffies_64() + ioe_timeout * HZ;
115 err = -ENODEV;
116 while (err != 0 && time_before64(get_jiffies_64(), timeout)) {
117 sdio_claim_host(func);
118 err = sdio_enable_func(func);
119 if (0 == err) {
120 sdio_release_host(func);
121 d_printf(2, dev, "SDIO function enabled\n");
122 goto function_enabled;
124 d_printf(2, dev, "SDIO function failed to enable: %d\n", err);
125 sdio_disable_func(func);
126 sdio_release_host(func);
127 msleep(I2400MS_INIT_SLEEP_INTERVAL);
129 /* If timed out, device is not there yet -- get -ENODEV so
130 * the device driver core will retry later on. */
131 if (err == -ETIME) {
132 dev_err(dev, "Can't enable WiMAX function; "
133 " has the function been enabled?\n");
134 err = -ENODEV;
136 function_enabled:
137 d_fnend(3, dev, "(func %p) = %d\n", func, err);
138 return err;
143 * Setup driver resources needed to communicate with the device
145 * The fw needs some time to settle, and it was just uploaded,
146 * so give it a break first. I'd prefer to just wait for the device to
147 * send something, but seems the poking we do to enable SDIO stuff
148 * interferes with it, so just give it a break before starting...
150 static
151 int i2400ms_bus_dev_start(struct i2400m *i2400m)
153 int result;
154 struct i2400ms *i2400ms = container_of(i2400m, struct i2400ms, i2400m);
155 struct sdio_func *func = i2400ms->func;
156 struct device *dev = &func->dev;
158 d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
159 msleep(200);
160 result = i2400ms_tx_setup(i2400ms);
161 if (result < 0)
162 goto error_tx_setup;
163 d_fnend(3, dev, "(i2400m %p) = %d\n", i2400m, result);
164 return result;
166 error_tx_setup:
167 i2400ms_tx_release(i2400ms);
168 d_fnend(3, dev, "(i2400m %p) = void\n", i2400m);
169 return result;
173 static
174 void i2400ms_bus_dev_stop(struct i2400m *i2400m)
176 struct i2400ms *i2400ms = container_of(i2400m, struct i2400ms, i2400m);
177 struct sdio_func *func = i2400ms->func;
178 struct device *dev = &func->dev;
180 d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
181 i2400ms_tx_release(i2400ms);
182 d_fnend(3, dev, "(i2400m %p) = void\n", i2400m);
187 * Sends a barker buffer to the device
189 * This helper will allocate a kmalloced buffer and use it to transmit
190 * (then free it). Reason for this is that the SDIO host controller
191 * expects alignment (unknown exactly which) which the stack won't
192 * really provide and certain arches/host-controller combinations
193 * cannot use stack/vmalloc/text areas for DMA transfers.
195 static
196 int __i2400ms_send_barker(struct i2400ms *i2400ms,
197 const __le32 *barker, size_t barker_size)
199 int ret;
200 struct sdio_func *func = i2400ms->func;
201 struct device *dev = &func->dev;
202 void *buffer;
204 ret = -ENOMEM;
205 buffer = kmalloc(I2400MS_BLK_SIZE, GFP_KERNEL);
206 if (buffer == NULL)
207 goto error_kzalloc;
209 memcpy(buffer, barker, barker_size);
210 sdio_claim_host(func);
211 ret = sdio_memcpy_toio(func, 0, buffer, I2400MS_BLK_SIZE);
212 sdio_release_host(func);
214 if (ret < 0)
215 d_printf(0, dev, "E: barker error: %d\n", ret);
217 kfree(buffer);
218 error_kzalloc:
219 return ret;
224 * Reset a device at different levels (warm, cold or bus)
226 * @i2400ms: device descriptor
227 * @reset_type: soft, warm or bus reset (I2400M_RT_WARM/SOFT/BUS)
229 * FIXME: not tested -- need to confirm expected effects
231 * Warm and cold resets get an SDIO reset if they fail (unimplemented)
233 * Warm reset:
235 * The device will be fully reset internally, but won't be
236 * disconnected from the USB bus (so no reenumeration will
237 * happen). Firmware upload will be neccessary.
239 * The device will send a reboot barker in the notification endpoint
240 * that will trigger the driver to reinitialize the state
241 * automatically from notif.c:i2400m_notification_grok() into
242 * i2400m_dev_bootstrap_delayed().
244 * Cold and bus (USB) reset:
246 * The device will be fully reset internally, disconnected from the
247 * USB bus an a reenumeration will happen. Firmware upload will be
248 * neccessary. Thus, we don't do any locking or struct
249 * reinitialization, as we are going to be fully disconnected and
250 * reenumerated.
252 * Note we need to return -ENODEV if a warm reset was requested and we
253 * had to resort to a bus reset. See i2400m_op_reset(), wimax_reset()
254 * and wimax_dev->op_reset.
256 * WARNING: no driver state saved/fixed
258 static
259 int i2400ms_bus_reset(struct i2400m *i2400m, enum i2400m_reset_type rt)
261 int result = 0;
262 struct i2400ms *i2400ms =
263 container_of(i2400m, struct i2400ms, i2400m);
264 struct device *dev = i2400m_dev(i2400m);
265 static const __le32 i2400m_WARM_BOOT_BARKER[4] = {
266 cpu_to_le32(I2400M_WARM_RESET_BARKER),
267 cpu_to_le32(I2400M_WARM_RESET_BARKER),
268 cpu_to_le32(I2400M_WARM_RESET_BARKER),
269 cpu_to_le32(I2400M_WARM_RESET_BARKER),
271 static const __le32 i2400m_COLD_BOOT_BARKER[4] = {
272 cpu_to_le32(I2400M_COLD_RESET_BARKER),
273 cpu_to_le32(I2400M_COLD_RESET_BARKER),
274 cpu_to_le32(I2400M_COLD_RESET_BARKER),
275 cpu_to_le32(I2400M_COLD_RESET_BARKER),
278 if (rt == I2400M_RT_WARM)
279 result = __i2400ms_send_barker(i2400ms, i2400m_WARM_BOOT_BARKER,
280 sizeof(i2400m_WARM_BOOT_BARKER));
281 else if (rt == I2400M_RT_COLD)
282 result = __i2400ms_send_barker(i2400ms, i2400m_COLD_BOOT_BARKER,
283 sizeof(i2400m_COLD_BOOT_BARKER));
284 else if (rt == I2400M_RT_BUS) {
285 do_bus_reset:
286 /* call netif_tx_disable() before sending IOE disable,
287 * so that all the tx from network layer are stopped
288 * while IOE is being reset. Make sure it is called
289 * only after register_netdev() was issued.
291 if (i2400m->wimax_dev.net_dev->reg_state == NETREG_REGISTERED)
292 netif_tx_disable(i2400m->wimax_dev.net_dev);
294 i2400ms_rx_release(i2400ms);
295 sdio_claim_host(i2400ms->func);
296 sdio_disable_func(i2400ms->func);
297 sdio_release_host(i2400ms->func);
299 /* Wait for the device to settle */
300 msleep(40);
302 result = i2400ms_enable_function(i2400ms->func);
303 if (result >= 0)
304 i2400ms_rx_setup(i2400ms);
305 } else
306 BUG();
307 if (result < 0 && rt != I2400M_RT_BUS) {
308 dev_err(dev, "%s reset failed (%d); trying SDIO reset\n",
309 rt == I2400M_RT_WARM ? "warm" : "cold", result);
310 rt = I2400M_RT_BUS;
311 goto do_bus_reset;
313 return result;
317 static
318 void i2400ms_netdev_setup(struct net_device *net_dev)
320 struct i2400m *i2400m = net_dev_to_i2400m(net_dev);
321 struct i2400ms *i2400ms = container_of(i2400m, struct i2400ms, i2400m);
322 i2400ms_init(i2400ms);
323 i2400m_netdev_setup(net_dev);
328 * Debug levels control; see debug.h
330 struct d_level D_LEVEL[] = {
331 D_SUBMODULE_DEFINE(main),
332 D_SUBMODULE_DEFINE(tx),
333 D_SUBMODULE_DEFINE(rx),
334 D_SUBMODULE_DEFINE(fw),
336 size_t D_LEVEL_SIZE = ARRAY_SIZE(D_LEVEL);
339 #define __debugfs_register(prefix, name, parent) \
340 do { \
341 result = d_level_register_debugfs(prefix, name, parent); \
342 if (result < 0) \
343 goto error; \
344 } while (0)
347 static
348 int i2400ms_debugfs_add(struct i2400ms *i2400ms)
350 int result;
351 struct dentry *dentry = i2400ms->i2400m.wimax_dev.debugfs_dentry;
353 dentry = debugfs_create_dir("i2400m-usb", dentry);
354 result = PTR_ERR(dentry);
355 if (IS_ERR(dentry)) {
356 if (result == -ENODEV)
357 result = 0; /* No debugfs support */
358 goto error;
360 i2400ms->debugfs_dentry = dentry;
361 __debugfs_register("dl_", main, dentry);
362 __debugfs_register("dl_", tx, dentry);
363 __debugfs_register("dl_", rx, dentry);
364 __debugfs_register("dl_", fw, dentry);
366 return 0;
368 error:
369 debugfs_remove_recursive(i2400ms->debugfs_dentry);
370 return result;
374 static struct device_type i2400ms_type = {
375 .name = "wimax",
379 * Probe a i2400m interface and register it
381 * @func: SDIO function
382 * @id: SDIO device ID
383 * @returns: 0 if ok, < 0 errno code on error.
385 * Alloc a net device, initialize the bus-specific details and then
386 * calls the bus-generic initialization routine. That will register
387 * the wimax and netdev devices, upload the firmware [using
388 * _bus_bm_*()], call _bus_dev_start() to finalize the setup of the
389 * communication with the device and then will start to talk to it to
390 * finnish setting it up.
392 * Initialization is tricky; some instances of the hw are packed with
393 * others in a way that requires a third driver that enables the WiMAX
394 * function. In those cases, we can't enable the SDIO function and
395 * we'll return with -ENODEV. When the driver that enables the WiMAX
396 * function does its thing, it has to do a bus_rescan_devices() on the
397 * SDIO bus so this driver is called again to enumerate the WiMAX
398 * function.
400 static
401 int i2400ms_probe(struct sdio_func *func,
402 const struct sdio_device_id *id)
404 int result;
405 struct net_device *net_dev;
406 struct device *dev = &func->dev;
407 struct i2400m *i2400m;
408 struct i2400ms *i2400ms;
410 /* Allocate instance [calls i2400m_netdev_setup() on it]. */
411 result = -ENOMEM;
412 net_dev = alloc_netdev(sizeof(*i2400ms), "wmx%d",
413 i2400ms_netdev_setup);
414 if (net_dev == NULL) {
415 dev_err(dev, "no memory for network device instance\n");
416 goto error_alloc_netdev;
418 SET_NETDEV_DEV(net_dev, dev);
419 SET_NETDEV_DEVTYPE(net_dev, &i2400ms_type);
420 i2400m = net_dev_to_i2400m(net_dev);
421 i2400ms = container_of(i2400m, struct i2400ms, i2400m);
422 i2400m->wimax_dev.net_dev = net_dev;
423 i2400ms->func = func;
424 sdio_set_drvdata(func, i2400ms);
426 i2400m->bus_tx_block_size = I2400MS_BLK_SIZE;
427 i2400m->bus_pl_size_max = I2400MS_PL_SIZE_MAX;
428 i2400m->bus_dev_start = i2400ms_bus_dev_start;
429 i2400m->bus_dev_stop = i2400ms_bus_dev_stop;
430 i2400m->bus_tx_kick = i2400ms_bus_tx_kick;
431 i2400m->bus_reset = i2400ms_bus_reset;
432 /* The iwmc3200-wimax sometimes requires the driver to try
433 * hard when we paint it into a corner. */
434 i2400m->bus_bm_retries = I3200_BOOT_RETRIES;
435 i2400m->bus_bm_cmd_send = i2400ms_bus_bm_cmd_send;
436 i2400m->bus_bm_wait_for_ack = i2400ms_bus_bm_wait_for_ack;
437 i2400m->bus_fw_names = i2400ms_bus_fw_names;
438 i2400m->bus_bm_mac_addr_impaired = 1;
439 i2400m->bus_bm_pokes_table = &i2400ms_pokes[0];
441 sdio_claim_host(func);
442 result = sdio_set_block_size(func, I2400MS_BLK_SIZE);
443 sdio_release_host(func);
444 if (result < 0) {
445 dev_err(dev, "Failed to set block size: %d\n", result);
446 goto error_set_blk_size;
449 result = i2400ms_enable_function(i2400ms->func);
450 if (result < 0) {
451 dev_err(dev, "Cannot enable SDIO function: %d\n", result);
452 goto error_func_enable;
455 result = i2400ms_rx_setup(i2400ms);
456 if (result < 0)
457 goto error_rx_setup;
459 result = i2400m_setup(i2400m, I2400M_BRI_NO_REBOOT);
460 if (result < 0) {
461 dev_err(dev, "cannot setup device: %d\n", result);
462 goto error_setup;
465 result = i2400ms_debugfs_add(i2400ms);
466 if (result < 0) {
467 dev_err(dev, "cannot create SDIO debugfs: %d\n",
468 result);
469 goto error_debugfs_add;
471 return 0;
473 error_debugfs_add:
474 i2400m_release(i2400m);
475 error_setup:
476 i2400ms_rx_release(i2400ms);
477 error_rx_setup:
478 sdio_claim_host(func);
479 sdio_disable_func(func);
480 sdio_release_host(func);
481 error_func_enable:
482 error_set_blk_size:
483 sdio_set_drvdata(func, NULL);
484 free_netdev(net_dev);
485 error_alloc_netdev:
486 return result;
490 static
491 void i2400ms_remove(struct sdio_func *func)
493 struct device *dev = &func->dev;
494 struct i2400ms *i2400ms = sdio_get_drvdata(func);
495 struct i2400m *i2400m = &i2400ms->i2400m;
496 struct net_device *net_dev = i2400m->wimax_dev.net_dev;
498 d_fnstart(3, dev, "SDIO func %p\n", func);
499 debugfs_remove_recursive(i2400ms->debugfs_dentry);
500 i2400ms_rx_release(i2400ms);
501 i2400m_release(i2400m);
502 sdio_set_drvdata(func, NULL);
503 sdio_claim_host(func);
504 sdio_disable_func(func);
505 sdio_release_host(func);
506 free_netdev(net_dev);
507 d_fnend(3, dev, "SDIO func %p\n", func);
510 static
511 const struct sdio_device_id i2400ms_sdio_ids[] = {
512 /* Intel: i2400m WiMAX (iwmc3200) over SDIO */
513 { SDIO_DEVICE(SDIO_VENDOR_ID_INTEL,
514 SDIO_DEVICE_ID_INTEL_IWMC3200WIMAX) },
515 { /* end: all zeroes */ },
517 MODULE_DEVICE_TABLE(sdio, i2400ms_sdio_ids);
520 static
521 struct sdio_driver i2400m_sdio_driver = {
522 .name = KBUILD_MODNAME,
523 .probe = i2400ms_probe,
524 .remove = i2400ms_remove,
525 .id_table = i2400ms_sdio_ids,
529 static
530 int __init i2400ms_driver_init(void)
532 return sdio_register_driver(&i2400m_sdio_driver);
534 module_init(i2400ms_driver_init);
537 static
538 void __exit i2400ms_driver_exit(void)
540 flush_scheduled_work(); /* for the stuff we schedule */
541 sdio_unregister_driver(&i2400m_sdio_driver);
543 module_exit(i2400ms_driver_exit);
546 MODULE_AUTHOR("Intel Corporation <linux-wimax@intel.com>");
547 MODULE_DESCRIPTION("Intel 2400M WiMAX networking for SDIO");
548 MODULE_LICENSE("GPL");
549 MODULE_FIRMWARE(I2400MS_FW_FILE_NAME);