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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/empeg.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_empeg(struct machine_desc *desc, struct param_struct *params,
  15.     char **cmdline, struct meminfo *mi)
  16. {
  17. SET_BANK( 0, 0xc0000000, 4*1024*1024 );
  18. SET_BANK( 1, 0xc8000000, 4*1024*1024 );
  19. mi->nr_banks = 2;
  20. ROOT_DEV = MKDEV( 3, 1 );  /* /dev/hda1 */
  21. setup_ramdisk( 1, 0, 0, 4096 );
  22. setup_initrd( 0xd0000000+((1024-320)*1024), (320*1024) );
  23. }
  24. static struct map_desc empeg_io_desc[] __initdata = {
  25.  /* virtual     physical    length      domain     r  w  c  b */
  26.   { EMPEG_FLASHBASE, 0x00000000, 0x00200000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash */
  27.   LAST_DESC
  28. };
  29. static void __init empeg_map_io(void)
  30. {
  31. sa1100_map_io();
  32. iotable_init(empeg_io_desc);
  33. sa1100_register_uart(0, 1);
  34. sa1100_register_uart(1, 3);
  35. sa1100_register_uart(2, 2);
  36. Ser1SDCR0 |= SDCR0_UART;
  37. }
  38. MACHINE_START(EMPEG, "empeg MP3 Car Audio Player")
  39. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  40. FIXUP(fixup_empeg)
  41. MAPIO(empeg_map_io)
  42. INITIRQ(sa1100_init_irq)
  43. MACHINE_END