board_setup.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * Copyright 2000, 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/init.h>
  26. #include <linux/delay.h>
  27. #include <linux/interrupt.h>
  28. #include <asm/mach-au1x00/au1000.h>
  29. #include <asm/mach-pb1x00/pb1500.h>
  30. #include <prom.h>
  31. char irq_tab_alchemy[][5] __initdata = {
  32. [12] = { -1, INTA, INTX, INTX, INTX }, /* IDSEL 12 - HPT370 */
  33. [13] = { -1, INTA, INTB, INTC, INTD }, /* IDSEL 13 - PCI slot */
  34. };
  35. struct au1xxx_irqmap __initdata au1xxx_irq_map[] = {
  36. { AU1500_GPIO_204, IRQF_TRIGGER_HIGH, 0 },
  37. { AU1500_GPIO_201, IRQF_TRIGGER_LOW, 0 },
  38. { AU1500_GPIO_202, IRQF_TRIGGER_LOW, 0 },
  39. { AU1500_GPIO_203, IRQF_TRIGGER_LOW, 0 },
  40. { AU1500_GPIO_205, IRQF_TRIGGER_LOW, 0 },
  41. };
  42. const char *get_system_type(void)
  43. {
  44. return "Alchemy Pb1500";
  45. }
  46. void board_reset(void)
  47. {
  48. /* Hit BCSR.RST_VDDI[SOFT_RESET] */
  49. au_writel(0x00000000, PB1500_RST_VDDI);
  50. }
  51. void __init board_init_irq(void)
  52. {
  53. au1xxx_setup_irqmap(au1xxx_irq_map, ARRAY_SIZE(au1xxx_irq_map));
  54. }
  55. void __init board_setup(void)
  56. {
  57. u32 pin_func;
  58. u32 sys_freqctrl, sys_clksrc;
  59. char *argptr;
  60. argptr = prom_getcmdline();
  61. #ifdef CONFIG_SERIAL_8250_CONSOLE
  62. argptr = strstr(argptr, "console=");
  63. if (argptr == NULL) {
  64. argptr = prom_getcmdline();
  65. strcat(argptr, " console=ttyS0,115200");
  66. }
  67. #endif
  68. #if defined(CONFIG_SOUND_AU1X00) && !defined(CONFIG_SOC_AU1000)
  69. /* au1000 does not support vra, au1500 and au1100 do */
  70. strcat(argptr, " au1000_audio=vra");
  71. argptr = prom_getcmdline();
  72. #endif
  73. sys_clksrc = sys_freqctrl = pin_func = 0;
  74. /* Set AUX clock to 12 MHz * 8 = 96 MHz */
  75. au_writel(8, SYS_AUXPLL);
  76. au_writel(0, SYS_PINSTATERD);
  77. udelay(100);
  78. #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
  79. /* GPIO201 is input for PCMCIA card detect */
  80. /* GPIO203 is input for PCMCIA interrupt request */
  81. au_writel(au_readl(GPIO2_DIR) & ~((1 << 1) | (1 << 3)), GPIO2_DIR);
  82. /* Zero and disable FREQ2 */
  83. sys_freqctrl = au_readl(SYS_FREQCTRL0);
  84. sys_freqctrl &= ~0xFFF00000;
  85. au_writel(sys_freqctrl, SYS_FREQCTRL0);
  86. /* zero and disable USBH/USBD clocks */
  87. sys_clksrc = au_readl(SYS_CLKSRC);
  88. sys_clksrc &= ~(SYS_CS_CUD | SYS_CS_DUD | SYS_CS_MUD_MASK |
  89. SYS_CS_CUH | SYS_CS_DUH | SYS_CS_MUH_MASK);
  90. au_writel(sys_clksrc, SYS_CLKSRC);
  91. sys_freqctrl = au_readl(SYS_FREQCTRL0);
  92. sys_freqctrl &= ~0xFFF00000;
  93. sys_clksrc = au_readl(SYS_CLKSRC);
  94. sys_clksrc &= ~(SYS_CS_CUD | SYS_CS_DUD | SYS_CS_MUD_MASK |
  95. SYS_CS_CUH | SYS_CS_DUH | SYS_CS_MUH_MASK);
  96. /* FREQ2 = aux/2 = 48 MHz */
  97. sys_freqctrl |= (0 << SYS_FC_FRDIV2_BIT) | SYS_FC_FE2 | SYS_FC_FS2;
  98. au_writel(sys_freqctrl, SYS_FREQCTRL0);
  99. /*
  100. * Route 48MHz FREQ2 into USB Host and/or Device
  101. */
  102. sys_clksrc |= SYS_CS_MUX_FQ2 << SYS_CS_MUH_BIT;
  103. au_writel(sys_clksrc, SYS_CLKSRC);
  104. pin_func = au_readl(SYS_PINFUNC) & ~SYS_PF_USB;
  105. /* 2nd USB port is USB host */
  106. pin_func |= SYS_PF_USB;
  107. au_writel(pin_func, SYS_PINFUNC);
  108. #endif /* defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) */
  109. #ifdef CONFIG_PCI
  110. /* Setup PCI bus controller */
  111. au_writel(0, Au1500_PCI_CMEM);
  112. au_writel(0x00003fff, Au1500_CFG_BASE);
  113. #if defined(__MIPSEB__)
  114. au_writel(0xf | (2 << 6) | (1 << 4), Au1500_PCI_CFG);
  115. #else
  116. au_writel(0xf, Au1500_PCI_CFG);
  117. #endif
  118. au_writel(0xf0000000, Au1500_PCI_MWMASK_DEV);
  119. au_writel(0, Au1500_PCI_MWBASE_REV_CCL);
  120. au_writel(0x02a00356, Au1500_PCI_STATCMD);
  121. au_writel(0x00003c04, Au1500_PCI_HDRTYPE);
  122. au_writel(0x00000008, Au1500_PCI_MBAR);
  123. au_sync();
  124. #endif
  125. /* Enable sys bus clock divider when IDLE state or no bus activity. */
  126. au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL);
  127. /* Enable the RTC if not already enabled */
  128. if (!(au_readl(0xac000028) & 0x20)) {
  129. printk(KERN_INFO "enabling clock ...\n");
  130. au_writel((au_readl(0xac000028) | 0x20), 0xac000028);
  131. }
  132. /* Put the clock in BCD mode */
  133. if (au_readl(0xac00002c) & 0x4) { /* reg B */
  134. au_writel(au_readl(0xac00002c) & ~0x4, 0xac00002c);
  135. au_sync();
  136. }
  137. }