arch.c
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:1k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  *  linux/arch/arm/mach-anakin/arch.c
  3.  *
  4.  *  Copyright (C) 2001 Aleph One Ltd. for Acunia N.V.
  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.  *  Changelog:
  11.  *   09-Apr-2001 W/TTC Created
  12.  */
  13. #include <linux/config.h>
  14. #include <linux/tty.h>
  15. #include <linux/init.h>
  16. #include <asm/setup.h>
  17. #include <asm/mach-types.h>
  18. #include <asm/mach/arch.h>
  19. #ifndef CONFIG_BLK_DEV_RAM_SIZE
  20. #define CONFIG_BLK_DEV_RAM_SIZE 4096
  21. #endif
  22. extern void anakin_map_io(void);
  23. extern void genarch_init_irq(void);
  24. static void __init
  25. fixup_anakin(struct machine_desc *desc, struct param_struct *unused,
  26.              char **cmdline, struct meminfo *mi)
  27. {
  28. ROOT_DEV = MKDEV(RAMDISK_MAJOR, 0);
  29. setup_ramdisk(1, 0, 0, CONFIG_BLK_DEV_RAM_SIZE);
  30. setup_initrd(0xc0800000, 4 * 1024 * 1024);
  31. }
  32. MACHINE_START(ANAKIN, "Anakin")
  33. MAINTAINER("Wookey/Tak-Shing Chan")
  34. BOOT_MEM(0x20000000, 0x40000000, 0xe0000000)
  35. VIDEO(0x80000000, 0x8002db40)
  36. FIXUP(fixup_anakin)
  37. MAPIO(anakin_map_io)
  38. INITIRQ(genarch_init_irq)
  39. MACHINE_END