board_setup.c 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160
  1. /*
  2. * Copyright 2002, 2008 MontaVista Software Inc.
  3. * Author: MontaVista Software, Inc. <source@mvista.com>
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms of the GNU General Public License as published by the
  7. * Free Software Foundation; either version 2 of the License, or (at your
  8. * option) any later version.
  9. *
  10. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
  11. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
  12. * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
  13. * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
  14. * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  15. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  16. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
  17. * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  18. * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
  19. * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  20. *
  21. * You should have received a copy of the GNU General Public License along
  22. * with this program; if not, write to the Free Software Foundation, Inc.,
  23. * 675 Mass Ave, Cambridge, MA 02139, USA.
  24. */
  25. #include <linux/gpio.h>
  26. #include <linux/init.h>
  27. #include <linux/delay.h>
  28. #include <linux/interrupt.h>
  29. #include <asm/mach-au1x00/au1000.h>
  30. #include <asm/mach-pb1x00/pb1100.h>
  31. #include <asm/mach-db1x00/bcsr.h>
  32. #include <prom.h>
  33. struct au1xxx_irqmap __initdata au1xxx_irq_map[] = {
  34. { AU1000_GPIO_9, IRQF_TRIGGER_LOW, 0 }, /* PCMCIA Card Fully_Inserted# */
  35. { AU1000_GPIO_10, IRQF_TRIGGER_LOW, 0 }, /* PCMCIA Card STSCHG# */
  36. { AU1000_GPIO_11, IRQF_TRIGGER_LOW, 0 }, /* PCMCIA Card IRQ# */
  37. { AU1000_GPIO_13, IRQF_TRIGGER_LOW, 0 }, /* DC_IRQ# */
  38. };
  39. const char *get_system_type(void)
  40. {
  41. return "Alchemy Pb1100";
  42. }
  43. void board_reset(void)
  44. {
  45. bcsr_write(BCSR_SYSTEM, 0);
  46. }
  47. void __init board_init_irq(void)
  48. {
  49. au1xxx_setup_irqmap(au1xxx_irq_map, ARRAY_SIZE(au1xxx_irq_map));
  50. }
  51. void __init board_setup(void)
  52. {
  53. volatile void __iomem *base = (volatile void __iomem *)0xac000000UL;
  54. char *argptr;
  55. bcsr_init(DB1000_BCSR_PHYS_ADDR,
  56. DB1000_BCSR_PHYS_ADDR + DB1000_BCSR_HEXLED_OFS);
  57. argptr = prom_getcmdline();
  58. #ifdef CONFIG_SERIAL_8250_CONSOLE
  59. argptr = strstr(argptr, "console=");
  60. if (argptr == NULL) {
  61. argptr = prom_getcmdline();
  62. strcat(argptr, " console=ttyS0,115200");
  63. }
  64. #endif
  65. #ifdef CONFIG_FB_AU1100
  66. argptr = strstr(argptr, "video=");
  67. if (argptr == NULL) {
  68. argptr = prom_getcmdline();
  69. /* default panel */
  70. /*strcat(argptr, " video=au1100fb:panel:Sharp_320x240_16");*/
  71. }
  72. #endif
  73. #if defined(CONFIG_SOUND_AU1X00) && !defined(CONFIG_SOC_AU1000)
  74. /* au1000 does not support vra, au1500 and au1100 do */
  75. strcat(argptr, " au1000_audio=vra");
  76. argptr = prom_getcmdline();
  77. #endif
  78. /* Set AUX clock to 12 MHz * 8 = 96 MHz */
  79. au_writel(8, SYS_AUXPLL);
  80. alchemy_gpio1_input_enable();
  81. udelay(100);
  82. #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
  83. {
  84. u32 pin_func, sys_freqctrl, sys_clksrc;
  85. /* Configure pins GPIO[14:9] as GPIO */
  86. pin_func = au_readl(SYS_PINFUNC) & ~SYS_PF_UR3;
  87. /* Zero and disable FREQ2 */
  88. sys_freqctrl = au_readl(SYS_FREQCTRL0);
  89. sys_freqctrl &= ~0xFFF00000;
  90. au_writel(sys_freqctrl, SYS_FREQCTRL0);
  91. /* Zero and disable USBH/USBD/IrDA clock */
  92. sys_clksrc = au_readl(SYS_CLKSRC);
  93. sys_clksrc &= ~(SYS_CS_CIR | SYS_CS_DIR | SYS_CS_MIR_MASK);
  94. au_writel(sys_clksrc, SYS_CLKSRC);
  95. sys_freqctrl = au_readl(SYS_FREQCTRL0);
  96. sys_freqctrl &= ~0xFFF00000;
  97. sys_clksrc = au_readl(SYS_CLKSRC);
  98. sys_clksrc &= ~(SYS_CS_CIR | SYS_CS_DIR | SYS_CS_MIR_MASK);
  99. /* FREQ2 = aux / 2 = 48 MHz */
  100. sys_freqctrl |= (0 << SYS_FC_FRDIV2_BIT) |
  101. SYS_FC_FE2 | SYS_FC_FS2;
  102. au_writel(sys_freqctrl, SYS_FREQCTRL0);
  103. /*
  104. * Route 48 MHz FREQ2 into USBH/USBD/IrDA
  105. */
  106. sys_clksrc |= SYS_CS_MUX_FQ2 << SYS_CS_MIR_BIT;
  107. au_writel(sys_clksrc, SYS_CLKSRC);
  108. /* Setup the static bus controller */
  109. au_writel(0x00000002, MEM_STCFG3); /* type = PCMCIA */
  110. au_writel(0x280E3D07, MEM_STTIME3); /* 250ns cycle time */
  111. au_writel(0x10000000, MEM_STADDR3); /* any PCMCIA select */
  112. /*
  113. * Get USB Functionality pin state (device vs host drive pins).
  114. */
  115. pin_func = au_readl(SYS_PINFUNC) & ~SYS_PF_USB;
  116. /* 2nd USB port is USB host. */
  117. pin_func |= SYS_PF_USB;
  118. au_writel(pin_func, SYS_PINFUNC);
  119. }
  120. #endif /* defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) */
  121. /* Enable sys bus clock divider when IDLE state or no bus activity. */
  122. au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL);
  123. /* Enable the RTC if not already enabled. */
  124. if (!(readb(base + 0x28) & 0x20)) {
  125. writeb(readb(base + 0x28) | 0x20, base + 0x28);
  126. au_sync();
  127. }
  128. /* Put the clock in BCD mode. */
  129. if (readb(base + 0x2C) & 0x4) { /* reg B */
  130. writeb(readb(base + 0x2c) & ~0x4, base + 0x2c);
  131. au_sync();
  132. }
  133. }