blob: 2e40a9268254475cdf96978312e76a9b5e5c3300 [file] [log] [blame]
Ralf Baechle832348f2007-10-18 01:10:12 +01001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License as published by the
4 * Free Software Foundation; either version 2 of the License, or (at your
5 * option) any later version.
6 *
7 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
8 * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
9 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
10 * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
11 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
12 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
13 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
14 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
15 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
16 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
17 *
18 * You should have received a copy of the GNU General Public License along
19 * with this program; if not, write to the Free Software Foundation, Inc.,
20 * 675 Mass Ave, Cambridge, MA 02139, USA.
21 *
Ralf Baechle832348f2007-10-18 01:10:12 +010022 * Copyright 2001 MontaVista Software Inc.
23 * Author: MontaVista Software, Inc.
24 * ahennessy@mvista.com
25 *
26 * Copyright (C) 2000-2001 Toshiba Corporation
27 * Copyright (C) 2007 Ralf Baechle (ralf@linux-mips.org)
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/init.h>
31#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#include <linux/ioport.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#include <linux/delay.h>
Atsushi Nemotoa0574e042007-03-01 00:40:21 +090035#include <linux/platform_device.h>
Atsushi Nemoto1bd09622008-04-05 00:56:27 +090036#include <linux/gpio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/reboot.h>
Atsushi Nemotof6727fb2008-07-24 00:25:19 +090038#include <asm/txx9pio.h>
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +090039#include <asm/txx9/generic.h>
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +090040#include <asm/txx9/pci.h>
Atsushi Nemoto22b1d702008-07-11 00:31:36 +090041#include <asm/txx9/jmr3927.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#include <asm/mipsregs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Atsushi Nemotoa49297e2008-07-24 00:25:17 +090044static void jmr3927_machine_restart(char *command)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
Atsushi Nemotoa49297e2008-07-24 00:25:17 +090046 local_irq_disable();
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#if 1 /* Resetting PCI bus */
48 jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
49 jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, JMR3927_IOC_RESET_ADDR);
50 (void)jmr3927_ioc_reg_in(JMR3927_IOC_RESET_ADDR); /* flush WB */
51 mdelay(1);
52 jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
53#endif
54 jmr3927_ioc_reg_out(JMR3927_IOC_RESET_CPU, JMR3927_IOC_RESET_ADDR);
Atsushi Nemotoa49297e2008-07-24 00:25:17 +090055 /* fallback */
56 (*_machine_halt)();
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +090059static void __init jmr3927_time_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060{
Atsushi Nemotof6727fb2008-07-24 00:25:19 +090061 tx3927_time_init(0, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -070062}
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064#define DO_WRITE_THROUGH
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
Linus Torvalds1da177e2005-04-16 15:20:36 -070066static void jmr3927_board_init(void);
Linus Torvalds1da177e2005-04-16 15:20:36 -070067
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +090068static void __init jmr3927_mem_setup(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -070069{
70 char *argptr;
71
72 set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO);
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 _machine_restart = jmr3927_machine_restart;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 /* cache setup */
77 {
78 unsigned int conf;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#ifdef DO_WRITE_THROUGH
80 int mips_config_cwfon = 0;
81 int mips_config_wbon = 0;
82#else
83 int mips_config_cwfon = 1;
84 int mips_config_wbon = 1;
85#endif
86
87 conf = read_c0_conf();
Atsushi Nemotod10e0252008-08-19 22:55:09 +090088 conf &= ~(TX39_CONF_WBON | TX39_CONF_CWFON);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 conf |= mips_config_wbon ? TX39_CONF_WBON : 0;
90 conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0;
91
92 write_c0_conf(conf);
93 write_c0_cache(0);
94 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96 /* initialize board */
97 jmr3927_board_init();
98
Atsushi Nemoto7779a5e2008-07-25 23:08:06 +090099 tx3927_sio_init(0, 1 << 1); /* ch1: noCTS */
Ralf Baechle5eaf7a22005-03-04 17:24:32 +0000100#ifdef CONFIG_SERIAL_TXX9_CONSOLE
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 argptr = prom_getcmdline();
Atsushi Nemotobb72f1f2008-07-24 00:25:21 +0900102 if (!strstr(argptr, "console="))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 strcat(argptr, " console=ttyS1,115200");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#endif
105}
106
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900107static void __init jmr3927_pci_setup(void)
108{
109#ifdef CONFIG_PCI
110 int extarb = !(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB);
111 struct pci_controller *c;
112
113 c = txx9_alloc_pci_controller(&txx9_primary_pcic,
114 JMR3927_PCIMEM, JMR3927_PCIMEM_SIZE,
115 JMR3927_PCIIO, JMR3927_PCIIO_SIZE);
116 register_pci_controller(c);
117 if (!extarb) {
118 /* Reset PCI Bus */
119 jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
120 udelay(100);
121 jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI,
122 JMR3927_IOC_RESET_ADDR);
123 udelay(100);
124 jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR);
125 }
126 tx3927_pcic_setup(c, JMR3927_SDRAM_SIZE, extarb);
Atsushi Nemoto455cc252008-07-25 23:01:35 +0900127 tx3927_setup_pcierr_irq();
Atsushi Nemoto89d63fe2008-07-11 00:33:08 +0900128#endif /* CONFIG_PCI */
129}
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static void __init jmr3927_board_init(void)
132{
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900133 txx9_cpu_clock = JMR3927_CORECLK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 /* SDRAMC are configured by PROM */
135
136 /* ROMC */
137 tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048;
138 tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8;
139 tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698;
140 tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218;
141
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 /* Pin selection */
143 tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL;
144 tx3927_ccfgptr->pcfg |=
145 TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL |
146 (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1));
147
Atsushi Nemotof6727fb2008-07-24 00:25:19 +0900148 tx3927_setup();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Linus Torvalds1da177e2005-04-16 15:20:36 -0700150 /* PIO[15:12] connected to LEDs */
Atsushi Nemoto1bd09622008-04-05 00:56:27 +0900151 __raw_writel(0x0000f000, &tx3927_pioptr->dir);
Atsushi Nemoto1bd09622008-04-05 00:56:27 +0900152 gpio_request(11, "dipsw1");
153 gpio_request(10, "dipsw2");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Atsushi Nemotof6727fb2008-07-24 00:25:19 +0900155 jmr3927_pci_setup();
156
157 /* SIO0 DTR on */
158 jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR);
159
160 jmr3927_led_set(0);
161
162 printk(KERN_INFO
163 "JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n",
164 jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK,
165 jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK,
166 jmr3927_dipsw1(), jmr3927_dipsw2(),
167 jmr3927_dipsw3(), jmr3927_dipsw4());
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168}
Atsushi Nemotoa0574e042007-03-01 00:40:21 +0900169
170/* This trick makes rtc-ds1742 driver usable as is. */
Atsushi Nemoto4c642f32008-07-13 23:37:56 +0900171static unsigned long jmr3927_swizzle_addr_b(unsigned long port)
Atsushi Nemotoa0574e042007-03-01 00:40:21 +0900172{
173 if ((port & 0xffff0000) != JMR3927_IOC_NVRAMB_ADDR)
174 return port;
175 port = (port & 0xffff0000) | (port & 0x7fff << 1);
176#ifdef __BIG_ENDIAN
177 return port;
178#else
179 return port | 1;
180#endif
181}
Atsushi Nemotoa0574e042007-03-01 00:40:21 +0900182
Atsushi Nemotobb72f1f2008-07-24 00:25:21 +0900183static void __init jmr3927_rtc_init(void)
Atsushi Nemotoa0574e042007-03-01 00:40:21 +0900184{
Atsushi Nemoto4614c322007-05-01 01:49:20 +0900185 static struct resource __initdata res = {
Atsushi Nemotoa0574e042007-03-01 00:40:21 +0900186 .start = JMR3927_IOC_NVRAMB_ADDR - IO_BASE,
187 .end = JMR3927_IOC_NVRAMB_ADDR - IO_BASE + 0x800 - 1,
188 .flags = IORESOURCE_MEM,
189 };
Atsushi Nemotobb72f1f2008-07-24 00:25:21 +0900190 platform_device_register_simple("rtc-ds1742", -1, &res, 1);
Atsushi Nemotoa0574e042007-03-01 00:40:21 +0900191}
Atsushi Nemoto2064ba22007-11-24 01:20:27 +0900192
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900193static void __init jmr3927_device_init(void)
Atsushi Nemoto2064ba22007-11-24 01:20:27 +0900194{
Atsushi Nemoto4c642f32008-07-13 23:37:56 +0900195 __swizzle_addr_b = jmr3927_swizzle_addr_b;
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900196 jmr3927_rtc_init();
Atsushi Nemoto68314722008-07-24 00:25:18 +0900197 tx3927_wdt_init();
Atsushi Nemoto2064ba22007-11-24 01:20:27 +0900198}
Atsushi Nemoto2064ba22007-11-24 01:20:27 +0900199
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900200struct txx9_board_vec jmr3927_vec __initdata = {
Atsushi Nemotoedcaf1a2008-07-11 23:27:54 +0900201 .system = "Toshiba JMR_TX3927",
202 .prom_init = jmr3927_prom_init,
203 .mem_setup = jmr3927_mem_setup,
204 .irq_setup = jmr3927_irq_setup,
205 .time_init = jmr3927_time_init,
206 .device_init = jmr3927_device_init,
207#ifdef CONFIG_PCI
208 .pci_map_irq = jmr3927_pci_map_irq,
209#endif
210};