ucc_slow.c 9.6 KB

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