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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/pleb.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_pleb(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. /* make this 4 a second memory card is used to make 64MB */
  22. /* make it 1 if a 16MB memory card is used */
  23. mi->nr_banks = 2; /* Default 32MB */
  24. ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0);
  25. setup_ramdisk(1, 0, 0, 8192);
  26. setup_initrd(0xc0400000, 4*1024*1024);
  27. }
  28. static struct map_desc pleb_io_desc[] __initdata = {
  29.  /* virtual     physical    length      domain     r  w  c  b */
  30.   { 0xe8000000, 0x00000000, 0x00400000, DOMAIN_IO, 0, 1, 0, 0 }, /* main flash memory */
  31.   { 0xe8400000, 0x08000000, 0x00400000, DOMAIN_IO, 0, 1, 0, 0 }, /* main flash, alternative location */
  32.   LAST_DESC
  33. };
  34. static void __init pleb_map_io(void)
  35. {
  36. sa1100_map_io();
  37. iotable_init(pleb_io_desc);
  38. sa1100_register_uart(0, 3);
  39.         sa1100_register_uart(1, 1);
  40.         GAFR |= (GPIO_UART_TXD | GPIO_UART_RXD);
  41.         GPDR |= GPIO_UART_TXD;
  42.         GPDR &= ~GPIO_UART_RXD;
  43.         PPAR |= PPAR_UPR;
  44. }
  45. MACHINE_START(PLEB, "PLEB")
  46. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  47. FIXUP(fixup_pleb)
  48. MAPIO(pleb_map_io)
  49. INITIRQ(sa1100_init_irq)
  50. MACHINE_END