2 * linux/arch/mips/txx9/generic/setup.c
4 * Based on linux/arch/mips/txx9/rbtx4938/setup.c,
5 * and RBTX49xx patch from CELF patch archive.
7 * 2003-2005 (c) MontaVista Software, Inc.
8 * (C) Copyright TOSHIBA CORPORATION 2000-2001, 2004-2007
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
14 #include <linux/init.h>
15 #include <linux/kernel.h>
16 #include <linux/types.h>
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>
22 #include <linux/gpio.h>
23 #include <linux/platform_device.h>
24 #include <linux/serial_core.h>
25 #include <asm/bootinfo.h>
27 #include <asm/reboot.h>
28 #include <asm/txx9/generic.h>
29 #include <asm/txx9/pci.h>
30 #ifdef CONFIG_CPU_TX49XX
31 #include <asm/txx9/tx4938.h>
34 /* EBUSC settings of TX4927, etc. */
35 struct resource txx9_ce_res[8];
36 static char txx9_ce_res_name[8][4]; /* "CEn" */
38 /* pcode, internal register */
39 unsigned int txx9_pcode;
40 char txx9_pcode_str[8];
41 static struct resource txx9_reg_res = {
42 .name = txx9_pcode_str,
43 .flags = IORESOURCE_MEM,
46 txx9_reg_res_init(unsigned int pcode, unsigned long base, unsigned long size)
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];
57 sprintf(txx9_pcode_str, "TX%x", pcode);
59 txx9_reg_res.start = base & 0xfffffffffULL;
60 txx9_reg_res.end = (base & 0xfffffffffULL) + (size - 1);
61 request_resource(&iomem_resource, &txx9_reg_res);
66 unsigned int txx9_master_clock;
67 unsigned int txx9_cpu_clock;
68 unsigned int txx9_gbus_clock;
70 int txx9_ccfg_toeon __initdata = 1;
72 /* Minimum CLK support */
74 struct clk *clk_get(struct device *dev, const char *id)
76 if (!strcmp(id, "spi-baseclk"))
77 return (struct clk *)((unsigned long)txx9_gbus_clock / 2 / 4);
78 if (!strcmp(id, "imbus_clk"))
79 return (struct clk *)((unsigned long)txx9_gbus_clock / 2);
80 return ERR_PTR(-ENOENT);
82 EXPORT_SYMBOL(clk_get);
84 int clk_enable(struct clk *clk)
88 EXPORT_SYMBOL(clk_enable);
90 void clk_disable(struct clk *clk)
93 EXPORT_SYMBOL(clk_disable);
95 unsigned long clk_get_rate(struct clk *clk)
97 return (unsigned long)clk;
99 EXPORT_SYMBOL(clk_get_rate);
101 void clk_put(struct clk *clk)
104 EXPORT_SYMBOL(clk_put);
108 #ifdef CONFIG_GENERIC_GPIO
109 int gpio_to_irq(unsigned gpio)
113 EXPORT_SYMBOL(gpio_to_irq);
115 int irq_to_gpio(unsigned irq)
119 EXPORT_SYMBOL(irq_to_gpio);
122 extern struct txx9_board_vec jmr3927_vec;
123 extern struct txx9_board_vec rbtx4927_vec;
124 extern struct txx9_board_vec rbtx4937_vec;
125 extern struct txx9_board_vec rbtx4938_vec;
127 struct txx9_board_vec *txx9_board_vec __initdata;
128 static char txx9_system_type[32];
130 void __init prom_init_cmdline(void)
132 int argc = (int)fw_arg0;
133 char **argv = (char **)fw_arg1;
134 int i; /* Always ignore the "-c" at argv[0] */
136 char *fixed_argv[32];
137 for (i = 0; i < argc; i++)
138 fixed_argv[i] = (char *)(long)(*((__s32 *)argv + i));
142 /* ignore all built-in args if any f/w args given */
144 *arcs_cmdline = '\0';
146 for (i = 1; i < argc; i++) {
148 strcat(arcs_cmdline, " ");
149 strcat(arcs_cmdline, argv[i]);
153 void __init prom_init(void)
155 #ifdef CONFIG_CPU_TX39XX
156 txx9_board_vec = &jmr3927_vec;
158 #ifdef CONFIG_CPU_TX49XX
159 switch (TX4938_REV_PCODE()) {
160 #ifdef CONFIG_TOSHIBA_RBTX4927
162 txx9_board_vec = &rbtx4927_vec;
165 txx9_board_vec = &rbtx4937_vec;
168 #ifdef CONFIG_TOSHIBA_RBTX4938
170 txx9_board_vec = &rbtx4938_vec;
176 strcpy(txx9_system_type, txx9_board_vec->system);
178 txx9_board_vec->prom_init();
181 void __init prom_free_prom_memory(void)
185 const char *get_system_type(void)
187 return txx9_system_type;
190 char * __init prom_getcmdline(void)
192 return &(arcs_cmdline[0]);
195 static void __noreturn txx9_machine_halt(void)
198 clear_c0_status(ST0_IM);
202 if (cpu_has_counter) {
204 * Clear counter interrupt while it
205 * breaks WAIT instruction even if
214 /* Watchdog support */
215 void __init txx9_wdt_init(unsigned long base)
217 struct resource res = {
219 .end = base + 0x100 - 1,
220 .flags = IORESOURCE_MEM,
222 platform_device_register_simple("txx9wdt", -1, &res, 1);
226 void __init txx9_spi_init(int busid, unsigned long base, int irq)
228 struct resource res[] = {
231 .end = base + 0x20 - 1,
232 .flags = IORESOURCE_MEM,
235 .flags = IORESOURCE_IRQ,
238 platform_device_register_simple("spi_txx9", busid,
239 res, ARRAY_SIZE(res));
242 void __init txx9_ethaddr_init(unsigned int id, unsigned char *ethaddr)
244 struct platform_device *pdev =
245 platform_device_alloc("tc35815-mac", id);
247 platform_device_add_data(pdev, ethaddr, 6) ||
248 platform_device_add(pdev))
249 platform_device_put(pdev);
252 void __init txx9_sio_init(unsigned long baseaddr, int irq,
253 unsigned int line, unsigned int sclk, int nocts)
255 #ifdef CONFIG_SERIAL_TXX9
256 struct uart_port req;
258 memset(&req, 0, sizeof(req));
260 req.iotype = UPIO_MEM;
261 req.membase = ioremap(baseaddr, 0x24);
262 req.mapbase = baseaddr;
265 req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/;
267 req.flags |= UPF_MAGIC_MULTIPLIER /*USE_SCLK*/;
270 req.uartclk = TXX9_IMCLK;
271 early_serial_txx9_setup(&req);
272 #endif /* CONFIG_SERIAL_TXX9 */
275 #ifdef CONFIG_EARLY_PRINTK
276 static void __init null_prom_putchar(char c)
279 void (*txx9_prom_putchar)(char c) __initdata = null_prom_putchar;
281 void __init prom_putchar(char c)
283 txx9_prom_putchar(c);
286 static void __iomem *early_txx9_sio_port;
288 static void __init early_txx9_sio_putchar(char c)
290 #define TXX9_SICISR 0x0c
291 #define TXX9_SITFIFO 0x1c
292 #define TXX9_SICISR_TXALS 0x00000002
293 while (!(__raw_readl(early_txx9_sio_port + TXX9_SICISR) &
296 __raw_writel(c, early_txx9_sio_port + TXX9_SITFIFO);
299 void __init txx9_sio_putchar_init(unsigned long baseaddr)
301 early_txx9_sio_port = ioremap(baseaddr, 0x24);
302 txx9_prom_putchar = early_txx9_sio_putchar;
304 #endif /* CONFIG_EARLY_PRINTK */
307 void __init plat_mem_setup(void)
309 ioport_resource.start = 0;
310 ioport_resource.end = ~0UL; /* no limit */
311 iomem_resource.start = 0;
312 iomem_resource.end = ~0UL; /* no limit */
314 /* fallback restart/halt routines */
315 _machine_restart = (void (*)(char *))txx9_machine_halt;
316 _machine_halt = txx9_machine_halt;
317 pm_power_off = txx9_machine_halt;
320 pcibios_plat_setup = txx9_pcibios_setup;
322 txx9_board_vec->mem_setup();
325 void __init arch_init_irq(void)
327 txx9_board_vec->irq_setup();
330 void __init plat_time_init(void)
332 #ifdef CONFIG_CPU_TX49XX
333 mips_hpt_frequency = txx9_cpu_clock / 2;
335 txx9_board_vec->time_init();
338 static int __init _txx9_arch_init(void)
340 if (txx9_board_vec->arch_init)
341 txx9_board_vec->arch_init();
344 arch_initcall(_txx9_arch_init);
346 static int __init _txx9_device_init(void)
348 if (txx9_board_vec->device_init)
349 txx9_board_vec->device_init();
352 device_initcall(_txx9_device_init);
354 int (*txx9_irq_dispatch)(int pending);
355 asmlinkage void plat_irq_dispatch(void)
357 int pending = read_c0_status() & read_c0_cause() & ST0_IM;
358 int irq = txx9_irq_dispatch(pending);
360 if (likely(irq >= 0))
363 spurious_interrupt();
366 /* see include/asm-mips/mach-tx39xx/mangle-port.h, for example. */
367 #ifdef NEEDS_TXX9_SWIZZLE_ADDR_B
368 static unsigned long __swizzle_addr_none(unsigned long port)
372 unsigned long (*__swizzle_addr_b)(unsigned long port) = __swizzle_addr_none;
373 EXPORT_SYMBOL(__swizzle_addr_b);