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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/cerf.c
  3.  */
  4. #include <linux/config.h>
  5. #include <linux/init.h>
  6. #include <linux/kernel.h>
  7. #include <linux/tty.h>
  8. #include <asm/hardware.h>
  9. #include <asm/setup.h>
  10. #include <asm/mach/arch.h>
  11. #include <asm/mach/map.h>
  12. #include <asm/mach/serial_sa1100.h>
  13. #include "generic.h"
  14. static void __init cerf_init_irq(void)
  15. {
  16. sa1100_init_irq();
  17. /* Need to register these as rising edge interrupts
  18.  * For standard 16550 serial driver support
  19.  * Basically - I copied it from pfs168.c :)
  20.  */
  21. #ifdef CONFIG_SA1100_CERF_CPLD
  22. /* PDA Full serial port */
  23. set_GPIO_IRQ_edge(GPIO_GPIO3, GPIO_RISING_EDGE);
  24. /* PDA Bluetooth */
  25. set_GPIO_IRQ_edge(GPIO_GPIO2, GPIO_RISING_EDGE);
  26. #endif /* CONFIG_SA1100_CERF_CPLD */
  27. set_GPIO_IRQ_edge(GPIO_UCB1200_IRQ, GPIO_RISING_EDGE);
  28. }
  29. static void __init
  30. fixup_cerf(struct machine_desc *desc, struct param_struct *params,
  31.    char **cmdline, struct meminfo *mi)
  32. {
  33. #if defined(CONFIG_SA1100_CERF_64MB)
  34. SET_BANK( 0, 0xc0000000, 64*1024*1024 );
  35. mi->nr_banks = 1;
  36. #elif defined(CONFIG_SA1100_CERF_32MB)
  37. SET_BANK( 0, 0xc0000000, 32*1024*1024 );
  38. mi->nr_banks = 1;
  39. #elif defined(CONFIG_SA1100_CERF_16MB)
  40. SET_BANK( 0, 0xc0000000, 8*1024*1024 );
  41. SET_BANK( 1, 0xc8000000, 8*1024*1024 );
  42. mi->nr_banks = 2;
  43. #elif defined(CONFIG_SA1100_CERF_8MB)
  44. SET_BANK( 0, 0xc0000000, 8*1024*1024 );
  45. mi->nr_banks = 1;
  46. #else
  47. #error "Undefined memory size for Cerfboard."
  48. #endif
  49. // ROOT_DEV = MKDEV(RAMDISK_MAJOR,0);
  50. // setup_ramdisk(1,  0, 0, 8192);
  51. // // Save 2Meg for RAMDisk
  52. // setup_initrd(0xc0500000, 3*1024*1024);
  53. }
  54. static struct map_desc cerf_io_desc[] __initdata = {
  55.   /* virtual  physical    length  domain     r  w  c  b */
  56.   { 0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash bank 0 */
  57.   { 0xf0000000, 0x08000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* Crystal Ethernet Chip */
  58. #ifdef CONFIG_SA1100_CERF_CPLD
  59.   { 0xf1000000, 0x40000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* CPLD Chip */
  60.   { 0xf2000000, 0x10000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* CerfPDA Bluetooth */
  61.   { 0xf3000000, 0x18000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* CerfPDA Serial */
  62. #endif
  63.   LAST_DESC
  64. };
  65. static void __init cerf_map_io(void)
  66. {
  67. sa1100_map_io();
  68. iotable_init(cerf_io_desc);
  69. sa1100_register_uart(0, 3);
  70. #ifdef CONFIG_SA1100_CERF_IRDA_ENABLED
  71. sa1100_register_uart(1, 1);
  72. #else
  73. sa1100_register_uart(1, 2);
  74. sa1100_register_uart(2, 1);
  75. #endif
  76. /* set some GPDR bits here while it's safe */
  77. GPDR |= GPIO_CF_RESET;
  78. #ifdef CONFIG_SA1100_CERF_CPLD
  79. GPDR |= GPIO_PWR_SHUTDOWN;
  80. #endif
  81. }
  82. MACHINE_START(CERF, "Intrinsyc's Cerf Family of Products")
  83. MAINTAINER("support@intrinsyc.com")
  84. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  85. FIXUP(fixup_cerf)
  86. MAPIO(cerf_map_io)
  87. INITIRQ(cerf_init_irq)
  88. MACHINE_END