blob: 3184063f8042916524ab32d7ded779a937cc4b0f [file] [log] [blame]
Pete Popove3ad1c22005-03-01 06:33:16 +00001/*
2 *
3 * BRIEF MODULE DESCRIPTION
4 * Alchemy Pb1200/Db1200 board setup.
5 *
6 * This program is free software; you can redistribute it and/or modify it
7 * under the terms of the GNU General Public License as published by the
8 * Free Software Foundation; either version 2 of the License, or (at your
9 * option) any later version.
10 *
11 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
12 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
14 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
15 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
16 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
17 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
18 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
19 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
20 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
21 *
22 * You should have received a copy of the GNU General Public License along
23 * with this program; if not, write to the Free Software Foundation, Inc.,
24 * 675 Mass Ave, Cambridge, MA 02139, USA.
25 */
Sergei Shtylyovce28f942008-04-23 22:43:55 +040026
Pete Popove3ad1c22005-03-01 06:33:16 +000027#include <linux/init.h>
Manuel Lauss7e50b2b2009-10-04 14:55:26 +020028#include <linux/interrupt.h>
Pete Popove3ad1c22005-03-01 06:33:16 +000029#include <linux/sched.h>
Yoichi Yuasa25b31cb2007-10-15 19:11:24 +090030
Manuel Lauss7e50b2b2009-10-04 14:55:26 +020031#include <asm/mach-au1x00/au1000.h>
Manuel Lauss9bdcf332009-10-04 14:55:24 +020032#include <asm/mach-db1x00/bcsr.h>
33
Manuel Lauss7e50b2b2009-10-04 14:55:26 +020034#ifdef CONFIG_MIPS_PB1200
35#include <asm/mach-pb1x00/pb1200.h>
36#endif
Pete Popove3ad1c22005-03-01 06:33:16 +000037
Manuel Lauss7e50b2b2009-10-04 14:55:26 +020038#ifdef CONFIG_MIPS_DB1200
39#include <asm/mach-db1x00/db1200.h>
40#define PB1200_INT_BEGIN DB1200_INT_BEGIN
41#define PB1200_INT_END DB1200_INT_END
42#endif
43
44#include <prom.h>
Pete Popove3ad1c22005-03-01 06:33:16 +000045
Manuel Lauss23ba25d2008-12-21 09:26:15 +010046const char *get_system_type(void)
47{
48 return "Alchemy Pb1200";
49}
50
Ralf Baechle49a89ef2007-10-11 23:46:15 +010051void board_reset(void)
Pete Popove3ad1c22005-03-01 06:33:16 +000052{
Manuel Lauss9bdcf332009-10-04 14:55:24 +020053 bcsr_write(BCSR_RESETS, 0);
54 bcsr_write(BCSR_SYSTEM, 0);
Pete Popove3ad1c22005-03-01 06:33:16 +000055}
56
57void __init board_setup(void)
58{
Manuel Lauss9bdcf332009-10-04 14:55:24 +020059 printk(KERN_INFO "AMD Alchemy Pb1200 Board\n");
60 bcsr_init(PB1200_BCSR_PHYS_ADDR,
61 PB1200_BCSR_PHYS_ADDR + PB1200_BCSR_HEXLED_OFS);
Manuel Lauss9bdcf332009-10-04 14:55:24 +020062
Pete Popove3ad1c22005-03-01 06:33:16 +000063#if 0
Ralf Baechlef5cd9f12007-11-01 12:22:53 +000064 {
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040065 u32 pin_func;
Ralf Baechlef5cd9f12007-11-01 12:22:53 +000066
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040067 /*
68 * Enable PSC1 SYNC for AC97. Normaly done in audio driver,
69 * but it is board specific code, so put it here.
70 */
71 pin_func = au_readl(SYS_PINFUNC);
72 au_sync();
73 pin_func |= SYS_PF_MUST_BE_SET | SYS_PF_PSC1_S1;
74 au_writel(pin_func, SYS_PINFUNC);
Pete Popove3ad1c22005-03-01 06:33:16 +000075
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040076 au_writel(0, (u32)bcsr | 0x10); /* turn off PCMCIA power */
77 au_sync();
Ralf Baechlef5cd9f12007-11-01 12:22:53 +000078 }
Pete Popove3ad1c22005-03-01 06:33:16 +000079#endif
80
Pete Popov64abf642005-09-14 16:17:59 +000081#if defined(CONFIG_I2C_AU1550)
Pete Popove3ad1c22005-03-01 06:33:16 +000082 {
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040083 u32 freq0, clksrc;
84 u32 pin_func;
Pete Popove3ad1c22005-03-01 06:33:16 +000085
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040086 /* Select SMBus in CPLD */
Manuel Lauss9bdcf332009-10-04 14:55:24 +020087 bcsr_mod(BCSR_RESETS, BCSR_RESETS_PSC0MUX, 0);
Pete Popove3ad1c22005-03-01 06:33:16 +000088
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040089 pin_func = au_readl(SYS_PINFUNC);
90 au_sync();
91 pin_func &= ~(SYS_PINFUNC_P0A | SYS_PINFUNC_P0B);
92 /* Set GPIOs correctly */
93 pin_func |= 2 << 17;
94 au_writel(pin_func, SYS_PINFUNC);
95 au_sync();
Pete Popove3ad1c22005-03-01 06:33:16 +000096
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +040097 /* The I2C driver depends on 50 MHz clock */
98 freq0 = au_readl(SYS_FREQCTRL0);
99 au_sync();
100 freq0 &= ~(SYS_FC_FRDIV1_MASK | SYS_FC_FS1 | SYS_FC_FE1);
101 freq0 |= 3 << SYS_FC_FRDIV1_BIT;
102 /* 396 MHz / (3 + 1) * 2 == 49.5 MHz */
103 au_writel(freq0, SYS_FREQCTRL0);
104 au_sync();
105 freq0 |= SYS_FC_FE1;
106 au_writel(freq0, SYS_FREQCTRL0);
107 au_sync();
Pete Popove3ad1c22005-03-01 06:33:16 +0000108
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400109 clksrc = au_readl(SYS_CLKSRC);
110 au_sync();
111 clksrc &= ~(SYS_CS_CE0 | SYS_CS_DE0 | SYS_CS_ME0_MASK);
112 /* Bit 22 is EXTCLK0 for PSC0 */
113 clksrc |= SYS_CS_MUX_FQ1 << SYS_CS_ME0_BIT;
114 au_writel(clksrc, SYS_CLKSRC);
115 au_sync();
Pete Popove3ad1c22005-03-01 06:33:16 +0000116 }
117#endif
118
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400119 /*
120 * The Pb1200 development board uses external MUX for PSC0 to
Manuel Lauss9bdcf332009-10-04 14:55:24 +0200121 * support SMB/SPI. bcsr_resets bit 12: 0=SMB 1=SPI
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400122 */
Ralf Baechle6fec2e12007-07-13 06:33:09 +0100123#ifdef CONFIG_I2C_AU1550
Manuel Lauss9bdcf332009-10-04 14:55:24 +0200124 bcsr_mod(BCSR_RESETS, BCSR_RESETS_PSC0MUX, 0);
Pete Popove3ad1c22005-03-01 06:33:16 +0000125#endif
126 au_sync();
Pete Popove3ad1c22005-03-01 06:33:16 +0000127}
Pete Popov64abf642005-09-14 16:17:59 +0000128
Manuel Lauss7e50b2b2009-10-04 14:55:26 +0200129static int __init pb1200_init_irq(void)
130{
Manuel Lauss7e50b2b2009-10-04 14:55:26 +0200131 /* We have a problem with CPLD rev 3. */
132 if (BCSR_WHOAMI_CPLD(bcsr_read(BCSR_WHOAMI)) <= 3) {
133 printk(KERN_ERR "WARNING!!!\n");
134 printk(KERN_ERR "WARNING!!!\n");
135 printk(KERN_ERR "WARNING!!!\n");
136 printk(KERN_ERR "WARNING!!!\n");
137 printk(KERN_ERR "WARNING!!!\n");
138 printk(KERN_ERR "WARNING!!!\n");
139 printk(KERN_ERR "Pb1200 must be at CPLD rev 4. Please have Pb1200\n");
140 printk(KERN_ERR "updated to latest revision. This software will\n");
141 printk(KERN_ERR "not work on anything less than CPLD rev 4.\n");
142 printk(KERN_ERR "WARNING!!!\n");
143 printk(KERN_ERR "WARNING!!!\n");
144 printk(KERN_ERR "WARNING!!!\n");
145 printk(KERN_ERR "WARNING!!!\n");
146 printk(KERN_ERR "WARNING!!!\n");
147 printk(KERN_ERR "WARNING!!!\n");
148 panic("Game over. Your score is 0.");
149 }
Manuel Lauss7e50b2b2009-10-04 14:55:26 +0200150
Manuel Lauss78814462009-10-07 20:15:15 +0200151 set_irq_type(AU1200_GPIO7_INT, IRQF_TRIGGER_LOW);
152 bcsr_init_irq(PB1200_INT_BEGIN, PB1200_INT_END, AU1200_GPIO7_INT);
Manuel Lauss7e50b2b2009-10-04 14:55:26 +0200153
154 return 0;
155}
156arch_initcall(pb1200_init_irq);
157
158
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400159int board_au1200fb_panel(void)
Pete Popov64abf642005-09-14 16:17:59 +0000160{
Manuel Lauss9bdcf332009-10-04 14:55:24 +0200161 return (bcsr_read(BCSR_SWITCHES) >> 8) & 0x0f;
Pete Popov64abf642005-09-14 16:17:59 +0000162}
163
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400164int board_au1200fb_panel_init(void)
Pete Popov64abf642005-09-14 16:17:59 +0000165{
166 /* Apply power */
Manuel Lauss9bdcf332009-10-04 14:55:24 +0200167 bcsr_mod(BCSR_BOARD, 0, BCSR_BOARD_LCDVEE | BCSR_BOARD_LCDVDD |
168 BCSR_BOARD_LCDBL);
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400169 /* printk(KERN_DEBUG "board_au1200fb_panel_init()\n"); */
Pete Popov64abf642005-09-14 16:17:59 +0000170 return 0;
171}
172
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400173int board_au1200fb_panel_shutdown(void)
Pete Popov64abf642005-09-14 16:17:59 +0000174{
175 /* Remove power */
Manuel Lauss9bdcf332009-10-04 14:55:24 +0200176 bcsr_mod(BCSR_BOARD, BCSR_BOARD_LCDVEE | BCSR_BOARD_LCDVDD |
177 BCSR_BOARD_LCDBL, 0);
Sergei Shtylyovc3d1d5c2008-04-30 23:29:04 +0400178 /* printk(KERN_DEBUG "board_au1200fb_panel_shutdown()\n"); */
Pete Popov64abf642005-09-14 16:17:59 +0000179 return 0;
180}