sdio.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884
  1. /*
  2. * Copyright (c) 2017 Actions Semiconductor Co., Ltd
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #define LOG_LEVEL CONFIG_MMC_LOG_LEVEL
  7. #include <logging/log.h>
  8. LOG_MODULE_REGISTER(sdio_acts);
  9. #include <kernel.h>
  10. #include <init.h>
  11. #include <device.h>
  12. #include <irq.h>
  13. #include <drivers/mmc/mmc.h>
  14. #include <drivers/mmc/sdio.h>
  15. #include <soc.h>
  16. #include "mmc_ops.h"
  17. #define MAX_FUNC_DEVICE_NUM 1
  18. #define SDIO_CMD_TIMEOUT_US (200 * 1000)
  19. struct sdio_func
  20. {
  21. struct device *host; /* the card this device belongs to */
  22. #ifdef CONFIG_WIFI_RTL8189FTV
  23. sdio_irq_handler_t *callback;
  24. unsigned int max_blksize; /* maximum block size */ //add
  25. unsigned int cur_blksize; /* current block size */
  26. unsigned int enable_timeout; /* max enable timeout in msec */ //add
  27. unsigned int num; /* function number */
  28. struct k_mutex host_lock;
  29. #else
  30. struct k_mutex host_lock;
  31. sdio_irq_handler_t *callback;
  32. unsigned int num; /* function number */
  33. unsigned cur_blksize; /* current block size */
  34. #endif
  35. uint32_t rca; /* device rca */
  36. bool dev_scan_done; /* scan and find device */
  37. #ifdef CONFIG_MMC_SDIO_ISR_THREAD
  38. k_tid_t sdio_isr_thread_pid;
  39. #endif
  40. };
  41. #ifdef CONFIG_MMC_SDIO_ISR_THREAD
  42. static struct k_thread sdio_isr_thread;
  43. #ifdef CONFIG_WIFI_RTL8189FTV
  44. static K_THREAD_STACK_DEFINE(sdio_isr_thread_stack, 3096);
  45. #else
  46. static K_THREAD_STACK_DEFINE(sdio_isr_thread_stack, 896);
  47. #endif
  48. static struct k_sem sdio_isr_thread_sem;
  49. #endif
  50. #if defined(CONFIG_WIFI_RTL8189FTV) && defined(CONFIG_MMC_SDIO_ISR_THREAD)
  51. #define CHECK_SDIO_IRQ_INTERVAL 2000 /* 2s */
  52. static void sdio_check_irq_timer_callback(struct k_timer *timer);
  53. K_TIMER_DEFINE(check_irq_timer, sdio_check_irq_timer_callback, NULL);
  54. static uint32_t sdio_irq_pre_cnt = 0, sdio_irq_cur_cnt = 0;
  55. static void sdio_check_irq_timer_callback(struct k_timer *timer)
  56. {
  57. if (sdio_irq_cur_cnt == sdio_irq_pre_cnt) {
  58. k_sem_give(&sdio_isr_thread_sem);
  59. } else {
  60. sdio_irq_pre_cnt = sdio_irq_cur_cnt;
  61. }
  62. }
  63. #endif
  64. int mmc_send_io_op_cond(struct device *mmc_dev, uint32_t ocr, uint32_t *rocr)
  65. {
  66. struct mmc_cmd cmd = {0};
  67. int i, err = 0;
  68. cmd.opcode = SD_IO_SEND_OP_COND;
  69. cmd.arg = ocr;
  70. cmd.flags = MMC_RSP_R4 | MMC_CMD_BCR;
  71. for (i = 10; i; i--) {
  72. err = mmc_send_cmd(mmc_dev, &cmd);
  73. if (err)
  74. break;
  75. /* if we're just probing, do a single pass */
  76. if (ocr == 0)
  77. break;
  78. if (cmd.resp[0] & MMC_CARD_BUSY)
  79. break;
  80. err = -ETIMEDOUT;
  81. k_sleep(10);
  82. }
  83. if (rocr)
  84. *rocr = cmd.resp[0];
  85. return err;
  86. }
  87. int mmc_io_rw_direct(struct device *mmc_dev, int write, unsigned fn,
  88. unsigned addr, uint8_t in, uint8_t *out)
  89. {
  90. struct mmc_cmd cmd = {0};
  91. uint32_t arg;
  92. int ret;
  93. /* sanity check */
  94. if (addr & ~0x1ffff)
  95. return -EINVAL;
  96. /*
  97. * SD_IO_RW_DIRECT argument format:
  98. *
  99. * [31] R/W flag
  100. * [30:28] Function number
  101. * [27] RAW flag
  102. * [25:9] Register address
  103. * [7:0] Data
  104. */
  105. arg = write ? 0x80000000 : 0x00000000;
  106. arg |= fn << 28;
  107. arg |= (write && out) ? 0x08000000 : 0x00000000;
  108. arg |= addr << 9;
  109. arg |= in;
  110. cmd.opcode = SD_IO_RW_DIRECT;
  111. cmd.arg = arg;
  112. cmd.flags = MMC_RSP_R5 | MMC_CMD_AC;
  113. ret = mmc_send_cmd(mmc_dev, &cmd);
  114. if (ret) {
  115. LOG_ERR("direct r/w failed, ret %d", ret);
  116. return ret;
  117. }
  118. if (cmd.resp[0] & (R5_ERROR | R5_FUNCTION_NUMBER | R5_OUT_OF_RANGE)) {
  119. LOG_ERR("direct r/w failed, resp 0x%x", cmd.resp[0]);
  120. return -1;
  121. }
  122. if (out)
  123. *out = cmd.resp[0] & 0xff;
  124. return 0;
  125. }
  126. int mmc_io_rw_extended(struct device *mmc_dev, int write, uint32_t fn, uint32_t addr,
  127. uint32_t incr_addr, uint8_t *buf, uint32_t blocks, uint32_t blksz)
  128. {
  129. struct mmc_cmd cmd = {0};
  130. uint32_t arg;
  131. int ret;
  132. /* sanity check */
  133. if (addr & ~0x1ffff)
  134. return -EINVAL;
  135. /*
  136. * SD_IO_RW_EXTENDED argument format:
  137. *
  138. * [31] R/W flag
  139. * [30:28] Function number
  140. * [27] Block mode
  141. * [26] Increment address
  142. * [25:9] Register address
  143. * [8:0] Byte/block count
  144. */
  145. arg = write ? 0x80000000 : 0x00000000;
  146. arg |= fn << 28;
  147. arg |= incr_addr ? 0x04000000 : 0x00000000;
  148. arg |= addr << 9;
  149. if (blocks == 0)
  150. arg |= (blksz == 512) ? 0 : blksz; /* byte mode */
  151. else
  152. arg |= 0x08000000 | blocks; /* block mode */
  153. cmd.opcode = SD_IO_RW_EXTENDED;
  154. cmd.arg = arg;
  155. cmd.blk_size = blksz;
  156. cmd.blk_num = (blocks == 0) ? 1 : blocks;
  157. cmd.buf = buf;
  158. cmd.flags = MMC_RSP_R5 | MMC_CMD_ADTC;
  159. cmd.flags |= write ? MMC_DATA_WRITE : MMC_DATA_READ;
  160. ret = mmc_send_cmd(mmc_dev, &cmd);
  161. if (ret) {
  162. LOG_ERR("sdio extended r/w failed, ret %d\n", ret);
  163. return ret;
  164. }
  165. if (cmd.resp[0] & (R5_ERROR | R5_FUNCTION_NUMBER | R5_OUT_OF_RANGE)) {
  166. LOG_ERR("sdio direct r/w failed, resp 0x%x\n", cmd.resp[0]);
  167. return -1;
  168. }
  169. return 0;
  170. }
  171. /*
  172. * Test if the card supports high-speed mode and, if so, switch to it.
  173. */
  174. static int mmc_sdio_switch_hs(struct device *mmc_dev, int enable)
  175. {
  176. int ret;
  177. uint8_t speed;
  178. ret = mmc_io_rw_direct(mmc_dev, 0, 0, SDIO_CCCR_SPEED, 0, &speed);
  179. if (ret)
  180. return ret;
  181. if (!(speed & SDIO_SPEED_SHS)) {
  182. return 0;
  183. }
  184. if (enable)
  185. speed |= SDIO_SPEED_EHS;
  186. else
  187. speed &= ~SDIO_SPEED_EHS;
  188. ret = mmc_io_rw_direct(mmc_dev, 1, 0, SDIO_CCCR_SPEED, speed, NULL);
  189. if (ret)
  190. return ret;
  191. return 1;
  192. }
  193. static int sdio_enable_4bit_bus(struct device *mmc_dev)
  194. {
  195. int ret;
  196. uint32_t caps;
  197. uint8_t ctrl;
  198. caps = mmc_get_capability(mmc_dev);
  199. if (!(caps & MMC_CAP_4_BIT_DATA))
  200. return 0;
  201. ret = mmc_io_rw_direct(mmc_dev, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
  202. if (ret)
  203. return ret;
  204. /* set as 4-bit bus width */
  205. ctrl &= ~SDIO_BUS_WIDTH_MASK;
  206. ctrl |= SDIO_BUS_WIDTH_4BIT;
  207. ret = mmc_io_rw_direct(mmc_dev, 1, 0, SDIO_CCCR_IF, ctrl, NULL);
  208. if (ret)
  209. return ret;
  210. ret = mmc_io_rw_direct(mmc_dev, 0, 0, SDIO_CCCR_IF, 0, &ctrl);
  211. if (ret)
  212. return ret;
  213. return 1;
  214. }
  215. /**
  216. * sdio_claim_host - exclusively claim a bus for a certain SDIO function
  217. * @func: SDIO function that will be accessed
  218. *
  219. * Claim a bus for a set of operations. The SDIO function given
  220. * is used to figure out which bus is relevant.
  221. */
  222. void sdio_claim_host(struct sdio_func *func)
  223. {
  224. if (!func->dev_scan_done) {
  225. return;
  226. }
  227. k_mutex_lock(&func->host_lock, K_FOREVER);
  228. }
  229. /**
  230. * sdio_release_host - release a bus for a certain SDIO function
  231. * @func: SDIO function that was accessed
  232. *
  233. * Release a bus, allowing others to claim the bus for their
  234. * operations.
  235. */
  236. void sdio_release_host(struct sdio_func *func)
  237. {
  238. if (!func->dev_scan_done) {
  239. return;
  240. }
  241. k_mutex_unlock(&func->host_lock);
  242. }
  243. /**
  244. * sdio_enable_func - enables a SDIO function for usage
  245. * @func: SDIO function to enable
  246. *
  247. * Powers up and activates a SDIO function so that register
  248. * access is possible.
  249. */
  250. int sdio_enable_func(struct sdio_func *func)
  251. {
  252. int ret, cnt = 0;
  253. unsigned char reg;
  254. LOG_DBG("Enabling function %d\n", func->num);
  255. if (!func->dev_scan_done) {
  256. return -1;
  257. }
  258. ret = mmc_io_rw_direct(func->host, 0, 0, SDIO_CCCR_IOEx, 0, &reg);
  259. if (ret)
  260. goto err;
  261. reg |= 1 << func->num;
  262. ret = mmc_io_rw_direct(func->host, 1, 0, SDIO_CCCR_IOEx, reg, NULL);
  263. if (ret)
  264. goto err;
  265. while (1) {
  266. ret = mmc_io_rw_direct(func->host, 0, 0, SDIO_CCCR_IORx, 0, &reg);
  267. if (ret)
  268. goto err;
  269. if (reg & (1 << func->num))
  270. break;
  271. /* wait 1us */
  272. k_busy_wait(1);
  273. if (++cnt > SDIO_CMD_TIMEOUT_US)
  274. goto err;
  275. }
  276. return 0;
  277. err:
  278. LOG_DBG("Failed to enable function %d", func->num);
  279. return ret;
  280. }
  281. /**
  282. * sdio_disable_func - disable a SDIO function
  283. * @func: SDIO function to disable
  284. *
  285. * Powers down and deactivates a SDIO function. Register access
  286. * to this function will fail until the function is reenabled.
  287. */
  288. int sdio_disable_func(struct sdio_func *func)
  289. {
  290. int ret;
  291. unsigned char reg;
  292. if (!func->dev_scan_done) {
  293. return -1;
  294. }
  295. LOG_DBG("Disabling function %d", func->num);
  296. ret = mmc_io_rw_direct(func->host, 0, 0, SDIO_CCCR_IOEx, 0, &reg);
  297. if (ret)
  298. goto err;
  299. reg &= ~(1 << func->num);
  300. ret = mmc_io_rw_direct(func->host, 1, 0, SDIO_CCCR_IOEx, reg, NULL);
  301. if (ret)
  302. goto err;
  303. return 0;
  304. err:
  305. LOG_DBG("Failed to disable function %d", func->num);
  306. return -EIO;
  307. }
  308. /**
  309. * sdio_set_block_size - set the block size of an SDIO function
  310. * @func: SDIO function to change
  311. * @blksz: new block size or 0 to use the default.
  312. *
  313. * The default block size is the largest supported by both the function
  314. * and the host, with a maximum of 512 to ensure that arbitrarily sized
  315. * data transfer use the optimal (least) number of commands.
  316. *
  317. * A driver may call this to override the default block size set by the
  318. * core. This can be used to set a block size greater than the maximum
  319. * that reported by the card; it is the driver's responsibility to ensure
  320. * it uses a value that the card supports.
  321. *
  322. * Returns 0 on success, -EINVAL if the host does not support the
  323. * requested block size, or -EIO (etc.) if one of the resultant FBR block
  324. * size register writes failed.
  325. *
  326. */
  327. int sdio_set_block_size(struct sdio_func *func, unsigned blksz)
  328. {
  329. int ret;
  330. LOG_DBG("function %d set blksize %d", func->num, blksz);
  331. if (!func->dev_scan_done) {
  332. return -1;
  333. }
  334. ret = mmc_io_rw_direct(func->host, 1, 0,
  335. SDIO_FBR_BASE(func->num) + SDIO_FBR_BLKSIZE,
  336. blksz & 0xff, NULL);
  337. if (ret)
  338. return ret;
  339. ret = mmc_io_rw_direct(func->host, 1, 0,
  340. SDIO_FBR_BASE(func->num) + SDIO_FBR_BLKSIZE + 1,
  341. (blksz >> 8) & 0xff, NULL);
  342. if (ret)
  343. return ret;
  344. func->cur_blksize = blksz;
  345. #ifdef CONFIG_WIFI_RTL8189FTV
  346. func->max_blksize = blksz;
  347. #endif
  348. return 0;
  349. }
  350. /* Split an arbitrarily sized data transfer into several
  351. * IO_RW_EXTENDED commands. */
  352. static int sdio_io_rw_ext_helper(struct sdio_func *func, int write,
  353. unsigned addr, int incr_addr, unsigned char *buf, unsigned size)
  354. {
  355. unsigned remainder = size;
  356. unsigned max_blocks = 511;
  357. int ret;
  358. if (!func->dev_scan_done) {
  359. return -1;
  360. }
  361. /* Do the bulk of the transfer using block mode (if supported). */
  362. if (size > func->cur_blksize) {
  363. while (remainder >= func->cur_blksize) {
  364. unsigned blocks;
  365. blocks = remainder / func->cur_blksize;
  366. if (blocks > max_blocks)
  367. blocks = max_blocks;
  368. size = blocks * func->cur_blksize;
  369. ret = mmc_io_rw_extended(func->host, write,
  370. func->num, addr, incr_addr, buf,
  371. blocks, func->cur_blksize);
  372. if (ret)
  373. return ret;
  374. remainder -= size;
  375. buf += size;
  376. if (incr_addr)
  377. addr += size;
  378. }
  379. }
  380. /* Write the remainder using byte mode. */
  381. while (remainder > 0) {
  382. size = min(remainder, func->cur_blksize);
  383. /* Indicate byte mode by setting "blocks" = 0 */
  384. ret = mmc_io_rw_extended(func->host, write, func->num, addr,
  385. incr_addr, buf, 0, size);
  386. if (ret)
  387. return ret;
  388. remainder -= size;
  389. buf += size;
  390. if (incr_addr)
  391. addr += size;
  392. }
  393. return 0;
  394. }
  395. /**
  396. * sdio_readb - read a single byte from a SDIO function
  397. * @func: SDIO function to access
  398. * @addr: address to read
  399. * @err_ret: optional status value from transfer
  400. *
  401. * Reads a single byte from the address space of a given SDIO
  402. * function. If there is a problem reading the address, 0xff
  403. * is returned and @err_ret will contain the error code.
  404. */
  405. unsigned char sdio_readb(struct sdio_func *func, unsigned int addr, int *err_ret)
  406. {
  407. int ret;
  408. unsigned char val;
  409. if (!func->dev_scan_done) {
  410. return -1;
  411. }
  412. if (err_ret)
  413. *err_ret = 0;
  414. ret = mmc_io_rw_direct(func->host, 0, func->num, addr, 0, &val);
  415. if (ret) {
  416. if (err_ret)
  417. *err_ret = ret;
  418. return 0xFF;
  419. }
  420. return val;
  421. }
  422. /**
  423. * sdio_writeb - write a single byte to a SDIO function
  424. * @func: SDIO function to access
  425. * @b: byte to write
  426. * @addr: address to write to
  427. * @err_ret: optional status value from transfer
  428. *
  429. * Writes a single byte to the address space of a given SDIO
  430. * function. @err_ret will contain the status of the actual
  431. * transfer.
  432. */
  433. void sdio_writeb(struct sdio_func *func, unsigned char b, unsigned int addr,
  434. int *err_ret)
  435. {
  436. int ret;
  437. if (!func->dev_scan_done) {
  438. return;
  439. }
  440. ret = mmc_io_rw_direct(func->host, 1, func->num, addr, b, NULL);
  441. if (err_ret)
  442. *err_ret = ret;
  443. }
  444. /**
  445. * sdio_memcpy_fromio - read a chunk of memory from a SDIO function
  446. * @func: SDIO function to access
  447. * @dst: buffer to store the data
  448. * @addr: address to begin reading from
  449. * @count: number of bytes to read
  450. *
  451. * Reads from the address space of a given SDIO function. Return
  452. * value indicates if the transfer succeeded or not.
  453. */
  454. int sdio_memcpy_fromio(struct sdio_func *func, void *dst,
  455. unsigned int addr, int count)
  456. {
  457. if (!func->dev_scan_done) {
  458. return -1;
  459. }
  460. return sdio_io_rw_ext_helper(func, 0, addr, 1, dst, count);
  461. }
  462. /**
  463. * sdio_memcpy_toio - write a chunk of memory to a SDIO function
  464. * @func: SDIO function to access
  465. * @addr: address to start writing to
  466. * @src: buffer that contains the data to write
  467. * @count: number of bytes to write
  468. *
  469. * Writes to the address space of a given SDIO function. Return
  470. * value indicates if the transfer succeeded or not.
  471. */
  472. int sdio_memcpy_toio(struct sdio_func *func, unsigned int addr,
  473. void *src, int count)
  474. {
  475. if (!func->dev_scan_done) {
  476. return -1;
  477. }
  478. return sdio_io_rw_ext_helper(func, 1, addr, 1, src, count);
  479. }
  480. /**
  481. * sdio_f0_readb - read a single byte from SDIO function 0
  482. * @func: an SDIO function of the card
  483. * @addr: address to read
  484. * @err_ret: optional status value from transfer
  485. *
  486. * Reads a single byte from the address space of SDIO function 0.
  487. * If there is a problem reading the address, 0xff is returned
  488. * and @err_ret will contain the error code.
  489. */
  490. unsigned char sdio_f0_readb(struct sdio_func *func, unsigned int addr,
  491. int *err_ret)
  492. {
  493. int ret;
  494. unsigned char val;
  495. if (!func->dev_scan_done) {
  496. return -1;
  497. }
  498. if (err_ret)
  499. *err_ret = 0;
  500. ret = mmc_io_rw_direct(func->host, 0, 0, addr, 0, &val);
  501. if (ret) {
  502. if (err_ret)
  503. *err_ret = ret;
  504. return 0xFF;
  505. }
  506. return val;
  507. }
  508. /**
  509. * sdio_f0_writeb - write a single byte to SDIO function 0
  510. * @func: an SDIO function of the card
  511. * @b: byte to write
  512. * @addr: address to write to
  513. * @err_ret: optional status value from transfer
  514. *
  515. * Writes a single byte to the address space of SDIO function 0.
  516. * @err_ret will contain the status of the actual transfer.
  517. *
  518. * Only writes to the vendor specific CCCR registers (0xF0 -
  519. * 0xFF) are permiited; @err_ret will be set to -EINVAL for *
  520. * writes outside this range.
  521. */
  522. void sdio_f0_writeb(struct sdio_func *func, unsigned char b, unsigned int addr,
  523. int *err_ret)
  524. {
  525. int ret;
  526. ret = mmc_io_rw_direct(func->host, 1, 0, addr, b, NULL);
  527. if (err_ret)
  528. *err_ret = ret;
  529. }
  530. static void sdio_isr_handler(void *arg)
  531. {
  532. struct sdio_func *func = arg;
  533. mmc_enable_sdio_irq(func->host, 0);
  534. #ifdef CONFIG_MMC_SDIO_ISR_THREAD
  535. k_sem_give(&sdio_isr_thread_sem);
  536. #else
  537. if (func->sdio_func_callback) {
  538. func->sdio_func_callback(func);
  539. mmc_enable_sdio_irq(func->host, 1);
  540. }
  541. #endif
  542. }
  543. #ifdef CONFIG_MMC_SDIO_ISR_THREAD
  544. static void sdio_isr_thread_func(void *p1, void *p2, void *p3)
  545. {
  546. struct sdio_func *func = p1;
  547. LOG_DBG("irq thread is ready");
  548. while (1) {
  549. k_sem_take(&sdio_isr_thread_sem, K_FOREVER);
  550. #ifdef CONFIG_WIFI_RTL8189FTV
  551. sdio_irq_cur_cnt++;
  552. #endif
  553. if (func->callback) {
  554. func->callback(func);
  555. mmc_enable_sdio_irq(func->host, 1);
  556. }
  557. }
  558. }
  559. #endif
  560. /**
  561. * sdio_claim_irq - claim the IRQ for a SDIO function
  562. * @func: SDIO function
  563. * @handler: IRQ handler callback
  564. *
  565. * Claim and activate the IRQ for the given SDIO function. The provided
  566. * handler will be called when that IRQ is asserted. The host is always
  567. * claimed already when the handler is called so the handler must not
  568. * call sdio_claim_host() nor sdio_release_host().
  569. */
  570. int sdio_claim_irq(struct sdio_func *func, sdio_irq_handler_t *handler)
  571. {
  572. int err;
  573. unsigned char reg;
  574. LOG_DBG("Enabling IRQ for function %d", func->num);
  575. reg = sdio_f0_readb(func, SDIO_CCCR_IENx, &err);
  576. if (err) {
  577. return err;
  578. }
  579. reg |= 1 << func->num;
  580. /* Master interrupt enable */
  581. reg |= 1;
  582. sdio_f0_writeb(func, reg, SDIO_CCCR_IENx, &err);
  583. if (err) {
  584. return err;
  585. }
  586. #ifdef CONFIG_MMC_SDIO_ISR_THREAD
  587. k_sem_init(&sdio_isr_thread_sem, 0, 1);
  588. func->sdio_isr_thread_pid = k_thread_create(&sdio_isr_thread,
  589. sdio_isr_thread_stack,
  590. K_THREAD_STACK_SIZEOF(sdio_isr_thread_stack),
  591. (k_thread_entry_t) sdio_isr_thread_func, func,
  592. NULL, NULL, K_PRIO_COOP(1), 0, K_NO_WAIT);
  593. #endif
  594. func->callback = handler;
  595. mmc_set_sdio_irq_callback(func->host, sdio_isr_handler, func);
  596. mmc_enable_sdio_irq(func->host, 1);
  597. #if defined(CONFIG_WIFI_RTL8189FTV) && defined(CONFIG_MMC_SDIO_ISR_THREAD)
  598. k_timer_start(&check_irq_timer, CHECK_SDIO_IRQ_INTERVAL, CHECK_SDIO_IRQ_INTERVAL);
  599. #endif
  600. return err;
  601. }
  602. /**
  603. * sdio_release_irq - release the IRQ for a SDIO function
  604. * @func: SDIO function
  605. *
  606. * Disable and release the IRQ for the given SDIO function.
  607. */
  608. int sdio_release_irq(struct sdio_func *func)
  609. {
  610. int err;
  611. unsigned char reg;
  612. LOG_DBG("Disabling IRQ for function %d", func->num);
  613. #if defined(CONFIG_WIFI_RTL8189FTV) && defined(CONFIG_MMC_SDIO_ISR_THREAD)
  614. k_timer_stop(&check_irq_timer);
  615. #endif
  616. mmc_enable_sdio_irq(func->host, 0);
  617. #ifdef CONFIG_MMC_SDIO_ISR_THREAD
  618. k_thread_abort(func->sdio_isr_thread_pid);
  619. func->sdio_isr_thread_pid = NULL;
  620. #endif
  621. func->callback = NULL;
  622. mmc_set_sdio_irq_callback(func->host, NULL, NULL);
  623. reg = sdio_f0_readb(func, SDIO_CCCR_IENx, &err);
  624. if (err) {
  625. return err;
  626. }
  627. reg &= ~(1 << func->num);
  628. /* Disable master interrupt with the last function interrupt */
  629. if (!(reg & 0xFE))
  630. reg = 0;
  631. sdio_f0_writeb(func, reg, SDIO_CCCR_IENx, &err);
  632. if (err) {
  633. return err;
  634. }
  635. return 0;
  636. }
  637. static int sdio_scan_host(struct device *mmc_dev, struct sdio_func *func)
  638. {
  639. int err;
  640. uint32_t ocr;
  641. mmc_go_idle(mmc_dev);
  642. err = mmc_send_io_op_cond(mmc_dev, 0, &ocr);
  643. if (err) {
  644. LOG_ERR("cannot found sdio device");
  645. return -ENODEV;
  646. }
  647. if (((ocr >> 28) & 0x7) == 0) {
  648. LOG_ERR("cannot found any sdio function");
  649. return -ENODEV;
  650. }
  651. ocr = ocr & 0xffffff;
  652. if (!ocr) {
  653. LOG_ERR("invalid ocr 0x%x", ocr);
  654. return -ENODEV;
  655. }
  656. err = mmc_send_io_op_cond(mmc_dev, ocr, &ocr);
  657. if (err) {
  658. LOG_ERR("cannot found sdio device");
  659. return -ENODEV;
  660. }
  661. err = mmc_send_relative_addr(mmc_dev, &func->rca);
  662. if (err) {
  663. LOG_ERR("failed to get rca");
  664. return err;
  665. }
  666. err = mmc_select_card(mmc_dev, func->rca);
  667. if (err) {
  668. LOG_ERR("failed to select card %d\n", func->rca);
  669. return err;
  670. }
  671. err = mmc_sdio_switch_hs(mmc_dev, true);
  672. if (err > 0) {
  673. mmc_set_clock(mmc_dev, 50000000);
  674. }
  675. /* set bus width */
  676. err = sdio_enable_4bit_bus(mmc_dev);
  677. if (err > 0) {
  678. mmc_set_bus_width(mmc_dev, MMC_BUS_WIDTH_4);
  679. err = 0;
  680. }
  681. func->dev_scan_done = true;
  682. return 0;
  683. }
  684. static struct sdio_func sdio_funcs[MAX_FUNC_DEVICE_NUM];
  685. struct sdio_func *sdio_get_func(int index)
  686. {
  687. struct sdio_func *func;
  688. if (index > MAX_FUNC_DEVICE_NUM)
  689. return NULL;
  690. func = &sdio_funcs[index];
  691. if (!func->dev_scan_done) {
  692. return NULL;
  693. }
  694. return func;
  695. }
  696. int sdio_bus_scan(int bus_id)
  697. {
  698. int ret;
  699. struct sdio_func *func = &sdio_funcs[0];
  700. ARG_UNUSED(bus_id);
  701. LOG_INF("scan sdio on mmc bus %s",CONFIG_MMC_SDIO_MMC_DEV_NAME);
  702. func->host = device_get_binding(CONFIG_MMC_SDIO_MMC_DEV_NAME);
  703. if (!func->host) {
  704. LOG_ERR("Cannot find mmc device %s!\n",
  705. CONFIG_MMC_SDIO_MMC_DEV_NAME);
  706. return -ENODEV;
  707. }
  708. func->callback = NULL;
  709. func->num = 1;
  710. func->cur_blksize = 0;
  711. func->dev_scan_done = false;
  712. k_mutex_init(&func->host_lock);
  713. ret = sdio_scan_host(func->host, func);
  714. if (ret) {
  715. LOG_ERR("host scan error, ret %d", ret);
  716. return ret;
  717. }
  718. return 0;
  719. }
  720. static int sdio_init(struct device *dev)
  721. {
  722. /* Do nothing */
  723. ARG_UNUSED(dev);
  724. return 0;
  725. }
  726. DEVICE_DEFINE(sdio, "sdio_0", sdio_init, NULL,
  727. NULL, NULL, POST_KERNEL, 20, NULL);