MIPS: Alchemy: remove unused SYS area structure
[deliverable/linux.git] / arch / mips / alchemy / devboards / pb1000 / board_setup.c
CommitLineData
1da177e4 1/*
7916c354
SS
2 * Copyright 2000, 2008 MontaVista Software Inc.
3 * Author: MontaVista Software, Inc. <source@mvista.com>
1da177e4
LT
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 */
ce28f94c 25
1da177e4 26#include <linux/delay.h>
ce65cc8f 27#include <linux/gpio.h>
23ba25d5
ML
28#include <linux/init.h>
29#include <linux/interrupt.h>
1da177e4
LT
30#include <asm/mach-au1x00/au1000.h>
31#include <asm/mach-pb1x00/pb1000.h>
7179380e 32#include <prom.h>
1da177e4 33
23ba25d5 34
23ba25d5
ML
35const char *get_system_type(void)
36{
37 return "Alchemy Pb1000";
38}
39
49a89efb 40void board_reset(void)
1da177e4
LT
41{
42}
43
44void __init board_setup(void)
45{
46 u32 pin_func, static_cfg0;
47 u32 sys_freqctrl, sys_clksrc;
48 u32 prid = read_c0_prid();
49
7179380e
ML
50#ifdef CONFIG_SERIAL_8250_CONSOLE
51 char *argptr = prom_getcmdline();
52 argptr = strstr(argptr, "console=");
53 if (argptr == NULL) {
54 argptr = prom_getcmdline();
55 strcat(argptr, " console=ttyS0,115200");
56 }
57#endif
58
7916c354 59 /* Set AUX clock to 12 MHz * 8 = 96 MHz */
1da177e4
LT
60 au_writel(8, SYS_AUXPLL);
61 au_writel(0, SYS_PINSTATERD);
62 udelay(100);
63
f708631a 64#if defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE)
7916c354 65 /* Zero and disable FREQ2 */
1da177e4
LT
66 sys_freqctrl = au_readl(SYS_FREQCTRL0);
67 sys_freqctrl &= ~0xFFF00000;
68 au_writel(sys_freqctrl, SYS_FREQCTRL0);
69
7916c354 70 /* Zero and disable USBH/USBD clocks */
1da177e4 71 sys_clksrc = au_readl(SYS_CLKSRC);
7916c354
SS
72 sys_clksrc &= ~(SYS_CS_CUD | SYS_CS_DUD | SYS_CS_MUD_MASK |
73 SYS_CS_CUH | SYS_CS_DUH | SYS_CS_MUH_MASK);
1da177e4
LT
74 au_writel(sys_clksrc, SYS_CLKSRC);
75
76 sys_freqctrl = au_readl(SYS_FREQCTRL0);
77 sys_freqctrl &= ~0xFFF00000;
78
79 sys_clksrc = au_readl(SYS_CLKSRC);
7916c354
SS
80 sys_clksrc &= ~(SYS_CS_CUD | SYS_CS_DUD | SYS_CS_MUD_MASK |
81 SYS_CS_CUH | SYS_CS_DUH | SYS_CS_MUH_MASK);
1da177e4 82
7916c354 83 switch (prid & 0x000000FF) {
1da177e4
LT
84 case 0x00: /* DA */
85 case 0x01: /* HA */
86 case 0x02: /* HB */
7916c354
SS
87 /* CPU core freq to 48 MHz to slow it way down... */
88 au_writel(4, SYS_CPUPLL);
1da177e4 89
7916c354
SS
90 /*
91 * Setup 48 MHz FREQ2 from CPUPLL for USB Host
92 * FRDIV2 = 3 -> div by 8 of 384 MHz -> 48 MHz
93 */
94 sys_freqctrl |= (3 << SYS_FC_FRDIV2_BIT) | SYS_FC_FE2;
95 au_writel(sys_freqctrl, SYS_FREQCTRL0);
1da177e4 96
7916c354
SS
97 /* CPU core freq to 384 MHz */
98 au_writel(0x20, SYS_CPUPLL);
1da177e4 99
7916c354 100 printk(KERN_INFO "Au1000: 48 MHz OHCI workaround enabled\n");
1da177e4
LT
101 break;
102
7916c354
SS
103 default: /* HC and newer */
104 /* FREQ2 = aux / 2 = 48 MHz */
105 sys_freqctrl |= (0 << SYS_FC_FRDIV2_BIT) |
106 SYS_FC_FE2 | SYS_FC_FS2;
107 au_writel(sys_freqctrl, SYS_FREQCTRL0);
1da177e4
LT
108 break;
109 }
110
111 /*
7916c354 112 * Route 48 MHz FREQ2 into USB Host and/or Device
1da177e4 113 */
7916c354 114 sys_clksrc |= SYS_CS_MUX_FQ2 << SYS_CS_MUH_BIT;
1da177e4
LT
115 au_writel(sys_clksrc, SYS_CLKSRC);
116
7916c354
SS
117 /* Configure pins GPIO[14:9] as GPIO */
118 pin_func = au_readl(SYS_PINFUNC) & ~(SYS_PF_UR3 | SYS_PF_USB);
1da177e4 119
7916c354
SS
120 /* 2nd USB port is USB host */
121 pin_func |= SYS_PF_USB;
5536b235 122
1da177e4 123 au_writel(pin_func, SYS_PINFUNC);
ce65cc8f
ML
124
125 alchemy_gpio_direction_input(11);
126 alchemy_gpio_direction_input(13);
127 alchemy_gpio_direction_output(4, 0);
128 alchemy_gpio_direction_output(5, 0);
f708631a 129#endif /* defined(CONFIG_USB_OHCI_HCD) || defined(CONFIG_USB_OHCI_HCD_MODULE) */
1da177e4 130
7916c354
SS
131 /* Make GPIO 15 an input (for interrupt line) */
132 pin_func = au_readl(SYS_PINFUNC) & ~SYS_PF_IRF;
133 /* We don't need I2S, so make it available for GPIO[31:29] */
134 pin_func |= SYS_PF_I2S;
1da177e4
LT
135 au_writel(pin_func, SYS_PINFUNC);
136
ce65cc8f 137 alchemy_gpio_direction_input(15);
1da177e4 138
7916c354 139 static_cfg0 = au_readl(MEM_STCFG0) & ~0xc00;
1da177e4
LT
140 au_writel(static_cfg0, MEM_STCFG0);
141
7916c354 142 /* configure RCE2* for LCD */
1da177e4
LT
143 au_writel(0x00000004, MEM_STCFG2);
144
7916c354 145 /* MEM_STTIME2 */
1da177e4
LT
146 au_writel(0x09000000, MEM_STTIME2);
147
7916c354 148 /* Set 32-bit base address decoding for RCE2* */
1da177e4
LT
149 au_writel(0x10003ff0, MEM_STADDR2);
150
7916c354
SS
151 /*
152 * PCI CPLD setup
153 * Expand CE0 to cover PCI
154 */
1da177e4
LT
155 au_writel(0x11803e40, MEM_STADDR1);
156
7916c354 157 /* Burst visibility on */
1da177e4
LT
158 au_writel(au_readl(MEM_STCFG0) | 0x1000, MEM_STCFG0);
159
7916c354
SS
160 au_writel(0x83, MEM_STCFG1); /* ewait enabled, flash timing */
161 au_writel(0x33030a10, MEM_STTIME1); /* slower timing for FPGA */
1da177e4 162
7916c354 163 /* Setup the static bus controller */
1da177e4
LT
164 au_writel(0x00000002, MEM_STCFG3); /* type = PCMCIA */
165 au_writel(0x280E3D07, MEM_STTIME3); /* 250ns cycle time */
166 au_writel(0x10000000, MEM_STADDR3); /* any PCMCIA select */
167
7916c354
SS
168 /*
169 * Enable Au1000 BCLK switching - note: sed1356 must not use
170 * its BCLK (Au1000 LCLK) for any timings
171 */
172 switch (prid & 0x000000FF) {
1da177e4
LT
173 case 0x00: /* DA */
174 case 0x01: /* HA */
175 case 0x02: /* HB */
176 break;
177 default: /* HC and newer */
7916c354
SS
178 /*
179 * Enable sys bus clock divider when IDLE state or no bus
180 * activity.
181 */
1da177e4
LT
182 au_writel(au_readl(SYS_POWERCTRL) | (0x3 << 5), SYS_POWERCTRL);
183 break;
184 }
185}
7e50b2b7
ML
186
187static int __init pb1000_init_irq(void)
188{
78814465 189 set_irq_type(AU1000_GPIO15_INT, IRQF_TRIGGER_LOW);
7e50b2b7
ML
190 return 0;
191}
192arch_initcall(pb1000_init_irq);
This page took 0.51685 seconds and 5 git commands to generate.