ucc_slow.c 9.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379
  1. /*
  2. * Copyright (C) 2006 Freescale Semiconductor, Inc. All rights reserved.
  3. *
  4. * Authors: Shlomi Gridish <gridish@freescale.com>
  5. * Li Yang <leoli@freescale.com>
  6. *
  7. * Description:
  8. * QE UCC Slow API Set - UCC Slow specific routines implementations.
  9. *
  10. * This program is free software; you can redistribute it and/or modify it
  11. * under the terms of the GNU General Public License as published by the
  12. * Free Software Foundation; either version 2 of the License, or (at your
  13. * option) any later version.
  14. */
  15. #include <linux/kernel.h>
  16. #include <linux/errno.h>
  17. #include <linux/slab.h>
  18. #include <linux/stddef.h>
  19. #include <linux/interrupt.h>
  20. #include <linux/err.h>
  21. #include <linux/export.h>
  22. #include <asm/io.h>
  23. #include <asm/immap_qe.h>
  24. #include <asm/qe.h>
  25. #include <asm/ucc.h>
  26. #include <asm/ucc_slow.h>
  27. u32 ucc_slow_get_qe_cr_subblock(int uccs_num)
  28. {
  29. switch (uccs_num) {
  30. case 0: return QE_CR_SUBBLOCK_UCCSLOW1;
  31. case 1: return QE_CR_SUBBLOCK_UCCSLOW2;
  32. case 2: return QE_CR_SUBBLOCK_UCCSLOW3;
  33. case 3: return QE_CR_SUBBLOCK_UCCSLOW4;
  34. case 4: return QE_CR_SUBBLOCK_UCCSLOW5;
  35. case 5: return QE_CR_SUBBLOCK_UCCSLOW6;
  36. case 6: return QE_CR_SUBBLOCK_UCCSLOW7;
  37. case 7: return QE_CR_SUBBLOCK_UCCSLOW8;
  38. default: return QE_CR_SUBBLOCK_INVALID;
  39. }
  40. }
  41. EXPORT_SYMBOL(ucc_slow_get_qe_cr_subblock);
  42. void ucc_slow_poll_transmitter_now(struct ucc_slow_private * uccs)
  43. {
  44. out_be16(&uccs->us_regs->utodr, UCC_SLOW_TOD);
  45. }
  46. void ucc_slow_graceful_stop_tx(struct ucc_slow_private * uccs)
  47. {
  48. struct ucc_slow_info *us_info = uccs->us_info;
  49. u32 id;
  50. id = ucc_slow_get_qe_cr_subblock(us_info->ucc_num);
  51. qe_issue_cmd(QE_GRACEFUL_STOP_TX, id,
  52. QE_CR_PROTOCOL_UNSPECIFIED, 0);
  53. }
  54. EXPORT_SYMBOL(ucc_slow_graceful_stop_tx);
  55. void ucc_slow_stop_tx(struct ucc_slow_private * uccs)
  56. {
  57. struct ucc_slow_info *us_info = uccs->us_info;
  58. u32 id;
  59. id = ucc_slow_get_qe_cr_subblock(us_info->ucc_num);
  60. qe_issue_cmd(QE_STOP_TX, id, QE_CR_PROTOCOL_UNSPECIFIED, 0);
  61. }
  62. EXPORT_SYMBOL(ucc_slow_stop_tx);
  63. void ucc_slow_restart_tx(struct ucc_slow_private * uccs)
  64. {
  65. struct ucc_slow_info *us_info = uccs->us_info;
  66. u32 id;
  67. id = ucc_slow_get_qe_cr_subblock(us_info->ucc_num);
  68. qe_issue_cmd(QE_RESTART_TX, id, QE_CR_PROTOCOL_UNSPECIFIED, 0);
  69. }
  70. EXPORT_SYMBOL(ucc_slow_restart_tx);
  71. void ucc_slow_enable(struct ucc_slow_private * uccs, enum comm_dir mode)
  72. {
  73. struct ucc_slow *us_regs;
  74. u32 gumr_l;
  75. us_regs = uccs->us_regs;
  76. /* Enable reception and/or transmission on this UCC. */
  77. gumr_l = in_be32(&us_regs->gumr_l);
  78. if (mode & COMM_DIR_TX) {
  79. gumr_l |= UCC_SLOW_GUMR_L_ENT;
  80. uccs->enabled_tx = 1;
  81. }
  82. if (mode & COMM_DIR_RX) {
  83. gumr_l |= UCC_SLOW_GUMR_L_ENR;
  84. uccs->enabled_rx = 1;
  85. }
  86. out_be32(&us_regs->gumr_l, gumr_l);
  87. }
  88. EXPORT_SYMBOL(ucc_slow_enable);
  89. void ucc_slow_disable(struct ucc_slow_private * uccs, enum comm_dir mode)
  90. {
  91. struct ucc_slow *us_regs;
  92. u32 gumr_l;
  93. us_regs = uccs->us_regs;
  94. /* Disable reception and/or transmission on this UCC. */
  95. gumr_l = in_be32(&us_regs->gumr_l);
  96. if (mode & COMM_DIR_TX) {
  97. gumr_l &= ~UCC_SLOW_GUMR_L_ENT;
  98. uccs->enabled_tx = 0;
  99. }
  100. if (mode & COMM_DIR_RX) {
  101. gumr_l &= ~UCC_SLOW_GUMR_L_ENR;
  102. uccs->enabled_rx = 0;
  103. }
  104. out_be32(&us_regs->gumr_l, gumr_l);
  105. }
  106. EXPORT_SYMBOL(ucc_slow_disable);
  107. /* Initialize the UCC for Slow operations
  108. *
  109. * The caller should initialize the following us_info
  110. */
  111. int ucc_slow_init(struct ucc_slow_info * us_info, struct ucc_slow_private ** uccs_ret)
  112. {
  113. struct ucc_slow_private *uccs;
  114. u32 i;
  115. struct ucc_slow __iomem *us_regs;
  116. u32 gumr;
  117. struct qe_bd *bd;
  118. u32 id;
  119. u32 command;
  120. int ret = 0;
  121. if (!us_info)
  122. return -EINVAL;
  123. /* check if the UCC port number is in range. */
  124. if ((us_info->ucc_num < 0) || (us_info->ucc_num > UCC_MAX_NUM - 1)) {
  125. printk(KERN_ERR "%s: illegal UCC number\n", __func__);
  126. return -EINVAL;
  127. }
  128. /*
  129. * Set mrblr
  130. * Check that 'max_rx_buf_length' is properly aligned (4), unless
  131. * rfw is 1, meaning that QE accepts one byte at a time, unlike normal
  132. * case when QE accepts 32 bits at a time.
  133. */
  134. if ((!us_info->rfw) &&
  135. (us_info->max_rx_buf_length & (UCC_SLOW_MRBLR_ALIGNMENT - 1))) {
  136. printk(KERN_ERR "max_rx_buf_length not aligned.\n");
  137. return -EINVAL;
  138. }
  139. uccs = kzalloc(sizeof(struct ucc_slow_private), GFP_KERNEL);
  140. if (!uccs) {
  141. printk(KERN_ERR "%s: Cannot allocate private data\n",
  142. __func__);
  143. return -ENOMEM;
  144. }
  145. /* Fill slow UCC structure */
  146. uccs->us_info = us_info;
  147. /* Set the PHY base address */
  148. uccs->us_regs = ioremap(us_info->regs, sizeof(struct ucc_slow));
  149. if (uccs->us_regs == NULL) {
  150. printk(KERN_ERR "%s: Cannot map UCC registers\n", __func__);
  151. kfree(uccs);
  152. return -ENOMEM;
  153. }
  154. uccs->saved_uccm = 0;
  155. uccs->p_rx_frame = 0;
  156. us_regs = uccs->us_regs;
  157. uccs->p_ucce = (u16 *) & (us_regs->ucce);
  158. uccs->p_uccm = (u16 *) & (us_regs->uccm);
  159. #ifdef STATISTICS
  160. uccs->rx_frames = 0;
  161. uccs->tx_frames = 0;
  162. uccs->rx_discarded = 0;
  163. #endif /* STATISTICS */
  164. /* Get PRAM base */
  165. uccs->us_pram_offset =
  166. qe_muram_alloc(UCC_SLOW_PRAM_SIZE, ALIGNMENT_OF_UCC_SLOW_PRAM);
  167. if (IS_ERR_VALUE(uccs->us_pram_offset)) {
  168. printk(KERN_ERR "%s: cannot allocate MURAM for PRAM", __func__);
  169. ucc_slow_free(uccs);
  170. return -ENOMEM;
  171. }
  172. id = ucc_slow_get_qe_cr_subblock(us_info->ucc_num);
  173. qe_issue_cmd(QE_ASSIGN_PAGE_TO_DEVICE, id, us_info->protocol,
  174. uccs->us_pram_offset);
  175. uccs->us_pram = qe_muram_addr(uccs->us_pram_offset);
  176. /* Set UCC to slow type */
  177. ret = ucc_set_type(us_info->ucc_num, UCC_SPEED_TYPE_SLOW);
  178. if (ret) {
  179. printk(KERN_ERR "%s: cannot set UCC type", __func__);
  180. ucc_slow_free(uccs);
  181. return ret;
  182. }
  183. out_be16(&uccs->us_pram->mrblr, us_info->max_rx_buf_length);
  184. INIT_LIST_HEAD(&uccs->confQ);
  185. /* Allocate BDs. */
  186. uccs->rx_base_offset =
  187. qe_muram_alloc(us_info->rx_bd_ring_len * sizeof(struct qe_bd),
  188. QE_ALIGNMENT_OF_BD);
  189. if (IS_ERR_VALUE(uccs->rx_base_offset)) {
  190. printk(KERN_ERR "%s: cannot allocate %u RX BDs\n", __func__,
  191. us_info->rx_bd_ring_len);
  192. uccs->rx_base_offset = 0;
  193. ucc_slow_free(uccs);
  194. return -ENOMEM;
  195. }
  196. uccs->tx_base_offset =
  197. qe_muram_alloc(us_info->tx_bd_ring_len * sizeof(struct qe_bd),
  198. QE_ALIGNMENT_OF_BD);
  199. if (IS_ERR_VALUE(uccs->tx_base_offset)) {
  200. printk(KERN_ERR "%s: cannot allocate TX BDs", __func__);
  201. uccs->tx_base_offset = 0;
  202. ucc_slow_free(uccs);
  203. return -ENOMEM;
  204. }
  205. /* Init Tx bds */
  206. bd = uccs->confBd = uccs->tx_bd = qe_muram_addr(uccs->tx_base_offset);
  207. for (i = 0; i < us_info->tx_bd_ring_len - 1; i++) {
  208. /* clear bd buffer */
  209. out_be32(&bd->buf, 0);
  210. /* set bd status and length */
  211. out_be32((u32 *) bd, 0);
  212. bd++;
  213. }
  214. /* for last BD set Wrap bit */
  215. out_be32(&bd->buf, 0);
  216. out_be32((u32 *) bd, cpu_to_be32(T_W));
  217. /* Init Rx bds */
  218. bd = uccs->rx_bd = qe_muram_addr(uccs->rx_base_offset);
  219. for (i = 0; i < us_info->rx_bd_ring_len - 1; i++) {
  220. /* set bd status and length */
  221. out_be32((u32*)bd, 0);
  222. /* clear bd buffer */
  223. out_be32(&bd->buf, 0);
  224. bd++;
  225. }
  226. /* for last BD set Wrap bit */
  227. out_be32((u32*)bd, cpu_to_be32(R_W));
  228. out_be32(&bd->buf, 0);
  229. /* Set GUMR (For more details see the hardware spec.). */
  230. /* gumr_h */
  231. gumr = us_info->tcrc;
  232. if (us_info->cdp)
  233. gumr |= UCC_SLOW_GUMR_H_CDP;
  234. if (us_info->ctsp)
  235. gumr |= UCC_SLOW_GUMR_H_CTSP;
  236. if (us_info->cds)
  237. gumr |= UCC_SLOW_GUMR_H_CDS;
  238. if (us_info->ctss)
  239. gumr |= UCC_SLOW_GUMR_H_CTSS;
  240. if (us_info->tfl)
  241. gumr |= UCC_SLOW_GUMR_H_TFL;
  242. if (us_info->rfw)
  243. gumr |= UCC_SLOW_GUMR_H_RFW;
  244. if (us_info->txsy)
  245. gumr |= UCC_SLOW_GUMR_H_TXSY;
  246. if (us_info->rtsm)
  247. gumr |= UCC_SLOW_GUMR_H_RTSM;
  248. out_be32(&us_regs->gumr_h, gumr);
  249. /* gumr_l */
  250. gumr = us_info->tdcr | us_info->rdcr | us_info->tenc | us_info->renc |
  251. us_info->diag | us_info->mode;
  252. if (us_info->tci)
  253. gumr |= UCC_SLOW_GUMR_L_TCI;
  254. if (us_info->rinv)
  255. gumr |= UCC_SLOW_GUMR_L_RINV;
  256. if (us_info->tinv)
  257. gumr |= UCC_SLOW_GUMR_L_TINV;
  258. if (us_info->tend)
  259. gumr |= UCC_SLOW_GUMR_L_TEND;
  260. out_be32(&us_regs->gumr_l, gumr);
  261. /* Function code registers */
  262. /* if the data is in cachable memory, the 'global' */
  263. /* in the function code should be set. */
  264. uccs->us_pram->tbmr = UCC_BMR_BO_BE;
  265. uccs->us_pram->rbmr = UCC_BMR_BO_BE;
  266. /* rbase, tbase are offsets from MURAM base */
  267. out_be16(&uccs->us_pram->rbase, uccs->rx_base_offset);
  268. out_be16(&uccs->us_pram->tbase, uccs->tx_base_offset);
  269. /* Mux clocking */
  270. /* Grant Support */
  271. ucc_set_qe_mux_grant(us_info->ucc_num, us_info->grant_support);
  272. /* Breakpoint Support */
  273. ucc_set_qe_mux_bkpt(us_info->ucc_num, us_info->brkpt_support);
  274. /* Set Tsa or NMSI mode. */
  275. ucc_set_qe_mux_tsa(us_info->ucc_num, us_info->tsa);
  276. /* If NMSI (not Tsa), set Tx and Rx clock. */
  277. if (!us_info->tsa) {
  278. /* Rx clock routing */
  279. if (ucc_set_qe_mux_rxtx(us_info->ucc_num, us_info->rx_clock,
  280. COMM_DIR_RX)) {
  281. printk(KERN_ERR "%s: illegal value for RX clock\n",
  282. __func__);
  283. ucc_slow_free(uccs);
  284. return -EINVAL;
  285. }
  286. /* Tx clock routing */
  287. if (ucc_set_qe_mux_rxtx(us_info->ucc_num, us_info->tx_clock,
  288. COMM_DIR_TX)) {
  289. printk(KERN_ERR "%s: illegal value for TX clock\n",
  290. __func__);
  291. ucc_slow_free(uccs);
  292. return -EINVAL;
  293. }
  294. }
  295. /* Set interrupt mask register at UCC level. */
  296. out_be16(&us_regs->uccm, us_info->uccm_mask);
  297. /* First, clear anything pending at UCC level,
  298. * otherwise, old garbage may come through
  299. * as soon as the dam is opened. */
  300. /* Writing '1' clears */
  301. out_be16(&us_regs->ucce, 0xffff);
  302. /* Issue QE Init command */
  303. if (us_info->init_tx && us_info->init_rx)
  304. command = QE_INIT_TX_RX;
  305. else if (us_info->init_tx)
  306. command = QE_INIT_TX;
  307. else
  308. command = QE_INIT_RX; /* We know at least one is TRUE */
  309. qe_issue_cmd(command, id, us_info->protocol, 0);
  310. *uccs_ret = uccs;
  311. return 0;
  312. }
  313. EXPORT_SYMBOL(ucc_slow_init);
  314. void ucc_slow_free(struct ucc_slow_private * uccs)
  315. {
  316. if (!uccs)
  317. return;
  318. if (uccs->rx_base_offset)
  319. qe_muram_free(uccs->rx_base_offset);
  320. if (uccs->tx_base_offset)
  321. qe_muram_free(uccs->tx_base_offset);
  322. if (uccs->us_pram)
  323. qe_muram_free(uccs->us_pram_offset);
  324. if (uccs->us_regs)
  325. iounmap(uccs->us_regs);
  326. kfree(uccs);
  327. }
  328. EXPORT_SYMBOL(ucc_slow_free);