diff options
Diffstat (limited to 'arch/mips/txx9/jmr3927')
-rw-r--r-- | arch/mips/txx9/jmr3927/Makefile | 8 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/irq.c | 171 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/kgdb_io.c | 105 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/prom.c | 76 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/setup.c | 375 |
5 files changed, 735 insertions, 0 deletions
diff --git a/arch/mips/txx9/jmr3927/Makefile b/arch/mips/txx9/jmr3927/Makefile new file mode 100644 index 000000000000..ba292c945669 --- /dev/null +++ b/arch/mips/txx9/jmr3927/Makefile | |||
@@ -0,0 +1,8 @@ | |||
1 | # | ||
2 | # Makefile for TOSHIBA JMR-TX3927 board | ||
3 | # | ||
4 | |||
5 | obj-y += prom.o irq.o setup.o | ||
6 | obj-$(CONFIG_KGDB) += kgdb_io.o | ||
7 | |||
8 | EXTRA_CFLAGS += -Werror | ||
diff --git a/arch/mips/txx9/jmr3927/irq.c b/arch/mips/txx9/jmr3927/irq.c new file mode 100644 index 000000000000..070c9a115e57 --- /dev/null +++ b/arch/mips/txx9/jmr3927/irq.c | |||
@@ -0,0 +1,171 @@ | |||
1 | /* | ||
2 | * Copyright 2001 MontaVista Software Inc. | ||
3 | * Author: MontaVista Software, Inc. | ||
4 | * ahennessy@mvista.com | ||
5 | * | ||
6 | * This file is subject to the terms and conditions of the GNU General Public | ||
7 | * License. See the file "COPYING" in the main directory of this archive | ||
8 | * for more details. | ||
9 | * | ||
10 | * Copyright (C) 2000-2001 Toshiba Corporation | ||
11 | * | ||
12 | * This program is free software; you can redistribute it and/or modify it | ||
13 | * under the terms of the GNU General Public License as published by the | ||
14 | * Free Software Foundation; either version 2 of the License, or (at your | ||
15 | * option) any later version. | ||
16 | * | ||
17 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
18 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
19 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
20 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
21 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
22 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
23 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
24 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
25 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
26 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
27 | * | ||
28 | * You should have received a copy of the GNU General Public License along | ||
29 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
30 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
31 | */ | ||
32 | #include <linux/init.h> | ||
33 | #include <linux/sched.h> | ||
34 | #include <linux/types.h> | ||
35 | #include <linux/interrupt.h> | ||
36 | |||
37 | #include <asm/io.h> | ||
38 | #include <asm/mipsregs.h> | ||
39 | #include <asm/system.h> | ||
40 | |||
41 | #include <asm/processor.h> | ||
42 | #include <asm/txx9/generic.h> | ||
43 | #include <asm/txx9/jmr3927.h> | ||
44 | |||
45 | #if JMR3927_IRQ_END > NR_IRQS | ||
46 | #error JMR3927_IRQ_END > NR_IRQS | ||
47 | #endif | ||
48 | |||
49 | static unsigned char irc_level[TX3927_NUM_IR] = { | ||
50 | 5, 5, 5, 5, 5, 5, /* INT[5:0] */ | ||
51 | 7, 7, /* SIO */ | ||
52 | 5, 5, 5, 0, 0, /* DMA, PIO, PCI */ | ||
53 | 6, 6, 6 /* TMR */ | ||
54 | }; | ||
55 | |||
56 | /* | ||
57 | * CP0_STATUS is a thread's resource (saved/restored on context switch). | ||
58 | * So disable_irq/enable_irq MUST handle IOC/IRC registers. | ||
59 | */ | ||
60 | static void mask_irq_ioc(unsigned int irq) | ||
61 | { | ||
62 | /* 0: mask */ | ||
63 | unsigned int irq_nr = irq - JMR3927_IRQ_IOC; | ||
64 | unsigned char imask = jmr3927_ioc_reg_in(JMR3927_IOC_INTM_ADDR); | ||
65 | unsigned int bit = 1 << irq_nr; | ||
66 | jmr3927_ioc_reg_out(imask & ~bit, JMR3927_IOC_INTM_ADDR); | ||
67 | /* flush write buffer */ | ||
68 | (void)jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR); | ||
69 | } | ||
70 | static void unmask_irq_ioc(unsigned int irq) | ||
71 | { | ||
72 | /* 0: mask */ | ||
73 | unsigned int irq_nr = irq - JMR3927_IRQ_IOC; | ||
74 | unsigned char imask = jmr3927_ioc_reg_in(JMR3927_IOC_INTM_ADDR); | ||
75 | unsigned int bit = 1 << irq_nr; | ||
76 | jmr3927_ioc_reg_out(imask | bit, JMR3927_IOC_INTM_ADDR); | ||
77 | /* flush write buffer */ | ||
78 | (void)jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR); | ||
79 | } | ||
80 | |||
81 | static int jmr3927_ioc_irqroute(void) | ||
82 | { | ||
83 | unsigned char istat = jmr3927_ioc_reg_in(JMR3927_IOC_INTS2_ADDR); | ||
84 | int i; | ||
85 | |||
86 | for (i = 0; i < JMR3927_NR_IRQ_IOC; i++) { | ||
87 | if (istat & (1 << i)) | ||
88 | return JMR3927_IRQ_IOC + i; | ||
89 | } | ||
90 | return -1; | ||
91 | } | ||
92 | |||
93 | static int jmr3927_irq_dispatch(int pending) | ||
94 | { | ||
95 | int irq; | ||
96 | |||
97 | if ((pending & CAUSEF_IP7) == 0) | ||
98 | return -1; | ||
99 | irq = (pending >> CAUSEB_IP2) & 0x0f; | ||
100 | irq += JMR3927_IRQ_IRC; | ||
101 | if (irq == JMR3927_IRQ_IOCINT) | ||
102 | irq = jmr3927_ioc_irqroute(); | ||
103 | return irq; | ||
104 | } | ||
105 | |||
106 | #ifdef CONFIG_PCI | ||
107 | static irqreturn_t jmr3927_pcierr_interrupt(int irq, void *dev_id) | ||
108 | { | ||
109 | printk(KERN_WARNING "PCI error interrupt (irq 0x%x).\n", irq); | ||
110 | printk(KERN_WARNING "pcistat:%02x, lbstat:%04lx\n", | ||
111 | tx3927_pcicptr->pcistat, tx3927_pcicptr->lbstat); | ||
112 | |||
113 | return IRQ_HANDLED; | ||
114 | } | ||
115 | static struct irqaction pcierr_action = { | ||
116 | .handler = jmr3927_pcierr_interrupt, | ||
117 | .mask = CPU_MASK_NONE, | ||
118 | .name = "PCI error", | ||
119 | }; | ||
120 | #endif | ||
121 | |||
122 | static void __init jmr3927_irq_init(void); | ||
123 | |||
124 | void __init jmr3927_irq_setup(void) | ||
125 | { | ||
126 | txx9_irq_dispatch = jmr3927_irq_dispatch; | ||
127 | /* Now, interrupt control disabled, */ | ||
128 | /* all IRC interrupts are masked, */ | ||
129 | /* all IRC interrupt mode are Low Active. */ | ||
130 | |||
131 | /* mask all IOC interrupts */ | ||
132 | jmr3927_ioc_reg_out(0, JMR3927_IOC_INTM_ADDR); | ||
133 | /* setup IOC interrupt mode (SOFT:High Active, Others:Low Active) */ | ||
134 | jmr3927_ioc_reg_out(JMR3927_IOC_INTF_SOFT, JMR3927_IOC_INTP_ADDR); | ||
135 | |||
136 | /* clear PCI Soft interrupts */ | ||
137 | jmr3927_ioc_reg_out(0, JMR3927_IOC_INTS1_ADDR); | ||
138 | /* clear PCI Reset interrupts */ | ||
139 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); | ||
140 | |||
141 | jmr3927_irq_init(); | ||
142 | |||
143 | /* setup IOC interrupt 1 (PCI, MODEM) */ | ||
144 | set_irq_chained_handler(JMR3927_IRQ_IOCINT, handle_simple_irq); | ||
145 | |||
146 | #ifdef CONFIG_PCI | ||
147 | setup_irq(JMR3927_IRQ_IRC_PCI, &pcierr_action); | ||
148 | #endif | ||
149 | |||
150 | /* enable all CPU interrupt bits. */ | ||
151 | set_c0_status(ST0_IM); /* IE bit is still 0. */ | ||
152 | } | ||
153 | |||
154 | static struct irq_chip jmr3927_irq_ioc = { | ||
155 | .name = "jmr3927_ioc", | ||
156 | .ack = mask_irq_ioc, | ||
157 | .mask = mask_irq_ioc, | ||
158 | .mask_ack = mask_irq_ioc, | ||
159 | .unmask = unmask_irq_ioc, | ||
160 | }; | ||
161 | |||
162 | static void __init jmr3927_irq_init(void) | ||
163 | { | ||
164 | u32 i; | ||
165 | |||
166 | txx9_irq_init(TX3927_IRC_REG); | ||
167 | for (i = 0; i < TXx9_MAX_IR; i++) | ||
168 | txx9_irq_set_pri(i, irc_level[i]); | ||
169 | for (i = JMR3927_IRQ_IOC; i < JMR3927_IRQ_IOC + JMR3927_NR_IRQ_IOC; i++) | ||
170 | set_irq_chip_and_handler(i, &jmr3927_irq_ioc, handle_level_irq); | ||
171 | } | ||
diff --git a/arch/mips/txx9/jmr3927/kgdb_io.c b/arch/mips/txx9/jmr3927/kgdb_io.c new file mode 100644 index 000000000000..5bd757e56f79 --- /dev/null +++ b/arch/mips/txx9/jmr3927/kgdb_io.c | |||
@@ -0,0 +1,105 @@ | |||
1 | /* | ||
2 | * BRIEF MODULE DESCRIPTION | ||
3 | * Low level uart routines to directly access a TX[34]927 SIO. | ||
4 | * | ||
5 | * Copyright 2001 MontaVista Software Inc. | ||
6 | * Author: MontaVista Software, Inc. | ||
7 | * ahennessy@mvista.com or source@mvista.com | ||
8 | * | ||
9 | * Based on arch/mips/ddb5xxx/ddb5477/kgdb_io.c | ||
10 | * | ||
11 | * Copyright (C) 2000-2001 Toshiba Corporation | ||
12 | * | ||
13 | * This program is free software; you can redistribute it and/or modify it | ||
14 | * under the terms of the GNU General Public License as published by the | ||
15 | * Free Software Foundation; either version 2 of the License, or (at your | ||
16 | * option) any later version. | ||
17 | * | ||
18 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
19 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
20 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
21 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
22 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
23 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
24 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
25 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
26 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
27 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
28 | * | ||
29 | * You should have received a copy of the GNU General Public License along | ||
30 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
31 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
32 | */ | ||
33 | |||
34 | #include <asm/txx9/jmr3927.h> | ||
35 | |||
36 | #define TIMEOUT 0xffffff | ||
37 | |||
38 | static int remoteDebugInitialized = 0; | ||
39 | static void debugInit(int baud); | ||
40 | |||
41 | int putDebugChar(unsigned char c) | ||
42 | { | ||
43 | int i = 0; | ||
44 | |||
45 | if (!remoteDebugInitialized) { | ||
46 | remoteDebugInitialized = 1; | ||
47 | debugInit(38400); | ||
48 | } | ||
49 | |||
50 | do { | ||
51 | slow_down(); | ||
52 | i++; | ||
53 | if (i>TIMEOUT) { | ||
54 | break; | ||
55 | } | ||
56 | } while (!(tx3927_sioptr(0)->cisr & TXx927_SICISR_TXALS)); | ||
57 | tx3927_sioptr(0)->tfifo = c; | ||
58 | |||
59 | return 1; | ||
60 | } | ||
61 | |||
62 | unsigned char getDebugChar(void) | ||
63 | { | ||
64 | int i = 0; | ||
65 | int dicr; | ||
66 | char c; | ||
67 | |||
68 | if (!remoteDebugInitialized) { | ||
69 | remoteDebugInitialized = 1; | ||
70 | debugInit(38400); | ||
71 | } | ||
72 | |||
73 | /* diable RX int. */ | ||
74 | dicr = tx3927_sioptr(0)->dicr; | ||
75 | tx3927_sioptr(0)->dicr = 0; | ||
76 | |||
77 | do { | ||
78 | slow_down(); | ||
79 | i++; | ||
80 | if (i>TIMEOUT) { | ||
81 | break; | ||
82 | } | ||
83 | } while (tx3927_sioptr(0)->disr & TXx927_SIDISR_UVALID) | ||
84 | ; | ||
85 | c = tx3927_sioptr(0)->rfifo; | ||
86 | |||
87 | /* clear RX int. status */ | ||
88 | tx3927_sioptr(0)->disr &= ~TXx927_SIDISR_RDIS; | ||
89 | /* enable RX int. */ | ||
90 | tx3927_sioptr(0)->dicr = dicr; | ||
91 | |||
92 | return c; | ||
93 | } | ||
94 | |||
95 | static void debugInit(int baud) | ||
96 | { | ||
97 | tx3927_sioptr(0)->lcr = 0x020; | ||
98 | tx3927_sioptr(0)->dicr = 0; | ||
99 | tx3927_sioptr(0)->disr = 0x4100; | ||
100 | tx3927_sioptr(0)->cisr = 0x014; | ||
101 | tx3927_sioptr(0)->fcr = 0; | ||
102 | tx3927_sioptr(0)->flcr = 0x02; | ||
103 | tx3927_sioptr(0)->bgr = ((JMR3927_BASE_BAUD + baud / 2) / baud) | | ||
104 | TXx927_SIBGR_BCLK_T0; | ||
105 | } | ||
diff --git a/arch/mips/txx9/jmr3927/prom.c b/arch/mips/txx9/jmr3927/prom.c new file mode 100644 index 000000000000..2cadb423face --- /dev/null +++ b/arch/mips/txx9/jmr3927/prom.c | |||
@@ -0,0 +1,76 @@ | |||
1 | /* | ||
2 | * BRIEF MODULE DESCRIPTION | ||
3 | * PROM library initialisation code, assuming a version of | ||
4 | * pmon is the boot code. | ||
5 | * | ||
6 | * Copyright 2001 MontaVista Software Inc. | ||
7 | * Author: MontaVista Software, Inc. | ||
8 | * ahennessy@mvista.com | ||
9 | * | ||
10 | * Based on arch/mips/au1000/common/prom.c | ||
11 | * | ||
12 | * This file was derived from Carsten Langgaard's | ||
13 | * arch/mips/mips-boards/xx files. | ||
14 | * | ||
15 | * Carsten Langgaard, carstenl@mips.com | ||
16 | * Copyright (C) 1999,2000 MIPS Technologies, Inc. All rights reserved. | ||
17 | * | ||
18 | * This program is free software; you can redistribute it and/or modify it | ||
19 | * under the terms of the GNU General Public License as published by the | ||
20 | * Free Software Foundation; either version 2 of the License, or (at your | ||
21 | * option) any later version. | ||
22 | * | ||
23 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
24 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
25 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
26 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
27 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
28 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
29 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
30 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
31 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
32 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
33 | * | ||
34 | * You should have received a copy of the GNU General Public License along | ||
35 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
36 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
37 | */ | ||
38 | #include <linux/init.h> | ||
39 | #include <asm/bootinfo.h> | ||
40 | #include <asm/txx9/generic.h> | ||
41 | #include <asm/txx9/jmr3927.h> | ||
42 | |||
43 | #define TIMEOUT 0xffffff | ||
44 | |||
45 | void | ||
46 | prom_putchar(char c) | ||
47 | { | ||
48 | int i = 0; | ||
49 | |||
50 | do { | ||
51 | i++; | ||
52 | if (i>TIMEOUT) | ||
53 | break; | ||
54 | } while (!(tx3927_sioptr(1)->cisr & TXx927_SICISR_TXALS)); | ||
55 | tx3927_sioptr(1)->tfifo = c; | ||
56 | return; | ||
57 | } | ||
58 | |||
59 | void | ||
60 | puts(const char *cp) | ||
61 | { | ||
62 | while (*cp) | ||
63 | prom_putchar(*cp++); | ||
64 | prom_putchar('\r'); | ||
65 | prom_putchar('\n'); | ||
66 | } | ||
67 | |||
68 | void __init jmr3927_prom_init(void) | ||
69 | { | ||
70 | /* CCFG */ | ||
71 | if ((tx3927_ccfgptr->ccfg & TX3927_CCFG_TLBOFF) == 0) | ||
72 | puts("Warning: TX3927 TLB off\n"); | ||
73 | |||
74 | prom_init_cmdline(); | ||
75 | add_memory_region(0, JMR3927_SDRAM_SIZE, BOOT_MEM_RAM); | ||
76 | } | ||
diff --git a/arch/mips/txx9/jmr3927/setup.c b/arch/mips/txx9/jmr3927/setup.c new file mode 100644 index 000000000000..5e35ef73c5a5 --- /dev/null +++ b/arch/mips/txx9/jmr3927/setup.c | |||
@@ -0,0 +1,375 @@ | |||
1 | /* | ||
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 | * | ||
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) | ||
28 | */ | ||
29 | |||
30 | #include <linux/init.h> | ||
31 | #include <linux/kernel.h> | ||
32 | #include <linux/types.h> | ||
33 | #include <linux/ioport.h> | ||
34 | #include <linux/delay.h> | ||
35 | #include <linux/pm.h> | ||
36 | #include <linux/platform_device.h> | ||
37 | #include <linux/gpio.h> | ||
38 | #ifdef CONFIG_SERIAL_TXX9 | ||
39 | #include <linux/serial_core.h> | ||
40 | #endif | ||
41 | #include <asm/txx9tmr.h> | ||
42 | #include <asm/txx9pio.h> | ||
43 | #include <asm/reboot.h> | ||
44 | #include <asm/txx9/generic.h> | ||
45 | #include <asm/txx9/pci.h> | ||
46 | #include <asm/txx9/jmr3927.h> | ||
47 | #include <asm/mipsregs.h> | ||
48 | |||
49 | extern void puts(const char *cp); | ||
50 | |||
51 | /* don't enable - see errata */ | ||
52 | static int jmr3927_ccfg_toeon; | ||
53 | |||
54 | static inline void do_reset(void) | ||
55 | { | ||
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 | |||
85 | static void __init jmr3927_time_init(void) | ||
86 | { | ||
87 | txx9_clockevent_init(TX3927_TMR_REG(0), | ||
88 | TXX9_IRQ_BASE + JMR3927_IRQ_IRC_TMR(0), | ||
89 | JMR3927_IMCLK); | ||
90 | txx9_clocksource_init(TX3927_TMR_REG(1), JMR3927_IMCLK); | ||
91 | } | ||
92 | |||
93 | #define DO_WRITE_THROUGH | ||
94 | #define DO_ENABLE_CACHE | ||
95 | |||
96 | static void jmr3927_board_init(void); | ||
97 | |||
98 | static void __init jmr3927_mem_setup(void) | ||
99 | { | ||
100 | char *argptr; | ||
101 | |||
102 | set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO); | ||
103 | |||
104 | _machine_restart = jmr3927_machine_restart; | ||
105 | _machine_halt = jmr3927_machine_halt; | ||
106 | pm_power_off = jmr3927_machine_power_off; | ||
107 | |||
108 | /* | ||
109 | * IO/MEM resources. | ||
110 | */ | ||
111 | ioport_resource.start = 0; | ||
112 | ioport_resource.end = 0xffffffff; | ||
113 | iomem_resource.start = 0; | ||
114 | iomem_resource.end = 0xffffffff; | ||
115 | |||
116 | /* Reboot on panic */ | ||
117 | panic_timeout = 180; | ||
118 | |||
119 | /* cache setup */ | ||
120 | { | ||
121 | unsigned int conf; | ||
122 | #ifdef DO_ENABLE_CACHE | ||
123 | int mips_ic_disable = 0, mips_dc_disable = 0; | ||
124 | #else | ||
125 | int mips_ic_disable = 1, mips_dc_disable = 1; | ||
126 | #endif | ||
127 | #ifdef DO_WRITE_THROUGH | ||
128 | int mips_config_cwfon = 0; | ||
129 | int mips_config_wbon = 0; | ||
130 | #else | ||
131 | int mips_config_cwfon = 1; | ||
132 | int mips_config_wbon = 1; | ||
133 | #endif | ||
134 | |||
135 | conf = read_c0_conf(); | ||
136 | conf &= ~(TX39_CONF_ICE | TX39_CONF_DCE | TX39_CONF_WBON | TX39_CONF_CWFON); | ||
137 | conf |= mips_ic_disable ? 0 : TX39_CONF_ICE; | ||
138 | conf |= mips_dc_disable ? 0 : TX39_CONF_DCE; | ||
139 | conf |= mips_config_wbon ? TX39_CONF_WBON : 0; | ||
140 | conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0; | ||
141 | |||
142 | write_c0_conf(conf); | ||
143 | write_c0_cache(0); | ||
144 | } | ||
145 | |||
146 | /* initialize board */ | ||
147 | jmr3927_board_init(); | ||
148 | |||
149 | argptr = prom_getcmdline(); | ||
150 | |||
151 | if ((argptr = strstr(argptr, "toeon")) != NULL) | ||
152 | jmr3927_ccfg_toeon = 1; | ||
153 | argptr = prom_getcmdline(); | ||
154 | if ((argptr = strstr(argptr, "ip=")) == NULL) { | ||
155 | argptr = prom_getcmdline(); | ||
156 | strcat(argptr, " ip=bootp"); | ||
157 | } | ||
158 | |||
159 | #ifdef CONFIG_SERIAL_TXX9 | ||
160 | { | ||
161 | extern int early_serial_txx9_setup(struct uart_port *port); | ||
162 | int i; | ||
163 | struct uart_port req; | ||
164 | for(i = 0; i < 2; i++) { | ||
165 | memset(&req, 0, sizeof(req)); | ||
166 | req.line = i; | ||
167 | req.iotype = UPIO_MEM; | ||
168 | req.membase = (unsigned char __iomem *)TX3927_SIO_REG(i); | ||
169 | req.mapbase = TX3927_SIO_REG(i); | ||
170 | req.irq = i == 0 ? | ||
171 | JMR3927_IRQ_IRC_SIO0 : JMR3927_IRQ_IRC_SIO1; | ||
172 | if (i == 0) | ||
173 | req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/; | ||
174 | req.uartclk = JMR3927_IMCLK; | ||
175 | early_serial_txx9_setup(&req); | ||
176 | } | ||
177 | } | ||
178 | #ifdef CONFIG_SERIAL_TXX9_CONSOLE | ||
179 | argptr = prom_getcmdline(); | ||
180 | if ((argptr = strstr(argptr, "console=")) == NULL) { | ||
181 | argptr = prom_getcmdline(); | ||
182 | strcat(argptr, " console=ttyS1,115200"); | ||
183 | } | ||
184 | #endif | ||
185 | #endif | ||
186 | } | ||
187 | |||
188 | static void tx3927_setup(void); | ||
189 | |||
190 | static void __init jmr3927_pci_setup(void) | ||
191 | { | ||
192 | #ifdef CONFIG_PCI | ||
193 | int extarb = !(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB); | ||
194 | struct pci_controller *c; | ||
195 | |||
196 | c = txx9_alloc_pci_controller(&txx9_primary_pcic, | ||
197 | JMR3927_PCIMEM, JMR3927_PCIMEM_SIZE, | ||
198 | JMR3927_PCIIO, JMR3927_PCIIO_SIZE); | ||
199 | register_pci_controller(c); | ||
200 | if (!extarb) { | ||
201 | /* Reset PCI Bus */ | ||
202 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); | ||
203 | udelay(100); | ||
204 | jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, | ||
205 | JMR3927_IOC_RESET_ADDR); | ||
206 | udelay(100); | ||
207 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); | ||
208 | } | ||
209 | tx3927_pcic_setup(c, JMR3927_SDRAM_SIZE, extarb); | ||
210 | #endif /* CONFIG_PCI */ | ||
211 | } | ||
212 | |||
213 | static void __init jmr3927_board_init(void) | ||
214 | { | ||
215 | tx3927_setup(); | ||
216 | jmr3927_pci_setup(); | ||
217 | |||
218 | /* SIO0 DTR on */ | ||
219 | jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR); | ||
220 | |||
221 | jmr3927_led_set(0); | ||
222 | |||
223 | printk("JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n", | ||
224 | jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK, | ||
225 | jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK, | ||
226 | jmr3927_dipsw1(), jmr3927_dipsw2(), | ||
227 | jmr3927_dipsw3(), jmr3927_dipsw4()); | ||
228 | } | ||
229 | |||
230 | static void __init tx3927_setup(void) | ||
231 | { | ||
232 | int i; | ||
233 | |||
234 | txx9_cpu_clock = JMR3927_CORECLK; | ||
235 | txx9_gbus_clock = JMR3927_GBUSCLK; | ||
236 | /* SDRAMC are configured by PROM */ | ||
237 | |||
238 | /* ROMC */ | ||
239 | tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048; | ||
240 | tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8; | ||
241 | tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698; | ||
242 | tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218; | ||
243 | |||
244 | /* CCFG */ | ||
245 | /* enable Timeout BusError */ | ||
246 | if (jmr3927_ccfg_toeon) | ||
247 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_TOE; | ||
248 | |||
249 | /* clear BusErrorOnWrite flag */ | ||
250 | tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_BEOW; | ||
251 | /* Disable PCI snoop */ | ||
252 | tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_PSNP; | ||
253 | /* do reset on watchdog */ | ||
254 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_WR; | ||
255 | |||
256 | #ifdef DO_WRITE_THROUGH | ||
257 | /* Enable PCI SNOOP - with write through only */ | ||
258 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_PSNP; | ||
259 | #endif | ||
260 | |||
261 | /* Pin selection */ | ||
262 | tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL; | ||
263 | tx3927_ccfgptr->pcfg |= | ||
264 | TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL | | ||
265 | (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1)); | ||
266 | |||
267 | printk("TX3927 -- CRIR:%08lx CCFG:%08lx PCFG:%08lx\n", | ||
268 | tx3927_ccfgptr->crir, | ||
269 | tx3927_ccfgptr->ccfg, tx3927_ccfgptr->pcfg); | ||
270 | |||
271 | /* TMR */ | ||
272 | for (i = 0; i < TX3927_NR_TMR; i++) | ||
273 | txx9_tmr_init(TX3927_TMR_REG(i)); | ||
274 | |||
275 | /* DMA */ | ||
276 | tx3927_dmaptr->mcr = 0; | ||
277 | for (i = 0; i < ARRAY_SIZE(tx3927_dmaptr->ch); i++) { | ||
278 | /* reset channel */ | ||
279 | tx3927_dmaptr->ch[i].ccr = TX3927_DMA_CCR_CHRST; | ||
280 | tx3927_dmaptr->ch[i].ccr = 0; | ||
281 | } | ||
282 | /* enable DMA */ | ||
283 | #ifdef __BIG_ENDIAN | ||
284 | tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN; | ||
285 | #else | ||
286 | tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN | TX3927_DMA_MCR_LE; | ||
287 | #endif | ||
288 | |||
289 | /* PIO */ | ||
290 | /* PIO[15:12] connected to LEDs */ | ||
291 | __raw_writel(0x0000f000, &tx3927_pioptr->dir); | ||
292 | __raw_writel(0, &tx3927_pioptr->maskcpu); | ||
293 | __raw_writel(0, &tx3927_pioptr->maskext); | ||
294 | txx9_gpio_init(TX3927_PIO_REG, 0, 16); | ||
295 | gpio_request(11, "dipsw1"); | ||
296 | gpio_request(10, "dipsw2"); | ||
297 | { | ||
298 | unsigned int conf; | ||
299 | |||
300 | conf = read_c0_conf(); | ||
301 | if (!(conf & TX39_CONF_ICE)) | ||
302 | printk("TX3927 I-Cache disabled.\n"); | ||
303 | if (!(conf & TX39_CONF_DCE)) | ||
304 | printk("TX3927 D-Cache disabled.\n"); | ||
305 | else if (!(conf & TX39_CONF_WBON)) | ||
306 | printk("TX3927 D-Cache WriteThrough.\n"); | ||
307 | else if (!(conf & TX39_CONF_CWFON)) | ||
308 | printk("TX3927 D-Cache WriteBack.\n"); | ||
309 | else | ||
310 | printk("TX3927 D-Cache WriteBack (CWF) .\n"); | ||
311 | } | ||
312 | } | ||
313 | |||
314 | /* This trick makes rtc-ds1742 driver usable as is. */ | ||
315 | static unsigned long jmr3927_swizzle_addr_b(unsigned long port) | ||
316 | { | ||
317 | if ((port & 0xffff0000) != JMR3927_IOC_NVRAMB_ADDR) | ||
318 | return port; | ||
319 | port = (port & 0xffff0000) | (port & 0x7fff << 1); | ||
320 | #ifdef __BIG_ENDIAN | ||
321 | return port; | ||
322 | #else | ||
323 | return port | 1; | ||
324 | #endif | ||
325 | } | ||
326 | |||
327 | static int __init jmr3927_rtc_init(void) | ||
328 | { | ||
329 | static struct resource __initdata res = { | ||
330 | .start = JMR3927_IOC_NVRAMB_ADDR - IO_BASE, | ||
331 | .end = JMR3927_IOC_NVRAMB_ADDR - IO_BASE + 0x800 - 1, | ||
332 | .flags = IORESOURCE_MEM, | ||
333 | }; | ||
334 | struct platform_device *dev; | ||
335 | dev = platform_device_register_simple("rtc-ds1742", -1, &res, 1); | ||
336 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; | ||
337 | } | ||
338 | |||
339 | /* Watchdog support */ | ||
340 | |||
341 | static int __init txx9_wdt_init(unsigned long base) | ||
342 | { | ||
343 | struct resource res = { | ||
344 | .start = base, | ||
345 | .end = base + 0x100 - 1, | ||
346 | .flags = IORESOURCE_MEM, | ||
347 | }; | ||
348 | struct platform_device *dev = | ||
349 | platform_device_register_simple("txx9wdt", -1, &res, 1); | ||
350 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; | ||
351 | } | ||
352 | |||
353 | static int __init jmr3927_wdt_init(void) | ||
354 | { | ||
355 | return txx9_wdt_init(TX3927_TMR_REG(2)); | ||
356 | } | ||
357 | |||
358 | static void __init jmr3927_device_init(void) | ||
359 | { | ||
360 | __swizzle_addr_b = jmr3927_swizzle_addr_b; | ||
361 | jmr3927_rtc_init(); | ||
362 | jmr3927_wdt_init(); | ||
363 | } | ||
364 | |||
365 | struct txx9_board_vec jmr3927_vec __initdata = { | ||
366 | .system = "Toshiba JMR_TX3927", | ||
367 | .prom_init = jmr3927_prom_init, | ||
368 | .mem_setup = jmr3927_mem_setup, | ||
369 | .irq_setup = jmr3927_irq_setup, | ||
370 | .time_init = jmr3927_time_init, | ||
371 | .device_init = jmr3927_device_init, | ||
372 | #ifdef CONFIG_PCI | ||
373 | .pci_map_irq = jmr3927_pci_map_irq, | ||
374 | #endif | ||
375 | }; | ||