sdio.c 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516
  1. /*
  2. * Intel Wireless WiMAX Connection 2400m
  3. * Linux driver model glue for the SDIO device, reset & fw upload
  4. *
  5. *
  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>
  10. *
  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.
  14. *
  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.
  19. *
  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.
  24. *
  25. *
  26. * See i2400m-sdio.h for a general description of this driver.
  27. *
  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).
  31. *
  32. * ROADMAP
  33. *
  34. * i2400m_probe()
  35. * alloc_netdev()
  36. * i2400ms_netdev_setup()
  37. * i2400ms_init()
  38. * i2400m_netdev_setup()
  39. * i2400ms_enable_function()
  40. * i2400m_setup()
  41. *
  42. * i2400m_remove()
  43. * i2400m_release()
  44. * free_netdev(net_dev)
  45. *
  46. * i2400ms_bus_reset() Called by i2400m->bus_reset
  47. * __i2400ms_reset()
  48. * __i2400ms_send_barker()
  49. *
  50. * i2400ms_bus_dev_start() Called by i2400m_dev_start() [who is
  51. * i2400ms_tx_setup() called by i2400m_setup()]
  52. * i2400ms_rx_setup()
  53. *
  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()
  57. *
  58. */
  59. #include <linux/debugfs.h>
  60. #include <linux/mmc/sdio.h>
  61. #include <linux/mmc/sdio_func.h>
  62. #include "i2400m-sdio.h"
  63. #include <linux/wimax/i2400m.h>
  64. #define D_SUBMODULE main
  65. #include "sdio-debug-levels.h"
  66. /* IOE WiMAX function timeout in seconds */
  67. static int ioe_timeout = 2;
  68. module_param(ioe_timeout, int, 0);
  69. /* Our firmware file name list */
  70. static const char *i2400ms_bus_fw_names[] = {
  71. #define I2400MS_FW_FILE_NAME "i2400m-fw-sdio-1.3.sbcf"
  72. I2400MS_FW_FILE_NAME,
  73. NULL
  74. };
  75. /*
  76. * Enable the SDIO function
  77. *
  78. * Tries to enable the SDIO function; might fail if it is still not
  79. * ready (in some hardware, the SDIO WiMAX function is only enabled
  80. * when we ask it to explicitly doing). Tries until a timeout is
  81. * reached.
  82. *
  83. * The reverse of this is...sdio_disable_function()
  84. *
  85. * Returns: 0 if the SDIO function was enabled, < 0 errno code on
  86. * error (-ENODEV when it was unable to enable the function).
  87. */
  88. static
  89. int i2400ms_enable_function(struct sdio_func *func)
  90. {
  91. u64 timeout;
  92. int err;
  93. struct device *dev = &func->dev;
  94. d_fnstart(3, dev, "(func %p)\n", func);
  95. /* Setup timeout (FIXME: This needs to read the CIS table to
  96. * get a real timeout) and then wait for the device to signal
  97. * it is ready */
  98. timeout = get_jiffies_64() + ioe_timeout * HZ;
  99. err = -ENODEV;
  100. while (err != 0 && time_before64(get_jiffies_64(), timeout)) {
  101. sdio_claim_host(func);
  102. err = sdio_enable_func(func);
  103. if (0 == err) {
  104. sdio_release_host(func);
  105. d_printf(2, dev, "SDIO function enabled\n");
  106. goto function_enabled;
  107. }
  108. d_printf(2, dev, "SDIO function failed to enable: %d\n", err);
  109. sdio_disable_func(func);
  110. sdio_release_host(func);
  111. msleep(I2400MS_INIT_SLEEP_INTERVAL);
  112. }
  113. /* If timed out, device is not there yet -- get -ENODEV so
  114. * the device driver core will retry later on. */
  115. if (err == -ETIME) {
  116. dev_err(dev, "Can't enable WiMAX function; "
  117. " has the function been enabled?\n");
  118. err = -ENODEV;
  119. }
  120. function_enabled:
  121. d_fnend(3, dev, "(func %p) = %d\n", func, err);
  122. return err;
  123. }
  124. /*
  125. * Setup driver resources needed to communicate with the device
  126. *
  127. * The fw needs some time to settle, and it was just uploaded,
  128. * so give it a break first. I'd prefer to just wait for the device to
  129. * send something, but seems the poking we do to enable SDIO stuff
  130. * interferes with it, so just give it a break before starting...
  131. */
  132. static
  133. int i2400ms_bus_dev_start(struct i2400m *i2400m)
  134. {
  135. int result;
  136. struct i2400ms *i2400ms = container_of(i2400m, struct i2400ms, i2400m);
  137. struct sdio_func *func = i2400ms->func;
  138. struct device *dev = &func->dev;
  139. d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
  140. msleep(200);
  141. result = i2400ms_rx_setup(i2400ms);
  142. if (result < 0)
  143. goto error_rx_setup;
  144. result = i2400ms_tx_setup(i2400ms);
  145. if (result < 0)
  146. goto error_tx_setup;
  147. d_fnend(3, dev, "(i2400m %p) = %d\n", i2400m, result);
  148. return result;
  149. i2400ms_tx_release(i2400ms);
  150. error_tx_setup:
  151. i2400ms_rx_release(i2400ms);
  152. error_rx_setup:
  153. d_fnend(3, dev, "(i2400m %p) = void\n", i2400m);
  154. return result;
  155. }
  156. static
  157. void i2400ms_bus_dev_stop(struct i2400m *i2400m)
  158. {
  159. struct i2400ms *i2400ms = container_of(i2400m, struct i2400ms, i2400m);
  160. struct sdio_func *func = i2400ms->func;
  161. struct device *dev = &func->dev;
  162. d_fnstart(3, dev, "(i2400m %p)\n", i2400m);
  163. i2400ms_rx_release(i2400ms);
  164. i2400ms_tx_release(i2400ms);
  165. d_fnend(3, dev, "(i2400m %p) = void\n", i2400m);
  166. }
  167. /*
  168. * Sends a barker buffer to the device
  169. *
  170. * This helper will allocate a kmalloced buffer and use it to transmit
  171. * (then free it). Reason for this is that the SDIO host controller
  172. * expects alignment (unknown exactly which) which the stack won't
  173. * really provide and certain arches/host-controller combinations
  174. * cannot use stack/vmalloc/text areas for DMA transfers.
  175. */
  176. static
  177. int __i2400ms_send_barker(struct i2400ms *i2400ms,
  178. const __le32 *barker, size_t barker_size)
  179. {
  180. int ret;
  181. struct sdio_func *func = i2400ms->func;
  182. struct device *dev = &func->dev;
  183. void *buffer;
  184. ret = -ENOMEM;
  185. buffer = kmalloc(I2400MS_BLK_SIZE, GFP_KERNEL);
  186. if (buffer == NULL)
  187. goto error_kzalloc;
  188. memcpy(buffer, barker, barker_size);
  189. sdio_claim_host(func);
  190. ret = sdio_memcpy_toio(func, 0, buffer, I2400MS_BLK_SIZE);
  191. sdio_release_host(func);
  192. if (ret < 0)
  193. d_printf(0, dev, "E: barker error: %d\n", ret);
  194. kfree(buffer);
  195. error_kzalloc:
  196. return ret;
  197. }
  198. /*
  199. * Reset a device at different levels (warm, cold or bus)
  200. *
  201. * @i2400ms: device descriptor
  202. * @reset_type: soft, warm or bus reset (I2400M_RT_WARM/SOFT/BUS)
  203. *
  204. * FIXME: not tested -- need to confirm expected effects
  205. *
  206. * Warm and cold resets get an SDIO reset if they fail (unimplemented)
  207. *
  208. * Warm reset:
  209. *
  210. * The device will be fully reset internally, but won't be
  211. * disconnected from the USB bus (so no reenumeration will
  212. * happen). Firmware upload will be neccessary.
  213. *
  214. * The device will send a reboot barker in the notification endpoint
  215. * that will trigger the driver to reinitialize the state
  216. * automatically from notif.c:i2400m_notification_grok() into
  217. * i2400m_dev_bootstrap_delayed().
  218. *
  219. * Cold and bus (USB) reset:
  220. *
  221. * The device will be fully reset internally, disconnected from the
  222. * USB bus an a reenumeration will happen. Firmware upload will be
  223. * neccessary. Thus, we don't do any locking or struct
  224. * reinitialization, as we are going to be fully disconnected and
  225. * reenumerated.
  226. *
  227. * Note we need to return -ENODEV if a warm reset was requested and we
  228. * had to resort to a bus reset. See i2400m_op_reset(), wimax_reset()
  229. * and wimax_dev->op_reset.
  230. *
  231. * WARNING: no driver state saved/fixed
  232. */
  233. static
  234. int i2400ms_bus_reset(struct i2400m *i2400m, enum i2400m_reset_type rt)
  235. {
  236. int result;
  237. struct i2400ms *i2400ms =
  238. container_of(i2400m, struct i2400ms, i2400m);
  239. struct device *dev = i2400m_dev(i2400m);
  240. static const __le32 i2400m_WARM_BOOT_BARKER[4] = {
  241. cpu_to_le32(I2400M_WARM_RESET_BARKER),
  242. cpu_to_le32(I2400M_WARM_RESET_BARKER),
  243. cpu_to_le32(I2400M_WARM_RESET_BARKER),
  244. cpu_to_le32(I2400M_WARM_RESET_BARKER),
  245. };
  246. static const __le32 i2400m_COLD_BOOT_BARKER[4] = {
  247. cpu_to_le32(I2400M_COLD_RESET_BARKER),
  248. cpu_to_le32(I2400M_COLD_RESET_BARKER),
  249. cpu_to_le32(I2400M_COLD_RESET_BARKER),
  250. cpu_to_le32(I2400M_COLD_RESET_BARKER),
  251. };
  252. if (rt == I2400M_RT_WARM)
  253. result = __i2400ms_send_barker(i2400ms, i2400m_WARM_BOOT_BARKER,
  254. sizeof(i2400m_WARM_BOOT_BARKER));
  255. else if (rt == I2400M_RT_COLD)
  256. result = __i2400ms_send_barker(i2400ms, i2400m_COLD_BOOT_BARKER,
  257. sizeof(i2400m_COLD_BOOT_BARKER));
  258. else if (rt == I2400M_RT_BUS) {
  259. do_bus_reset:
  260. dev_err(dev, "FIXME: SDIO bus reset not implemented\n");
  261. result = rt == I2400M_RT_WARM ? -ENODEV : -ENOSYS;
  262. } else
  263. BUG();
  264. if (result < 0 && rt != I2400M_RT_BUS) {
  265. dev_err(dev, "%s reset failed (%d); trying SDIO reset\n",
  266. rt == I2400M_RT_WARM ? "warm" : "cold", result);
  267. rt = I2400M_RT_BUS;
  268. goto do_bus_reset;
  269. }
  270. return result;
  271. }
  272. static
  273. void i2400ms_netdev_setup(struct net_device *net_dev)
  274. {
  275. struct i2400m *i2400m = net_dev_to_i2400m(net_dev);
  276. struct i2400ms *i2400ms = container_of(i2400m, struct i2400ms, i2400m);
  277. i2400ms_init(i2400ms);
  278. i2400m_netdev_setup(net_dev);
  279. }
  280. /*
  281. * Debug levels control; see debug.h
  282. */
  283. struct d_level D_LEVEL[] = {
  284. D_SUBMODULE_DEFINE(main),
  285. D_SUBMODULE_DEFINE(tx),
  286. D_SUBMODULE_DEFINE(rx),
  287. D_SUBMODULE_DEFINE(fw),
  288. };
  289. size_t D_LEVEL_SIZE = ARRAY_SIZE(D_LEVEL);
  290. #define __debugfs_register(prefix, name, parent) \
  291. do { \
  292. result = d_level_register_debugfs(prefix, name, parent); \
  293. if (result < 0) \
  294. goto error; \
  295. } while (0)
  296. static
  297. int i2400ms_debugfs_add(struct i2400ms *i2400ms)
  298. {
  299. int result;
  300. struct dentry *dentry = i2400ms->i2400m.wimax_dev.debugfs_dentry;
  301. dentry = debugfs_create_dir("i2400m-usb", dentry);
  302. result = PTR_ERR(dentry);
  303. if (IS_ERR(dentry)) {
  304. if (result == -ENODEV)
  305. result = 0; /* No debugfs support */
  306. goto error;
  307. }
  308. i2400ms->debugfs_dentry = dentry;
  309. __debugfs_register("dl_", main, dentry);
  310. __debugfs_register("dl_", tx, dentry);
  311. __debugfs_register("dl_", rx, dentry);
  312. __debugfs_register("dl_", fw, dentry);
  313. return 0;
  314. error:
  315. debugfs_remove_recursive(i2400ms->debugfs_dentry);
  316. return result;
  317. }
  318. /*
  319. * Probe a i2400m interface and register it
  320. *
  321. * @func: SDIO function
  322. * @id: SDIO device ID
  323. * @returns: 0 if ok, < 0 errno code on error.
  324. *
  325. * Alloc a net device, initialize the bus-specific details and then
  326. * calls the bus-generic initialization routine. That will register
  327. * the wimax and netdev devices, upload the firmware [using
  328. * _bus_bm_*()], call _bus_dev_start() to finalize the setup of the
  329. * communication with the device and then will start to talk to it to
  330. * finnish setting it up.
  331. *
  332. * Initialization is tricky; some instances of the hw are packed with
  333. * others in a way that requires a third driver that enables the WiMAX
  334. * function. In those cases, we can't enable the SDIO function and
  335. * we'll return with -ENODEV. When the driver that enables the WiMAX
  336. * function does its thing, it has to do a bus_rescan_devices() on the
  337. * SDIO bus so this driver is called again to enumerate the WiMAX
  338. * function.
  339. */
  340. static
  341. int i2400ms_probe(struct sdio_func *func,
  342. const struct sdio_device_id *id)
  343. {
  344. int result;
  345. struct net_device *net_dev;
  346. struct device *dev = &func->dev;
  347. struct i2400m *i2400m;
  348. struct i2400ms *i2400ms;
  349. /* Allocate instance [calls i2400m_netdev_setup() on it]. */
  350. result = -ENOMEM;
  351. net_dev = alloc_netdev(sizeof(*i2400ms), "wmx%d",
  352. i2400ms_netdev_setup);
  353. if (net_dev == NULL) {
  354. dev_err(dev, "no memory for network device instance\n");
  355. goto error_alloc_netdev;
  356. }
  357. SET_NETDEV_DEV(net_dev, dev);
  358. i2400m = net_dev_to_i2400m(net_dev);
  359. i2400ms = container_of(i2400m, struct i2400ms, i2400m);
  360. i2400m->wimax_dev.net_dev = net_dev;
  361. i2400ms->func = func;
  362. sdio_set_drvdata(func, i2400ms);
  363. i2400m->bus_tx_block_size = I2400MS_BLK_SIZE;
  364. i2400m->bus_pl_size_max = I2400MS_PL_SIZE_MAX;
  365. i2400m->bus_dev_start = i2400ms_bus_dev_start;
  366. i2400m->bus_dev_stop = i2400ms_bus_dev_stop;
  367. i2400m->bus_tx_kick = i2400ms_bus_tx_kick;
  368. i2400m->bus_reset = i2400ms_bus_reset;
  369. i2400m->bus_bm_cmd_send = i2400ms_bus_bm_cmd_send;
  370. i2400m->bus_bm_wait_for_ack = i2400ms_bus_bm_wait_for_ack;
  371. i2400m->bus_fw_names = i2400ms_bus_fw_names;
  372. i2400m->bus_bm_mac_addr_impaired = 1;
  373. result = i2400ms_enable_function(i2400ms->func);
  374. if (result < 0) {
  375. dev_err(dev, "Cannot enable SDIO function: %d\n", result);
  376. goto error_func_enable;
  377. }
  378. sdio_claim_host(func);
  379. result = sdio_set_block_size(func, I2400MS_BLK_SIZE);
  380. if (result < 0) {
  381. dev_err(dev, "Failed to set block size: %d\n", result);
  382. goto error_set_blk_size;
  383. }
  384. sdio_release_host(func);
  385. result = i2400m_setup(i2400m, I2400M_BRI_NO_REBOOT);
  386. if (result < 0) {
  387. dev_err(dev, "cannot setup device: %d\n", result);
  388. goto error_setup;
  389. }
  390. result = i2400ms_debugfs_add(i2400ms);
  391. if (result < 0) {
  392. dev_err(dev, "cannot create SDIO debugfs: %d\n",
  393. result);
  394. goto error_debugfs_add;
  395. }
  396. return 0;
  397. error_debugfs_add:
  398. i2400m_release(i2400m);
  399. error_setup:
  400. sdio_set_drvdata(func, NULL);
  401. sdio_claim_host(func);
  402. error_set_blk_size:
  403. sdio_disable_func(func);
  404. sdio_release_host(func);
  405. error_func_enable:
  406. free_netdev(net_dev);
  407. error_alloc_netdev:
  408. return result;
  409. }
  410. static
  411. void i2400ms_remove(struct sdio_func *func)
  412. {
  413. struct device *dev = &func->dev;
  414. struct i2400ms *i2400ms = sdio_get_drvdata(func);
  415. struct i2400m *i2400m = &i2400ms->i2400m;
  416. struct net_device *net_dev = i2400m->wimax_dev.net_dev;
  417. d_fnstart(3, dev, "SDIO func %p\n", func);
  418. debugfs_remove_recursive(i2400ms->debugfs_dentry);
  419. i2400m_release(i2400m);
  420. sdio_set_drvdata(func, NULL);
  421. sdio_claim_host(func);
  422. sdio_disable_func(func);
  423. sdio_release_host(func);
  424. free_netdev(net_dev);
  425. d_fnend(3, dev, "SDIO func %p\n", func);
  426. }
  427. enum {
  428. I2400MS_INTEL_VID = 0x89,
  429. };
  430. static
  431. const struct sdio_device_id i2400ms_sdio_ids[] = {
  432. /* Intel: i2400m WiMAX over SDIO */
  433. { SDIO_DEVICE(I2400MS_INTEL_VID, 0x1402) },
  434. { }, /* end: all zeroes */
  435. };
  436. MODULE_DEVICE_TABLE(sdio, i2400ms_sdio_ids);
  437. static
  438. struct sdio_driver i2400m_sdio_driver = {
  439. .name = KBUILD_MODNAME,
  440. .probe = i2400ms_probe,
  441. .remove = i2400ms_remove,
  442. .id_table = i2400ms_sdio_ids,
  443. };
  444. static
  445. int __init i2400ms_driver_init(void)
  446. {
  447. return sdio_register_driver(&i2400m_sdio_driver);
  448. }
  449. module_init(i2400ms_driver_init);
  450. static
  451. void __exit i2400ms_driver_exit(void)
  452. {
  453. flush_scheduled_work(); /* for the stuff we schedule */
  454. sdio_unregister_driver(&i2400m_sdio_driver);
  455. }
  456. module_exit(i2400ms_driver_exit);
  457. MODULE_AUTHOR("Intel Corporation <linux-wimax@intel.com>");
  458. MODULE_DESCRIPTION("Intel 2400M WiMAX networking for SDIO");
  459. MODULE_LICENSE("GPL");
  460. MODULE_FIRMWARE(I2400MS_FW_FILE_NAME);