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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/itsy.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 void __init
  14. fixup_itsy(struct machine_desc *desc, struct param_struct *params,
  15.    char **cmdline, struct meminfo *mi)
  16. {
  17. SET_BANK( 0, 0xc0000000, 16*1024*1024 );
  18. SET_BANK( 1, 0xc8000000, 16*1024*1024 );
  19. SET_BANK( 2, 0xd0000000, 16*1024*1024 );
  20. SET_BANK( 3, 0xd8000000, 16*1024*1024 );
  21. mi->nr_banks = 4;
  22. }
  23. /* BRADFIXME The egpio addresses aren't verifiably correct. (i.e. they're most
  24.    likely wrong. */
  25. static struct map_desc itsy_io_desc[] __initdata = {
  26.  /* virtual     physical    length      domain     r  w  c  b */
  27.   { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 0 */
  28.   { 0xf0000000, 0x49000000, 0x01000000, DOMAIN_IO, 0, 1, 0, 0 }, /* EGPIO 0 */
  29.   LAST_DESC
  30. };
  31. static void __init itsy_map_io(void)
  32. {
  33. sa1100_map_io();
  34. iotable_init(itsy_io_desc);
  35. sa1100_register_uart(0, 3);
  36. sa1100_register_uart(1, 1);
  37. sa1100_register_uart(2, 2);
  38. }
  39. MACHINE_START(ITSY, "Compaq Itsy")
  40. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  41. BOOT_PARAMS(0xc0000100)
  42. FIXUP(fixup_itsy)
  43. MAPIO(itsy_map_io)
  44. INITIRQ(sa1100_init_irq)
  45. MACHINE_END