Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 1 | /* |
| 2 | * linux/arch/mips/txx9/generic/setup.c |
| 3 | * |
| 4 | * Based on linux/arch/mips/txx9/rbtx4938/setup.c, |
| 5 | * and RBTX49xx patch from CELF patch archive. |
| 6 | * |
| 7 | * 2003-2005 (c) MontaVista Software, Inc. |
| 8 | * (C) Copyright TOSHIBA CORPORATION 2000-2001, 2004-2007 |
| 9 | * |
| 10 | * This file is subject to the terms and conditions of the GNU General Public |
| 11 | * License. See the file "COPYING" in the main directory of this archive |
| 12 | * for more details. |
| 13 | */ |
| 14 | #include <linux/init.h> |
| 15 | #include <linux/kernel.h> |
| 16 | #include <linux/types.h> |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 17 | #include <linux/interrupt.h> |
| 18 | #include <linux/string.h> |
| 19 | #include <linux/module.h> |
| 20 | #include <linux/clk.h> |
| 21 | #include <linux/err.h> |
Atsushi Nemoto | e0eb730 | 2008-07-19 01:51:52 +0900 | [diff] [blame] | 22 | #include <linux/gpio.h> |
Atsushi Nemoto | 6831472 | 2008-07-24 00:25:18 +0900 | [diff] [blame] | 23 | #include <linux/platform_device.h> |
Atsushi Nemoto | 7779a5e | 2008-07-25 23:08:06 +0900 | [diff] [blame^] | 24 | #include <linux/serial_core.h> |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 25 | #include <asm/bootinfo.h> |
Atsushi Nemoto | e0eb730 | 2008-07-19 01:51:52 +0900 | [diff] [blame] | 26 | #include <asm/time.h> |
Atsushi Nemoto | a49297e | 2008-07-24 00:25:17 +0900 | [diff] [blame] | 27 | #include <asm/reboot.h> |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 28 | #include <asm/txx9/generic.h> |
Atsushi Nemoto | 0751752 | 2008-07-24 00:25:15 +0900 | [diff] [blame] | 29 | #include <asm/txx9/pci.h> |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 30 | #ifdef CONFIG_CPU_TX49XX |
| 31 | #include <asm/txx9/tx4938.h> |
| 32 | #endif |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 33 | |
| 34 | /* EBUSC settings of TX4927, etc. */ |
| 35 | struct resource txx9_ce_res[8]; |
| 36 | static char txx9_ce_res_name[8][4]; /* "CEn" */ |
| 37 | |
| 38 | /* pcode, internal register */ |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 39 | unsigned int txx9_pcode; |
Atsushi Nemoto | 89d63fe | 2008-07-11 00:33:08 +0900 | [diff] [blame] | 40 | char txx9_pcode_str[8]; |
| 41 | static struct resource txx9_reg_res = { |
| 42 | .name = txx9_pcode_str, |
| 43 | .flags = IORESOURCE_MEM, |
| 44 | }; |
| 45 | void __init |
| 46 | txx9_reg_res_init(unsigned int pcode, unsigned long base, unsigned long size) |
| 47 | { |
| 48 | int i; |
| 49 | |
| 50 | for (i = 0; i < ARRAY_SIZE(txx9_ce_res); i++) { |
| 51 | sprintf(txx9_ce_res_name[i], "CE%d", i); |
| 52 | txx9_ce_res[i].flags = IORESOURCE_MEM; |
| 53 | txx9_ce_res[i].name = txx9_ce_res_name[i]; |
| 54 | } |
| 55 | |
| 56 | sprintf(txx9_pcode_str, "TX%x", pcode); |
| 57 | if (base) { |
| 58 | txx9_reg_res.start = base & 0xfffffffffULL; |
| 59 | txx9_reg_res.end = (base & 0xfffffffffULL) + (size - 1); |
| 60 | request_resource(&iomem_resource, &txx9_reg_res); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | /* clocks */ |
| 65 | unsigned int txx9_master_clock; |
| 66 | unsigned int txx9_cpu_clock; |
| 67 | unsigned int txx9_gbus_clock; |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 68 | |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 69 | int txx9_ccfg_toeon __initdata = 1; |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 70 | |
| 71 | /* Minimum CLK support */ |
| 72 | |
| 73 | struct clk *clk_get(struct device *dev, const char *id) |
| 74 | { |
| 75 | if (!strcmp(id, "spi-baseclk")) |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 76 | return (struct clk *)((unsigned long)txx9_gbus_clock / 2 / 4); |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 77 | if (!strcmp(id, "imbus_clk")) |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 78 | return (struct clk *)((unsigned long)txx9_gbus_clock / 2); |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 79 | return ERR_PTR(-ENOENT); |
| 80 | } |
| 81 | EXPORT_SYMBOL(clk_get); |
| 82 | |
| 83 | int clk_enable(struct clk *clk) |
| 84 | { |
| 85 | return 0; |
| 86 | } |
| 87 | EXPORT_SYMBOL(clk_enable); |
| 88 | |
| 89 | void clk_disable(struct clk *clk) |
| 90 | { |
| 91 | } |
| 92 | EXPORT_SYMBOL(clk_disable); |
| 93 | |
| 94 | unsigned long clk_get_rate(struct clk *clk) |
| 95 | { |
| 96 | return (unsigned long)clk; |
| 97 | } |
| 98 | EXPORT_SYMBOL(clk_get_rate); |
| 99 | |
| 100 | void clk_put(struct clk *clk) |
| 101 | { |
| 102 | } |
| 103 | EXPORT_SYMBOL(clk_put); |
| 104 | |
Atsushi Nemoto | 8d795f2 | 2008-07-18 00:43:48 +0900 | [diff] [blame] | 105 | /* GPIO support */ |
| 106 | |
| 107 | #ifdef CONFIG_GENERIC_GPIO |
| 108 | int gpio_to_irq(unsigned gpio) |
| 109 | { |
| 110 | return -EINVAL; |
| 111 | } |
| 112 | EXPORT_SYMBOL(gpio_to_irq); |
| 113 | |
| 114 | int irq_to_gpio(unsigned irq) |
| 115 | { |
| 116 | return -EINVAL; |
| 117 | } |
| 118 | EXPORT_SYMBOL(irq_to_gpio); |
| 119 | #endif |
| 120 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 121 | extern struct txx9_board_vec jmr3927_vec; |
| 122 | extern struct txx9_board_vec rbtx4927_vec; |
| 123 | extern struct txx9_board_vec rbtx4937_vec; |
| 124 | extern struct txx9_board_vec rbtx4938_vec; |
| 125 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 126 | struct txx9_board_vec *txx9_board_vec __initdata; |
| 127 | static char txx9_system_type[32]; |
| 128 | |
| 129 | void __init prom_init_cmdline(void) |
| 130 | { |
| 131 | int argc = (int)fw_arg0; |
| 132 | char **argv = (char **)fw_arg1; |
| 133 | int i; /* Always ignore the "-c" at argv[0] */ |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 134 | #ifdef CONFIG_64BIT |
| 135 | char *fixed_argv[32]; |
| 136 | for (i = 0; i < argc; i++) |
| 137 | fixed_argv[i] = (char *)(long)(*((__s32 *)argv + i)); |
| 138 | argv = fixed_argv; |
| 139 | #endif |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 140 | |
| 141 | /* ignore all built-in args if any f/w args given */ |
| 142 | if (argc > 1) |
| 143 | *arcs_cmdline = '\0'; |
| 144 | |
| 145 | for (i = 1; i < argc; i++) { |
| 146 | if (i != 1) |
| 147 | strcat(arcs_cmdline, " "); |
| 148 | strcat(arcs_cmdline, argv[i]); |
| 149 | } |
| 150 | } |
| 151 | |
| 152 | void __init prom_init(void) |
| 153 | { |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 154 | #ifdef CONFIG_CPU_TX39XX |
Yoichi Yuasa | 7a1fdf1 | 2008-07-13 19:51:55 +0900 | [diff] [blame] | 155 | txx9_board_vec = &jmr3927_vec; |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 156 | #endif |
| 157 | #ifdef CONFIG_CPU_TX49XX |
| 158 | switch (TX4938_REV_PCODE()) { |
Atsushi Nemoto | 8d795f2 | 2008-07-18 00:43:48 +0900 | [diff] [blame] | 159 | #ifdef CONFIG_TOSHIBA_RBTX4927 |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 160 | case 0x4927: |
Yoichi Yuasa | 7a1fdf1 | 2008-07-13 19:51:55 +0900 | [diff] [blame] | 161 | txx9_board_vec = &rbtx4927_vec; |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 162 | break; |
| 163 | case 0x4937: |
Yoichi Yuasa | 7a1fdf1 | 2008-07-13 19:51:55 +0900 | [diff] [blame] | 164 | txx9_board_vec = &rbtx4937_vec; |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 165 | break; |
Atsushi Nemoto | 8d795f2 | 2008-07-18 00:43:48 +0900 | [diff] [blame] | 166 | #endif |
| 167 | #ifdef CONFIG_TOSHIBA_RBTX4938 |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 168 | case 0x4938: |
Yoichi Yuasa | 7a1fdf1 | 2008-07-13 19:51:55 +0900 | [diff] [blame] | 169 | txx9_board_vec = &rbtx4938_vec; |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 170 | break; |
Atsushi Nemoto | 8d795f2 | 2008-07-18 00:43:48 +0900 | [diff] [blame] | 171 | #endif |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 172 | } |
| 173 | #endif |
Yoichi Yuasa | 7a1fdf1 | 2008-07-13 19:51:55 +0900 | [diff] [blame] | 174 | |
| 175 | strcpy(txx9_system_type, txx9_board_vec->system); |
| 176 | |
Atsushi Nemoto | 7b22609 | 2008-07-14 00:15:04 +0900 | [diff] [blame] | 177 | txx9_board_vec->prom_init(); |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 178 | } |
| 179 | |
| 180 | void __init prom_free_prom_memory(void) |
| 181 | { |
| 182 | } |
| 183 | |
| 184 | const char *get_system_type(void) |
| 185 | { |
| 186 | return txx9_system_type; |
| 187 | } |
| 188 | |
| 189 | char * __init prom_getcmdline(void) |
| 190 | { |
| 191 | return &(arcs_cmdline[0]); |
| 192 | } |
| 193 | |
Atsushi Nemoto | a49297e | 2008-07-24 00:25:17 +0900 | [diff] [blame] | 194 | static void __noreturn txx9_machine_halt(void) |
| 195 | { |
| 196 | local_irq_disable(); |
| 197 | clear_c0_status(ST0_IM); |
| 198 | while (1) { |
| 199 | if (cpu_wait) { |
| 200 | (*cpu_wait)(); |
| 201 | if (cpu_has_counter) { |
| 202 | /* |
| 203 | * Clear counter interrupt while it |
| 204 | * breaks WAIT instruction even if |
| 205 | * masked. |
| 206 | */ |
| 207 | write_c0_compare(0); |
| 208 | } |
| 209 | } |
| 210 | } |
| 211 | } |
| 212 | |
Atsushi Nemoto | 6831472 | 2008-07-24 00:25:18 +0900 | [diff] [blame] | 213 | /* Watchdog support */ |
| 214 | void __init txx9_wdt_init(unsigned long base) |
| 215 | { |
| 216 | struct resource res = { |
| 217 | .start = base, |
| 218 | .end = base + 0x100 - 1, |
| 219 | .flags = IORESOURCE_MEM, |
| 220 | }; |
| 221 | platform_device_register_simple("txx9wdt", -1, &res, 1); |
| 222 | } |
| 223 | |
Atsushi Nemoto | c49f91f | 2008-07-24 00:25:20 +0900 | [diff] [blame] | 224 | /* SPI support */ |
| 225 | void __init txx9_spi_init(int busid, unsigned long base, int irq) |
| 226 | { |
| 227 | struct resource res[] = { |
| 228 | { |
| 229 | .start = base, |
| 230 | .end = base + 0x20 - 1, |
| 231 | .flags = IORESOURCE_MEM, |
| 232 | }, { |
| 233 | .start = irq, |
| 234 | .flags = IORESOURCE_IRQ, |
| 235 | }, |
| 236 | }; |
| 237 | platform_device_register_simple("spi_txx9", busid, |
| 238 | res, ARRAY_SIZE(res)); |
| 239 | } |
| 240 | |
| 241 | void __init txx9_ethaddr_init(unsigned int id, unsigned char *ethaddr) |
| 242 | { |
| 243 | struct platform_device *pdev = |
| 244 | platform_device_alloc("tc35815-mac", id); |
| 245 | if (!pdev || |
| 246 | platform_device_add_data(pdev, ethaddr, 6) || |
| 247 | platform_device_add(pdev)) |
| 248 | platform_device_put(pdev); |
| 249 | } |
| 250 | |
Atsushi Nemoto | 7779a5e | 2008-07-25 23:08:06 +0900 | [diff] [blame^] | 251 | void __init txx9_sio_init(unsigned long baseaddr, int irq, |
| 252 | unsigned int line, unsigned int sclk, int nocts) |
| 253 | { |
| 254 | #ifdef CONFIG_SERIAL_TXX9 |
| 255 | struct uart_port req; |
| 256 | |
| 257 | memset(&req, 0, sizeof(req)); |
| 258 | req.line = line; |
| 259 | req.iotype = UPIO_MEM; |
| 260 | req.membase = ioremap(baseaddr, 0x24); |
| 261 | req.mapbase = baseaddr; |
| 262 | req.irq = irq; |
| 263 | if (!nocts) |
| 264 | req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/; |
| 265 | if (sclk) { |
| 266 | req.flags |= UPF_MAGIC_MULTIPLIER /*USE_SCLK*/; |
| 267 | req.uartclk = sclk; |
| 268 | } else |
| 269 | req.uartclk = TXX9_IMCLK; |
| 270 | early_serial_txx9_setup(&req); |
| 271 | #endif /* CONFIG_SERIAL_TXX9 */ |
| 272 | } |
| 273 | |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 274 | /* wrappers */ |
| 275 | void __init plat_mem_setup(void) |
| 276 | { |
Atsushi Nemoto | 94a4c32 | 2008-07-19 01:51:47 +0900 | [diff] [blame] | 277 | ioport_resource.start = 0; |
| 278 | ioport_resource.end = ~0UL; /* no limit */ |
| 279 | iomem_resource.start = 0; |
| 280 | iomem_resource.end = ~0UL; /* no limit */ |
Atsushi Nemoto | a49297e | 2008-07-24 00:25:17 +0900 | [diff] [blame] | 281 | |
| 282 | /* fallback restart/halt routines */ |
| 283 | _machine_restart = (void (*)(char *))txx9_machine_halt; |
| 284 | _machine_halt = txx9_machine_halt; |
| 285 | pm_power_off = txx9_machine_halt; |
| 286 | |
Atsushi Nemoto | 0751752 | 2008-07-24 00:25:15 +0900 | [diff] [blame] | 287 | #ifdef CONFIG_PCI |
| 288 | pcibios_plat_setup = txx9_pcibios_setup; |
| 289 | #endif |
Atsushi Nemoto | edcaf1a | 2008-07-11 23:27:54 +0900 | [diff] [blame] | 290 | txx9_board_vec->mem_setup(); |
| 291 | } |
| 292 | |
| 293 | void __init arch_init_irq(void) |
| 294 | { |
| 295 | txx9_board_vec->irq_setup(); |
| 296 | } |
| 297 | |
| 298 | void __init plat_time_init(void) |
| 299 | { |
| 300 | txx9_board_vec->time_init(); |
| 301 | } |
| 302 | |
| 303 | static int __init _txx9_arch_init(void) |
| 304 | { |
| 305 | if (txx9_board_vec->arch_init) |
| 306 | txx9_board_vec->arch_init(); |
| 307 | return 0; |
| 308 | } |
| 309 | arch_initcall(_txx9_arch_init); |
| 310 | |
| 311 | static int __init _txx9_device_init(void) |
| 312 | { |
| 313 | if (txx9_board_vec->device_init) |
| 314 | txx9_board_vec->device_init(); |
| 315 | return 0; |
| 316 | } |
| 317 | device_initcall(_txx9_device_init); |
| 318 | |
| 319 | int (*txx9_irq_dispatch)(int pending); |
| 320 | asmlinkage void plat_irq_dispatch(void) |
| 321 | { |
| 322 | int pending = read_c0_status() & read_c0_cause() & ST0_IM; |
| 323 | int irq = txx9_irq_dispatch(pending); |
| 324 | |
| 325 | if (likely(irq >= 0)) |
| 326 | do_IRQ(irq); |
| 327 | else |
| 328 | spurious_interrupt(); |
| 329 | } |
Atsushi Nemoto | 4c642f3 | 2008-07-13 23:37:56 +0900 | [diff] [blame] | 330 | |
| 331 | /* see include/asm-mips/mach-tx39xx/mangle-port.h, for example. */ |
| 332 | #ifdef NEEDS_TXX9_SWIZZLE_ADDR_B |
| 333 | static unsigned long __swizzle_addr_none(unsigned long port) |
| 334 | { |
| 335 | return port; |
| 336 | } |
| 337 | unsigned long (*__swizzle_addr_b)(unsigned long port) = __swizzle_addr_none; |
| 338 | EXPORT_SYMBOL(__swizzle_addr_b); |
| 339 | #endif |