Ralf Baechle | 832348f | 2007-10-18 01:10:12 +0100 | [diff] [blame] | 1 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * 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 Baechle | 832348f | 2007-10-18 01:10:12 +0100 | [diff] [blame] | 22 | * 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 Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | */ |
| 29 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | #include <linux/init.h> |
| 31 | #include <linux/kernel.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/types.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/ioport.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/delay.h> |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 35 | #include <linux/platform_device.h> |
Atsushi Nemoto | 1bd0962 | 2008-04-05 00:56:27 +0900 | [diff] [blame] | 36 | #include <linux/gpio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/reboot.h> |
Atsushi Nemoto | f6727fb | 2008-07-24 00:25:19 +0900 | [diff] [blame] | 38 | #include <asm/txx9pio.h> |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 39 | #include <asm/txx9/generic.h> |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 40 | #include <asm/txx9/pci.h> |
Atsushi Nemoto | 22b1d70 | 2008-07-11 00:31:36 +0900 | [diff] [blame] | 41 | #include <asm/txx9/jmr3927.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 42 | #include <asm/mipsregs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Atsushi Nemoto | a49297e | 2008-07-24 00:25:17 +0900 | [diff] [blame] | 44 | static void jmr3927_machine_restart(char *command) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | { |
Atsushi Nemoto | a49297e | 2008-07-24 00:25:17 +0900 | [diff] [blame] | 46 | local_irq_disable(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #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 Nemoto | a49297e | 2008-07-24 00:25:17 +0900 | [diff] [blame] | 55 | /* fallback */ |
| 56 | (*_machine_halt)(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 59 | static void __init jmr3927_time_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | { |
Atsushi Nemoto | f6727fb | 2008-07-24 00:25:19 +0900 | [diff] [blame] | 61 | tx3927_time_init(0, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 62 | } |
| 63 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 64 | #define DO_WRITE_THROUGH |
| 65 | #define DO_ENABLE_CACHE |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | static void jmr3927_board_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 68 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 69 | static void __init jmr3927_mem_setup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | { |
| 71 | char *argptr; |
| 72 | |
| 73 | set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO); |
| 74 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | _machine_restart = jmr3927_machine_restart; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | /* Reboot on panic */ |
| 78 | panic_timeout = 180; |
| 79 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | /* cache setup */ |
| 81 | { |
| 82 | unsigned int conf; |
| 83 | #ifdef DO_ENABLE_CACHE |
| 84 | int mips_ic_disable = 0, mips_dc_disable = 0; |
| 85 | #else |
| 86 | int mips_ic_disable = 1, mips_dc_disable = 1; |
| 87 | #endif |
| 88 | #ifdef DO_WRITE_THROUGH |
| 89 | int mips_config_cwfon = 0; |
| 90 | int mips_config_wbon = 0; |
| 91 | #else |
| 92 | int mips_config_cwfon = 1; |
| 93 | int mips_config_wbon = 1; |
| 94 | #endif |
| 95 | |
| 96 | conf = read_c0_conf(); |
| 97 | conf &= ~(TX39_CONF_ICE | TX39_CONF_DCE | TX39_CONF_WBON | TX39_CONF_CWFON); |
| 98 | conf |= mips_ic_disable ? 0 : TX39_CONF_ICE; |
| 99 | conf |= mips_dc_disable ? 0 : TX39_CONF_DCE; |
| 100 | conf |= mips_config_wbon ? TX39_CONF_WBON : 0; |
| 101 | conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0; |
| 102 | |
| 103 | write_c0_conf(conf); |
| 104 | write_c0_cache(0); |
| 105 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | /* initialize board */ |
| 108 | jmr3927_board_init(); |
| 109 | |
| 110 | argptr = prom_getcmdline(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | if ((argptr = strstr(argptr, "ip=")) == NULL) { |
| 112 | argptr = prom_getcmdline(); |
| 113 | strcat(argptr, " ip=bootp"); |
| 114 | } |
| 115 | |
Atsushi Nemoto | f6727fb | 2008-07-24 00:25:19 +0900 | [diff] [blame] | 116 | tx3927_setup_serial(1 << 1); /* ch1: noCTS */ |
Ralf Baechle | 5eaf7a2 | 2005-03-04 17:24:32 +0000 | [diff] [blame] | 117 | #ifdef CONFIG_SERIAL_TXX9_CONSOLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | argptr = prom_getcmdline(); |
| 119 | if ((argptr = strstr(argptr, "console=")) == NULL) { |
| 120 | argptr = prom_getcmdline(); |
| 121 | strcat(argptr, " console=ttyS1,115200"); |
| 122 | } |
| 123 | #endif |
| 124 | } |
| 125 | |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 126 | static void __init jmr3927_pci_setup(void) |
| 127 | { |
| 128 | #ifdef CONFIG_PCI |
| 129 | int extarb = !(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB); |
| 130 | struct pci_controller *c; |
| 131 | |
| 132 | c = txx9_alloc_pci_controller(&txx9_primary_pcic, |
| 133 | JMR3927_PCIMEM, JMR3927_PCIMEM_SIZE, |
| 134 | JMR3927_PCIIO, JMR3927_PCIIO_SIZE); |
| 135 | register_pci_controller(c); |
| 136 | if (!extarb) { |
| 137 | /* Reset PCI Bus */ |
| 138 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); |
| 139 | udelay(100); |
| 140 | jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, |
| 141 | JMR3927_IOC_RESET_ADDR); |
| 142 | udelay(100); |
| 143 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); |
| 144 | } |
| 145 | tx3927_pcic_setup(c, JMR3927_SDRAM_SIZE, extarb); |
Atsushi Nemoto | 455cc25 | 2008-07-25 23:01:35 +0900 | [diff] [blame] | 146 | tx3927_setup_pcierr_irq(); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 147 | #endif /* CONFIG_PCI */ |
| 148 | } |
| 149 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 150 | static void __init jmr3927_board_init(void) |
| 151 | { |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 152 | txx9_cpu_clock = JMR3927_CORECLK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 153 | /* SDRAMC are configured by PROM */ |
| 154 | |
| 155 | /* ROMC */ |
| 156 | tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048; |
| 157 | tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8; |
| 158 | tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698; |
| 159 | tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218; |
| 160 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 161 | /* Pin selection */ |
| 162 | tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL; |
| 163 | tx3927_ccfgptr->pcfg |= |
| 164 | TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL | |
| 165 | (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1)); |
| 166 | |
Atsushi Nemoto | f6727fb | 2008-07-24 00:25:19 +0900 | [diff] [blame] | 167 | tx3927_setup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 168 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | /* PIO[15:12] connected to LEDs */ |
Atsushi Nemoto | 1bd0962 | 2008-04-05 00:56:27 +0900 | [diff] [blame] | 170 | __raw_writel(0x0000f000, &tx3927_pioptr->dir); |
Atsushi Nemoto | 1bd0962 | 2008-04-05 00:56:27 +0900 | [diff] [blame] | 171 | gpio_request(11, "dipsw1"); |
| 172 | gpio_request(10, "dipsw2"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | |
Atsushi Nemoto | f6727fb | 2008-07-24 00:25:19 +0900 | [diff] [blame] | 174 | jmr3927_pci_setup(); |
| 175 | |
| 176 | /* SIO0 DTR on */ |
| 177 | jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR); |
| 178 | |
| 179 | jmr3927_led_set(0); |
| 180 | |
| 181 | printk(KERN_INFO |
| 182 | "JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n", |
| 183 | jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK, |
| 184 | jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK, |
| 185 | jmr3927_dipsw1(), jmr3927_dipsw2(), |
| 186 | jmr3927_dipsw3(), jmr3927_dipsw4()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | } |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 188 | |
| 189 | /* This trick makes rtc-ds1742 driver usable as is. */ |
Atsushi Nemoto | 4c642f3 | 2008-07-13 23:37:56 +0900 | [diff] [blame] | 190 | static unsigned long jmr3927_swizzle_addr_b(unsigned long port) |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 191 | { |
| 192 | if ((port & 0xffff0000) != JMR3927_IOC_NVRAMB_ADDR) |
| 193 | return port; |
| 194 | port = (port & 0xffff0000) | (port & 0x7fff << 1); |
| 195 | #ifdef __BIG_ENDIAN |
| 196 | return port; |
| 197 | #else |
| 198 | return port | 1; |
| 199 | #endif |
| 200 | } |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 201 | |
| 202 | static int __init jmr3927_rtc_init(void) |
| 203 | { |
Atsushi Nemoto | 4614c32 | 2007-05-01 01:49:20 +0900 | [diff] [blame] | 204 | static struct resource __initdata res = { |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 205 | .start = JMR3927_IOC_NVRAMB_ADDR - IO_BASE, |
| 206 | .end = JMR3927_IOC_NVRAMB_ADDR - IO_BASE + 0x800 - 1, |
| 207 | .flags = IORESOURCE_MEM, |
| 208 | }; |
| 209 | struct platform_device *dev; |
Atsushi Nemoto | a95e23a | 2007-10-16 01:28:18 -0700 | [diff] [blame] | 210 | dev = platform_device_register_simple("rtc-ds1742", -1, &res, 1); |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 211 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; |
| 212 | } |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 213 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 214 | static void __init jmr3927_device_init(void) |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 215 | { |
Atsushi Nemoto | 4c642f3 | 2008-07-13 23:37:56 +0900 | [diff] [blame] | 216 | __swizzle_addr_b = jmr3927_swizzle_addr_b; |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 217 | jmr3927_rtc_init(); |
Atsushi Nemoto | 6831472 | 2008-07-24 00:25:18 +0900 | [diff] [blame] | 218 | tx3927_wdt_init(); |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 219 | } |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 220 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 221 | struct txx9_board_vec jmr3927_vec __initdata = { |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 222 | .system = "Toshiba JMR_TX3927", |
| 223 | .prom_init = jmr3927_prom_init, |
| 224 | .mem_setup = jmr3927_mem_setup, |
| 225 | .irq_setup = jmr3927_irq_setup, |
| 226 | .time_init = jmr3927_time_init, |
| 227 | .device_init = jmr3927_device_init, |
| 228 | #ifdef CONFIG_PCI |
| 229 | .pci_map_irq = jmr3927_pci_map_irq, |
| 230 | #endif |
| 231 | }; |