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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/assabet.c
  3.  *
  4.  * Author: Nicolas Pitre
  5.  *
  6.  * This file contains all Assabet-specific tweaks.
  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. #include <linux/config.h>
  13. #include <linux/init.h>
  14. #include <linux/kernel.h>
  15. #include <linux/sched.h>
  16. #include <linux/tty.h>
  17. #include <linux/module.h>
  18. #include <linux/errno.h>
  19. #include <linux/serial_core.h>
  20. #include <asm/hardware.h>
  21. #include <asm/setup.h>
  22. #include <asm/page.h>
  23. #include <asm/pgtable.h>
  24. #include <asm/mach/arch.h>
  25. #include <asm/mach/map.h>
  26. #include <asm/mach/serial_sa1100.h>
  27. #include <asm/arch/assabet.h>
  28. #include "generic.h"
  29. #define ASSABET_BCR_DB1110 
  30. (ASSABET_BCR_SPK_OFF    | ASSABET_BCR_QMUTE     | 
  31.  ASSABET_BCR_LED_GREEN  | ASSABET_BCR_LED_RED   | 
  32.  ASSABET_BCR_RS232EN    | ASSABET_BCR_LCD_12RGB | 
  33.  ASSABET_BCR_IRDA_MD0)
  34. #define ASSABET_BCR_DB1111 
  35. (ASSABET_BCR_SPK_OFF    | ASSABET_BCR_QMUTE     | 
  36.  ASSABET_BCR_LED_GREEN  | ASSABET_BCR_LED_RED   | 
  37.  ASSABET_BCR_RS232EN    | ASSABET_BCR_LCD_12RGB | 
  38.  ASSABET_BCR_CF_BUS_OFF | ASSABET_BCR_STEREO_LB | 
  39.  ASSABET_BCR_IRDA_MD0   | ASSABET_BCR_CF_RST | 
  40.  ASSABET_BCR_CODEC_RST  )
  41. unsigned long SCR_value = ASSABET_SCR_INIT;
  42. EXPORT_SYMBOL(SCR_value);
  43. static unsigned long BCR_value = ASSABET_BCR_DB1110;
  44. void ASSABET_BCR_frob(unsigned int mask, unsigned int val)
  45. {
  46. unsigned long flags;
  47. local_irq_save(flags);
  48. BCR_value = (BCR_value & ~mask) | val;
  49. ASSABET_BCR = BCR_value;
  50. local_irq_restore(flags);
  51. }
  52. EXPORT_SYMBOL(ASSABET_BCR_frob);
  53. static int __init assabet_init(void)
  54. {
  55. if (!machine_is_assabet())
  56. return -EINVAL;
  57. /*
  58.  * Set the IRQ edges
  59.  */
  60. set_GPIO_IRQ_edge(GPIO_GPIO23, GPIO_RISING_EDGE); /* UCB1300 */
  61. if (machine_has_neponset()) {
  62. /*
  63.  * Angel sets this, but other bootloaders may not.
  64.  *
  65.  * This must precede any driver calls to BCR_set()
  66.  * or BCR_clear().
  67.  */
  68. ASSABET_BCR = BCR_value = ASSABET_BCR_DB1111;
  69. NCR_0 = 0;
  70. #ifndef CONFIG_ASSABET_NEPONSET
  71. printk( "Warning: Neponset detected but full support "
  72. "hasn't been configured in the kerneln" );
  73. #endif
  74. }
  75. return 0;
  76. }
  77. __initcall(assabet_init);
  78. /*
  79.  * On Assabet, we must probe for the Neponset board _before_
  80.  * paging_init() has occurred to actually determine the amount
  81.  * of RAM available.  To do so, we map the appropriate IO section
  82.  * in the page table here in order to access GPIO registers.
  83.  */
  84. static void __init map_sa1100_gpio_regs( void )
  85. {
  86. unsigned long phys = __PREG(GPLR) & PMD_MASK;
  87. unsigned long virt = io_p2v(phys);
  88. int prot = PMD_TYPE_SECT | PMD_SECT_AP_WRITE | PMD_DOMAIN(DOMAIN_IO);
  89. pmd_t pmd;
  90. pmd_val(pmd) = phys | prot;
  91. set_pmd(pmd_offset(pgd_offset_k(virt), virt), pmd);
  92. }
  93. /*
  94.  * Read System Configuration "Register"
  95.  * (taken from "Intel StrongARM SA-1110 Microprocessor Development Board
  96.  * User's Guide", section 4.4.1)
  97.  *
  98.  * This same scan is performed in arch/arm/boot/compressed/head-sa1100.S
  99.  * to set up the serial port for decompression status messages. We
  100.  * repeat it here because the kernel may not be loaded as a zImage, and
  101.  * also because it's a hassle to communicate the SCR value to the kernel
  102.  * from the decompressor.
  103.  *
  104.  * Note that IRQs are guaranteed to be disabled.
  105.  */
  106. static void __init get_assabet_scr(void)
  107. {
  108. unsigned long scr, i;
  109. GPDR |= 0x3fc; /* Configure GPIO 9:2 as outputs */
  110. GPSR = 0x3fc; /* Write 0xFF to GPIO 9:2 */
  111. GPDR &= ~(0x3fc); /* Configure GPIO 9:2 as inputs */
  112. for(i = 100; i--; scr = GPLR); /* Read GPIO 9:2 */
  113. GPDR |= 0x3fc; /*  restore correct pin direction */
  114. scr &= 0x3fc; /* save as system configuration byte. */
  115. SCR_value = scr;
  116. }
  117. extern void convert_to_tag_list(struct param_struct *params, int mem_init);
  118. static void __init
  119. fixup_assabet(struct machine_desc *desc, struct param_struct *params,
  120.       char **cmdline, struct meminfo *mi)
  121. {
  122. struct tag *t = (struct tag *)params;
  123. /* This must be done before any call to machine_has_neponset() */
  124. map_sa1100_gpio_regs();
  125. get_assabet_scr();
  126. if (machine_has_neponset())
  127. printk("Neponset expansion board detectedn");
  128. /*
  129.  * Apparantly bootldr uses a param_struct.  Groan.
  130.  */
  131. if (t->hdr.tag != ATAG_CORE)
  132. convert_to_tag_list(params, 1);
  133. if (t->hdr.tag != ATAG_CORE) {
  134. t->hdr.tag = ATAG_CORE;
  135. t->hdr.size = tag_size(tag_core);
  136. t->u.core.flags = 0;
  137. t->u.core.pagesize = PAGE_SIZE;
  138. t->u.core.rootdev = RAMDISK_MAJOR << 8 | 0;
  139. t = tag_next(t);
  140. t->hdr.tag = ATAG_MEM;
  141. t->hdr.size = tag_size(tag_mem32);
  142. t->u.mem.start = 0xc0000000;
  143. t->u.mem.size  = 32 * 1024 * 1024;
  144. t = tag_next(t);
  145. /*
  146.  * Note that Neponset RAM is slower...
  147.  * and still untested.
  148.  * This would be a candidate for
  149.  * _real_ NUMA support.
  150.  */
  151. if (machine_has_neponset() && 0) {
  152. t->hdr.tag = ATAG_MEM;
  153. t->hdr.size = tag_size(tag_mem32);
  154. t->u.mem.start = 0xd0000000;
  155. t->u.mem.size  = 32 * 1024 * 1024;
  156. t = tag_next(t);
  157. }
  158. t->hdr.tag = ATAG_RAMDISK;
  159. t->hdr.size = tag_size(tag_ramdisk);
  160. t->u.ramdisk.flags = 1;
  161. t->u.ramdisk.size = 8192;
  162. t->u.ramdisk.start = 0;
  163. t = tag_next(t);
  164. t->hdr.tag = ATAG_INITRD;
  165. t->hdr.size = tag_size(tag_initrd);
  166. t->u.initrd.start = 0xc0800000;
  167. t->u.initrd.size = 3 * 1024 * 1024;
  168. t = tag_next(t);
  169. t->hdr.tag = ATAG_NONE;
  170. t->hdr.size = 0;
  171. }
  172. }
  173. static struct map_desc assabet_io_desc[] __initdata = {
  174.  /* virtual     physical    length      domain     r  w  c  b */
  175.   { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 0 */
  176.   { 0xf1000000, 0x12000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* Board Control Register */
  177.   { 0xf2800000, 0x4b800000, 0x00800000, DOMAIN_IO, 0, 1, 0, 0 }, /* MQ200 */
  178.   /*  f3000000 - neponset system registers */
  179.   /*  f4000000 - neponset SA1111 registers */
  180.   LAST_DESC
  181. };
  182. static void assabet_uart_pm(struct uart_port *port, u_int state, u_int oldstate)
  183. {
  184. if (port->mapbase == _Ser1UTCR0) {
  185. if (state)
  186. ASSABET_BCR_clear(ASSABET_BCR_RS232EN |
  187.   ASSABET_BCR_COM_RTS |
  188.   ASSABET_BCR_COM_DTR);
  189. else
  190. ASSABET_BCR_set(ASSABET_BCR_RS232EN |
  191. ASSABET_BCR_COM_RTS |
  192. ASSABET_BCR_COM_DTR);
  193. }
  194. }
  195. /*
  196.  * Assabet uses COM_RTS and COM_DTR for both UART1 (com port)
  197.  * and UART3 (radio module).  We only handle them for UART1 here.
  198.  */
  199. static void assabet_set_mctrl(struct uart_port *port, u_int mctrl)
  200. {
  201. if (port->mapbase == _Ser1UTCR0) {
  202. u_int set = 0, clear = 0;
  203. if (mctrl & TIOCM_RTS)
  204. clear |= ASSABET_BCR_COM_RTS;
  205. else
  206. set |= ASSABET_BCR_COM_RTS;
  207. if (mctrl & TIOCM_DTR)
  208. clear |= ASSABET_BCR_COM_DTR;
  209. else
  210. set |= ASSABET_BCR_COM_DTR;
  211. ASSABET_BCR_clear(clear);
  212. ASSABET_BCR_set(set);
  213. }
  214. }
  215. static u_int assabet_get_mctrl(struct uart_port *port)
  216. {
  217. u_int ret = 0;
  218. u_int bsr = ASSABET_BSR;
  219. /* need 2 reads to read current value */
  220. bsr = ASSABET_BSR;
  221. if (port->mapbase == _Ser1UTCR0) {
  222. if (bsr & ASSABET_BSR_COM_DCD)
  223. ret |= TIOCM_CD;
  224. if (bsr & ASSABET_BSR_COM_CTS)
  225. ret |= TIOCM_CTS;
  226. if (bsr & ASSABET_BSR_COM_DSR)
  227. ret |= TIOCM_DSR;
  228. } else if (port->mapbase == _Ser3UTCR0) {
  229. if (bsr & ASSABET_BSR_RAD_DCD)
  230. ret |= TIOCM_CD;
  231. if (bsr & ASSABET_BSR_RAD_CTS)
  232. ret |= TIOCM_CTS;
  233. if (bsr & ASSABET_BSR_RAD_DSR)
  234. ret |= TIOCM_DSR;
  235. if (bsr & ASSABET_BSR_RAD_RI)
  236. ret |= TIOCM_RI;
  237. } else {
  238. ret = TIOCM_CD | TIOCM_CTS | TIOCM_DSR;
  239. }
  240. return ret;
  241. }
  242. static struct sa1100_port_fns assabet_port_fns __initdata = {
  243. set_mctrl: assabet_set_mctrl,
  244. get_mctrl: assabet_get_mctrl,
  245. pm: assabet_uart_pm,
  246. };
  247. static void __init assabet_map_io(void)
  248. {
  249. extern void neponset_map_io(void);
  250. sa1100_map_io();
  251. iotable_init(assabet_io_desc);
  252. #ifdef CONFIG_ASSABET_NEPONSET
  253. /*
  254.  * We map Neponset registers even if it isn't present since
  255.  * many drivers will try to probe their stuff (and fail).
  256.  * This is still more friendly than a kernel paging request
  257.  * crash.
  258.  */
  259. neponset_map_io();
  260. #endif
  261. if (machine_has_neponset()) {
  262. /*
  263.  * When Neponset is attached, the first UART should be
  264.  * UART3.  That's what Angel is doing and many documents
  265.  * are stating this.
  266.  * We do the Neponset mapping even if Neponset support
  267.  * isn't compiled in so the user will still get something on
  268.  * the expected physical serial port.
  269.  */
  270. sa1100_register_uart(0, 3);
  271. sa1100_register_uart(2, 1);
  272. /*
  273.  * Set SUS bit in SDCR0 so serial port 1 functions.
  274.  * Its called GPCLKR0 in my SA1110 manual.
  275.  */
  276. Ser1SDCR0 |= SDCR0_SUS;
  277. } else {
  278. sa1100_register_uart_fns(&assabet_port_fns);
  279. sa1100_register_uart(0, 1); /* com port */
  280. sa1100_register_uart(2, 3); /* radio module */
  281. }
  282. /*
  283.  * Ensure that these pins are set as outputs and are driving
  284.  * logic 0.  This ensures that we won't inadvertently toggle
  285.  * the WS latch in the CPLD, and we don't float causing
  286.  * excessive power drain.  --rmk
  287.  */
  288. GPDR |= GPIO_SSP_TXD | GPIO_SSP_SCLK | GPIO_SSP_SFRM;
  289. GPCR = GPIO_SSP_TXD | GPIO_SSP_SCLK | GPIO_SSP_SFRM;
  290. /*
  291.  * Set up registers for sleep mode.
  292.  */
  293. PWER = PWER_GPIO0;
  294. PGSR = 0;
  295. PCFR = 0;
  296. PSDR = 0;
  297. }
  298. MACHINE_START(ASSABET, "Intel-Assabet")
  299. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  300. BOOT_PARAMS(0xc0000100)
  301. FIXUP(fixup_assabet)
  302. MAPIO(assabet_map_io)
  303. INITIRQ(sa1100_init_irq)
  304. MACHINE_END