Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 2 | * Copyright 2000, 2008 MontaVista Software Inc. |
| 3 | * Author: MontaVista Software, Inc. <source@mvista.com> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | */ |
Sergei Shtylyov | ce28f94 | 2008-04-23 22:43:55 +0400 | [diff] [blame] | 25 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/init.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | #include <linux/delay.h> |
| 28 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | #include <asm/mach-au1x00/au1000.h> |
| 30 | #include <asm/mach-pb1x00/pb1500.h> |
| 31 | |
Ralf Baechle | 49a89ef | 2007-10-11 23:46:15 +0100 | [diff] [blame] | 32 | void board_reset(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 34 | /* Hit BCSR.RST_VDDI[SOFT_RESET] */ |
| 35 | au_writel(0x00000000, PB1500_RST_VDDI); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | } |
| 37 | |
| 38 | void __init board_setup(void) |
| 39 | { |
| 40 | u32 pin_func; |
| 41 | u32 sys_freqctrl, sys_clksrc; |
| 42 | |
| 43 | sys_clksrc = sys_freqctrl = pin_func = 0; |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 44 | /* Set AUX clock to 12 MHz * 8 = 96 MHz */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | au_writel(8, SYS_AUXPLL); |
| 46 | au_writel(0, SYS_PINSTATERD); |
| 47 | udelay(100); |
| 48 | |
Florian Fainelli | f708631 | 2007-09-25 17:07:24 +0200 | [diff] [blame] | 49 | #if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
| 51 | /* GPIO201 is input for PCMCIA card detect */ |
| 52 | /* GPIO203 is input for PCMCIA interrupt request */ |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 53 | au_writel(au_readl(GPIO2_DIR) & ~((1 << 1) | (1 << 3)), GPIO2_DIR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 55 | /* Zero and disable FREQ2 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | sys_freqctrl = au_readl(SYS_FREQCTRL0); |
| 57 | sys_freqctrl &= ~0xFFF00000; |
| 58 | au_writel(sys_freqctrl, SYS_FREQCTRL0); |
| 59 | |
| 60 | /* zero and disable USBH/USBD clocks */ |
| 61 | sys_clksrc = au_readl(SYS_CLKSRC); |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 62 | sys_clksrc &= ~(SYS_CS_CUD | SYS_CS_DUD | SYS_CS_MUD_MASK | |
| 63 | SYS_CS_CUH | SYS_CS_DUH | SYS_CS_MUH_MASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | au_writel(sys_clksrc, SYS_CLKSRC); |
| 65 | |
| 66 | sys_freqctrl = au_readl(SYS_FREQCTRL0); |
| 67 | sys_freqctrl &= ~0xFFF00000; |
| 68 | |
| 69 | sys_clksrc = au_readl(SYS_CLKSRC); |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 70 | sys_clksrc &= ~(SYS_CS_CUD | SYS_CS_DUD | SYS_CS_MUD_MASK | |
| 71 | SYS_CS_CUH | SYS_CS_DUH | SYS_CS_MUH_MASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 73 | /* FREQ2 = aux/2 = 48 MHz */ |
| 74 | sys_freqctrl |= (0 << SYS_FC_FRDIV2_BIT) | SYS_FC_FE2 | SYS_FC_FS2; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | au_writel(sys_freqctrl, SYS_FREQCTRL0); |
| 76 | |
| 77 | /* |
| 78 | * Route 48MHz FREQ2 into USB Host and/or Device |
| 79 | */ |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 80 | sys_clksrc |= SYS_CS_MUX_FQ2 << SYS_CS_MUH_BIT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | au_writel(sys_clksrc, SYS_CLKSRC); |
| 82 | |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 83 | pin_func = au_readl(SYS_PINFUNC) & ~SYS_PF_USB; |
| 84 | /* 2nd USB port is USB host */ |
| 85 | pin_func |= SYS_PF_USB; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | au_writel(pin_func, SYS_PINFUNC); |
Florian Fainelli | f708631 | 2007-09-25 17:07:24 +0200 | [diff] [blame] | 87 | #endif /* defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 88 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | #ifdef CONFIG_PCI |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 90 | /* Setup PCI bus controller */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | au_writel(0, Au1500_PCI_CMEM); |
| 92 | au_writel(0x00003fff, Au1500_CFG_BASE); |
| 93 | #if defined(__MIPSEB__) |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 94 | au_writel(0xf | (2 << 6) | (1 << 4), Au1500_PCI_CFG); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | #else |
| 96 | au_writel(0xf, Au1500_PCI_CFG); |
| 97 | #endif |
| 98 | au_writel(0xf0000000, Au1500_PCI_MWMASK_DEV); |
| 99 | au_writel(0, Au1500_PCI_MWBASE_REV_CCL); |
| 100 | au_writel(0x02a00356, Au1500_PCI_STATCMD); |
| 101 | au_writel(0x00003c04, Au1500_PCI_HDRTYPE); |
| 102 | au_writel(0x00000008, Au1500_PCI_MBAR); |
| 103 | au_sync(); |
| 104 | #endif |
| 105 | |
| 106 | /* Enable sys bus clock divider when IDLE state or no bus activity. */ |
| 107 | au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL); |
| 108 | |
| 109 | /* Enable the RTC if not already enabled */ |
| 110 | if (!(au_readl(0xac000028) & 0x20)) { |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 111 | printk(KERN_INFO "enabling clock ...\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 112 | au_writel((au_readl(0xac000028) | 0x20), 0xac000028); |
| 113 | } |
| 114 | /* Put the clock in BCD mode */ |
Sergei Shtylyov | 2091a17 | 2008-04-30 23:27:20 +0400 | [diff] [blame] | 115 | if (au_readl(0xac00002c) & 0x4) { /* reg B */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | au_writel(au_readl(0xac00002c) & ~0x4, 0xac00002c); |
| 117 | au_sync(); |
| 118 | } |
| 119 | } |