commproc.c
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:7k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * BK Id: SCCS/s.commproc.c 1.15 10/16/01 16:21:52 trini
  3.  */
  4. /*
  5.  * General Purpose functions for the global management of the
  6.  * Communication Processor Module.
  7.  * Copyright (c) 1997 Dan Malek (dmalek@jlc.net)
  8.  *
  9.  * In addition to the individual control of the communication
  10.  * channels, there are a few functions that globally affect the
  11.  * communication processor.
  12.  *
  13.  * Buffer descriptors must be allocated from the dual ported memory
  14.  * space.  The allocator for that is here.  When the communication
  15.  * process is reset, we reclaim the memory available.  There is
  16.  * currently no deallocator for this memory.
  17.  * The amount of space available is platform dependent.  On the
  18.  * MBX, the EPPC software loads additional microcode into the
  19.  * communication processor, and uses some of the DP ram for this
  20.  * purpose.  Current, the first 512 bytes and the last 256 bytes of
  21.  * memory are used.  Right now I am conservative and only use the
  22.  * memory that can never be used for microcode.  If there are
  23.  * applications that require more DP ram, we can expand the boundaries
  24.  * but then we have to be careful of any downloaded microcode.
  25.  */
  26. #include <linux/errno.h>
  27. #include <linux/sched.h>
  28. #include <linux/kernel.h>
  29. #include <linux/param.h>
  30. #include <linux/string.h>
  31. #include <linux/mm.h>
  32. #include <linux/interrupt.h>
  33. #include <asm/irq.h>
  34. #include <asm/mpc8xx.h>
  35. #include <asm/page.h>
  36. #include <asm/pgtable.h>
  37. #include <asm/8xx_immap.h>
  38. #include <asm/commproc.h>
  39. extern int get_pteptr(struct mm_struct *mm, unsigned long addr, pte_t **ptep);
  40. static uint dp_alloc_base; /* Starting offset in DP ram */
  41. static uint dp_alloc_top; /* Max offset + 1 */
  42. static uint host_buffer; /* One page of host buffer */
  43. static uint host_end; /* end + 1 */
  44. cpm8xx_t *cpmp; /* Pointer to comm processor space */
  45. /* CPM interrupt vector functions.
  46. */
  47. struct cpm_action {
  48. void (*handler)(void *, struct pt_regs * regs);
  49. void *dev_id;
  50. };
  51. static struct cpm_action cpm_vecs[CPMVEC_NR];
  52. static void cpm_interrupt(int irq, void * dev, struct pt_regs * regs);
  53. static void cpm_error_interrupt(void *, struct pt_regs * regs);
  54. void
  55. m8xx_cpm_reset(uint host_page_addr)
  56. {
  57. volatile immap_t  *imp;
  58. volatile cpm8xx_t *commproc;
  59. pte_t *pte;
  60. imp = (immap_t *)IMAP_ADDR;
  61. commproc = (cpm8xx_t *)&imp->im_cpm;
  62. #ifdef CONFIG_UCODE_PATCH
  63. /* Perform a reset.
  64. */
  65. commproc->cp_cpcr = (CPM_CR_RST | CPM_CR_FLG);
  66. /* Wait for it.
  67. */
  68. while (commproc->cp_cpcr & CPM_CR_FLG);
  69. cpm_load_patch(imp);
  70. #endif
  71. /* Set SDMA Bus Request priority 5.
  72.  * On 860T, this also enables FEC priority 6.  I am not sure
  73.  * this is what we realy want for some applications, but the
  74.  * manual recommends it.
  75.  * Bit 25, FAM can also be set to use FEC aggressive mode (860T).
  76. */
  77. imp->im_siu_conf.sc_sdcr = 1;
  78. /* Reclaim the DP memory for our use.
  79. */
  80. dp_alloc_base = CPM_DATAONLY_BASE;
  81. dp_alloc_top = dp_alloc_base + CPM_DATAONLY_SIZE;
  82. /* Set the host page for allocation.
  83. */
  84. host_buffer = host_page_addr; /* Host virtual page address */
  85. host_end = host_page_addr + PAGE_SIZE;
  86. /* We need to get this page early, so I have to do it the
  87.  * hard way.
  88.  */
  89. if (get_pteptr(&init_mm, host_page_addr, &pte)) {
  90. pte_val(*pte) |= _PAGE_NO_CACHE;
  91. flush_tlb_page(init_mm.mmap, host_buffer);
  92. }
  93. else {
  94. panic("Huh?  No CPM host page?");
  95. }
  96. /* Tell everyone where the comm processor resides.
  97. */
  98. cpmp = (cpm8xx_t *)commproc;
  99. }
  100. /* This is called during init_IRQ.  We used to do it above, but this
  101.  * was too early since init_IRQ was not yet called.
  102.  */
  103. void
  104. cpm_interrupt_init(void)
  105. {
  106. /* Initialize the CPM interrupt controller.
  107. */
  108. ((immap_t *)IMAP_ADDR)->im_cpic.cpic_cicr =
  109.     (CICR_SCD_SCC4 | CICR_SCC_SCC3 | CICR_SCB_SCC2 | CICR_SCA_SCC1) |
  110. ((CPM_INTERRUPT/2) << 13) | CICR_HP_MASK;
  111. ((immap_t *)IMAP_ADDR)->im_cpic.cpic_cimr = 0;
  112. /* Set our interrupt handler with the core CPU.
  113. */
  114. if (request_8xxirq(CPM_INTERRUPT, cpm_interrupt, 0, "cpm", NULL) != 0)
  115. panic("Could not allocate CPM IRQ!");
  116. /* Install our own error handler.
  117. */
  118. cpm_install_handler(CPMVEC_ERROR, cpm_error_interrupt, NULL);
  119. ((immap_t *)IMAP_ADDR)->im_cpic.cpic_cicr |= CICR_IEN;
  120. }
  121. /* CPM interrupt controller interrupt.
  122. */
  123. static void
  124. cpm_interrupt(int irq, void * dev, struct pt_regs * regs)
  125. {
  126. uint vec;
  127. /* Get the vector by setting the ACK bit and then reading
  128.  * the register.
  129.  */
  130. ((volatile immap_t *)IMAP_ADDR)->im_cpic.cpic_civr = 1;
  131. vec = ((volatile immap_t *)IMAP_ADDR)->im_cpic.cpic_civr;
  132. vec >>= 11;
  133. if (cpm_vecs[vec].handler != 0)
  134. (*cpm_vecs[vec].handler)(cpm_vecs[vec].dev_id, regs);
  135. else
  136. ((immap_t *)IMAP_ADDR)->im_cpic.cpic_cimr &= ~(1 << vec);
  137. /* After servicing the interrupt, we have to remove the status
  138.  * indicator.
  139.  */
  140. ((immap_t *)IMAP_ADDR)->im_cpic.cpic_cisr = (1 << vec);
  141. }
  142. /* The CPM can generate the error interrupt when there is a race condition
  143.  * between generating and masking interrupts.  All we have to do is ACK it
  144.  * and return.  This is a no-op function so we don't need any special
  145.  * tests in the interrupt handler.
  146.  */
  147. static void
  148. cpm_error_interrupt(void *dev, struct pt_regs *regs)
  149. {
  150. }
  151. /* Install a CPM interrupt handler.
  152. */
  153. void
  154. cpm_install_handler(int vec, void (*handler)(void *, struct pt_regs *regs),
  155.     void *dev_id)
  156. {
  157. /* If null handler, assume we are trying to free the IRQ.
  158. */
  159. if (!handler) {
  160. cpm_free_handler(vec);
  161. return;
  162. }
  163. if (cpm_vecs[vec].handler != 0)
  164. printk("CPM interrupt %x replacing %xn",
  165. (uint)handler, (uint)cpm_vecs[vec].handler);
  166. cpm_vecs[vec].handler = handler;
  167. cpm_vecs[vec].dev_id = dev_id;
  168. ((immap_t *)IMAP_ADDR)->im_cpic.cpic_cimr |= (1 << vec);
  169. }
  170. /* Free a CPM interrupt handler.
  171. */
  172. void
  173. cpm_free_handler(int vec)
  174. {
  175. cpm_vecs[vec].handler = NULL;
  176. cpm_vecs[vec].dev_id = NULL;
  177. ((immap_t *)IMAP_ADDR)->im_cpic.cpic_cimr &= ~(1 << vec);
  178. }
  179. /* Allocate some memory from the dual ported ram.  We may want to
  180.  * enforce alignment restrictions, but right now everyone is a good
  181.  * citizen.
  182.  */
  183. uint
  184. m8xx_cpm_dpalloc(uint size)
  185. {
  186. uint retloc;
  187. if ((dp_alloc_base + size) >= dp_alloc_top)
  188. return(CPM_DP_NOSPACE);
  189. retloc = dp_alloc_base;
  190. dp_alloc_base += size;
  191. return(retloc);
  192. }
  193. /* We also own one page of host buffer space for the allocation of
  194.  * UART "fifos" and the like.
  195.  */
  196. uint
  197. m8xx_cpm_hostalloc(uint size)
  198. {
  199. uint retloc;
  200. if ((host_buffer + size) >= host_end)
  201. return(0);
  202. retloc = host_buffer;
  203. host_buffer += size;
  204. return(retloc);
  205. }
  206. /* Set a baud rate generator.  This needs lots of work.  There are
  207.  * four BRGs, any of which can be wired to any channel.
  208.  * The internal baud rate clock is the system clock divided by 16.
  209.  * This assumes the baudrate is 16x oversampled by the uart.
  210.  */
  211. #define BRG_INT_CLK (((bd_t *)__res)->bi_intfreq)
  212. #define BRG_UART_CLK (BRG_INT_CLK/16)
  213. #define BRG_UART_CLK_DIV16 (BRG_UART_CLK/16)
  214. void
  215. m8xx_cpm_setbrg(uint brg, uint rate)
  216. {
  217. volatile uint *bp;
  218. /* This is good enough to get SMCs running.....
  219. */
  220. bp = (uint *)&cpmp->cp_brgc1;
  221. bp += brg;
  222. /* The BRG has a 12-bit counter.  For really slow baud rates (or
  223.  * really fast processors), we may have to further divide by 16.
  224.  */
  225. if (((BRG_UART_CLK / rate) - 1) < 4096)
  226. *bp = (((BRG_UART_CLK / rate) - 1) << 1) | CPM_BRG_EN;
  227. else
  228. *bp = (((BRG_UART_CLK_DIV16 / rate) - 1) << 1) |
  229. CPM_BRG_EN | CPM_BRG_DIV16;
  230. }