194a4c329SAtsushi Nemoto /*
294a4c329SAtsushi Nemoto  * TX4927 setup routines
394a4c329SAtsushi Nemoto  * Based on linux/arch/mips/txx9/rbtx4938/setup.c,
494a4c329SAtsushi Nemoto  *	    and RBTX49xx patch from CELF patch archive.
594a4c329SAtsushi Nemoto  *
694a4c329SAtsushi Nemoto  * 2003-2005 (c) MontaVista Software, Inc.
794a4c329SAtsushi Nemoto  * (C) Copyright TOSHIBA CORPORATION 2000-2001, 2004-2007
894a4c329SAtsushi Nemoto  *
994a4c329SAtsushi Nemoto  * This file is subject to the terms and conditions of the GNU General Public
1094a4c329SAtsushi Nemoto  * License.  See the file "COPYING" in the main directory of this archive
1194a4c329SAtsushi Nemoto  * for more details.
1294a4c329SAtsushi Nemoto  */
1394a4c329SAtsushi Nemoto #include <linux/init.h>
1494a4c329SAtsushi Nemoto #include <linux/ioport.h>
1594a4c329SAtsushi Nemoto #include <linux/delay.h>
1694a4c329SAtsushi Nemoto #include <linux/param.h>
17ce8e7411SAtsushi Nemoto #include <linux/ptrace.h>
1851f607c7SAtsushi Nemoto #include <linux/mtd/physmap.h>
19496a3b5cSAtsushi Nemoto #include <asm/reboot.h>
20ce8e7411SAtsushi Nemoto #include <asm/traps.h>
2194a4c329SAtsushi Nemoto #include <asm/txx9irq.h>
2294a4c329SAtsushi Nemoto #include <asm/txx9tmr.h>
2394a4c329SAtsushi Nemoto #include <asm/txx9pio.h>
2494a4c329SAtsushi Nemoto #include <asm/txx9/generic.h>
2594a4c329SAtsushi Nemoto #include <asm/txx9/tx4927.h>
2694a4c329SAtsushi Nemoto 
2768314725SAtsushi Nemoto static void __init tx4927_wdr_init(void)
2894a4c329SAtsushi Nemoto {
29496a3b5cSAtsushi Nemoto 	/* report watchdog reset status */
30496a3b5cSAtsushi Nemoto 	if (____raw_readq(&tx4927_ccfgptr->ccfg) & TX4927_CCFG_WDRST)
31496a3b5cSAtsushi Nemoto 		pr_warning("Watchdog reset detected at 0x%lx\n",
32496a3b5cSAtsushi Nemoto 			   read_c0_errorepc());
3394a4c329SAtsushi Nemoto 	/* clear WatchDogReset (W1C) */
3494a4c329SAtsushi Nemoto 	tx4927_ccfg_set(TX4927_CCFG_WDRST);
3594a4c329SAtsushi Nemoto 	/* do reset on watchdog */
3694a4c329SAtsushi Nemoto 	tx4927_ccfg_set(TX4927_CCFG_WR);
3794a4c329SAtsushi Nemoto }
3894a4c329SAtsushi Nemoto 
3968314725SAtsushi Nemoto void __init tx4927_wdt_init(void)
4068314725SAtsushi Nemoto {
4168314725SAtsushi Nemoto 	txx9_wdt_init(TX4927_TMR_REG(2) & 0xfffffffffULL);
4268314725SAtsushi Nemoto }
4368314725SAtsushi Nemoto 
44496a3b5cSAtsushi Nemoto static void tx4927_machine_restart(char *command)
45496a3b5cSAtsushi Nemoto {
46496a3b5cSAtsushi Nemoto 	local_irq_disable();
47496a3b5cSAtsushi Nemoto 	pr_emerg("Rebooting (with %s watchdog reset)...\n",
48496a3b5cSAtsushi Nemoto 		 (____raw_readq(&tx4927_ccfgptr->ccfg) & TX4927_CCFG_WDREXEN) ?
49496a3b5cSAtsushi Nemoto 		 "external" : "internal");
50496a3b5cSAtsushi Nemoto 	/* clear watchdog status */
51496a3b5cSAtsushi Nemoto 	tx4927_ccfg_set(TX4927_CCFG_WDRST);	/* W1C */
52496a3b5cSAtsushi Nemoto 	txx9_wdt_now(TX4927_TMR_REG(2) & 0xfffffffffULL);
53496a3b5cSAtsushi Nemoto 	while (!(____raw_readq(&tx4927_ccfgptr->ccfg) & TX4927_CCFG_WDRST))
54496a3b5cSAtsushi Nemoto 		;
55496a3b5cSAtsushi Nemoto 	mdelay(10);
56496a3b5cSAtsushi Nemoto 	if (____raw_readq(&tx4927_ccfgptr->ccfg) & TX4927_CCFG_WDREXEN) {
57496a3b5cSAtsushi Nemoto 		pr_emerg("Rebooting (with internal watchdog reset)...\n");
58496a3b5cSAtsushi Nemoto 		/* External WDRST failed.  Do internal watchdog reset */
59496a3b5cSAtsushi Nemoto 		tx4927_ccfg_clear(TX4927_CCFG_WDREXEN);
60496a3b5cSAtsushi Nemoto 	}
61496a3b5cSAtsushi Nemoto 	/* fallback */
62496a3b5cSAtsushi Nemoto 	(*_machine_halt)();
63496a3b5cSAtsushi Nemoto }
64496a3b5cSAtsushi Nemoto 
65ce8e7411SAtsushi Nemoto void show_registers(struct pt_regs *regs);
66ce8e7411SAtsushi Nemoto static int tx4927_be_handler(struct pt_regs *regs, int is_fixup)
67ce8e7411SAtsushi Nemoto {
68ce8e7411SAtsushi Nemoto 	int data = regs->cp0_cause & 4;
69ce8e7411SAtsushi Nemoto 	console_verbose();
70ce8e7411SAtsushi Nemoto 	pr_err("%cBE exception at %#lx\n", data ? 'D' : 'I', regs->cp0_epc);
71ce8e7411SAtsushi Nemoto 	pr_err("ccfg:%llx, toea:%llx\n",
72ce8e7411SAtsushi Nemoto 	       (unsigned long long)____raw_readq(&tx4927_ccfgptr->ccfg),
73ce8e7411SAtsushi Nemoto 	       (unsigned long long)____raw_readq(&tx4927_ccfgptr->toea));
74ce8e7411SAtsushi Nemoto #ifdef CONFIG_PCI
75ce8e7411SAtsushi Nemoto 	tx4927_report_pcic_status();
76ce8e7411SAtsushi Nemoto #endif
77ce8e7411SAtsushi Nemoto 	show_registers(regs);
78ce8e7411SAtsushi Nemoto 	panic("BusError!");
79ce8e7411SAtsushi Nemoto }
80ce8e7411SAtsushi Nemoto static void __init tx4927_be_init(void)
81ce8e7411SAtsushi Nemoto {
82ce8e7411SAtsushi Nemoto 	board_be_handler = tx4927_be_handler;
83ce8e7411SAtsushi Nemoto }
84ce8e7411SAtsushi Nemoto 
8594a4c329SAtsushi Nemoto static struct resource tx4927_sdram_resource[4];
8694a4c329SAtsushi Nemoto 
8794a4c329SAtsushi Nemoto void __init tx4927_setup(void)
8894a4c329SAtsushi Nemoto {
8994a4c329SAtsushi Nemoto 	int i;
9094a4c329SAtsushi Nemoto 	__u32 divmode;
9194a4c329SAtsushi Nemoto 	int cpuclk = 0;
9294a4c329SAtsushi Nemoto 	u64 ccfg;
9394a4c329SAtsushi Nemoto 
9494a4c329SAtsushi Nemoto 	txx9_reg_res_init(TX4927_REV_PCODE(), TX4927_REG_BASE,
9594a4c329SAtsushi Nemoto 			  TX4927_REG_SIZE);
96d10e025fSAtsushi Nemoto 	set_c0_config(TX49_CONF_CWFON);
9794a4c329SAtsushi Nemoto 
9894a4c329SAtsushi Nemoto 	/* SDRAMC,EBUSC are configured by PROM */
9994a4c329SAtsushi Nemoto 	for (i = 0; i < 8; i++) {
10094a4c329SAtsushi Nemoto 		if (!(TX4927_EBUSC_CR(i) & 0x8))
10194a4c329SAtsushi Nemoto 			continue;	/* disabled */
10294a4c329SAtsushi Nemoto 		txx9_ce_res[i].start = (unsigned long)TX4927_EBUSC_BA(i);
10394a4c329SAtsushi Nemoto 		txx9_ce_res[i].end =
10494a4c329SAtsushi Nemoto 			txx9_ce_res[i].start + TX4927_EBUSC_SIZE(i) - 1;
10594a4c329SAtsushi Nemoto 		request_resource(&iomem_resource, &txx9_ce_res[i]);
10694a4c329SAtsushi Nemoto 	}
10794a4c329SAtsushi Nemoto 
10894a4c329SAtsushi Nemoto 	/* clocks */
10994a4c329SAtsushi Nemoto 	ccfg = ____raw_readq(&tx4927_ccfgptr->ccfg);
11094a4c329SAtsushi Nemoto 	if (txx9_master_clock) {
11194a4c329SAtsushi Nemoto 		/* calculate gbus_clock and cpu_clock from master_clock */
11294a4c329SAtsushi Nemoto 		divmode = (__u32)ccfg & TX4927_CCFG_DIVMODE_MASK;
11394a4c329SAtsushi Nemoto 		switch (divmode) {
11494a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_8:
11594a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_10:
11694a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_12:
11794a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_16:
11894a4c329SAtsushi Nemoto 			txx9_gbus_clock = txx9_master_clock * 4; break;
11994a4c329SAtsushi Nemoto 		default:
12094a4c329SAtsushi Nemoto 			txx9_gbus_clock = txx9_master_clock;
12194a4c329SAtsushi Nemoto 		}
12294a4c329SAtsushi Nemoto 		switch (divmode) {
12394a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_2:
12494a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_8:
12594a4c329SAtsushi Nemoto 			cpuclk = txx9_gbus_clock * 2; break;
12694a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_2_5:
12794a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_10:
12894a4c329SAtsushi Nemoto 			cpuclk = txx9_gbus_clock * 5 / 2; break;
12994a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_3:
13094a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_12:
13194a4c329SAtsushi Nemoto 			cpuclk = txx9_gbus_clock * 3; break;
13294a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_4:
13394a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_16:
13494a4c329SAtsushi Nemoto 			cpuclk = txx9_gbus_clock * 4; break;
13594a4c329SAtsushi Nemoto 		}
13694a4c329SAtsushi Nemoto 		txx9_cpu_clock = cpuclk;
13794a4c329SAtsushi Nemoto 	} else {
13894a4c329SAtsushi Nemoto 		if (txx9_cpu_clock == 0)
13994a4c329SAtsushi Nemoto 			txx9_cpu_clock = 200000000;	/* 200MHz */
14094a4c329SAtsushi Nemoto 		/* calculate gbus_clock and master_clock from cpu_clock */
14194a4c329SAtsushi Nemoto 		cpuclk = txx9_cpu_clock;
14294a4c329SAtsushi Nemoto 		divmode = (__u32)ccfg & TX4927_CCFG_DIVMODE_MASK;
14394a4c329SAtsushi Nemoto 		switch (divmode) {
14494a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_2:
14594a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_8:
14694a4c329SAtsushi Nemoto 			txx9_gbus_clock = cpuclk / 2; break;
14794a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_2_5:
14894a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_10:
14994a4c329SAtsushi Nemoto 			txx9_gbus_clock = cpuclk * 2 / 5; break;
15094a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_3:
15194a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_12:
15294a4c329SAtsushi Nemoto 			txx9_gbus_clock = cpuclk / 3; break;
15394a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_4:
15494a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_16:
15594a4c329SAtsushi Nemoto 			txx9_gbus_clock = cpuclk / 4; break;
15694a4c329SAtsushi Nemoto 		}
15794a4c329SAtsushi Nemoto 		switch (divmode) {
15894a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_8:
15994a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_10:
16094a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_12:
16194a4c329SAtsushi Nemoto 		case TX4927_CCFG_DIVMODE_16:
16294a4c329SAtsushi Nemoto 			txx9_master_clock = txx9_gbus_clock / 4; break;
16394a4c329SAtsushi Nemoto 		default:
16494a4c329SAtsushi Nemoto 			txx9_master_clock = txx9_gbus_clock;
16594a4c329SAtsushi Nemoto 		}
16694a4c329SAtsushi Nemoto 	}
16794a4c329SAtsushi Nemoto 	/* change default value to udelay/mdelay take reasonable time */
16894a4c329SAtsushi Nemoto 	loops_per_jiffy = txx9_cpu_clock / HZ / 2;
16994a4c329SAtsushi Nemoto 
17094a4c329SAtsushi Nemoto 	/* CCFG */
17194a4c329SAtsushi Nemoto 	tx4927_wdr_init();
17294a4c329SAtsushi Nemoto 	/* clear BusErrorOnWrite flag (W1C) */
17394a4c329SAtsushi Nemoto 	tx4927_ccfg_set(TX4927_CCFG_BEOW);
17494a4c329SAtsushi Nemoto 	/* enable Timeout BusError */
17594a4c329SAtsushi Nemoto 	if (txx9_ccfg_toeon)
17694a4c329SAtsushi Nemoto 		tx4927_ccfg_set(TX4927_CCFG_TOE);
17794a4c329SAtsushi Nemoto 
17894a4c329SAtsushi Nemoto 	/* DMA selection */
17994a4c329SAtsushi Nemoto 	txx9_clear64(&tx4927_ccfgptr->pcfg, TX4927_PCFG_DMASEL_ALL);
18094a4c329SAtsushi Nemoto 
18194a4c329SAtsushi Nemoto 	/* Use external clock for external arbiter */
18294a4c329SAtsushi Nemoto 	if (!(____raw_readq(&tx4927_ccfgptr->ccfg) & TX4927_CCFG_PCIARB))
18394a4c329SAtsushi Nemoto 		txx9_clear64(&tx4927_ccfgptr->pcfg, TX4927_PCFG_PCICLKEN_ALL);
18494a4c329SAtsushi Nemoto 
18594a4c329SAtsushi Nemoto 	printk(KERN_INFO "%s -- %dMHz(M%dMHz) CRIR:%08x CCFG:%llx PCFG:%llx\n",
18694a4c329SAtsushi Nemoto 	       txx9_pcode_str,
18794a4c329SAtsushi Nemoto 	       (cpuclk + 500000) / 1000000,
18894a4c329SAtsushi Nemoto 	       (txx9_master_clock + 500000) / 1000000,
18994a4c329SAtsushi Nemoto 	       (__u32)____raw_readq(&tx4927_ccfgptr->crir),
19094a4c329SAtsushi Nemoto 	       (unsigned long long)____raw_readq(&tx4927_ccfgptr->ccfg),
19194a4c329SAtsushi Nemoto 	       (unsigned long long)____raw_readq(&tx4927_ccfgptr->pcfg));
19294a4c329SAtsushi Nemoto 
19394a4c329SAtsushi Nemoto 	printk(KERN_INFO "%s SDRAMC --", txx9_pcode_str);
19494a4c329SAtsushi Nemoto 	for (i = 0; i < 4; i++) {
19594a4c329SAtsushi Nemoto 		__u64 cr = TX4927_SDRAMC_CR(i);
19694a4c329SAtsushi Nemoto 		unsigned long base, size;
19794a4c329SAtsushi Nemoto 		if (!((__u32)cr & 0x00000400))
19894a4c329SAtsushi Nemoto 			continue;	/* disabled */
19994a4c329SAtsushi Nemoto 		base = (unsigned long)(cr >> 49) << 21;
20094a4c329SAtsushi Nemoto 		size = (((unsigned long)(cr >> 33) & 0x7fff) + 1) << 21;
20194a4c329SAtsushi Nemoto 		printk(" CR%d:%016llx", i, (unsigned long long)cr);
20294a4c329SAtsushi Nemoto 		tx4927_sdram_resource[i].name = "SDRAM";
20394a4c329SAtsushi Nemoto 		tx4927_sdram_resource[i].start = base;
20494a4c329SAtsushi Nemoto 		tx4927_sdram_resource[i].end = base + size - 1;
20594a4c329SAtsushi Nemoto 		tx4927_sdram_resource[i].flags = IORESOURCE_MEM;
20694a4c329SAtsushi Nemoto 		request_resource(&iomem_resource, &tx4927_sdram_resource[i]);
20794a4c329SAtsushi Nemoto 	}
20894a4c329SAtsushi Nemoto 	printk(" TR:%09llx\n",
20994a4c329SAtsushi Nemoto 	       (unsigned long long)____raw_readq(&tx4927_sdramcptr->tr));
21094a4c329SAtsushi Nemoto 
21194a4c329SAtsushi Nemoto 	/* TMR */
21294a4c329SAtsushi Nemoto 	/* disable all timers */
21394a4c329SAtsushi Nemoto 	for (i = 0; i < TX4927_NR_TMR; i++)
21494a4c329SAtsushi Nemoto 		txx9_tmr_init(TX4927_TMR_REG(i) & 0xfffffffffULL);
21594a4c329SAtsushi Nemoto 
21694a4c329SAtsushi Nemoto 	/* PIO */
21794a4c329SAtsushi Nemoto 	txx9_gpio_init(TX4927_PIO_REG & 0xfffffffffULL, 0, TX4927_NUM_PIO);
21894a4c329SAtsushi Nemoto 	__raw_writel(0, &tx4927_pioptr->maskcpu);
21994a4c329SAtsushi Nemoto 	__raw_writel(0, &tx4927_pioptr->maskext);
220496a3b5cSAtsushi Nemoto 
221496a3b5cSAtsushi Nemoto 	_machine_restart = tx4927_machine_restart;
222ce8e7411SAtsushi Nemoto 	board_be_init = tx4927_be_init;
22394a4c329SAtsushi Nemoto }
22494a4c329SAtsushi Nemoto 
22594a4c329SAtsushi Nemoto void __init tx4927_time_init(unsigned int tmrnr)
22694a4c329SAtsushi Nemoto {
22794a4c329SAtsushi Nemoto 	if (____raw_readq(&tx4927_ccfgptr->ccfg) & TX4927_CCFG_TINTDIS)
22894a4c329SAtsushi Nemoto 		txx9_clockevent_init(TX4927_TMR_REG(tmrnr) & 0xfffffffffULL,
22994a4c329SAtsushi Nemoto 				     TXX9_IRQ_BASE + TX4927_IR_TMR(tmrnr),
23094a4c329SAtsushi Nemoto 				     TXX9_IMCLK);
23194a4c329SAtsushi Nemoto }
23294a4c329SAtsushi Nemoto 
2337779a5e0SAtsushi Nemoto void __init tx4927_sio_init(unsigned int sclk, unsigned int cts_mask)
23494a4c329SAtsushi Nemoto {
23594a4c329SAtsushi Nemoto 	int i;
23694a4c329SAtsushi Nemoto 
2377779a5e0SAtsushi Nemoto 	for (i = 0; i < 2; i++)
2387779a5e0SAtsushi Nemoto 		txx9_sio_init(TX4927_SIO_REG(i) & 0xfffffffffULL,
2397779a5e0SAtsushi Nemoto 			      TXX9_IRQ_BASE + TX4927_IR_SIO(i),
2407779a5e0SAtsushi Nemoto 			      i, sclk, (1 << i) & cts_mask);
24194a4c329SAtsushi Nemoto }
24251f607c7SAtsushi Nemoto 
24351f607c7SAtsushi Nemoto void __init tx4927_mtd_init(int ch)
24451f607c7SAtsushi Nemoto {
24551f607c7SAtsushi Nemoto 	struct physmap_flash_data pdata = {
24651f607c7SAtsushi Nemoto 		.width = TX4927_EBUSC_WIDTH(ch) / 8,
24751f607c7SAtsushi Nemoto 	};
24851f607c7SAtsushi Nemoto 	unsigned long start = txx9_ce_res[ch].start;
24951f607c7SAtsushi Nemoto 	unsigned long size = txx9_ce_res[ch].end - start + 1;
25051f607c7SAtsushi Nemoto 
25151f607c7SAtsushi Nemoto 	if (!(TX4927_EBUSC_CR(ch) & 0x8))
25251f607c7SAtsushi Nemoto 		return;	/* disabled */
25351f607c7SAtsushi Nemoto 	txx9_physmap_flash_init(ch, start, size, &pdata);
25451f607c7SAtsushi Nemoto }
255