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