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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/freebird.c
  3.  */
  4. #include <linux/config.h>
  5. #include <linux/module.h>
  6. #include <linux/init.h>
  7. #include <linux/kernel.h>
  8. #include <linux/tty.h>
  9. #include <asm/hardware.h>
  10. #include <asm/setup.h>
  11. #include <asm/mach/arch.h>
  12. #include <asm/mach/map.h>
  13. #include <asm/mach/serial_sa1100.h>
  14. #include "generic.h"
  15. unsigned long BCR_value = BCR_DB1110;
  16. EXPORT_SYMBOL(BCR_value);
  17. static void __init
  18. fixup_freebird(struct machine_desc *desc, struct param_struct *params,
  19.        char **cmdline, struct meminfo *mi)
  20. {
  21. #ifdef CONFIG_SA1100_FREEBIRD_OLD
  22. SET_BANK( 0, 0xc0000000, 32*1024*1024 );
  23. mi->nr_banks = 1;
  24. ROOT_DEV = MKDEV(RAMDISK_MAJOR,0);
  25. setup_ramdisk( 1, 0 ,0 , 8192 );
  26. setup_initrd( 0xc0800000, 3*1024*1024 );
  27. #endif
  28. }
  29. static struct map_desc freebird_io_desc[] __initdata = {
  30.  /* virtual     physical    length      domain     r  w  c  b */
  31.   { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 0 */
  32.   { 0xf0000000, 0x12000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* Board Control Register */
  33.   { 0xf2000000, 0x19000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0},
  34.    LAST_DESC
  35. };
  36. static void __init freebird_map_io(void)
  37. {
  38. sa1100_map_io();
  39. iotable_init(freebird_io_desc);
  40. sa1100_register_uart(0, 3);
  41. sa1100_register_uart(1, 1);
  42. /* Set up sleep mode registers */
  43. PWER = 0x1;
  44. PGSR = 0x0;
  45. PCFR = PCFR_OPDE | PCFR_FP | PCFR_FS;
  46. }
  47. MACHINE_START(FREEBIRD, "Freebird-HPC-1.1")
  48. BOOT_MEM(0xc0000000,0x80000000, 0xf8000000)
  49. #ifdef CONFIG_SA1100_FREEBIRD_NEW
  50. BOOT_PARAMS(0xc0000100)
  51. #endif
  52. FIXUP(fixup_freebird)
  53. MAPIO(freebird_map_io)
  54. INITIRQ(sa1100_init_irq)
  55. MACHINE_END