diff options
author | Atsushi Nemoto <anemo@mba.ocn.ne.jp> | 2008-07-10 11:31:36 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2008-07-15 13:44:35 -0400 |
commit | 22b1d707ffc99faebd86257ad19d5bb9fc624734 (patch) | |
tree | 9bd0bcd3878611d74db29e17f3c6e951f4656e61 /arch/mips/txx9/jmr3927 | |
parent | 14476007c90005c8992b786c15a59cca31f53268 (diff) |
[MIPS] TXx9: Reorganize code
Move arch/mips/{jmr3927,tx4927,tx4938} into arch/mips/txx9/ tree.
This will help more code sharing and maintainance.
Signed-off-by: Atsushi Nemoto <anemo@mba.ocn.ne.jp>
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/txx9/jmr3927')
-rw-r--r-- | arch/mips/txx9/jmr3927/Makefile | 8 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/init.c | 57 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/irq.c | 174 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/kgdb_io.c | 105 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/prom.c | 98 | ||||
-rw-r--r-- | arch/mips/txx9/jmr3927/setup.c | 445 |
6 files changed, 887 insertions, 0 deletions
diff --git a/arch/mips/txx9/jmr3927/Makefile b/arch/mips/txx9/jmr3927/Makefile new file mode 100644 index 000000000000..5f83ea375225 --- /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 init.o irq.o setup.o | ||
6 | obj-$(CONFIG_KGDB) += kgdb_io.o | ||
7 | |||
8 | EXTRA_CFLAGS += -Werror | ||
diff --git a/arch/mips/txx9/jmr3927/init.c b/arch/mips/txx9/jmr3927/init.c new file mode 100644 index 000000000000..1bbb5343baf4 --- /dev/null +++ b/arch/mips/txx9/jmr3927/init.c | |||
@@ -0,0 +1,57 @@ | |||
1 | /* | ||
2 | * Copyright 2001 MontaVista Software Inc. | ||
3 | * Author: MontaVista Software, Inc. | ||
4 | * ahennessy@mvista.com | ||
5 | * | ||
6 | * arch/mips/jmr3927/common/init.c | ||
7 | * | ||
8 | * Copyright (C) 2000-2001 Toshiba Corporation | ||
9 | * | ||
10 | * This program is free software; you can redistribute it and/or modify it | ||
11 | * under the terms of the GNU General Public License as published by the | ||
12 | * Free Software Foundation; either version 2 of the License, or (at your | ||
13 | * option) any later version. | ||
14 | * | ||
15 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
16 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
17 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
18 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
19 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
20 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
21 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
22 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
23 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
24 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
25 | * | ||
26 | * You should have received a copy of the GNU General Public License along | ||
27 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
28 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
29 | */ | ||
30 | #include <linux/init.h> | ||
31 | #include <asm/bootinfo.h> | ||
32 | #include <asm/txx9/jmr3927.h> | ||
33 | |||
34 | extern void __init prom_init_cmdline(void); | ||
35 | |||
36 | const char *get_system_type(void) | ||
37 | { | ||
38 | return "Toshiba" | ||
39 | #ifdef CONFIG_TOSHIBA_JMR3927 | ||
40 | " JMR_TX3927" | ||
41 | #endif | ||
42 | ; | ||
43 | } | ||
44 | |||
45 | extern void puts(const char *cp); | ||
46 | |||
47 | void __init prom_init(void) | ||
48 | { | ||
49 | #ifdef CONFIG_TOSHIBA_JMR3927 | ||
50 | /* CCFG */ | ||
51 | if ((tx3927_ccfgptr->ccfg & TX3927_CCFG_TLBOFF) == 0) | ||
52 | puts("Warning: TX3927 TLB off\n"); | ||
53 | #endif | ||
54 | |||
55 | prom_init_cmdline(); | ||
56 | add_memory_region(0, JMR3927_SDRAM_SIZE, BOOT_MEM_RAM); | ||
57 | } | ||
diff --git a/arch/mips/txx9/jmr3927/irq.c b/arch/mips/txx9/jmr3927/irq.c new file mode 100644 index 000000000000..85e1daf15c7b --- /dev/null +++ b/arch/mips/txx9/jmr3927/irq.c | |||
@@ -0,0 +1,174 @@ | |||
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/jmr3927.h> | ||
43 | |||
44 | #if JMR3927_IRQ_END > NR_IRQS | ||
45 | #error JMR3927_IRQ_END > NR_IRQS | ||
46 | #endif | ||
47 | |||
48 | static unsigned char irc_level[TX3927_NUM_IR] = { | ||
49 | 5, 5, 5, 5, 5, 5, /* INT[5:0] */ | ||
50 | 7, 7, /* SIO */ | ||
51 | 5, 5, 5, 0, 0, /* DMA, PIO, PCI */ | ||
52 | 6, 6, 6 /* TMR */ | ||
53 | }; | ||
54 | |||
55 | /* | ||
56 | * CP0_STATUS is a thread's resource (saved/restored on context switch). | ||
57 | * So disable_irq/enable_irq MUST handle IOC/IRC registers. | ||
58 | */ | ||
59 | static void mask_irq_ioc(unsigned int irq) | ||
60 | { | ||
61 | /* 0: mask */ | ||
62 | unsigned int irq_nr = irq - JMR3927_IRQ_IOC; | ||
63 | unsigned char imask = jmr3927_ioc_reg_in(JMR3927_IOC_INTM_ADDR); | ||
64 | unsigned int bit = 1 << irq_nr; | ||
65 | jmr3927_ioc_reg_out(imask & ~bit, JMR3927_IOC_INTM_ADDR); | ||
66 | /* flush write buffer */ | ||
67 | (void)jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR); | ||
68 | } | ||
69 | static void unmask_irq_ioc(unsigned int irq) | ||
70 | { | ||
71 | /* 0: mask */ | ||
72 | unsigned int irq_nr = irq - JMR3927_IRQ_IOC; | ||
73 | unsigned char imask = jmr3927_ioc_reg_in(JMR3927_IOC_INTM_ADDR); | ||
74 | unsigned int bit = 1 << irq_nr; | ||
75 | jmr3927_ioc_reg_out(imask | bit, JMR3927_IOC_INTM_ADDR); | ||
76 | /* flush write buffer */ | ||
77 | (void)jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR); | ||
78 | } | ||
79 | |||
80 | asmlinkage void plat_irq_dispatch(void) | ||
81 | { | ||
82 | unsigned long cp0_cause = read_c0_cause(); | ||
83 | int irq; | ||
84 | |||
85 | if ((cp0_cause & CAUSEF_IP7) == 0) | ||
86 | return; | ||
87 | irq = (cp0_cause >> CAUSEB_IP2) & 0x0f; | ||
88 | |||
89 | do_IRQ(irq + JMR3927_IRQ_IRC); | ||
90 | } | ||
91 | |||
92 | static irqreturn_t jmr3927_ioc_interrupt(int irq, void *dev_id) | ||
93 | { | ||
94 | unsigned char istat = jmr3927_ioc_reg_in(JMR3927_IOC_INTS2_ADDR); | ||
95 | int i; | ||
96 | |||
97 | for (i = 0; i < JMR3927_NR_IRQ_IOC; i++) { | ||
98 | if (istat & (1 << i)) { | ||
99 | irq = JMR3927_IRQ_IOC + i; | ||
100 | do_IRQ(irq); | ||
101 | } | ||
102 | } | ||
103 | return IRQ_HANDLED; | ||
104 | } | ||
105 | |||
106 | static struct irqaction ioc_action = { | ||
107 | .handler = jmr3927_ioc_interrupt, | ||
108 | .mask = CPU_MASK_NONE, | ||
109 | .name = "IOC", | ||
110 | }; | ||
111 | |||
112 | static irqreturn_t jmr3927_pcierr_interrupt(int irq, void *dev_id) | ||
113 | { | ||
114 | printk(KERN_WARNING "PCI error interrupt (irq 0x%x).\n", irq); | ||
115 | printk(KERN_WARNING "pcistat:%02x, lbstat:%04lx\n", | ||
116 | tx3927_pcicptr->pcistat, tx3927_pcicptr->lbstat); | ||
117 | |||
118 | return IRQ_HANDLED; | ||
119 | } | ||
120 | static struct irqaction pcierr_action = { | ||
121 | .handler = jmr3927_pcierr_interrupt, | ||
122 | .mask = CPU_MASK_NONE, | ||
123 | .name = "PCI error", | ||
124 | }; | ||
125 | |||
126 | static void __init jmr3927_irq_init(void); | ||
127 | |||
128 | void __init arch_init_irq(void) | ||
129 | { | ||
130 | /* Now, interrupt control disabled, */ | ||
131 | /* all IRC interrupts are masked, */ | ||
132 | /* all IRC interrupt mode are Low Active. */ | ||
133 | |||
134 | /* mask all IOC interrupts */ | ||
135 | jmr3927_ioc_reg_out(0, JMR3927_IOC_INTM_ADDR); | ||
136 | /* setup IOC interrupt mode (SOFT:High Active, Others:Low Active) */ | ||
137 | jmr3927_ioc_reg_out(JMR3927_IOC_INTF_SOFT, JMR3927_IOC_INTP_ADDR); | ||
138 | |||
139 | /* clear PCI Soft interrupts */ | ||
140 | jmr3927_ioc_reg_out(0, JMR3927_IOC_INTS1_ADDR); | ||
141 | /* clear PCI Reset interrupts */ | ||
142 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); | ||
143 | |||
144 | jmr3927_irq_init(); | ||
145 | |||
146 | /* setup IOC interrupt 1 (PCI, MODEM) */ | ||
147 | setup_irq(JMR3927_IRQ_IOCINT, &ioc_action); | ||
148 | |||
149 | #ifdef CONFIG_PCI | ||
150 | setup_irq(JMR3927_IRQ_IRC_PCI, &pcierr_action); | ||
151 | #endif | ||
152 | |||
153 | /* enable all CPU interrupt bits. */ | ||
154 | set_c0_status(ST0_IM); /* IE bit is still 0. */ | ||
155 | } | ||
156 | |||
157 | static struct irq_chip jmr3927_irq_ioc = { | ||
158 | .name = "jmr3927_ioc", | ||
159 | .ack = mask_irq_ioc, | ||
160 | .mask = mask_irq_ioc, | ||
161 | .mask_ack = mask_irq_ioc, | ||
162 | .unmask = unmask_irq_ioc, | ||
163 | }; | ||
164 | |||
165 | static void __init jmr3927_irq_init(void) | ||
166 | { | ||
167 | u32 i; | ||
168 | |||
169 | txx9_irq_init(TX3927_IRC_REG); | ||
170 | for (i = 0; i < TXx9_MAX_IR; i++) | ||
171 | txx9_irq_set_pri(i, irc_level[i]); | ||
172 | for (i = JMR3927_IRQ_IOC; i < JMR3927_IRQ_IOC + JMR3927_NR_IRQ_IOC; i++) | ||
173 | set_irq_chip_and_handler(i, &jmr3927_irq_ioc, handle_level_irq); | ||
174 | } | ||
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..8bc1049b622e --- /dev/null +++ b/arch/mips/txx9/jmr3927/prom.c | |||
@@ -0,0 +1,98 @@ | |||
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/kernel.h> | ||
39 | #include <linux/init.h> | ||
40 | #include <linux/string.h> | ||
41 | |||
42 | #include <asm/bootinfo.h> | ||
43 | #include <asm/txx9/tx3927.h> | ||
44 | |||
45 | char * __init prom_getcmdline(void) | ||
46 | { | ||
47 | return &(arcs_cmdline[0]); | ||
48 | } | ||
49 | |||
50 | void __init prom_init_cmdline(void) | ||
51 | { | ||
52 | char *cp; | ||
53 | int actr; | ||
54 | int prom_argc = fw_arg0; | ||
55 | char **prom_argv = (char **) fw_arg1; | ||
56 | |||
57 | actr = 1; /* Always ignore argv[0] */ | ||
58 | |||
59 | cp = &(arcs_cmdline[0]); | ||
60 | while(actr < prom_argc) { | ||
61 | strcpy(cp, prom_argv[actr]); | ||
62 | cp += strlen(prom_argv[actr]); | ||
63 | *cp++ = ' '; | ||
64 | actr++; | ||
65 | } | ||
66 | if (cp != &(arcs_cmdline[0])) /* get rid of trailing space */ | ||
67 | --cp; | ||
68 | *cp = '\0'; | ||
69 | } | ||
70 | |||
71 | void __init prom_free_prom_memory(void) | ||
72 | { | ||
73 | } | ||
74 | |||
75 | #define TIMEOUT 0xffffff | ||
76 | |||
77 | void | ||
78 | prom_putchar(char c) | ||
79 | { | ||
80 | int i = 0; | ||
81 | |||
82 | do { | ||
83 | i++; | ||
84 | if (i>TIMEOUT) | ||
85 | break; | ||
86 | } while (!(tx3927_sioptr(1)->cisr & TXx927_SICISR_TXALS)); | ||
87 | tx3927_sioptr(1)->tfifo = c; | ||
88 | return; | ||
89 | } | ||
90 | |||
91 | void | ||
92 | puts(const char *cp) | ||
93 | { | ||
94 | while (*cp) | ||
95 | prom_putchar(*cp++); | ||
96 | prom_putchar('\r'); | ||
97 | prom_putchar('\n'); | ||
98 | } | ||
diff --git a/arch/mips/txx9/jmr3927/setup.c b/arch/mips/txx9/jmr3927/setup.c new file mode 100644 index 000000000000..41e0f3b3af2c --- /dev/null +++ b/arch/mips/txx9/jmr3927/setup.c | |||
@@ -0,0 +1,445 @@ | |||
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/pci.h> | ||
34 | #include <linux/ioport.h> | ||
35 | #include <linux/delay.h> | ||
36 | #include <linux/pm.h> | ||
37 | #include <linux/platform_device.h> | ||
38 | #include <linux/clk.h> | ||
39 | #include <linux/gpio.h> | ||
40 | #ifdef CONFIG_SERIAL_TXX9 | ||
41 | #include <linux/serial_core.h> | ||
42 | #endif | ||
43 | |||
44 | #include <asm/txx9tmr.h> | ||
45 | #include <asm/txx9pio.h> | ||
46 | #include <asm/reboot.h> | ||
47 | #include <asm/txx9/jmr3927.h> | ||
48 | #include <asm/mipsregs.h> | ||
49 | |||
50 | extern void puts(const char *cp); | ||
51 | |||
52 | /* don't enable - see errata */ | ||
53 | static int jmr3927_ccfg_toeon; | ||
54 | |||
55 | static inline void do_reset(void) | ||
56 | { | ||
57 | #if 1 /* Resetting PCI bus */ | ||
58 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); | ||
59 | jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, JMR3927_IOC_RESET_ADDR); | ||
60 | (void)jmr3927_ioc_reg_in(JMR3927_IOC_RESET_ADDR); /* flush WB */ | ||
61 | mdelay(1); | ||
62 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); | ||
63 | #endif | ||
64 | jmr3927_ioc_reg_out(JMR3927_IOC_RESET_CPU, JMR3927_IOC_RESET_ADDR); | ||
65 | } | ||
66 | |||
67 | static void jmr3927_machine_restart(char *command) | ||
68 | { | ||
69 | local_irq_disable(); | ||
70 | puts("Rebooting..."); | ||
71 | do_reset(); | ||
72 | } | ||
73 | |||
74 | static void jmr3927_machine_halt(void) | ||
75 | { | ||
76 | puts("JMR-TX3927 halted.\n"); | ||
77 | while (1); | ||
78 | } | ||
79 | |||
80 | static void jmr3927_machine_power_off(void) | ||
81 | { | ||
82 | puts("JMR-TX3927 halted. Please turn off the power.\n"); | ||
83 | while (1); | ||
84 | } | ||
85 | |||
86 | void __init plat_time_init(void) | ||
87 | { | ||
88 | txx9_clockevent_init(TX3927_TMR_REG(0), | ||
89 | TXX9_IRQ_BASE + JMR3927_IRQ_IRC_TMR(0), | ||
90 | JMR3927_IMCLK); | ||
91 | txx9_clocksource_init(TX3927_TMR_REG(1), JMR3927_IMCLK); | ||
92 | } | ||
93 | |||
94 | #define DO_WRITE_THROUGH | ||
95 | #define DO_ENABLE_CACHE | ||
96 | |||
97 | extern char * __init prom_getcmdline(void); | ||
98 | static void jmr3927_board_init(void); | ||
99 | extern struct resource pci_io_resource; | ||
100 | extern struct resource pci_mem_resource; | ||
101 | |||
102 | void __init plat_mem_setup(void) | ||
103 | { | ||
104 | char *argptr; | ||
105 | |||
106 | set_io_port_base(JMR3927_PORT_BASE + JMR3927_PCIIO); | ||
107 | |||
108 | _machine_restart = jmr3927_machine_restart; | ||
109 | _machine_halt = jmr3927_machine_halt; | ||
110 | pm_power_off = jmr3927_machine_power_off; | ||
111 | |||
112 | /* | ||
113 | * IO/MEM resources. | ||
114 | */ | ||
115 | ioport_resource.start = pci_io_resource.start; | ||
116 | ioport_resource.end = pci_io_resource.end; | ||
117 | iomem_resource.start = 0; | ||
118 | iomem_resource.end = 0xffffffff; | ||
119 | |||
120 | /* Reboot on panic */ | ||
121 | panic_timeout = 180; | ||
122 | |||
123 | /* cache setup */ | ||
124 | { | ||
125 | unsigned int conf; | ||
126 | #ifdef DO_ENABLE_CACHE | ||
127 | int mips_ic_disable = 0, mips_dc_disable = 0; | ||
128 | #else | ||
129 | int mips_ic_disable = 1, mips_dc_disable = 1; | ||
130 | #endif | ||
131 | #ifdef DO_WRITE_THROUGH | ||
132 | int mips_config_cwfon = 0; | ||
133 | int mips_config_wbon = 0; | ||
134 | #else | ||
135 | int mips_config_cwfon = 1; | ||
136 | int mips_config_wbon = 1; | ||
137 | #endif | ||
138 | |||
139 | conf = read_c0_conf(); | ||
140 | conf &= ~(TX39_CONF_ICE | TX39_CONF_DCE | TX39_CONF_WBON | TX39_CONF_CWFON); | ||
141 | conf |= mips_ic_disable ? 0 : TX39_CONF_ICE; | ||
142 | conf |= mips_dc_disable ? 0 : TX39_CONF_DCE; | ||
143 | conf |= mips_config_wbon ? TX39_CONF_WBON : 0; | ||
144 | conf |= mips_config_cwfon ? TX39_CONF_CWFON : 0; | ||
145 | |||
146 | write_c0_conf(conf); | ||
147 | write_c0_cache(0); | ||
148 | } | ||
149 | |||
150 | /* initialize board */ | ||
151 | jmr3927_board_init(); | ||
152 | |||
153 | argptr = prom_getcmdline(); | ||
154 | |||
155 | if ((argptr = strstr(argptr, "toeon")) != NULL) | ||
156 | jmr3927_ccfg_toeon = 1; | ||
157 | argptr = prom_getcmdline(); | ||
158 | if ((argptr = strstr(argptr, "ip=")) == NULL) { | ||
159 | argptr = prom_getcmdline(); | ||
160 | strcat(argptr, " ip=bootp"); | ||
161 | } | ||
162 | |||
163 | #ifdef CONFIG_SERIAL_TXX9 | ||
164 | { | ||
165 | extern int early_serial_txx9_setup(struct uart_port *port); | ||
166 | int i; | ||
167 | struct uart_port req; | ||
168 | for(i = 0; i < 2; i++) { | ||
169 | memset(&req, 0, sizeof(req)); | ||
170 | req.line = i; | ||
171 | req.iotype = UPIO_MEM; | ||
172 | req.membase = (unsigned char __iomem *)TX3927_SIO_REG(i); | ||
173 | req.mapbase = TX3927_SIO_REG(i); | ||
174 | req.irq = i == 0 ? | ||
175 | JMR3927_IRQ_IRC_SIO0 : JMR3927_IRQ_IRC_SIO1; | ||
176 | if (i == 0) | ||
177 | req.flags |= UPF_BUGGY_UART /*HAVE_CTS_LINE*/; | ||
178 | req.uartclk = JMR3927_IMCLK; | ||
179 | early_serial_txx9_setup(&req); | ||
180 | } | ||
181 | } | ||
182 | #ifdef CONFIG_SERIAL_TXX9_CONSOLE | ||
183 | argptr = prom_getcmdline(); | ||
184 | if ((argptr = strstr(argptr, "console=")) == NULL) { | ||
185 | argptr = prom_getcmdline(); | ||
186 | strcat(argptr, " console=ttyS1,115200"); | ||
187 | } | ||
188 | #endif | ||
189 | #endif | ||
190 | } | ||
191 | |||
192 | static void tx3927_setup(void); | ||
193 | |||
194 | static void __init jmr3927_board_init(void) | ||
195 | { | ||
196 | tx3927_setup(); | ||
197 | |||
198 | /* SIO0 DTR on */ | ||
199 | jmr3927_ioc_reg_out(0, JMR3927_IOC_DTR_ADDR); | ||
200 | |||
201 | jmr3927_led_set(0); | ||
202 | |||
203 | printk("JMR-TX3927 (Rev %d) --- IOC(Rev %d) DIPSW:%d,%d,%d,%d\n", | ||
204 | jmr3927_ioc_reg_in(JMR3927_IOC_BREV_ADDR) & JMR3927_REV_MASK, | ||
205 | jmr3927_ioc_reg_in(JMR3927_IOC_REV_ADDR) & JMR3927_REV_MASK, | ||
206 | jmr3927_dipsw1(), jmr3927_dipsw2(), | ||
207 | jmr3927_dipsw3(), jmr3927_dipsw4()); | ||
208 | } | ||
209 | |||
210 | static void __init tx3927_setup(void) | ||
211 | { | ||
212 | int i; | ||
213 | #ifdef CONFIG_PCI | ||
214 | unsigned long mips_pci_io_base = JMR3927_PCIIO; | ||
215 | unsigned long mips_pci_io_size = JMR3927_PCIIO_SIZE; | ||
216 | unsigned long mips_pci_mem_base = JMR3927_PCIMEM; | ||
217 | unsigned long mips_pci_mem_size = JMR3927_PCIMEM_SIZE; | ||
218 | /* for legacy I/O, PCI I/O PCI Bus address must be 0 */ | ||
219 | unsigned long mips_pci_io_pciaddr = 0; | ||
220 | #endif | ||
221 | |||
222 | /* SDRAMC are configured by PROM */ | ||
223 | |||
224 | /* ROMC */ | ||
225 | tx3927_romcptr->cr[1] = JMR3927_ROMCE1 | 0x00030048; | ||
226 | tx3927_romcptr->cr[2] = JMR3927_ROMCE2 | 0x000064c8; | ||
227 | tx3927_romcptr->cr[3] = JMR3927_ROMCE3 | 0x0003f698; | ||
228 | tx3927_romcptr->cr[5] = JMR3927_ROMCE5 | 0x0000f218; | ||
229 | |||
230 | /* CCFG */ | ||
231 | /* enable Timeout BusError */ | ||
232 | if (jmr3927_ccfg_toeon) | ||
233 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_TOE; | ||
234 | |||
235 | /* clear BusErrorOnWrite flag */ | ||
236 | tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_BEOW; | ||
237 | /* Disable PCI snoop */ | ||
238 | tx3927_ccfgptr->ccfg &= ~TX3927_CCFG_PSNP; | ||
239 | /* do reset on watchdog */ | ||
240 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_WR; | ||
241 | |||
242 | #ifdef DO_WRITE_THROUGH | ||
243 | /* Enable PCI SNOOP - with write through only */ | ||
244 | tx3927_ccfgptr->ccfg |= TX3927_CCFG_PSNP; | ||
245 | #endif | ||
246 | |||
247 | /* Pin selection */ | ||
248 | tx3927_ccfgptr->pcfg &= ~TX3927_PCFG_SELALL; | ||
249 | tx3927_ccfgptr->pcfg |= | ||
250 | TX3927_PCFG_SELSIOC(0) | TX3927_PCFG_SELSIO_ALL | | ||
251 | (TX3927_PCFG_SELDMA_ALL & ~TX3927_PCFG_SELDMA(1)); | ||
252 | |||
253 | printk("TX3927 -- CRIR:%08lx CCFG:%08lx PCFG:%08lx\n", | ||
254 | tx3927_ccfgptr->crir, | ||
255 | tx3927_ccfgptr->ccfg, tx3927_ccfgptr->pcfg); | ||
256 | |||
257 | /* TMR */ | ||
258 | for (i = 0; i < TX3927_NR_TMR; i++) | ||
259 | txx9_tmr_init(TX3927_TMR_REG(i)); | ||
260 | |||
261 | /* DMA */ | ||
262 | tx3927_dmaptr->mcr = 0; | ||
263 | for (i = 0; i < ARRAY_SIZE(tx3927_dmaptr->ch); i++) { | ||
264 | /* reset channel */ | ||
265 | tx3927_dmaptr->ch[i].ccr = TX3927_DMA_CCR_CHRST; | ||
266 | tx3927_dmaptr->ch[i].ccr = 0; | ||
267 | } | ||
268 | /* enable DMA */ | ||
269 | #ifdef __BIG_ENDIAN | ||
270 | tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN; | ||
271 | #else | ||
272 | tx3927_dmaptr->mcr = TX3927_DMA_MCR_MSTEN | TX3927_DMA_MCR_LE; | ||
273 | #endif | ||
274 | |||
275 | #ifdef CONFIG_PCI | ||
276 | /* PCIC */ | ||
277 | printk("TX3927 PCIC -- DID:%04x VID:%04x RID:%02x Arbiter:", | ||
278 | tx3927_pcicptr->did, tx3927_pcicptr->vid, | ||
279 | tx3927_pcicptr->rid); | ||
280 | if (!(tx3927_ccfgptr->ccfg & TX3927_CCFG_PCIXARB)) { | ||
281 | printk("External\n"); | ||
282 | /* XXX */ | ||
283 | } else { | ||
284 | printk("Internal\n"); | ||
285 | |||
286 | /* Reset PCI Bus */ | ||
287 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); | ||
288 | udelay(100); | ||
289 | jmr3927_ioc_reg_out(JMR3927_IOC_RESET_PCI, | ||
290 | JMR3927_IOC_RESET_ADDR); | ||
291 | udelay(100); | ||
292 | jmr3927_ioc_reg_out(0, JMR3927_IOC_RESET_ADDR); | ||
293 | |||
294 | |||
295 | /* Disable External PCI Config. Access */ | ||
296 | tx3927_pcicptr->lbc = TX3927_PCIC_LBC_EPCAD; | ||
297 | #ifdef __BIG_ENDIAN | ||
298 | tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_IBSE | | ||
299 | TX3927_PCIC_LBC_TIBSE | | ||
300 | TX3927_PCIC_LBC_TMFBSE | TX3927_PCIC_LBC_MSDSE; | ||
301 | #endif | ||
302 | /* LB->PCI mappings */ | ||
303 | tx3927_pcicptr->iomas = ~(mips_pci_io_size - 1); | ||
304 | tx3927_pcicptr->ilbioma = mips_pci_io_base; | ||
305 | tx3927_pcicptr->ipbioma = mips_pci_io_pciaddr; | ||
306 | tx3927_pcicptr->mmas = ~(mips_pci_mem_size - 1); | ||
307 | tx3927_pcicptr->ilbmma = mips_pci_mem_base; | ||
308 | tx3927_pcicptr->ipbmma = mips_pci_mem_base; | ||
309 | /* PCI->LB mappings */ | ||
310 | tx3927_pcicptr->iobas = 0xffffffff; | ||
311 | tx3927_pcicptr->ioba = 0; | ||
312 | tx3927_pcicptr->tlbioma = 0; | ||
313 | tx3927_pcicptr->mbas = ~(mips_pci_mem_size - 1); | ||
314 | tx3927_pcicptr->mba = 0; | ||
315 | tx3927_pcicptr->tlbmma = 0; | ||
316 | /* Enable Direct mapping Address Space Decoder */ | ||
317 | tx3927_pcicptr->lbc |= TX3927_PCIC_LBC_ILMDE | TX3927_PCIC_LBC_ILIDE; | ||
318 | |||
319 | /* Clear All Local Bus Status */ | ||
320 | tx3927_pcicptr->lbstat = TX3927_PCIC_LBIM_ALL; | ||
321 | /* Enable All Local Bus Interrupts */ | ||
322 | tx3927_pcicptr->lbim = TX3927_PCIC_LBIM_ALL; | ||
323 | /* Clear All PCI Status Error */ | ||
324 | tx3927_pcicptr->pcistat = TX3927_PCIC_PCISTATIM_ALL; | ||
325 | /* Enable All PCI Status Error Interrupts */ | ||
326 | tx3927_pcicptr->pcistatim = TX3927_PCIC_PCISTATIM_ALL; | ||
327 | |||
328 | /* PCIC Int => IRC IRQ10 */ | ||
329 | tx3927_pcicptr->il = TX3927_IR_PCI; | ||
330 | /* Target Control (per errata) */ | ||
331 | tx3927_pcicptr->tc = TX3927_PCIC_TC_OF8E | TX3927_PCIC_TC_IF8E; | ||
332 | |||
333 | /* Enable Bus Arbiter */ | ||
334 | tx3927_pcicptr->pbapmc = TX3927_PCIC_PBAPMC_PBAEN; | ||
335 | |||
336 | tx3927_pcicptr->pcicmd = PCI_COMMAND_MASTER | | ||
337 | PCI_COMMAND_MEMORY | | ||
338 | PCI_COMMAND_IO | | ||
339 | PCI_COMMAND_PARITY | PCI_COMMAND_SERR; | ||
340 | } | ||
341 | #endif /* CONFIG_PCI */ | ||
342 | |||
343 | /* PIO */ | ||
344 | /* PIO[15:12] connected to LEDs */ | ||
345 | __raw_writel(0x0000f000, &tx3927_pioptr->dir); | ||
346 | __raw_writel(0, &tx3927_pioptr->maskcpu); | ||
347 | __raw_writel(0, &tx3927_pioptr->maskext); | ||
348 | txx9_gpio_init(TX3927_PIO_REG, 0, 16); | ||
349 | gpio_request(11, "dipsw1"); | ||
350 | gpio_request(10, "dipsw2"); | ||
351 | { | ||
352 | unsigned int conf; | ||
353 | |||
354 | conf = read_c0_conf(); | ||
355 | if (!(conf & TX39_CONF_ICE)) | ||
356 | printk("TX3927 I-Cache disabled.\n"); | ||
357 | if (!(conf & TX39_CONF_DCE)) | ||
358 | printk("TX3927 D-Cache disabled.\n"); | ||
359 | else if (!(conf & TX39_CONF_WBON)) | ||
360 | printk("TX3927 D-Cache WriteThrough.\n"); | ||
361 | else if (!(conf & TX39_CONF_CWFON)) | ||
362 | printk("TX3927 D-Cache WriteBack.\n"); | ||
363 | else | ||
364 | printk("TX3927 D-Cache WriteBack (CWF) .\n"); | ||
365 | } | ||
366 | } | ||
367 | |||
368 | /* This trick makes rtc-ds1742 driver usable as is. */ | ||
369 | unsigned long __swizzle_addr_b(unsigned long port) | ||
370 | { | ||
371 | if ((port & 0xffff0000) != JMR3927_IOC_NVRAMB_ADDR) | ||
372 | return port; | ||
373 | port = (port & 0xffff0000) | (port & 0x7fff << 1); | ||
374 | #ifdef __BIG_ENDIAN | ||
375 | return port; | ||
376 | #else | ||
377 | return port | 1; | ||
378 | #endif | ||
379 | } | ||
380 | EXPORT_SYMBOL(__swizzle_addr_b); | ||
381 | |||
382 | static int __init jmr3927_rtc_init(void) | ||
383 | { | ||
384 | static struct resource __initdata res = { | ||
385 | .start = JMR3927_IOC_NVRAMB_ADDR - IO_BASE, | ||
386 | .end = JMR3927_IOC_NVRAMB_ADDR - IO_BASE + 0x800 - 1, | ||
387 | .flags = IORESOURCE_MEM, | ||
388 | }; | ||
389 | struct platform_device *dev; | ||
390 | dev = platform_device_register_simple("rtc-ds1742", -1, &res, 1); | ||
391 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; | ||
392 | } | ||
393 | device_initcall(jmr3927_rtc_init); | ||
394 | |||
395 | /* Watchdog support */ | ||
396 | |||
397 | static int __init txx9_wdt_init(unsigned long base) | ||
398 | { | ||
399 | struct resource res = { | ||
400 | .start = base, | ||
401 | .end = base + 0x100 - 1, | ||
402 | .flags = IORESOURCE_MEM, | ||
403 | }; | ||
404 | struct platform_device *dev = | ||
405 | platform_device_register_simple("txx9wdt", -1, &res, 1); | ||
406 | return IS_ERR(dev) ? PTR_ERR(dev) : 0; | ||
407 | } | ||
408 | |||
409 | static int __init jmr3927_wdt_init(void) | ||
410 | { | ||
411 | return txx9_wdt_init(TX3927_TMR_REG(2)); | ||
412 | } | ||
413 | device_initcall(jmr3927_wdt_init); | ||
414 | |||
415 | /* Minimum CLK support */ | ||
416 | |||
417 | struct clk *clk_get(struct device *dev, const char *id) | ||
418 | { | ||
419 | if (!strcmp(id, "imbus_clk")) | ||
420 | return (struct clk *)JMR3927_IMCLK; | ||
421 | return ERR_PTR(-ENOENT); | ||
422 | } | ||
423 | EXPORT_SYMBOL(clk_get); | ||
424 | |||
425 | int clk_enable(struct clk *clk) | ||
426 | { | ||
427 | return 0; | ||
428 | } | ||
429 | EXPORT_SYMBOL(clk_enable); | ||
430 | |||
431 | void clk_disable(struct clk *clk) | ||
432 | { | ||
433 | } | ||
434 | EXPORT_SYMBOL(clk_disable); | ||
435 | |||
436 | unsigned long clk_get_rate(struct clk *clk) | ||
437 | { | ||
438 | return (unsigned long)clk; | ||
439 | } | ||
440 | EXPORT_SYMBOL(clk_get_rate); | ||
441 | |||
442 | void clk_put(struct clk *clk) | ||
443 | { | ||
444 | } | ||
445 | EXPORT_SYMBOL(clk_put); | ||