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> |
Ralf Baechle | fcdb27a | 2006-01-18 17:37:07 +0000 | [diff] [blame] | 35 | #include <linux/pm.h> |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 36 | #include <linux/platform_device.h> |
Atsushi Nemoto | 1bd0962 | 2008-04-05 00:56:27 +0900 | [diff] [blame] | 37 | #include <linux/gpio.h> |
Ralf Baechle | 5eaf7a2 | 2005-03-04 17:24:32 +0000 | [diff] [blame] | 38 | #ifdef CONFIG_SERIAL_TXX9 |
Ralf Baechle | 5eaf7a2 | 2005-03-04 17:24:32 +0000 | [diff] [blame] | 39 | #include <linux/serial_core.h> |
| 40 | #endif |
Atsushi Nemoto | 229f773 | 2007-10-25 01:34:09 +0900 | [diff] [blame] | 41 | #include <asm/txx9tmr.h> |
Atsushi Nemoto | 1bd0962 | 2008-04-05 00:56:27 +0900 | [diff] [blame] | 42 | #include <asm/txx9pio.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #include <asm/reboot.h> |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 44 | #include <asm/txx9/generic.h> |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 45 | #include <asm/txx9/pci.h> |
Atsushi Nemoto | 22b1d70 | 2008-07-11 00:31:36 +0900 | [diff] [blame] | 46 | #include <asm/txx9/jmr3927.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | #include <asm/mipsregs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
Atsushi Nemoto | 2127435 | 2007-03-15 00:58:28 +0900 | [diff] [blame] | 49 | extern void puts(const char *cp); |
Ralf Baechle | 380b925 | 2005-11-19 21:51:56 +0000 | [diff] [blame] | 50 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 51 | /* don't enable - see errata */ |
Atsushi Nemoto | 2127435 | 2007-03-15 00:58:28 +0900 | [diff] [blame] | 52 | static int jmr3927_ccfg_toeon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | |
| 54 | static inline void do_reset(void) |
| 55 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 56 | #if 1 /* Resetting PCI bus */ |
| 57 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); |
| 58 | jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, JMR3927_IOC_RESET_ADDR); |
| 59 | (void)jmr3927_ioc_reg_in(JMR3927_IOC_RESET_ADDR); /* flush WB */ |
| 60 | mdelay(1); |
| 61 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); |
| 62 | #endif |
| 63 | jmr3927_ioc_reg_out(JMR3927_IOC_RESET_CPU, JMR3927_IOC_RESET_ADDR); |
| 64 | } |
| 65 | |
| 66 | static void jmr3927_machine_restart(char *command) |
| 67 | { |
| 68 | local_irq_disable(); |
| 69 | puts("Rebooting..."); |
| 70 | do_reset(); |
| 71 | } |
| 72 | |
| 73 | static void jmr3927_machine_halt(void) |
| 74 | { |
| 75 | puts("JMR-TX3927 halted.\n"); |
| 76 | while (1); |
| 77 | } |
| 78 | |
| 79 | static void jmr3927_machine_power_off(void) |
| 80 | { |
| 81 | puts("JMR-TX3927 halted. Please turn off the power.\n"); |
| 82 | while (1); |
| 83 | } |
| 84 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 85 | static void __init jmr3927_time_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | { |
Atsushi Nemoto | 229f773 | 2007-10-25 01:34:09 +0900 | [diff] [blame] | 87 | txx9_clockevent_init(TX3927_TMR_REG(0), |
Atsushi Nemoto | a0e31fb | 2008-07-24 00:25:12 +0900 | [diff] [blame] | 88 | JMR3927_IRQ_IRC_TMR(0), |
Atsushi Nemoto | 229f773 | 2007-10-25 01:34:09 +0900 | [diff] [blame] | 89 | JMR3927_IMCLK); |
| 90 | txx9_clocksource_init(TX3927_TMR_REG(1), JMR3927_IMCLK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | } |
| 92 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | #define DO_WRITE_THROUGH |
| 94 | #define DO_ENABLE_CACHE |
| 95 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | static void jmr3927_board_init(void); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 98 | static void __init jmr3927_mem_setup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | { |
| 100 | char *argptr; |
| 101 | |
| 102 | set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO); |
| 103 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | _machine_restart = jmr3927_machine_restart; |
| 105 | _machine_halt = jmr3927_machine_halt; |
Ralf Baechle | fcdb27a | 2006-01-18 17:37:07 +0000 | [diff] [blame] | 106 | pm_power_off = jmr3927_machine_power_off; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | /* Reboot on panic */ |
| 109 | panic_timeout = 180; |
| 110 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | /* cache setup */ |
| 112 | { |
| 113 | unsigned int conf; |
| 114 | #ifdef DO_ENABLE_CACHE |
| 115 | int mips_ic_disable = 0, mips_dc_disable = 0; |
| 116 | #else |
| 117 | int mips_ic_disable = 1, mips_dc_disable = 1; |
| 118 | #endif |
| 119 | #ifdef DO_WRITE_THROUGH |
| 120 | int mips_config_cwfon = 0; |
| 121 | int mips_config_wbon = 0; |
| 122 | #else |
| 123 | int mips_config_cwfon = 1; |
| 124 | int mips_config_wbon = 1; |
| 125 | #endif |
| 126 | |
| 127 | conf = read_c0_conf(); |
| 128 | conf &= ~(TX39_CONF_ICE | TX39_CONF_DCE | TX39_CONF_WBON | TX39_CONF_CWFON); |
| 129 | conf |= mips_ic_disable ? 0 : TX39_CONF_ICE; |
| 130 | conf |= mips_dc_disable ? 0 : TX39_CONF_DCE; |
| 131 | conf |= mips_config_wbon ? TX39_CONF_WBON : 0; |
| 132 | conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0; |
| 133 | |
| 134 | write_c0_conf(conf); |
| 135 | write_c0_cache(0); |
| 136 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | |
| 138 | /* initialize board */ |
| 139 | jmr3927_board_init(); |
| 140 | |
| 141 | argptr = prom_getcmdline(); |
| 142 | |
Atsushi Nemoto | 2127435 | 2007-03-15 00:58:28 +0900 | [diff] [blame] | 143 | if ((argptr = strstr(argptr, "toeon")) != NULL) |
| 144 | jmr3927_ccfg_toeon = 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 145 | argptr = prom_getcmdline(); |
| 146 | if ((argptr = strstr(argptr, "ip=")) == NULL) { |
| 147 | argptr = prom_getcmdline(); |
| 148 | strcat(argptr, " ip=bootp"); |
| 149 | } |
| 150 | |
Ralf Baechle | 5eaf7a2 | 2005-03-04 17:24:32 +0000 | [diff] [blame] | 151 | #ifdef CONFIG_SERIAL_TXX9 |
| 152 | { |
| 153 | extern int early_serial_txx9_setup(struct uart_port *port); |
| 154 | int i; |
| 155 | struct uart_port req; |
| 156 | for(i = 0; i < 2; i++) { |
| 157 | memset(&req, 0, sizeof(req)); |
| 158 | req.line = i; |
| 159 | req.iotype = UPIO_MEM; |
Atsushi Nemoto | 2127435 | 2007-03-15 00:58:28 +0900 | [diff] [blame] | 160 | req.membase = (unsigned char __iomem *)TX3927_SIO_REG(i); |
Ralf Baechle | 5eaf7a2 | 2005-03-04 17:24:32 +0000 | [diff] [blame] | 161 | req.mapbase = TX3927_SIO_REG(i); |
| 162 | req.irq = i == 0 ? |
| 163 | JMR3927_IRQ_IRC_SIO0 : JMR3927_IRQ_IRC_SIO1; |
| 164 | if (i == 0) |
| 165 | req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/; |
| 166 | req.uartclk = JMR3927_IMCLK; |
| 167 | early_serial_txx9_setup(&req); |
| 168 | } |
| 169 | } |
| 170 | #ifdef CONFIG_SERIAL_TXX9_CONSOLE |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | argptr = prom_getcmdline(); |
| 172 | if ((argptr = strstr(argptr, "console=")) == NULL) { |
| 173 | argptr = prom_getcmdline(); |
| 174 | strcat(argptr, " console=ttyS1,115200"); |
| 175 | } |
| 176 | #endif |
Ralf Baechle | 5eaf7a2 | 2005-03-04 17:24:32 +0000 | [diff] [blame] | 177 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 178 | } |
| 179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 180 | static void tx3927_setup(void); |
| 181 | |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 182 | static void __init jmr3927_pci_setup(void) |
| 183 | { |
| 184 | #ifdef CONFIG_PCI |
| 185 | int extarb = !(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB); |
| 186 | struct pci_controller *c; |
| 187 | |
| 188 | c = txx9_alloc_pci_controller(&txx9_primary_pcic, |
| 189 | JMR3927_PCIMEM, JMR3927_PCIMEM_SIZE, |
| 190 | JMR3927_PCIIO, JMR3927_PCIIO_SIZE); |
| 191 | register_pci_controller(c); |
| 192 | if (!extarb) { |
| 193 | /* Reset PCI Bus */ |
| 194 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); |
| 195 | udelay(100); |
| 196 | jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, |
| 197 | JMR3927_IOC_RESET_ADDR); |
| 198 | udelay(100); |
| 199 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); |
| 200 | } |
| 201 | tx3927_pcic_setup(c, JMR3927_SDRAM_SIZE, extarb); |
Atsushi Nemoto | 455cc25 | 2008-07-25 23:01:35 +0900 | [diff] [blame^] | 202 | tx3927_setup_pcierr_irq(); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 203 | #endif /* CONFIG_PCI */ |
| 204 | } |
| 205 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 206 | static void __init jmr3927_board_init(void) |
| 207 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 208 | tx3927_setup(); |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 209 | jmr3927_pci_setup(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | /* SIO0 DTR on */ |
| 212 | jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR); |
| 213 | |
| 214 | jmr3927_led_set(0); |
| 215 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | printk("JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n", |
| 217 | jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK, |
| 218 | jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK, |
| 219 | jmr3927_dipsw1(), jmr3927_dipsw2(), |
| 220 | jmr3927_dipsw3(), jmr3927_dipsw4()); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 221 | } |
| 222 | |
Atsushi Nemoto | 2127435 | 2007-03-15 00:58:28 +0900 | [diff] [blame] | 223 | static void __init tx3927_setup(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 224 | { |
| 225 | int i; |
| 226 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 227 | txx9_cpu_clock = JMR3927_CORECLK; |
| 228 | txx9_gbus_clock = JMR3927_GBUSCLK; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | /* SDRAMC are configured by PROM */ |
| 230 | |
| 231 | /* ROMC */ |
| 232 | tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048; |
| 233 | tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8; |
| 234 | tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698; |
| 235 | tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218; |
| 236 | |
| 237 | /* CCFG */ |
| 238 | /* enable Timeout BusError */ |
| 239 | if (jmr3927_ccfg_toeon) |
| 240 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_TOE; |
| 241 | |
| 242 | /* clear BusErrorOnWrite flag */ |
| 243 | tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_BEOW; |
| 244 | /* Disable PCI snoop */ |
| 245 | tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_PSNP; |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 246 | /* do reset on watchdog */ |
| 247 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_WR; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 248 | |
| 249 | #ifdef DO_WRITE_THROUGH |
| 250 | /* Enable PCI SNOOP - with write through only */ |
| 251 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_PSNP; |
| 252 | #endif |
| 253 | |
| 254 | /* Pin selection */ |
| 255 | tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL; |
| 256 | tx3927_ccfgptr->pcfg |= |
| 257 | TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL | |
| 258 | (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1)); |
| 259 | |
| 260 | printk("TX3927 -- CRIR:%08lx CCFG:%08lx PCFG:%08lx\n", |
| 261 | tx3927_ccfgptr->crir, |
| 262 | tx3927_ccfgptr->ccfg, tx3927_ccfgptr->pcfg); |
| 263 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | /* TMR */ |
Atsushi Nemoto | 229f773 | 2007-10-25 01:34:09 +0900 | [diff] [blame] | 265 | for (i = 0; i < TX3927_NR_TMR; i++) |
| 266 | txx9_tmr_init(TX3927_TMR_REG(i)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 267 | |
| 268 | /* DMA */ |
| 269 | tx3927_dmaptr->mcr = 0; |
Ahmed S. Darwish | 25b8ac3 | 2007-02-05 04:42:11 +0200 | [diff] [blame] | 270 | for (i = 0; i < ARRAY_SIZE(tx3927_dmaptr->ch); i++) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | /* reset channel */ |
| 272 | tx3927_dmaptr->ch[i].ccr = TX3927_DMA_CCR_CHRST; |
| 273 | tx3927_dmaptr->ch[i].ccr = 0; |
| 274 | } |
| 275 | /* enable DMA */ |
| 276 | #ifdef __BIG_ENDIAN |
| 277 | tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN; |
| 278 | #else |
| 279 | tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN | TX3927_DMA_MCR_LE; |
| 280 | #endif |
| 281 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 282 | /* PIO */ |
| 283 | /* PIO[15:12] connected to LEDs */ |
Atsushi Nemoto | 1bd0962 | 2008-04-05 00:56:27 +0900 | [diff] [blame] | 284 | __raw_writel(0x0000f000, &tx3927_pioptr->dir); |
| 285 | __raw_writel(0, &tx3927_pioptr->maskcpu); |
| 286 | __raw_writel(0, &tx3927_pioptr->maskext); |
| 287 | txx9_gpio_init(TX3927_PIO_REG, 0, 16); |
| 288 | gpio_request(11, "dipsw1"); |
| 289 | gpio_request(10, "dipsw2"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | { |
| 291 | unsigned int conf; |
| 292 | |
| 293 | conf = read_c0_conf(); |
| 294 | if (!(conf & TX39_CONF_ICE)) |
| 295 | printk("TX3927 I-Cache disabled.\n"); |
| 296 | if (!(conf & TX39_CONF_DCE)) |
| 297 | printk("TX3927 D-Cache disabled.\n"); |
| 298 | else if (!(conf & TX39_CONF_WBON)) |
| 299 | printk("TX3927 D-Cache WriteThrough.\n"); |
| 300 | else if (!(conf & TX39_CONF_CWFON)) |
| 301 | printk("TX3927 D-Cache WriteBack.\n"); |
| 302 | else |
| 303 | printk("TX3927 D-Cache WriteBack (CWF) .\n"); |
| 304 | } |
| 305 | } |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 306 | |
| 307 | /* This trick makes rtc-ds1742 driver usable as is. */ |
Atsushi Nemoto | 4c642f3 | 2008-07-13 23:37:56 +0900 | [diff] [blame] | 308 | static unsigned long jmr3927_swizzle_addr_b(unsigned long port) |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 309 | { |
| 310 | if ((port & 0xffff0000) != JMR3927_IOC_NVRAMB_ADDR) |
| 311 | return port; |
| 312 | port = (port & 0xffff0000) | (port & 0x7fff << 1); |
| 313 | #ifdef __BIG_ENDIAN |
| 314 | return port; |
| 315 | #else |
| 316 | return port | 1; |
| 317 | #endif |
| 318 | } |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 319 | |
| 320 | static int __init jmr3927_rtc_init(void) |
| 321 | { |
Atsushi Nemoto | 4614c32 | 2007-05-01 01:49:20 +0900 | [diff] [blame] | 322 | static struct resource __initdata res = { |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 323 | .start = JMR3927_IOC_NVRAMB_ADDR - IO_BASE, |
| 324 | .end = JMR3927_IOC_NVRAMB_ADDR - IO_BASE + 0x800 - 1, |
| 325 | .flags = IORESOURCE_MEM, |
| 326 | }; |
| 327 | struct platform_device *dev; |
Atsushi Nemoto | a95e23a | 2007-10-16 01:28:18 -0700 | [diff] [blame] | 328 | dev = platform_device_register_simple("rtc-ds1742", -1, &res, 1); |
Atsushi Nemoto | a0574e0 | 2007-03-01 00:40:21 +0900 | [diff] [blame] | 329 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; |
| 330 | } |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 331 | |
| 332 | /* Watchdog support */ |
| 333 | |
| 334 | static int __init txx9_wdt_init(unsigned long base) |
| 335 | { |
| 336 | struct resource res = { |
| 337 | .start = base, |
| 338 | .end = base + 0x100 - 1, |
| 339 | .flags = IORESOURCE_MEM, |
| 340 | }; |
| 341 | struct platform_device *dev = |
| 342 | platform_device_register_simple("txx9wdt", -1, &res, 1); |
| 343 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; |
| 344 | } |
| 345 | |
| 346 | static int __init jmr3927_wdt_init(void) |
| 347 | { |
| 348 | return txx9_wdt_init(TX3927_TMR_REG(2)); |
| 349 | } |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 350 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 351 | static void __init jmr3927_device_init(void) |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 352 | { |
Atsushi Nemoto | 4c642f3 | 2008-07-13 23:37:56 +0900 | [diff] [blame] | 353 | __swizzle_addr_b = jmr3927_swizzle_addr_b; |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 354 | jmr3927_rtc_init(); |
| 355 | jmr3927_wdt_init(); |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 356 | } |
Atsushi Nemoto | 2064ba2 | 2007-11-24 01:20:27 +0900 | [diff] [blame] | 357 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 358 | struct txx9_board_vec jmr3927_vec __initdata = { |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 359 | .system = "Toshiba JMR_TX3927", |
| 360 | .prom_init = jmr3927_prom_init, |
| 361 | .mem_setup = jmr3927_mem_setup, |
| 362 | .irq_setup = jmr3927_irq_setup, |
| 363 | .time_init = jmr3927_time_init, |
| 364 | .device_init = jmr3927_device_init, |
| 365 | #ifdef CONFIG_PCI |
| 366 | .pci_map_irq = jmr3927_pci_map_irq, |
| 367 | #endif |
| 368 | }; |