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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/adsbitsy.c
  3.  *
  4.  * Author: Woojung Huh
  5.  *
  6.  * Pieces specific to the ADS Bitsy
  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/init.h>
  13. #include <linux/sched.h>
  14. #include <linux/interrupt.h>
  15. #include <linux/ptrace.h>
  16. #include <linux/serial_core.h>
  17. #include <asm/hardware.h>
  18. #include <asm/setup.h>
  19. #include <asm/irq.h>
  20. #include <asm/mach/irq.h>
  21. #include <asm/mach/arch.h>
  22. #include <asm/mach/map.h>
  23. #include <asm/mach/serial_sa1100.h>
  24. #include <asm/arch/irq.h>
  25. #include "generic.h"
  26. #include "sa1111.h"
  27. static int __init adsbitsy_init(void)
  28. {
  29. int ret;
  30. if (!machine_is_adsbitsy())
  31. return -ENODEV;
  32. /*
  33.  * Ensure that the memory bus request/grant signals are setup,
  34.  * and the grant is held in its inactive state
  35.  */
  36. sa1110_mb_disable();
  37. /*
  38.  * Reset SA1111
  39.  */
  40. GPCR |= GPIO_GPIO26;
  41. udelay(1000);
  42. GPSR |= GPIO_GPIO26;
  43. /*
  44.  * Probe for SA1111.
  45.  */
  46. ret = sa1111_probe(ADSBITSY_SA1111_BASE);
  47. if (ret < 0)
  48. return ret;
  49. /*
  50.  * We found it.  Wake the chip up.
  51.  */
  52. sa1111_wake();
  53. /*
  54.  * The SDRAM configuration of the SA1110 and the SA1111 must
  55.  * match.  This is very important to ensure that SA1111 accesses
  56.  * don't corrupt the SDRAM.  Note that this ungates the SA1111's
  57.  * MBGNT signal, so we must have called sa1110_mb_disable()
  58.  * beforehand.
  59.  */
  60. sa1111_configure_smc(1,
  61.      FExtr(MDCNFG, MDCNFG_SA1110_DRAC0),
  62.      FExtr(MDCNFG, MDCNFG_SA1110_TDL0));
  63. /*
  64.  * Enable PWM control for LCD
  65.  */
  66. SKPCR |= SKPCR_PWMCLKEN;
  67. SKPWM0 = 0x7F; // VEE
  68. SKPEN0 = 1;
  69. SKPWM1 = 0x01; // Backlight
  70. SKPEN1 = 1;
  71. /*
  72.  * We only need to turn on DCLK whenever we want to use the
  73.  * DMA.  It can otherwise be held firmly in the off position.
  74.  */
  75. SKPCR |= SKPCR_DCLKEN;
  76. /*
  77.  * Enable the SA1110 memory bus request and grant signals.
  78.  */
  79. sa1110_mb_enable();
  80. set_GPIO_IRQ_edge(GPIO_GPIO0, GPIO_RISING_EDGE);
  81. sa1111_init_irq(IRQ_GPIO0);
  82. return 0;
  83. }
  84. __initcall(adsbitsy_init);
  85. static void __init adsbitsy_init_irq(void)
  86. {
  87. /* First the standard SA1100 IRQs */
  88. sa1100_init_irq();
  89. }
  90. /*
  91.  * Initialization fixup
  92.  */
  93. static void __init
  94. fixup_adsbitsy(struct machine_desc *desc, struct param_struct *params,
  95.      char **cmdline, struct meminfo *mi)
  96. {
  97. SET_BANK( 0, 0xc0000000, 32*1024*1024 );
  98. mi->nr_banks = 1;
  99. ROOT_DEV = MKDEV(RAMDISK_MAJOR,0);
  100. setup_ramdisk( 1, 0, 0, 8192 );
  101. setup_initrd( __phys_to_virt(0xc0800000), 4*1024*1024 );
  102. }
  103. static struct map_desc adsbitsy_io_desc[] __initdata = {
  104.  /* virtual     physical    length      domain     r  w  c  b */
  105.   { 0xe8000000, 0x08000000, 0x01000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 1 */
  106.   { 0xf4000000, 0x18000000, 0x00800000, DOMAIN_IO, 0, 1, 0, 0 }, /* SA1111 */
  107.   LAST_DESC
  108. };
  109. static int adsbitsy_uart_open(struct uart_port *port, struct uart_info *info)
  110. {
  111. if (port->mapbase == _Ser1UTCR0) {
  112. Ser1SDCR0 |= SDCR0_UART;
  113. #error Fixme // Set RTS High (should be done in the set_mctrl fn)
  114. GPCR = GPIO_GPIO15;
  115. } else if (port->mapbase == _Ser2UTCR0) {
  116. Ser2UTCR4 = Ser2HSCR0 = 0;
  117. #error Fixme // Set RTS High (should be done in the set_mctrl fn)
  118. GPCR = GPIO_GPIO17;
  119. } else if (port->mapbase == _Ser2UTCR0) {
  120. #error Fixme // Set RTS High (should be done in the set_mctrl fn)
  121. GPCR = GPIO_GPIO19;
  122. }
  123. return 0;
  124. }
  125. static struct sa1100_port_fns adsbitsy_port_fns __initdata = {
  126. open: adsbitsy_uart_open,
  127. };
  128. static void __init adsbitsy_map_io(void)
  129. {
  130. sa1100_map_io();
  131. iotable_init(adsbitsy_io_desc);
  132. sa1100_register_uart_fns(&adsbitsy_port_fns);
  133. sa1100_register_uart(0, 3);
  134. sa1100_register_uart(1, 1);
  135. sa1100_register_uart(2, 2);
  136. GPDR |= GPIO_GPIO15 | GPIO_GPIO17 | GPIO_GPIO19;
  137. GPDR &= ~(GPIO_GPIO14 | GPIO_GPIO16 | GPIO_GPIO18);
  138. }
  139. MACHINE_START(ADSBITSY, "ADS Bitsy")
  140. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  141. FIXUP(fixup_adsbitsy)
  142. MAPIO(adsbitsy_map_io)
  143. INITIRQ(adsbitsy_init_irq)
  144. MACHINE_END