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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/lart.c
  3.  */
  4. #include <linux/init.h>
  5. #include <linux/kernel.h>
  6. #include <linux/tty.h>
  7. #include <asm/hardware.h>
  8. #include <asm/setup.h>
  9. #include <asm/mach/arch.h>
  10. #include <asm/mach/map.h>
  11. #include <asm/mach/serial_sa1100.h>
  12. #include "generic.h"
  13. static struct map_desc lart_io_desc[] __initdata = {
  14.  /* virtual     physical    length      domain     r  w  c  b */
  15.   { 0xe8000000, 0x00000000, 0x00400000, DOMAIN_IO, 0, 1, 0, 0 }, /* main flash memory */
  16.   { 0xec000000, 0x08000000, 0x00400000, DOMAIN_IO, 0, 1, 0, 0 }, /* main flash, alternative location */
  17.   LAST_DESC
  18. };
  19. static void __init lart_map_io(void)
  20. {
  21. sa1100_map_io();
  22. iotable_init(lart_io_desc);
  23. sa1100_register_uart(0, 3);
  24. sa1100_register_uart(1, 1);
  25. sa1100_register_uart(2, 2);
  26. GAFR |= (GPIO_UART_TXD | GPIO_UART_RXD);
  27. GPDR |= GPIO_UART_TXD;
  28. GPDR &= ~GPIO_UART_RXD;
  29. PPAR |= PPAR_UPR;
  30. }
  31. MACHINE_START(LART, "LART")
  32. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  33. BOOT_PARAMS(0xc0000100)
  34. MAPIO(lart_map_io)
  35. INITIRQ(sa1100_init_irq)
  36. MACHINE_END