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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/pfs168.c
  3.  */
  4. #include <linux/config.h>
  5. #include <linux/init.h>
  6. #include <linux/kernel.h>
  7. #include <linux/tty.h>
  8. #include <linux/errno.h>
  9. #include <asm/hardware.h>
  10. #include <asm/setup.h>
  11. #include <asm/mach/arch.h>
  12. #include <asm/mach/map.h>
  13. #include <asm/mach/serial_sa1100.h>
  14. #include "generic.h"
  15. #include "sa1111.h"
  16. static int __init pfs168_init(void)
  17. {
  18. int ret;
  19. if (!machine_is_pfs168())
  20. return -ENODEV;
  21. /*
  22.  * Ensure that the memory bus request/grant signals are setup,
  23.  * and the grant is held in its inactive state
  24.  */
  25. sa1110_mb_disable();
  26. /*
  27.  * Probe for SA1111.
  28.  */
  29. ret = sa1111_probe(PFS168_SA1111_BASE);
  30. if (ret < 0)
  31. return ret;
  32. /*
  33.  * We found it.  Wake the chip up.
  34.  */
  35. sa1111_wake();
  36. /*
  37.  * The SDRAM configuration of the SA1110 and the SA1111 must
  38.  * match.  This is very important to ensure that SA1111 accesses
  39.  * don't corrupt the SDRAM.  Note that this ungates the SA1111's
  40.  * MBGNT signal, so we must have called sa1110_mb_disable()
  41.  * beforehand.
  42.  */
  43. sa1111_configure_smc(1,
  44.      FExtr(MDCNFG, MDCNFG_SA1110_DRAC0),
  45.      FExtr(MDCNFG, MDCNFG_SA1110_TDL0));
  46. /*
  47.  * We only need to turn on DCLK whenever we want to use the
  48.  * DMA.  It can otherwise be held firmly in the off position.
  49.  */
  50. SKPCR |= SKPCR_DCLKEN;
  51. /*
  52.  * Enable the SA1110 memory bus request and grant signals.
  53.  */
  54. sa1110_mb_enable();
  55. sa1111_init_irq(IRQ_GPIO25); /* SA1111 IRQ on GPIO 25 */
  56. return 0;
  57. }
  58. __initcall(pfs168_init);
  59. static void __init pfs168_init_irq(void)
  60. {
  61. sa1100_init_irq();
  62. /*
  63.  * Need to register these as rising edge interrupts
  64.  * for standard 16550 serial driver support.
  65.  */
  66. set_GPIO_IRQ_edge(GPIO_GPIO(19), GPIO_RISING_EDGE);
  67. set_GPIO_IRQ_edge(GPIO_GPIO(20), GPIO_RISING_EDGE);
  68. set_GPIO_IRQ_edge(GPIO_GPIO(25), GPIO_RISING_EDGE);
  69. set_GPIO_IRQ_edge(GPIO_UCB1300_IRQ, GPIO_RISING_EDGE);
  70. }
  71. static void __init
  72. fixup_pfs168(struct machine_desc *desc, struct param_struct *params,
  73.      char **cmdline, struct meminfo *mi)
  74. {
  75. SET_BANK( 0, 0xc0000000, 16*1024*1024 );
  76. mi->nr_banks = 1;
  77. ROOT_DEV = MKDEV(RAMDISK_MAJOR,0);
  78. setup_ramdisk( 1, 0, 0, 8192 );
  79. setup_initrd( 0xc0800000, 3*1024*1024 );
  80. }
  81. static struct map_desc pfs168_io_desc[] __initdata = {
  82.  /* virtual     physical    length      domain     r  w  c  b */
  83.   { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 0 */
  84.   { 0xf0000000, 0x10000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* 16C752 DUART port A (COM5) */
  85.   { 0xf0001000, 0x10800000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* 16C752 DUART port B (COM6) */
  86.   { 0xf0002000, 0x11000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* COM1 RTS control (SYSC1RTS) */
  87.   { 0xf0003000, 0x11400000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* Status LED control (SYSLED) */
  88.   { 0xf0004000, 0x11800000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* DTMF code read (SYSDTMF) */
  89.   { 0xf0005000, 0x11c00000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* LCD configure, enable (SYSLCDDE) */
  90.   { 0xf0006000, 0x12000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* COM1 DSR and motion sense (SYSC1DSR) */
  91.   { 0xf0007000, 0x12800000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* COM3 xmit enable (SYSC3TEN) */
  92.   { 0xf0008000, 0x13000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* Control register A (SYSCTLA) */
  93.   { 0xf0009000, 0x13800000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* Control register B (SYSCTLB) */
  94.   { 0xf000a000, 0x18000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, /* SMC91C96 */
  95.   { 0xf2800000, 0x4b800000, 0x00800000, DOMAIN_IO, 0, 1, 0, 0 }, /* MQ200 */
  96.   { 0xf4000000, 0x40000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* SA-1111 */
  97.   LAST_DESC
  98. };
  99. static void __init pfs168_map_io(void)
  100. {
  101. sa1100_map_io();
  102. iotable_init(pfs168_io_desc);
  103. sa1100_register_uart(0, 3);
  104. sa1100_register_uart(1, 1);
  105. }
  106. MACHINE_START(PFS168, "Tulsa")
  107. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  108. #if defined(CONFIG_PFS168_CMDLINE)
  109. BOOT_PARAMS(0xc0000100)
  110. #endif
  111. FIXUP(fixup_pfs168)
  112. MAPIO(pfs168_map_io)
  113. INITIRQ(pfs168_init_irq)
  114. MACHINE_END