sa1111.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/sa1111.c
  3.  *
  4.  * SA1111 support
  5.  *
  6.  * Original code by John Dorsey
  7.  *
  8.  * This program is free software; you can redistribute it and/or modify
  9.  * it under the terms of the GNU General Public License version 2 as
  10.  * published by the Free Software Foundation.
  11.  *
  12.  * This file contains all generic SA1111 support, except for DMA which is
  13.  * provided separately in dma-sa1111.c.
  14.  *
  15.  * All initialization functions provided here are intended to be called
  16.  * from machine specific code with proper arguments when required.
  17.  */
  18. #include <linux/module.h>
  19. #include <linux/init.h>
  20. #include <linux/kernel.h>
  21. #include <linux/delay.h>
  22. #include <linux/sched.h>
  23. #include <linux/interrupt.h>
  24. #include <linux/ptrace.h>
  25. #include <linux/errno.h>
  26. #include <linux/ioport.h>
  27. #include <asm/hardware.h>
  28. #include <asm/irq.h>
  29. #include <asm/mach/irq.h>
  30. #include <asm/arch/irq.h>
  31. #include <asm/hardware/sa1111.h>
  32. #include "sa1111.h"
  33. struct resource sa1111_resource = {
  34. name: "SA1111",
  35. };
  36. EXPORT_SYMBOL(sa1111_resource);
  37. /*
  38.  * SA1111 interrupt support
  39.  */
  40. void sa1111_IRQ_demux(int irq, void *dev_id, struct pt_regs *regs)
  41. {
  42. unsigned long stat0, stat1;
  43. while (1) {
  44. int i;
  45. stat0 = INTSTATCLR0;
  46. stat1 = INTSTATCLR1;
  47. if (stat0 == 0 && stat1 == 0)
  48. break;
  49. for (i = IRQ_SA1111_START; stat0; i++, stat0 >>= 1)
  50. if (stat0 & 1)
  51. do_IRQ(i, regs);
  52. for (i = IRQ_SA1111_START + 32; stat1; i++, stat1 >>= 1)
  53. if (stat1 & 1)
  54. do_IRQ(i, regs);
  55. }
  56. }
  57. #define SA1111_IRQMASK_LO(x) (1 << (x - IRQ_SA1111_START))
  58. #define SA1111_IRQMASK_HI(x) (1 << (x - IRQ_SA1111_START - 32))
  59. /*
  60.  * A note about masking IRQs:
  61.  *
  62.  * The GPIO IRQ edge detection only functions while the IRQ itself is
  63.  * enabled; edges are not detected while the IRQ is disabled.
  64.  *
  65.  * This is especially important for the PCMCIA signals, where we must
  66.  * pick up every transition.  We therefore do not disable the IRQs
  67.  * while processing them.
  68.  *
  69.  * However, since we are changed to a GPIO on the host processor,
  70.  * all SA1111 IRQs will be disabled while we're processing any SA1111
  71.  * IRQ.
  72.  *
  73.  * Note also that changing INTPOL while an IRQ is enabled will itself
  74.  * trigger an IRQ.
  75.  */
  76. static void sa1111_mask_and_ack_lowirq(unsigned int irq)
  77. {
  78. unsigned int mask = SA1111_IRQMASK_LO(irq);
  79. //INTEN0 &= ~mask;
  80. INTSTATCLR0 = mask;
  81. }
  82. static void sa1111_mask_and_ack_highirq(unsigned int irq)
  83. {
  84. unsigned int mask = SA1111_IRQMASK_HI(irq);
  85. //INTEN1 &= ~mask;
  86. INTSTATCLR1 = mask;
  87. }
  88. static void sa1111_mask_lowirq(unsigned int irq)
  89. {
  90. INTEN0 &= ~SA1111_IRQMASK_LO(irq);
  91. }
  92. static void sa1111_mask_highirq(unsigned int irq)
  93. {
  94. INTEN1 &= ~SA1111_IRQMASK_HI(irq);
  95. }
  96. static void sa1111_unmask_lowirq(unsigned int irq)
  97. {
  98. INTEN0 |= SA1111_IRQMASK_LO(irq);
  99. }
  100. static void sa1111_unmask_highirq(unsigned int irq)
  101. {
  102. INTEN1 |= SA1111_IRQMASK_HI(irq);
  103. }
  104. void __init sa1111_init_irq(int irq_nr)
  105. {
  106. int irq, ret;
  107. request_mem_region(_INTTEST0, 512, "irqs");
  108. /* disable all IRQs */
  109. INTEN0 = 0;
  110. INTEN1 = 0;
  111. /*
  112.  * detect on rising edge.  Note: Feb 2001 Errata for SA1111
  113.  * specifies that S0ReadyInt and S1ReadyInt should be '1'.
  114.  */
  115. INTPOL0 = 0;
  116. INTPOL1 = SA1111_IRQMASK_HI(S0_READY_NINT) |
  117.   SA1111_IRQMASK_HI(S1_READY_NINT);
  118. /* clear all IRQs */
  119. INTSTATCLR0 = -1;
  120. INTSTATCLR1 = -1;
  121. for (irq = IRQ_GPAIN0; irq <= SSPROR; irq++) {
  122. irq_desc[irq].valid = 1;
  123. irq_desc[irq].probe_ok = 0;
  124. irq_desc[irq].mask_ack = sa1111_mask_and_ack_lowirq;
  125. irq_desc[irq].mask = sa1111_mask_lowirq;
  126. irq_desc[irq].unmask = sa1111_unmask_lowirq;
  127. }
  128. for (irq = AUDXMTDMADONEA; irq <= S1_BVD1_STSCHG; irq++) {
  129. irq_desc[irq].valid = 1;
  130. irq_desc[irq].probe_ok = 0;
  131. irq_desc[irq].mask_ack = sa1111_mask_and_ack_highirq;
  132. irq_desc[irq].mask = sa1111_mask_highirq;
  133. irq_desc[irq].unmask = sa1111_unmask_highirq;
  134. }
  135. /* Register SA1111 interrupt */
  136. if (irq_nr < 0)
  137. return;
  138. ret = request_irq(irq_nr, sa1111_IRQ_demux, SA_INTERRUPT,
  139.   "SA1111", NULL);
  140. if (ret < 0)
  141. printk(KERN_ERR "SA1111: unable to claim IRQ%d: %dn",
  142.        irq_nr, ret);
  143. }
  144. /**
  145.  * sa1111_probe - probe for a single SA1111 chip.
  146.  * @phys_addr: physical address of device.
  147.  *
  148.  * Probe for a SA1111 chip.  This must be called
  149.  * before any other SA1111-specific code.
  150.  *
  151.  * Returns:
  152.  * %-ENODEV device not found.
  153.  * %-EBUSY physical address already marked in-use.
  154.  * %0 successful.
  155.  */
  156. int __init sa1111_probe(unsigned long phys_addr)
  157. {
  158. unsigned long id;
  159. int ret = -ENODEV;
  160. sa1111_resource.start = phys_addr;
  161. sa1111_resource.end = phys_addr + 0x2000;
  162. if (request_resource(&iomem_resource, &sa1111_resource)) {
  163. ret = -EBUSY;
  164. goto out;
  165. }
  166. /*
  167.  * Probe for the chip.  Only touch the SBI registers.
  168.  */
  169. id = SBI_SKID;
  170. if ((id & SKID_ID_MASK) != SKID_SA1111_ID) {
  171. printk(KERN_DEBUG "SA1111 not detected: ID = %08lxn", id);
  172. ret = -ENODEV;
  173. goto release;
  174. }
  175. printk(KERN_INFO "SA1111 Microprocessor Companion Chip: "
  176. "silicon revision %lx, metal revision %lxn",
  177. (id & SKID_SIREV_MASK)>>4, (id & SKID_MTREV_MASK));
  178. return 0;
  179.  release:
  180. release_resource(&sa1111_resource);
  181.  out:
  182. return ret;
  183. }
  184. /*
  185.  * Bring the SA1111 out of reset.  This requires a set procedure:
  186.  *  1. nRESET asserted (by hardware)
  187.  *  2. CLK turned on from SA1110
  188.  *  3. nRESET deasserted
  189.  *  4. VCO turned on, PLL_BYPASS turned off
  190.  *  5. Wait lock time, then assert RCLKEn
  191.  *  7. PCR set to allow clocking of individual functions
  192.  *
  193.  * Until we've done this, the only registers we can access are:
  194.  *   SBI_SKCR
  195.  *   SBI_SMCR
  196.  *   SBI_SKID
  197.  */
  198. void sa1111_wake(void)
  199. {
  200. unsigned long flags;
  201. local_irq_save(flags);
  202. /*
  203.  * First, set up the 3.6864MHz clock on GPIO 27 for the SA-1111:
  204.  * (SA-1110 Developer's Manual, section 9.1.2.1)
  205.  */
  206. GAFR |= GPIO_32_768kHz;
  207. GPDR |= GPIO_32_768kHz;
  208. TUCR = TUCR_3_6864MHz;
  209. /*
  210.  * Turn VCO on, and disable PLL Bypass.
  211.  */
  212. SBI_SKCR &= ~SKCR_VCO_OFF;
  213. SBI_SKCR |= SKCR_PLL_BYPASS | SKCR_OE_EN;
  214. /*
  215.  * Wait lock time.  SA1111 manual _doesn't_
  216.  * specify a figure for this!  We choose 100us.
  217.  */
  218. udelay(100);
  219. /*
  220.  * Enable RCLK.  We also ensure that RDYEN is set.
  221.  */
  222. SBI_SKCR |= SKCR_RCLKEN | SKCR_RDYEN;
  223. /*
  224.  * Wait 14 RCLK cycles for the chip to finish coming out
  225.  * of reset. (RCLK=24MHz).  This is 590ns.
  226.  */
  227. udelay(1);
  228. /*
  229.  * Ensure all clocks are initially off.
  230.  */
  231. SKPCR = 0;
  232. local_irq_restore(flags);
  233. }
  234. void sa1111_doze(void)
  235. {
  236. if (SKPCR & SKPCR_UCLKEN) {
  237. printk("SA1111 doze mode refusedn");
  238. return;
  239. }
  240. SBI_SKCR &= ~SKCR_RCLKEN;
  241. }
  242. /*
  243.  * Configure the SA1111 shared memory controller.
  244.  */
  245. void sa1111_configure_smc(int sdram, unsigned int drac, unsigned int cas_latency)
  246. {
  247. unsigned int smcr = SMCR_DTIM | SMCR_MBGE | FInsrt(drac, SMCR_DRAC);
  248. if (cas_latency == 3)
  249. smcr |= SMCR_CLAT;
  250. SBI_SMCR = smcr;
  251. }
  252. /*
  253.  * Disable the memory bus request/grant signals on the SA1110 to
  254.  * ensure that we don't receive spurious memory requests.  We set
  255.  * the MBGNT signal false to ensure the SA1111 doesn't own the
  256.  * SDRAM bus.
  257.  */
  258. void __init sa1110_mb_disable(void)
  259. {
  260. unsigned long flags;
  261. local_irq_save(flags);
  262. PGSR &= ~GPIO_MBGNT;
  263. GPCR = GPIO_MBGNT;
  264. GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
  265. GAFR &= ~(GPIO_MBGNT | GPIO_MBREQ);
  266. local_irq_restore(flags);
  267. }
  268. /*
  269.  * If the system is going to use the SA-1111 DMA engines, set up
  270.  * the memory bus request/grant pins.
  271.  */
  272. void __init sa1110_mb_enable(void)
  273. {
  274. unsigned long flags;
  275. local_irq_save(flags);
  276. PGSR &= ~GPIO_MBGNT;
  277. GPCR = GPIO_MBGNT;
  278. GPDR = (GPDR & ~GPIO_MBREQ) | GPIO_MBGNT;
  279. GAFR |= (GPIO_MBGNT | GPIO_MBREQ);
  280. TUCR |= TUCR_MR;
  281. local_irq_restore(flags);
  282. }
  283. EXPORT_SYMBOL(sa1111_wake);
  284. EXPORT_SYMBOL(sa1111_doze);