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

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/victor.c
  3.  *
  4.  * Author: Nicolas Pitre
  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. #include <linux/init.h>
  11. #include <linux/kernel.h>
  12. #include <linux/delay.h>
  13. #include <linux/pm.h>
  14. #include <linux/tty.h>
  15. #include <asm/hardware.h>
  16. #include <asm/setup.h>
  17. #include <asm/mach/arch.h>
  18. #include <asm/mach/map.h>
  19. #include <asm/mach/serial_sa1100.h>
  20. #include "generic.h"
  21. static void victor_power_off(void)
  22. {
  23. /* switch off power supply */
  24. mdelay(2000);
  25. GPCR = GPIO_GPIO23;
  26. while (1);
  27. }
  28. static int __init victor_init(void)
  29. {
  30. pm_power_off = victor_power_off;
  31. return 0;
  32. }
  33. __initcall(victor_init);
  34. static void __init
  35. fixup_victor(struct machine_desc *desc, struct param_struct *params,
  36.      char **cmdline, struct meminfo *mi)
  37. {
  38. SET_BANK( 0, 0xc0000000, 4*1024*1024 );
  39. mi->nr_banks = 1;
  40. ROOT_DEV = MKDEV( 60, 2 );
  41. /* Get command line parameters passed from the loader (if any) */
  42. if( *((char*)0xc0000000) )
  43. strcpy( *cmdline, ((char *)0xc0000000) );
  44. /* power off if any problem */
  45. strcat( *cmdline, " panic=1" );
  46. }
  47. static struct map_desc victor_io_desc[] __initdata = {
  48.  /* virtual     physical    length      domain     r  w  c  b */
  49.   { 0xe8000000, 0x00000000, 0x00200000, DOMAIN_IO, 0, 1, 0, 0 }, /* Flash */
  50.   LAST_DESC
  51. };
  52. static void __init victor_map_io(void)
  53. {
  54. sa1100_map_io();
  55. iotable_init(victor_io_desc);
  56. sa1100_register_uart(0, 3);
  57. }
  58. MACHINE_START(VICTOR, "VisuAide Victor")
  59. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  60. FIXUP(fixup_victor)
  61. MAPIO(victor_map_io)
  62. INITIRQ(sa1100_init_irq)
  63. MACHINE_END