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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/nanoengine.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 nanoengine_io_desc[] __initdata = {
  14.  /* virtual     physical    length      domain     r  w  c  b */
  15.   { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 0 */
  16.   { 0xf0000000, 0x10000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* System Registers */
  17.   { 0xf1000000, 0x18A00000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* Internal PCI Config Space */
  18.   LAST_DESC
  19. };
  20. static void __init nanoengine_map_io(void)
  21. {
  22. sa1100_map_io();
  23. iotable_init(nanoengine_io_desc);
  24. sa1100_register_uart(0, 1);
  25. sa1100_register_uart(1, 2);
  26. sa1100_register_uart(2, 3);
  27. Ser1SDCR0 |= SDCR0_UART;
  28. /* disable IRDA -- UART2 is used as a normal serial port */
  29. Ser2UTCR4=0;
  30. Ser2HSCR0 = 0;
  31. }
  32. MACHINE_START(NANOENGINE, "BSE nanoEngine")
  33. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  34. BOOT_PARAMS(0xc0000100)
  35. MAPIO(nanoengine_map_io)
  36. INITIRQ(sa1100_init_irq)
  37. MACHINE_END