diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /arch/mips/au1000/xxs1500 |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'arch/mips/au1000/xxs1500')
-rw-r--r-- | arch/mips/au1000/xxs1500/Makefile | 9 | ||||
-rw-r--r-- | arch/mips/au1000/xxs1500/board_setup.c | 91 | ||||
-rw-r--r-- | arch/mips/au1000/xxs1500/init.c | 68 | ||||
-rw-r--r-- | arch/mips/au1000/xxs1500/irqmap.c | 66 |
4 files changed, 234 insertions, 0 deletions
diff --git a/arch/mips/au1000/xxs1500/Makefile b/arch/mips/au1000/xxs1500/Makefile new file mode 100644 index 000000000000..44d7f7056ae7 --- /dev/null +++ b/arch/mips/au1000/xxs1500/Makefile | |||
@@ -0,0 +1,9 @@ | |||
1 | # | ||
2 | # Copyright 2003 MontaVista Software Inc. | ||
3 | # Author: MontaVista Software, Inc. | ||
4 | # ppopov@mvista.com or source@mvista.com | ||
5 | # | ||
6 | # Makefile for MyCable XXS1500 board. | ||
7 | # | ||
8 | |||
9 | lib-y := init.o board_setup.o irqmap.o | ||
diff --git a/arch/mips/au1000/xxs1500/board_setup.c b/arch/mips/au1000/xxs1500/board_setup.c new file mode 100644 index 000000000000..9dadc82536f4 --- /dev/null +++ b/arch/mips/au1000/xxs1500/board_setup.c | |||
@@ -0,0 +1,91 @@ | |||
1 | /* | ||
2 | * Copyright 2000-2003 MontaVista Software Inc. | ||
3 | * Author: MontaVista Software, Inc. | ||
4 | * ppopov@mvista.com or source@mvista.com | ||
5 | * | ||
6 | * This program is free software; you can redistribute it and/or modify it | ||
7 | * under the terms of the GNU General Public License as published by the | ||
8 | * Free Software Foundation; either version 2 of the License, or (at your | ||
9 | * option) any later version. | ||
10 | * | ||
11 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
12 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
13 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
14 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
15 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
16 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
17 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
18 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
19 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
20 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
21 | * | ||
22 | * You should have received a copy of the GNU General Public License along | ||
23 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
24 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
25 | */ | ||
26 | #include <linux/config.h> | ||
27 | #include <linux/init.h> | ||
28 | #include <linux/sched.h> | ||
29 | #include <linux/ioport.h> | ||
30 | #include <linux/mm.h> | ||
31 | #include <linux/console.h> | ||
32 | #include <linux/delay.h> | ||
33 | |||
34 | #include <asm/cpu.h> | ||
35 | #include <asm/bootinfo.h> | ||
36 | #include <asm/irq.h> | ||
37 | #include <asm/keyboard.h> | ||
38 | #include <asm/mipsregs.h> | ||
39 | #include <asm/reboot.h> | ||
40 | #include <asm/pgtable.h> | ||
41 | #include <asm/au1000.h> | ||
42 | |||
43 | void board_reset (void) | ||
44 | { | ||
45 | /* Hit BCSR.SYSTEM_CONTROL[SW_RST] */ | ||
46 | au_writel(0x00000000, 0xAE00001C); | ||
47 | } | ||
48 | |||
49 | void __init board_setup(void) | ||
50 | { | ||
51 | u32 pin_func; | ||
52 | |||
53 | // set multiple use pins (UART3/GPIO) to UART (it's used as UART too) | ||
54 | pin_func = au_readl(SYS_PINFUNC) & (u32)(~SYS_PF_UR3); | ||
55 | pin_func |= SYS_PF_UR3; | ||
56 | au_writel(pin_func, SYS_PINFUNC); | ||
57 | |||
58 | // enable UART | ||
59 | au_writel(0x01, UART3_ADDR+UART_MOD_CNTRL); // clock enable (CE) | ||
60 | mdelay(10); | ||
61 | au_writel(0x03, UART3_ADDR+UART_MOD_CNTRL); // CE and "enable" | ||
62 | mdelay(10); | ||
63 | |||
64 | // enable DTR = USB power up | ||
65 | au_writel(0x01, UART3_ADDR+UART_MCR); //? UART_MCR_DTR is 0x01??? | ||
66 | |||
67 | #ifdef CONFIG_PCMCIA_XXS1500 | ||
68 | /* setup pcmcia signals */ | ||
69 | au_writel(0, SYS_PININPUTEN); | ||
70 | |||
71 | /* gpio 0, 1, and 4 are inputs */ | ||
72 | au_writel(1 | (1<<1) | (1<<4), SYS_TRIOUTCLR); | ||
73 | |||
74 | /* enable GPIO2 if not already enabled */ | ||
75 | au_writel(1, GPIO2_ENABLE); | ||
76 | /* gpio2 208/9/10/11 are inputs */ | ||
77 | au_writel((1<<8) | (1<<9) | (1<<10) | (1<<11), GPIO2_DIR); | ||
78 | |||
79 | /* turn off power */ | ||
80 | au_writel((au_readl(GPIO2_PINSTATE) & ~(1<<14))|(1<<30), GPIO2_OUTPUT); | ||
81 | #endif | ||
82 | |||
83 | |||
84 | #ifdef CONFIG_PCI | ||
85 | #if defined(__MIPSEB__) | ||
86 | au_writel(0xf | (2<<6) | (1<<4), Au1500_PCI_CFG); | ||
87 | #else | ||
88 | au_writel(0xf, Au1500_PCI_CFG); | ||
89 | #endif | ||
90 | #endif | ||
91 | } | ||
diff --git a/arch/mips/au1000/xxs1500/init.c b/arch/mips/au1000/xxs1500/init.c new file mode 100644 index 000000000000..03f755291b51 --- /dev/null +++ b/arch/mips/au1000/xxs1500/init.c | |||
@@ -0,0 +1,68 @@ | |||
1 | /* | ||
2 | * BRIEF MODULE DESCRIPTION | ||
3 | * XXS1500 board setup | ||
4 | * | ||
5 | * Copyright 2003 MontaVista Software Inc. | ||
6 | * Author: MontaVista Software, Inc. | ||
7 | * ppopov@mvista.com or source@mvista.com | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
15 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
16 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
17 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
18 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
19 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
20 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
21 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
22 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
23 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
24 | * | ||
25 | * You should have received a copy of the GNU General Public License along | ||
26 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
27 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
28 | */ | ||
29 | #include <linux/init.h> | ||
30 | #include <linux/mm.h> | ||
31 | #include <linux/sched.h> | ||
32 | #include <linux/bootmem.h> | ||
33 | #include <asm/addrspace.h> | ||
34 | #include <asm/bootinfo.h> | ||
35 | #include <linux/string.h> | ||
36 | #include <linux/kernel.h> | ||
37 | |||
38 | int prom_argc; | ||
39 | char **prom_argv, **prom_envp; | ||
40 | extern void __init prom_init_cmdline(void); | ||
41 | extern char *prom_getenv(char *envname); | ||
42 | |||
43 | const char *get_system_type(void) | ||
44 | { | ||
45 | return "XXS1500"; | ||
46 | } | ||
47 | |||
48 | void __init prom_init(void) | ||
49 | { | ||
50 | unsigned char *memsize_str; | ||
51 | unsigned long memsize; | ||
52 | |||
53 | prom_argc = fw_arg0; | ||
54 | prom_argv = (char **) fw_arg1; | ||
55 | prom_envp = (char **) fw_arg2; | ||
56 | |||
57 | mips_machgroup = MACH_GROUP_ALCHEMY; | ||
58 | mips_machtype = MACH_XXS1500; /* set the platform # */ | ||
59 | |||
60 | prom_init_cmdline(); | ||
61 | |||
62 | memsize_str = prom_getenv("memsize"); | ||
63 | if (!memsize_str) | ||
64 | memsize = 0x04000000; | ||
65 | else | ||
66 | memsize = simple_strtol(memsize_str, NULL, 0); | ||
67 | add_memory_region(0, memsize, BOOT_MEM_RAM); | ||
68 | } | ||
diff --git a/arch/mips/au1000/xxs1500/irqmap.c b/arch/mips/au1000/xxs1500/irqmap.c new file mode 100644 index 000000000000..954800a0ab52 --- /dev/null +++ b/arch/mips/au1000/xxs1500/irqmap.c | |||
@@ -0,0 +1,66 @@ | |||
1 | /* | ||
2 | * BRIEF MODULE DESCRIPTION | ||
3 | * Au1xxx irq map table | ||
4 | * | ||
5 | * Copyright 2003 Embedded Edge, LLC | ||
6 | * dan@embeddededge.com | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | * | ||
13 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED | ||
14 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF | ||
15 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN | ||
16 | * NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, | ||
17 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT | ||
18 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF | ||
19 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON | ||
20 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
21 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF | ||
22 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
23 | * | ||
24 | * You should have received a copy of the GNU General Public License along | ||
25 | * with this program; if not, write to the Free Software Foundation, Inc., | ||
26 | * 675 Mass Ave, Cambridge, MA 02139, USA. | ||
27 | */ | ||
28 | #include <linux/errno.h> | ||
29 | #include <linux/init.h> | ||
30 | #include <linux/irq.h> | ||
31 | #include <linux/kernel_stat.h> | ||
32 | #include <linux/module.h> | ||
33 | #include <linux/signal.h> | ||
34 | #include <linux/sched.h> | ||
35 | #include <linux/types.h> | ||
36 | #include <linux/interrupt.h> | ||
37 | #include <linux/ioport.h> | ||
38 | #include <linux/timex.h> | ||
39 | #include <linux/slab.h> | ||
40 | #include <linux/random.h> | ||
41 | #include <linux/delay.h> | ||
42 | #include <linux/bitops.h> | ||
43 | |||
44 | #include <asm/bootinfo.h> | ||
45 | #include <asm/io.h> | ||
46 | #include <asm/mipsregs.h> | ||
47 | #include <asm/system.h> | ||
48 | #include <asm/au1000.h> | ||
49 | |||
50 | au1xxx_irq_map_t au1xxx_irq_map[] = { | ||
51 | { AU1500_GPIO_204, INTC_INT_HIGH_LEVEL, 0}, | ||
52 | { AU1500_GPIO_201, INTC_INT_LOW_LEVEL, 0 }, | ||
53 | { AU1500_GPIO_202, INTC_INT_LOW_LEVEL, 0 }, | ||
54 | { AU1500_GPIO_203, INTC_INT_LOW_LEVEL, 0 }, | ||
55 | { AU1500_GPIO_205, INTC_INT_LOW_LEVEL, 0 }, | ||
56 | { AU1500_GPIO_207, INTC_INT_LOW_LEVEL, 0 }, | ||
57 | |||
58 | { AU1000_GPIO_0, INTC_INT_LOW_LEVEL, 0 }, | ||
59 | { AU1000_GPIO_1, INTC_INT_LOW_LEVEL, 0 }, | ||
60 | { AU1000_GPIO_2, INTC_INT_LOW_LEVEL, 0 }, | ||
61 | { AU1000_GPIO_3, INTC_INT_LOW_LEVEL, 0 }, | ||
62 | { AU1000_GPIO_4, INTC_INT_LOW_LEVEL, 0 }, /* CF interrupt */ | ||
63 | { AU1000_GPIO_5, INTC_INT_LOW_LEVEL, 0 }, | ||
64 | }; | ||
65 | |||
66 | int au1xxx_nr_irqs = sizeof(au1xxx_irq_map)/sizeof(au1xxx_irq_map_t); | ||