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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/xp860.c
  3.  */
  4. #include <linux/init.h>
  5. #include <linux/kernel.h>
  6. #include <linux/delay.h>
  7. #include <linux/pm.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. #include "sa1111.h"
  16. static void xp860_power_off(void)
  17. {
  18. cli();
  19. GPDR |= GPIO_GPIO20;
  20. GPSR = GPIO_GPIO20;
  21. mdelay(1000);
  22. GPCR = GPIO_GPIO20;
  23. while(1);
  24. }
  25. /*
  26.  * Note: I replaced the sa1111_init() without the full SA1111 initialisation
  27.  * because this machine doesn't appear to use the DMA features.  If this is
  28.  * wrong, please look at neponset.c to fix it properly.
  29.  */
  30. static int __init xp860_init(void)
  31. {
  32. pm_power_off = xp860_power_off;
  33. /*
  34.  * Probe for SA1111.
  35.  */
  36. ret = sa1111_probe(0x40000000);
  37. if (ret < 0)
  38. return ret;
  39. /*
  40.  * We found it.  Wake the chip up.
  41.  */
  42. sa1111_wake();
  43. return 0;
  44. }
  45. __initcall(xp860_init);
  46. static void __init
  47. fixup_xp860(struct machine_desc *desc, struct param_struct *params,
  48.     char **cmdline, struct meminfo *mi)
  49. {
  50. SET_BANK( 0, 0xc0000000, 32*1024*1024 );
  51. mi->nr_banks = 1;
  52. }
  53. static struct map_desc xp860_io_desc[] __initdata = {
  54.  /* virtual     physical    length      domain     r  w  c  b */
  55.   { 0xf0000000, 0x10000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* SCSI */
  56.   { 0xf1000000, 0x18000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, /* LAN */
  57.   { 0xf4000000, 0x40000000, 0x00800000, DOMAIN_IO, 0, 1, 0, 0 }, /* SA-1111 */
  58.   LAST_DESC
  59. };
  60. static void __init xp860_map_io(void)
  61. {
  62. sa1100_map_io();
  63. iotable_init(xp860_io_desc);
  64. sa1100_register_uart(0, 3);
  65. sa1100_register_uart(1, 1);
  66. }
  67. MACHINE_START(XP860, "XP860")
  68. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  69. FIXUP(fixup_xp860)
  70. MAPIO(xp860_map_io)
  71. INITIRQ(sa1100_init_irq)
  72. MACHINE_END