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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/brutus.c
  3.  *
  4.  * Author: Nicolas Pitre
  5.  *
  6.  * This program is free software; you can redistribute it and/or modify
  7.  * it under the terms of the GNU General Public License version 2 as
  8.  * published by the Free Software Foundation.
  9.  */
  10. #include <linux/init.h>
  11. #include <linux/kernel.h>
  12. #include <linux/tty.h>
  13. #include <asm/hardware.h>
  14. #include <asm/setup.h>
  15. #include <asm/mach/arch.h>
  16. #include <asm/mach/map.h>
  17. #include <asm/mach/serial_sa1100.h>
  18. #include "generic.h"
  19. static void __init
  20. fixup_brutus(struct machine_desc *desc, struct param_struct *params,
  21.      char **cmdline, struct meminfo *mi)
  22. {
  23. SET_BANK( 0, 0xc0000000, 4*1024*1024 );
  24. SET_BANK( 1, 0xc8000000, 4*1024*1024 );
  25. SET_BANK( 2, 0xd0000000, 4*1024*1024 );
  26. SET_BANK( 3, 0xd8000000, 4*1024*1024 );
  27. mi->nr_banks = 4;
  28. ROOT_DEV = MKDEV(RAMDISK_MAJOR,0);
  29. setup_ramdisk( 1, 0, 0, 8192 );
  30. setup_initrd( __phys_to_virt(0xd8000000), 3*1024*1024 );
  31. }
  32. static void __init brutus_map_io(void)
  33. {
  34. sa1100_map_io();
  35. sa1100_register_uart(0, 1);
  36. sa1100_register_uart(1, 3);
  37. GAFR |= (GPIO_UART_TXD | GPIO_UART_RXD);
  38. GPDR |= GPIO_UART_TXD;
  39. GPDR &= ~GPIO_UART_RXD;
  40. PPAR |= PPAR_UPR;
  41. }
  42. MACHINE_START(BRUTUS, "Intel Brutus (SA1100 eval board)")
  43. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  44. FIXUP(fixup_brutus)
  45. MAPIO(brutus_map_io)
  46. INITIRQ(sa1100_init_irq)
  47. MACHINE_END