diff options
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mach-mx3/Makefile | 3 | ||||
-rw-r--r-- | arch/arm/mach-mx3/mx31moboard-devboard.c | 48 | ||||
-rw-r--r-- | arch/arm/mach-mx3/mx31moboard-marxbot.c | 37 | ||||
-rw-r--r-- | arch/arm/mach-mx3/mx31moboard.c | 39 | ||||
-rw-r--r-- | arch/arm/plat-mxc/include/mach/board-mx31moboard.h | 45 |
5 files changed, 154 insertions, 18 deletions
diff --git a/arch/arm/mach-mx3/Makefile b/arch/arm/mach-mx3/Makefile index 5a151540fe83..d50d9878a654 100644 --- a/arch/arm/mach-mx3/Makefile +++ b/arch/arm/mach-mx3/Makefile | |||
@@ -9,4 +9,5 @@ obj-$(CONFIG_MACH_MX31ADS) += mx31ads.o | |||
9 | obj-$(CONFIG_MACH_MX31LITE) += mx31lite.o | 9 | obj-$(CONFIG_MACH_MX31LITE) += mx31lite.o |
10 | obj-$(CONFIG_MACH_PCM037) += pcm037.o | 10 | obj-$(CONFIG_MACH_PCM037) += pcm037.o |
11 | obj-$(CONFIG_MACH_MX31_3DS) += mx31pdk.o | 11 | obj-$(CONFIG_MACH_MX31_3DS) += mx31pdk.o |
12 | obj-$(CONFIG_MACH_MX31MOBOARD) += mx31moboard.o | 12 | obj-$(CONFIG_MACH_MX31MOBOARD) += mx31moboard.o mx31moboard-devboard.o \ |
13 | mx31moboard-marxbot.o | ||
diff --git a/arch/arm/mach-mx3/mx31moboard-devboard.c b/arch/arm/mach-mx3/mx31moboard-devboard.c new file mode 100644 index 000000000000..d080b4add79c --- /dev/null +++ b/arch/arm/mach-mx3/mx31moboard-devboard.c | |||
@@ -0,0 +1,48 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
17 | */ | ||
18 | |||
19 | #include <linux/types.h> | ||
20 | #include <linux/init.h> | ||
21 | |||
22 | #include <linux/platform_device.h> | ||
23 | |||
24 | #include <mach/hardware.h> | ||
25 | #include <mach/common.h> | ||
26 | #include <mach/imx-uart.h> | ||
27 | #include <mach/iomux-mx3.h> | ||
28 | |||
29 | #include "devices.h" | ||
30 | |||
31 | static struct imxuart_platform_data uart_pdata = { | ||
32 | .flags = IMXUART_HAVE_RTSCTS, | ||
33 | }; | ||
34 | |||
35 | static int mxc_uart1_pins[] = { | ||
36 | MX31_PIN_CTS2__CTS2, MX31_PIN_RTS2__RTS2, | ||
37 | MX31_PIN_TXD2__TXD2, MX31_PIN_RXD2__RXD2, | ||
38 | }; | ||
39 | |||
40 | /* | ||
41 | * system init for baseboard usage. Will be called by mx31moboard init. | ||
42 | */ | ||
43 | void __init mx31moboard_devboard_init(void) | ||
44 | { | ||
45 | printk(KERN_INFO "Initializing mx31devboard peripherals\n"); | ||
46 | mxc_iomux_setup_multiple_pins(mxc_uart1_pins, ARRAY_SIZE(mxc_uart1_pins), "uart1"); | ||
47 | mxc_register_device(&mxc_uart_device1, &uart_pdata); | ||
48 | } | ||
diff --git a/arch/arm/mach-mx3/mx31moboard-marxbot.c b/arch/arm/mach-mx3/mx31moboard-marxbot.c new file mode 100644 index 000000000000..9ef9566823fb --- /dev/null +++ b/arch/arm/mach-mx3/mx31moboard-marxbot.c | |||
@@ -0,0 +1,37 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or modify | ||
5 | * it under the terms of the GNU General Public License as published by | ||
6 | * the Free Software Foundation; either version 2 of the License, or | ||
7 | * (at your option) any later version. | ||
8 | * | ||
9 | * This program is distributed in the hope that it will be useful, | ||
10 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
11 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
12 | * GNU General Public License for more details. | ||
13 | * | ||
14 | * You should have received a copy of the GNU General Public License | ||
15 | * along with this program; if not, write to the Free Software | ||
16 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
17 | */ | ||
18 | |||
19 | #include <linux/types.h> | ||
20 | #include <linux/init.h> | ||
21 | |||
22 | #include <linux/platform_device.h> | ||
23 | |||
24 | #include <mach/hardware.h> | ||
25 | #include <mach/common.h> | ||
26 | #include <mach/imx-uart.h> | ||
27 | #include <mach/iomux-mx3.h> | ||
28 | |||
29 | #include "devices.h" | ||
30 | |||
31 | /* | ||
32 | * system init for baseboard usage. Will be called by mx31moboard init. | ||
33 | */ | ||
34 | void __init mx31moboard_marxbot_init(void) | ||
35 | { | ||
36 | printk(KERN_INFO "Initializing mx31marxbot peripherals\n"); | ||
37 | } | ||
diff --git a/arch/arm/mach-mx3/mx31moboard.c b/arch/arm/mach-mx3/mx31moboard.c index f29c8782cffb..2d51739e24bf 100644 --- a/arch/arm/mach-mx3/mx31moboard.c +++ b/arch/arm/mach-mx3/mx31moboard.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <mach/common.h> | 32 | #include <mach/common.h> |
33 | #include <mach/imx-uart.h> | 33 | #include <mach/imx-uart.h> |
34 | #include <mach/iomux-mx3.h> | 34 | #include <mach/iomux-mx3.h> |
35 | #include <mach/board-mx31moboard.h> | ||
35 | 36 | ||
36 | #include "devices.h" | 37 | #include "devices.h" |
37 | 38 | ||
@@ -64,24 +65,17 @@ static struct platform_device *devices[] __initdata = { | |||
64 | }; | 65 | }; |
65 | 66 | ||
66 | static int mxc_uart0_pins[] = { | 67 | static int mxc_uart0_pins[] = { |
67 | MX31_PIN_CTS1__CTS1, | 68 | MX31_PIN_CTS1__CTS1, MX31_PIN_RTS1__RTS1, |
68 | MX31_PIN_RTS1__RTS1, | 69 | MX31_PIN_TXD1__TXD1, MX31_PIN_RXD1__RXD1, |
69 | MX31_PIN_TXD1__TXD1, | ||
70 | MX31_PIN_RXD1__RXD1 | ||
71 | }; | ||
72 | static int mxc_uart1_pins[] = { | ||
73 | MX31_PIN_CTS2__CTS2, | ||
74 | MX31_PIN_RTS2__RTS2, | ||
75 | MX31_PIN_TXD2__TXD2, | ||
76 | MX31_PIN_RXD2__RXD2 | ||
77 | }; | 70 | }; |
78 | static int mxc_uart4_pins[] = { | 71 | static int mxc_uart4_pins[] = { |
79 | MX31_PIN_PC_RST__CTS5, | 72 | MX31_PIN_PC_RST__CTS5, MX31_PIN_PC_VS2__RTS5, |
80 | MX31_PIN_PC_VS2__RTS5, | 73 | MX31_PIN_PC_BVD2__TXD5, MX31_PIN_PC_BVD1__RXD5, |
81 | MX31_PIN_PC_BVD2__TXD5, | ||
82 | MX31_PIN_PC_BVD1__RXD5 | ||
83 | }; | 74 | }; |
84 | 75 | ||
76 | static int mx31moboard_baseboard; | ||
77 | core_param(mx31moboard_baseboard, mx31moboard_baseboard, int, 0444); | ||
78 | |||
85 | /* | 79 | /* |
86 | * Board specific initialization. | 80 | * Board specific initialization. |
87 | */ | 81 | */ |
@@ -92,11 +86,22 @@ static void __init mxc_board_init(void) | |||
92 | mxc_iomux_setup_multiple_pins(mxc_uart0_pins, ARRAY_SIZE(mxc_uart0_pins), "uart0"); | 86 | mxc_iomux_setup_multiple_pins(mxc_uart0_pins, ARRAY_SIZE(mxc_uart0_pins), "uart0"); |
93 | mxc_register_device(&mxc_uart_device0, &uart_pdata); | 87 | mxc_register_device(&mxc_uart_device0, &uart_pdata); |
94 | 88 | ||
95 | mxc_iomux_setup_multiple_pins(mxc_uart1_pins, ARRAY_SIZE(mxc_uart1_pins), "uart1"); | ||
96 | mxc_register_device(&mxc_uart_device1, &uart_pdata); | ||
97 | |||
98 | mxc_iomux_setup_multiple_pins(mxc_uart4_pins, ARRAY_SIZE(mxc_uart4_pins), "uart4"); | 89 | mxc_iomux_setup_multiple_pins(mxc_uart4_pins, ARRAY_SIZE(mxc_uart4_pins), "uart4"); |
99 | mxc_register_device(&mxc_uart_device4, &uart_pdata); | 90 | mxc_register_device(&mxc_uart_device4, &uart_pdata); |
91 | |||
92 | switch (mx31moboard_baseboard) { | ||
93 | case MX31NOBOARD: | ||
94 | break; | ||
95 | case MX31DEVBOARD: | ||
96 | mx31moboard_devboard_init(); | ||
97 | break; | ||
98 | case MX31MARXBOT: | ||
99 | mx31moboard_marxbot_init(); | ||
100 | break; | ||
101 | default: | ||
102 | printk(KERN_ERR "Illegal mx31moboard_baseboard type %d\n", mx31moboard_baseboard); | ||
103 | } | ||
104 | |||
100 | } | 105 | } |
101 | 106 | ||
102 | /* | 107 | /* |
diff --git a/arch/arm/plat-mxc/include/mach/board-mx31moboard.h b/arch/arm/plat-mxc/include/mach/board-mx31moboard.h new file mode 100644 index 000000000000..f8aef1babb75 --- /dev/null +++ b/arch/arm/plat-mxc/include/mach/board-mx31moboard.h | |||
@@ -0,0 +1,45 @@ | |||
1 | /* | ||
2 | * Copyright (C) 2009 Valentin Longchamp, EPFL Mobots group | ||
3 | * | ||
4 | * This program is free software; you can redistribute it and/or | ||
5 | * modify it under the terms of the GNU General Public License | ||
6 | * as published by the Free Software Foundation; either version 2 | ||
7 | * of the License, or (at your option) any later version. | ||
8 | * This program is distributed in the hope that it will be useful, | ||
9 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
10 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
11 | * GNU General Public License for more details. | ||
12 | * | ||
13 | * You should have received a copy of the GNU General Public License | ||
14 | * along with this program; if not, write to the Free Software | ||
15 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
16 | * MA 02110-1301, USA. | ||
17 | */ | ||
18 | |||
19 | #ifndef __ASM_ARCH_MXC_BOARD_MX31MOBOARD_H__ | ||
20 | #define __ASM_ARCH_MXC_BOARD_MX31MOBOARD_H__ | ||
21 | |||
22 | /* mandatory for CONFIG_LL_DEBUG */ | ||
23 | |||
24 | #define MXC_LL_UART_PADDR UART1_BASE_ADDR | ||
25 | #define MXC_LL_UART_VADDR (AIPI_BASE_ADDR_VIRT + 0x0A000) | ||
26 | |||
27 | #ifndef __ASSEMBLY__ | ||
28 | |||
29 | enum mx31moboard_boards { | ||
30 | MX31NOBOARD = 0, | ||
31 | MX31DEVBOARD = 1, | ||
32 | MX31MARXBOT = 2, | ||
33 | }; | ||
34 | |||
35 | /* | ||
36 | * This CPU module needs a baseboard to work. After basic initializing | ||
37 | * its own devices, it calls baseboard's init function. | ||
38 | */ | ||
39 | |||
40 | extern void mx31moboard_devboard_init(void); | ||
41 | extern void mx31moboard_marxbot_init(void); | ||
42 | |||
43 | #endif | ||
44 | |||
45 | #endif /* __ASM_ARCH_MXC_BOARD_MX31MOBOARD_H__ */ | ||