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

嵌入式Linux

开发平台:

Unix_Linux

  1. /*
  2.  * linux/arch/arm/mach-sa1100/badge4.c
  3.  *
  4.  * BadgePAD 4 specific initialization
  5.  *
  6.  *   Tim Connors <connors@hpl.hp.com>
  7.  *   Christopher Hoover <ch@hpl.hp.com>
  8.  *
  9.  * Copyright (C) 2002 Hewlett-Packard Company
  10.  *
  11.  * This program is free software; you can redistribute it and/or modify
  12.  * it under the terms of the GNU General Public License version 2 as
  13.  * published by the Free Software Foundation.
  14.  *
  15.  */
  16. #include <linux/module.h>
  17. #include <linux/init.h>
  18. #include <linux/kernel.h>
  19. #include <linux/delay.h>
  20. #include <linux/tty.h>
  21. #include <linux/errno.h>
  22. #include <asm/hardware.h>
  23. #include <asm/setup.h>
  24. #include <asm/arch/irqs.h>
  25. #include <asm/mach/arch.h>
  26. #include <asm/mach/map.h>
  27. #include <asm/hardware/sa1111.h>
  28. #include <asm/mach/serial_sa1100.h>
  29. #include "generic.h"
  30. #include "sa1111.h"
  31. static int __init badge4_sa1111_init(void)
  32. {
  33. int ret;
  34. /*
  35.  * Ensure that the memory bus request/grant signals are setup,
  36.  * and the grant is held in its inactive state
  37.  */
  38. sa1110_mb_disable();
  39. /*
  40.  * Probe for SA1111.
  41.  */
  42. ret = sa1111_probe(BADGE4_SA1111_BASE);
  43. if (ret < 0)
  44. return ret;
  45. /*
  46.  * We found it.  Wake the chip up.
  47.  */
  48. sa1111_wake();
  49. /*
  50.  * The SDRAM configuration of the SA1110 and the SA1111 must
  51.  * match.  This is very important to ensure that SA1111 accesses
  52.  * don't corrupt the SDRAM.  Note that this ungates the SA1111's
  53.  * MBGNT signal, so we must have called sa1110_mb_disable()
  54.  * beforehand.
  55.  */
  56. sa1111_configure_smc(1,
  57.      FExtr(MDCNFG, MDCNFG_SA1110_DRAC0),
  58.      FExtr(MDCNFG, MDCNFG_SA1110_TDL0));
  59. /*
  60.  * We only need to turn on DCLK whenever we want to use the
  61.  * DMA.  It can otherwise be held firmly in the off position.
  62.  */
  63. SKPCR |= SKPCR_DCLKEN;
  64. /*
  65.  * Enable the SA1110 memory bus request and grant signals.
  66.  */
  67. sa1110_mb_enable();
  68. set_GPIO_IRQ_edge(BADGE4_GPIO_INT_1111, GPIO_RISING_EDGE);
  69. sa1111_init_irq(BADGE4_IRQ_GPIO_SA1111);
  70. return 0;
  71. }
  72. static int __init badge4_init(void)
  73. {
  74. int ret;
  75. if (!machine_is_badge4())
  76. return -ENODEV;
  77. ret = badge4_sa1111_init();
  78. if (ret < 0)
  79. printk(KERN_ERR __FUNCTION__
  80.        ": SA-1111 initialization failed (%d)n", ret);
  81. /* N.B, according to rmk this is the singular place that GPDR
  82.            should be set */
  83. /* Video expansion */
  84. GPCR  = (BADGE4_GPIO_INT_VID | BADGE4_GPIO_LGP2 | BADGE4_GPIO_LGP3 |
  85.  BADGE4_GPIO_LGP4 | BADGE4_GPIO_LGP5 | BADGE4_GPIO_LGP6 |
  86.  BADGE4_GPIO_LGP7 | BADGE4_GPIO_LGP8 | BADGE4_GPIO_LGP9 |
  87.  BADGE4_GPIO_GPA_VID | BADGE4_GPIO_GPB_VID |
  88.  BADGE4_GPIO_GPC_VID);
  89. GPDR |= (BADGE4_GPIO_INT_VID | BADGE4_GPIO_LGP2 | BADGE4_GPIO_LGP3 |
  90.  BADGE4_GPIO_LGP4 | BADGE4_GPIO_LGP5 | BADGE4_GPIO_LGP6 |
  91.  BADGE4_GPIO_LGP7 | BADGE4_GPIO_LGP8 | BADGE4_GPIO_LGP9 |
  92.  BADGE4_GPIO_GPA_VID | BADGE4_GPIO_GPB_VID |
  93.  BADGE4_GPIO_GPC_VID);
  94. /* SDRAM SPD i2c */
  95. GPCR  = (BADGE4_GPIO_SDSDA | BADGE4_GPIO_SDSCL);
  96. GPDR |= (BADGE4_GPIO_SDSDA | BADGE4_GPIO_SDSCL);
  97. /* uart */
  98. GPCR  = (BADGE4_GPIO_UART_HS1 | BADGE4_GPIO_UART_HS2);
  99. GPDR |= (BADGE4_GPIO_UART_HS1 | BADGE4_GPIO_UART_HS2);
  100. /* drives CPLD muxsel0 input */
  101. GPCR  = BADGE4_GPIO_MUXSEL0;
  102. GPDR |= BADGE4_GPIO_MUXSEL0;
  103. /* test points */
  104. GPCR  = (BADGE4_GPIO_TESTPT_J7 | BADGE4_GPIO_TESTPT_J6 |
  105.  BADGE4_GPIO_TESTPT_J5);
  106. GPDR |= (BADGE4_GPIO_TESTPT_J7 | BADGE4_GPIO_TESTPT_J6 |
  107.  BADGE4_GPIO_TESTPT_J5);
  108. /* drives CPLD sdram type inputs; this shouldn't be needed;
  109.            bootloader left it this way. */
  110. GPDR |= (BADGE4_GPIO_SDTYP0 | BADGE4_GPIO_SDTYP1);
  111.    /* 5V supply rail. */
  112.    GPCR  = BADGE4_GPIO_PCMEN5V; /* initially off */
  113.     GPDR |= BADGE4_GPIO_PCMEN5V;
  114. /* drives SA1111 reset pin; this shouldn't be needed;
  115.            bootloader left it this way. */
  116. GPSR  = BADGE4_GPIO_SA1111_NRST;
  117. GPDR |= BADGE4_GPIO_SA1111_NRST;
  118. return 0;
  119. }
  120. __initcall(badge4_init);
  121. static unsigned badge4_5V_bitmap = 0;
  122. void badge4_set_5V(unsigned subsystem, int on)
  123. {
  124. unsigned long flags;
  125. unsigned old_5V_bitmap;
  126. local_irq_save(flags);
  127. old_5V_bitmap = badge4_5V_bitmap;
  128. if (on) {
  129. badge4_5V_bitmap |= subsystem;
  130. } else {
  131. badge4_5V_bitmap &= ~subsystem;
  132. }
  133. /* detect on->off and off->on transitions */
  134. if ((!old_5V_bitmap) && (badge4_5V_bitmap)) {
  135. /* was off, now on */
  136. printk(KERN_INFO __FUNCTION__ ": enabling 5V supply railn");
  137. GPSR = BADGE4_GPIO_PCMEN5V;
  138. } else if ((old_5V_bitmap) && (!badge4_5V_bitmap)) {
  139. /* was on, now off */
  140. printk(KERN_INFO __FUNCTION__ ": disabling 5V supply railn");
  141. GPCR = BADGE4_GPIO_PCMEN5V;
  142. }
  143. local_irq_restore(flags);
  144. }
  145. EXPORT_SYMBOL(badge4_set_5V);
  146. static void __init
  147. fixup_badge4(struct machine_desc *desc, struct param_struct *params,
  148.     char **cmdline, struct meminfo *mi)
  149. {
  150. /* nothing needed here */
  151. }
  152. static struct map_desc badge4_io_desc[] __initdata = {
  153.   /*  virtual    physical    length      domain   r w c b    */
  154.   {0xe8000000, 0x00000000, 0x02000000, DOMAIN_IO, 0,1,0,0},/* Flash bank 0 */
  155.   {0xf1000000, 0x08000000, 0x00100000, DOMAIN_IO, 0,1,0,0},/* SRAM  bank 1 */
  156.   {0xf2000000, 0x10000000, 0x00100000, DOMAIN_IO, 0,1,0,0},/* SRAM  bank 2 */
  157.   {0xf4000000, 0x48000000, 0x00100000, DOMAIN_IO, 0,1,0,0},/* SA-1111      */
  158.   LAST_DESC
  159. };
  160. static void __init badge4_map_io(void)
  161. {
  162. sa1100_map_io();
  163. iotable_init(badge4_io_desc);
  164. sa1100_register_uart(0, 3);
  165. sa1100_register_uart(1, 1);
  166. }
  167. MACHINE_START(BADGE4, "Hewlett-Packard Laboratories BadgePAD 4")
  168. BOOT_MEM(0xc0000000, 0x80000000, 0xf8000000)
  169. BOOT_PARAMS(0xc0000100)
  170. FIXUP(fixup_badge4)
  171. MAPIO(badge4_map_io)
  172. INITIRQ(sa1100_init_irq)
  173. MACHINE_END