diff options
| -rw-r--r-- | arch/arm/mach-mx5/Kconfig | 21 | ||||
| -rw-r--r-- | arch/arm/mach-mx5/Makefile | 2 | ||||
| -rw-r--r-- | arch/arm/mach-mx5/board-cpuimx51.c | 293 | ||||
| -rw-r--r-- | arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c | 200 | ||||
| -rw-r--r-- | arch/arm/plat-mxc/include/mach/eukrea-baseboards.h | 4 |
5 files changed, 519 insertions, 1 deletions
diff --git a/arch/arm/mach-mx5/Kconfig b/arch/arm/mach-mx5/Kconfig index 6ef34289382b..0848db5dd364 100644 --- a/arch/arm/mach-mx5/Kconfig +++ b/arch/arm/mach-mx5/Kconfig | |||
| @@ -21,4 +21,25 @@ config MACH_MX51_3DS | |||
| 21 | help | 21 | help |
| 22 | Include support for MX51PDK (3DS) platform. This includes specific | 22 | Include support for MX51PDK (3DS) platform. This includes specific |
| 23 | configurations for the board and its peripherals. | 23 | configurations for the board and its peripherals. |
| 24 | |||
| 25 | config MACH_EUKREA_CPUIMX51 | ||
| 26 | bool "Support Eukrea CPUIMX51 module" | ||
| 27 | help | ||
| 28 | Include support for Eukrea CPUIMX51 platform. This includes | ||
| 29 | specific configurations for the module and its peripherals. | ||
| 30 | |||
| 31 | choice | ||
| 32 | prompt "Baseboard" | ||
| 33 | depends on MACH_EUKREA_CPUIMX51 | ||
| 34 | default MACH_EUKREA_MBIMX51_BASEBOARD | ||
| 35 | |||
| 36 | config MACH_EUKREA_MBIMX51_BASEBOARD | ||
| 37 | prompt "Eukrea MBIMX51 development board" | ||
| 38 | bool | ||
| 39 | help | ||
| 40 | This adds board specific devices that can be found on Eukrea's | ||
| 41 | MBIMX51 evaluation board. | ||
| 42 | |||
| 43 | endchoice | ||
| 44 | |||
| 24 | endif | 45 | endif |
diff --git a/arch/arm/mach-mx5/Makefile b/arch/arm/mach-mx5/Makefile index c757c592bb02..86c66e7f52f3 100644 --- a/arch/arm/mach-mx5/Makefile +++ b/arch/arm/mach-mx5/Makefile | |||
| @@ -7,3 +7,5 @@ obj-y := cpu.o mm.o clock-mx51.o devices.o | |||
| 7 | 7 | ||
| 8 | obj-$(CONFIG_MACH_MX51_BABBAGE) += board-mx51_babbage.o | 8 | obj-$(CONFIG_MACH_MX51_BABBAGE) += board-mx51_babbage.o |
| 9 | obj-$(CONFIG_MACH_MX51_3DS) += board-mx51_3ds.o | 9 | obj-$(CONFIG_MACH_MX51_3DS) += board-mx51_3ds.o |
| 10 | obj-$(CONFIG_MACH_EUKREA_CPUIMX51) += board-cpuimx51.o | ||
| 11 | obj-$(CONFIG_MACH_EUKREA_MBIMX51_BASEBOARD) += eukrea_mbimx51-baseboard.o | ||
diff --git a/arch/arm/mach-mx5/board-cpuimx51.c b/arch/arm/mach-mx5/board-cpuimx51.c new file mode 100644 index 000000000000..623607a20f57 --- /dev/null +++ b/arch/arm/mach-mx5/board-cpuimx51.c | |||
| @@ -0,0 +1,293 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * Copyright (C) 2010 Eric Bénard <eric@eukrea.com> | ||
| 4 | * | ||
| 5 | * based on board-mx51_babbage.c which is | ||
| 6 | * Copyright 2009 Freescale Semiconductor, Inc. All Rights Reserved. | ||
| 7 | * Copyright (C) 2009-2010 Amit Kucheria <amit.kucheria@canonical.com> | ||
| 8 | * | ||
| 9 | * The code contained herein is licensed under the GNU General Public | ||
| 10 | * License. You may obtain a copy of the GNU General Public License | ||
| 11 | * Version 2 or later at the following locations: | ||
| 12 | * | ||
| 13 | * http://www.opensource.org/licenses/gpl-license.html | ||
| 14 | * http://www.gnu.org/copyleft/gpl.html | ||
| 15 | */ | ||
| 16 | |||
| 17 | #include <linux/init.h> | ||
| 18 | #include <linux/platform_device.h> | ||
| 19 | #include <linux/serial_8250.h> | ||
| 20 | #include <linux/i2c.h> | ||
| 21 | #include <linux/gpio.h> | ||
| 22 | #include <linux/delay.h> | ||
| 23 | #include <linux/io.h> | ||
| 24 | #include <linux/interrupt.h> | ||
| 25 | #include <linux/irq.h> | ||
| 26 | #include <linux/fsl_devices.h> | ||
| 27 | |||
| 28 | #include <mach/eukrea-baseboards.h> | ||
| 29 | #include <mach/common.h> | ||
| 30 | #include <mach/hardware.h> | ||
| 31 | #include <mach/imx-uart.h> | ||
| 32 | #include <mach/iomux-mx51.h> | ||
| 33 | #include <mach/i2c.h> | ||
| 34 | #include <mach/mxc_ehci.h> | ||
| 35 | |||
| 36 | #include <asm/irq.h> | ||
| 37 | #include <asm/setup.h> | ||
| 38 | #include <asm/mach-types.h> | ||
| 39 | #include <asm/mach/arch.h> | ||
| 40 | #include <asm/mach/time.h> | ||
| 41 | |||
| 42 | #include "devices.h" | ||
| 43 | |||
| 44 | #define CPUIMX51_USBH1_STP (0*32 + 27) | ||
| 45 | #define CPUIMX51_QUARTA_GPIO (2*32 + 28) | ||
| 46 | #define CPUIMX51_QUARTB_GPIO (2*32 + 25) | ||
| 47 | #define CPUIMX51_QUARTC_GPIO (2*32 + 26) | ||
| 48 | #define CPUIMX51_QUARTD_GPIO (2*32 + 27) | ||
| 49 | #define CPUIMX51_QUARTA_IRQ (MXC_INTERNAL_IRQS + CPUIMX51_QUARTA_GPIO) | ||
| 50 | #define CPUIMX51_QUARTB_IRQ (MXC_INTERNAL_IRQS + CPUIMX51_QUARTB_GPIO) | ||
| 51 | #define CPUIMX51_QUARTC_IRQ (MXC_INTERNAL_IRQS + CPUIMX51_QUARTC_GPIO) | ||
| 52 | #define CPUIMX51_QUARTD_IRQ (MXC_INTERNAL_IRQS + CPUIMX51_QUARTD_GPIO) | ||
| 53 | #define CPUIMX51_QUART_XTAL 14745600 | ||
| 54 | #define CPUIMX51_QUART_REGSHIFT 17 | ||
| 55 | |||
| 56 | /* USB_CTRL_1 */ | ||
| 57 | #define MX51_USB_CTRL_1_OFFSET 0x10 | ||
| 58 | #define MX51_USB_CTRL_UH1_EXT_CLK_EN (1 << 25) | ||
| 59 | |||
| 60 | #define MX51_USB_PLLDIV_12_MHZ 0x00 | ||
| 61 | #define MX51_USB_PLL_DIV_19_2_MHZ 0x01 | ||
| 62 | #define MX51_USB_PLL_DIV_24_MHZ 0x02 | ||
| 63 | |||
| 64 | #if defined(CONFIG_SERIAL_8250) || defined(CONFIG_SERIAL_8250_MODULE) | ||
| 65 | static struct plat_serial8250_port serial_platform_data[] = { | ||
| 66 | { | ||
| 67 | .mapbase = (unsigned long)(MX51_CS1_BASE_ADDR + 0x400000), | ||
| 68 | .irq = CPUIMX51_QUARTA_IRQ, | ||
| 69 | .irqflags = IRQF_TRIGGER_HIGH, | ||
| 70 | .uartclk = CPUIMX51_QUART_XTAL, | ||
| 71 | .regshift = CPUIMX51_QUART_REGSHIFT, | ||
| 72 | .iotype = UPIO_MEM, | ||
| 73 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, | ||
| 74 | }, { | ||
| 75 | .mapbase = (unsigned long)(MX51_CS1_BASE_ADDR + 0x800000), | ||
| 76 | .irq = CPUIMX51_QUARTB_IRQ, | ||
| 77 | .irqflags = IRQF_TRIGGER_HIGH, | ||
| 78 | .uartclk = CPUIMX51_QUART_XTAL, | ||
| 79 | .regshift = CPUIMX51_QUART_REGSHIFT, | ||
| 80 | .iotype = UPIO_MEM, | ||
| 81 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, | ||
| 82 | }, { | ||
| 83 | .mapbase = (unsigned long)(MX51_CS1_BASE_ADDR + 0x1000000), | ||
| 84 | .irq = CPUIMX51_QUARTC_IRQ, | ||
| 85 | .irqflags = IRQF_TRIGGER_HIGH, | ||
| 86 | .uartclk = CPUIMX51_QUART_XTAL, | ||
| 87 | .regshift = CPUIMX51_QUART_REGSHIFT, | ||
| 88 | .iotype = UPIO_MEM, | ||
| 89 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, | ||
| 90 | }, { | ||
| 91 | .mapbase = (unsigned long)(MX51_CS1_BASE_ADDR + 0x2000000), | ||
| 92 | .irq = CPUIMX51_QUARTD_IRQ, | ||
| 93 | .irqflags = IRQF_TRIGGER_HIGH, | ||
| 94 | .uartclk = CPUIMX51_QUART_XTAL, | ||
| 95 | .regshift = CPUIMX51_QUART_REGSHIFT, | ||
| 96 | .iotype = UPIO_MEM, | ||
| 97 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, | ||
| 98 | }, { | ||
| 99 | } | ||
| 100 | }; | ||
| 101 | |||
| 102 | static struct platform_device serial_device = { | ||
| 103 | .name = "serial8250", | ||
| 104 | .id = 0, | ||
| 105 | .dev = { | ||
| 106 | .platform_data = serial_platform_data, | ||
| 107 | }, | ||
| 108 | }; | ||
| 109 | #endif | ||
| 110 | |||
| 111 | static struct platform_device *devices[] __initdata = { | ||
| 112 | &mxc_fec_device, | ||
| 113 | #if defined(CONFIG_SERIAL_8250) || defined(CONFIG_SERIAL_8250_MODULE) | ||
| 114 | &serial_device, | ||
| 115 | #endif | ||
| 116 | }; | ||
| 117 | |||
| 118 | static struct pad_desc eukrea_cpuimx51_pads[] = { | ||
| 119 | /* UART1 */ | ||
| 120 | MX51_PAD_UART1_RXD__UART1_RXD, | ||
| 121 | MX51_PAD_UART1_TXD__UART1_TXD, | ||
| 122 | MX51_PAD_UART1_RTS__UART1_RTS, | ||
| 123 | MX51_PAD_UART1_CTS__UART1_CTS, | ||
| 124 | |||
| 125 | /* I2C2 */ | ||
| 126 | MX51_PAD_GPIO_1_2__I2C2_SCL, | ||
| 127 | MX51_PAD_GPIO_1_3__I2C2_SDA, | ||
| 128 | MX51_PAD_NANDF_D10__GPIO_3_30, | ||
| 129 | |||
| 130 | /* QUART IRQ */ | ||
| 131 | MX51_PAD_NANDF_D15__GPIO_3_25, | ||
| 132 | MX51_PAD_NANDF_D14__GPIO_3_26, | ||
| 133 | MX51_PAD_NANDF_D13__GPIO_3_27, | ||
| 134 | MX51_PAD_NANDF_D12__GPIO_3_28, | ||
| 135 | |||
| 136 | /* USB HOST1 */ | ||
| 137 | MX51_PAD_USBH1_CLK__USBH1_CLK, | ||
| 138 | MX51_PAD_USBH1_DIR__USBH1_DIR, | ||
| 139 | MX51_PAD_USBH1_NXT__USBH1_NXT, | ||
| 140 | MX51_PAD_USBH1_DATA0__USBH1_DATA0, | ||
| 141 | MX51_PAD_USBH1_DATA1__USBH1_DATA1, | ||
| 142 | MX51_PAD_USBH1_DATA2__USBH1_DATA2, | ||
| 143 | MX51_PAD_USBH1_DATA3__USBH1_DATA3, | ||
| 144 | MX51_PAD_USBH1_DATA4__USBH1_DATA4, | ||
| 145 | MX51_PAD_USBH1_DATA5__USBH1_DATA5, | ||
| 146 | MX51_PAD_USBH1_DATA6__USBH1_DATA6, | ||
| 147 | MX51_PAD_USBH1_DATA7__USBH1_DATA7, | ||
| 148 | MX51_PAD_USBH1_STP__USBH1_STP, | ||
| 149 | }; | ||
| 150 | |||
| 151 | static struct imxuart_platform_data uart_pdata = { | ||
| 152 | .flags = IMXUART_HAVE_RTSCTS, | ||
| 153 | }; | ||
| 154 | |||
| 155 | static struct imxi2c_platform_data eukrea_cpuimx51_i2c_data = { | ||
| 156 | .bitrate = 100000, | ||
| 157 | }; | ||
| 158 | |||
| 159 | static struct i2c_board_info eukrea_cpuimx51_i2c_devices[] = { | ||
| 160 | { | ||
| 161 | I2C_BOARD_INFO("pcf8563", 0x51), | ||
| 162 | }, | ||
| 163 | }; | ||
| 164 | |||
| 165 | /* This function is board specific as the bit mask for the plldiv will also | ||
| 166 | be different for other Freescale SoCs, thus a common bitmask is not | ||
| 167 | possible and cannot get place in /plat-mxc/ehci.c.*/ | ||
| 168 | static int initialize_otg_port(struct platform_device *pdev) | ||
| 169 | { | ||
| 170 | u32 v; | ||
| 171 | void __iomem *usb_base; | ||
| 172 | void __iomem *usbother_base; | ||
| 173 | |||
| 174 | usb_base = ioremap(MX51_OTG_BASE_ADDR, SZ_4K); | ||
| 175 | usbother_base = usb_base + MX5_USBOTHER_REGS_OFFSET; | ||
| 176 | |||
| 177 | /* Set the PHY clock to 19.2MHz */ | ||
| 178 | v = __raw_readl(usbother_base + MXC_USB_PHY_CTR_FUNC2_OFFSET); | ||
| 179 | v &= ~MX5_USB_UTMI_PHYCTRL1_PLLDIV_MASK; | ||
| 180 | v |= MX51_USB_PLL_DIV_19_2_MHZ; | ||
| 181 | __raw_writel(v, usbother_base + MXC_USB_PHY_CTR_FUNC2_OFFSET); | ||
| 182 | iounmap(usb_base); | ||
| 183 | return 0; | ||
| 184 | } | ||
| 185 | |||
| 186 | static int initialize_usbh1_port(struct platform_device *pdev) | ||
| 187 | { | ||
| 188 | u32 v; | ||
| 189 | void __iomem *usb_base; | ||
| 190 | void __iomem *usbother_base; | ||
| 191 | |||
| 192 | usb_base = ioremap(MX51_OTG_BASE_ADDR, SZ_4K); | ||
| 193 | usbother_base = usb_base + MX5_USBOTHER_REGS_OFFSET; | ||
| 194 | |||
| 195 | /* The clock for the USBH1 ULPI port will come externally from the PHY. */ | ||
| 196 | v = __raw_readl(usbother_base + MX51_USB_CTRL_1_OFFSET); | ||
| 197 | __raw_writel(v | MX51_USB_CTRL_UH1_EXT_CLK_EN, usbother_base + MX51_USB_CTRL_1_OFFSET); | ||
| 198 | iounmap(usb_base); | ||
| 199 | return 0; | ||
| 200 | } | ||
| 201 | |||
| 202 | static struct mxc_usbh_platform_data dr_utmi_config = { | ||
| 203 | .init = initialize_otg_port, | ||
| 204 | .portsc = MXC_EHCI_UTMI_16BIT, | ||
| 205 | .flags = MXC_EHCI_INTERNAL_PHY, | ||
| 206 | }; | ||
| 207 | |||
| 208 | static struct fsl_usb2_platform_data usb_pdata = { | ||
| 209 | .operating_mode = FSL_USB2_DR_DEVICE, | ||
| 210 | .phy_mode = FSL_USB2_PHY_UTMI_WIDE, | ||
| 211 | }; | ||
| 212 | |||
| 213 | static struct mxc_usbh_platform_data usbh1_config = { | ||
| 214 | .init = initialize_usbh1_port, | ||
| 215 | .portsc = MXC_EHCI_MODE_ULPI, | ||
| 216 | .flags = (MXC_EHCI_POWER_PINS_ENABLED | MXC_EHCI_ITC_NO_THRESHOLD), | ||
| 217 | }; | ||
| 218 | |||
| 219 | static int otg_mode_host; | ||
| 220 | |||
| 221 | static int __init eukrea_cpuimx51_otg_mode(char *options) | ||
| 222 | { | ||
| 223 | if (!strcmp(options, "host")) | ||
| 224 | otg_mode_host = 1; | ||
| 225 | else if (!strcmp(options, "device")) | ||
| 226 | otg_mode_host = 0; | ||
| 227 | else | ||
| 228 | pr_info("otg_mode neither \"host\" nor \"device\". " | ||
| 229 | "Defaulting to device\n"); | ||
| 230 | return 0; | ||
| 231 | } | ||
| 232 | __setup("otg_mode=", eukrea_cpuimx51_otg_mode); | ||
| 233 | |||
| 234 | /* | ||
| 235 | * Board specific initialization. | ||
| 236 | */ | ||
| 237 | static void __init eukrea_cpuimx51_init(void) | ||
| 238 | { | ||
| 239 | mxc_iomux_v3_setup_multiple_pads(eukrea_cpuimx51_pads, | ||
| 240 | ARRAY_SIZE(eukrea_cpuimx51_pads)); | ||
| 241 | |||
| 242 | mxc_register_device(&mxc_uart_device0, &uart_pdata); | ||
| 243 | gpio_request(CPUIMX51_QUARTA_GPIO, "quarta_irq"); | ||
| 244 | gpio_direction_input(CPUIMX51_QUARTA_GPIO); | ||
| 245 | gpio_free(CPUIMX51_QUARTA_GPIO); | ||
| 246 | gpio_request(CPUIMX51_QUARTB_GPIO, "quartb_irq"); | ||
| 247 | gpio_direction_input(CPUIMX51_QUARTB_GPIO); | ||
| 248 | gpio_free(CPUIMX51_QUARTB_GPIO); | ||
| 249 | gpio_request(CPUIMX51_QUARTC_GPIO, "quartc_irq"); | ||
| 250 | gpio_direction_input(CPUIMX51_QUARTC_GPIO); | ||
| 251 | gpio_free(CPUIMX51_QUARTC_GPIO); | ||
| 252 | gpio_request(CPUIMX51_QUARTD_GPIO, "quartd_irq"); | ||
| 253 | gpio_direction_input(CPUIMX51_QUARTD_GPIO); | ||
| 254 | gpio_free(CPUIMX51_QUARTD_GPIO); | ||
| 255 | |||
| 256 | platform_add_devices(devices, ARRAY_SIZE(devices)); | ||
| 257 | |||
| 258 | mxc_register_device(&mxc_i2c_device1, &eukrea_cpuimx51_i2c_data); | ||
| 259 | i2c_register_board_info(1, eukrea_cpuimx51_i2c_devices, | ||
| 260 | ARRAY_SIZE(eukrea_cpuimx51_i2c_devices)); | ||
| 261 | |||
| 262 | if (otg_mode_host) | ||
| 263 | mxc_register_device(&mxc_usbdr_host_device, &dr_utmi_config); | ||
| 264 | else { | ||
| 265 | initialize_otg_port(NULL); | ||
| 266 | mxc_register_device(&mxc_usbdr_udc_device, &usb_pdata); | ||
| 267 | } | ||
| 268 | mxc_register_device(&mxc_usbh1_device, &usbh1_config); | ||
| 269 | |||
| 270 | #ifdef CONFIG_MACH_EUKREA_MBIMX51_BASEBOARD | ||
| 271 | eukrea_mbimx51_baseboard_init(); | ||
| 272 | #endif | ||
| 273 | } | ||
| 274 | |||
| 275 | static void __init eukrea_cpuimx51_timer_init(void) | ||
| 276 | { | ||
| 277 | mx51_clocks_init(32768, 24000000, 22579200, 0); | ||
| 278 | } | ||
| 279 | |||
| 280 | static struct sys_timer mxc_timer = { | ||
| 281 | .init = eukrea_cpuimx51_timer_init, | ||
| 282 | }; | ||
| 283 | |||
| 284 | MACHINE_START(EUKREA_CPUIMX51, "Eukrea CPUIMX51 Module") | ||
| 285 | /* Maintainer: Eric Bénard <eric@eukrea.com> */ | ||
| 286 | .phys_io = MX51_AIPS1_BASE_ADDR, | ||
| 287 | .io_pg_offst = ((MX51_AIPS1_BASE_ADDR_VIRT) >> 18) & 0xfffc, | ||
| 288 | .boot_params = PHYS_OFFSET + 0x100, | ||
| 289 | .map_io = mx51_map_io, | ||
| 290 | .init_irq = mx51_init_irq, | ||
| 291 | .init_machine = eukrea_cpuimx51_init, | ||
| 292 | .timer = &mxc_timer, | ||
| 293 | MACHINE_END | ||
diff --git a/arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c b/arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c new file mode 100644 index 000000000000..ffa93d1d6ef8 --- /dev/null +++ b/arch/arm/mach-mx5/eukrea_mbimx51-baseboard.c | |||
| @@ -0,0 +1,200 @@ | |||
| 1 | /* | ||
| 2 | * | ||
| 3 | * Copyright (C) 2010 Eric Bénard <eric@eukrea.com> | ||
| 4 | * | ||
| 5 | * The code contained herein is licensed under the GNU General Public | ||
| 6 | * License. You may obtain a copy of the GNU General Public License | ||
| 7 | * Version 2 or later at the following locations: | ||
| 8 | * | ||
| 9 | * http://www.opensource.org/licenses/gpl-license.html | ||
| 10 | * http://www.gnu.org/copyleft/gpl.html | ||
| 11 | */ | ||
| 12 | |||
| 13 | #include <linux/init.h> | ||
| 14 | #include <linux/platform_device.h> | ||
| 15 | #include <linux/serial_8250.h> | ||
| 16 | #include <linux/i2c.h> | ||
| 17 | #include <linux/gpio.h> | ||
| 18 | #include <linux/io.h> | ||
| 19 | #include <linux/interrupt.h> | ||
| 20 | #include <linux/irq.h> | ||
| 21 | #include <linux/fsl_devices.h> | ||
| 22 | #include <linux/i2c/tsc2007.h> | ||
| 23 | #include <linux/leds.h> | ||
| 24 | #include <linux/input/matrix_keypad.h> | ||
| 25 | |||
| 26 | #include <mach/common.h> | ||
| 27 | #include <mach/hardware.h> | ||
| 28 | #include <mach/imx-uart.h> | ||
| 29 | #include <mach/iomux-mx51.h> | ||
| 30 | |||
| 31 | #include <asm/mach/arch.h> | ||
| 32 | |||
| 33 | #include "devices.h" | ||
| 34 | |||
| 35 | #define MBIMX51_TSC2007_GPIO (2*32 + 30) | ||
| 36 | #define MBIMX51_TSC2007_IRQ (MXC_INTERNAL_IRQS + MBIMX51_TSC2007_GPIO) | ||
| 37 | #define MBIMX51_LED0 (2*32 + 5) | ||
| 38 | #define MBIMX51_LED1 (2*32 + 6) | ||
| 39 | #define MBIMX51_LED2 (2*32 + 7) | ||
| 40 | #define MBIMX51_LED3 (2*32 + 8) | ||
| 41 | |||
| 42 | static struct gpio_led mbimx51_leds[] = { | ||
| 43 | { | ||
| 44 | .name = "led0", | ||
| 45 | .default_trigger = "heartbeat", | ||
| 46 | .active_low = 1, | ||
| 47 | .gpio = MBIMX51_LED0, | ||
| 48 | }, | ||
| 49 | { | ||
| 50 | .name = "led1", | ||
| 51 | .default_trigger = "nand-disk", | ||
| 52 | .active_low = 1, | ||
| 53 | .gpio = MBIMX51_LED1, | ||
| 54 | }, | ||
| 55 | { | ||
| 56 | .name = "led2", | ||
| 57 | .default_trigger = "mmc0", | ||
| 58 | .active_low = 1, | ||
| 59 | .gpio = MBIMX51_LED2, | ||
| 60 | }, | ||
| 61 | { | ||
| 62 | .name = "led3", | ||
| 63 | .default_trigger = "default-on", | ||
| 64 | .active_low = 1, | ||
| 65 | .gpio = MBIMX51_LED3, | ||
| 66 | }, | ||
| 67 | }; | ||
| 68 | |||
| 69 | static struct gpio_led_platform_data mbimx51_leds_info = { | ||
| 70 | .leds = mbimx51_leds, | ||
| 71 | .num_leds = ARRAY_SIZE(mbimx51_leds), | ||
| 72 | }; | ||
| 73 | |||
| 74 | static struct platform_device mbimx51_leds_gpio = { | ||
| 75 | .name = "leds-gpio", | ||
| 76 | .id = -1, | ||
| 77 | .dev = { | ||
| 78 | .platform_data = &mbimx51_leds_info, | ||
| 79 | }, | ||
| 80 | }; | ||
| 81 | |||
| 82 | static struct platform_device *devices[] __initdata = { | ||
| 83 | &mbimx51_leds_gpio, | ||
| 84 | }; | ||
| 85 | |||
| 86 | static struct pad_desc mbimx51_pads[] = { | ||
| 87 | /* UART2 */ | ||
| 88 | MX51_PAD_UART2_RXD__UART2_RXD, | ||
| 89 | MX51_PAD_UART2_TXD__UART2_TXD, | ||
| 90 | |||
| 91 | /* UART3 */ | ||
| 92 | MX51_PAD_UART3_RXD__UART3_RXD, | ||
| 93 | MX51_PAD_UART3_TXD__UART3_TXD, | ||
| 94 | MX51_PAD_KEY_COL4__UART3_RTS, | ||
| 95 | MX51_PAD_KEY_COL5__UART3_CTS, | ||
| 96 | |||
| 97 | /* TSC2007 IRQ */ | ||
| 98 | MX51_PAD_NANDF_D10__GPIO_3_30, | ||
| 99 | |||
| 100 | /* LEDS */ | ||
| 101 | MX51_PAD_DISPB2_SER_DIN__GPIO_3_5, | ||
| 102 | MX51_PAD_DISPB2_SER_DIO__GPIO_3_6, | ||
| 103 | MX51_PAD_DISPB2_SER_CLK__GPIO_3_7, | ||
| 104 | MX51_PAD_DISPB2_SER_RS__GPIO_3_8, | ||
| 105 | |||
| 106 | /* KPP */ | ||
| 107 | MX51_PAD_KEY_ROW0__KEY_ROW0, | ||
| 108 | MX51_PAD_KEY_ROW1__KEY_ROW1, | ||
| 109 | MX51_PAD_KEY_ROW2__KEY_ROW2, | ||
| 110 | MX51_PAD_KEY_ROW3__KEY_ROW3, | ||
| 111 | MX51_PAD_KEY_COL0__KEY_COL0, | ||
| 112 | MX51_PAD_KEY_COL1__KEY_COL1, | ||
| 113 | MX51_PAD_KEY_COL2__KEY_COL2, | ||
| 114 | MX51_PAD_KEY_COL3__KEY_COL3, | ||
| 115 | }; | ||
| 116 | |||
| 117 | static struct imxuart_platform_data uart_pdata = { | ||
| 118 | .flags = IMXUART_HAVE_RTSCTS, | ||
| 119 | }; | ||
| 120 | |||
| 121 | static int mbimx51_keymap[] = { | ||
| 122 | KEY(0, 0, KEY_1), | ||
| 123 | KEY(0, 1, KEY_2), | ||
| 124 | KEY(0, 2, KEY_3), | ||
| 125 | KEY(0, 3, KEY_UP), | ||
| 126 | |||
| 127 | KEY(1, 0, KEY_4), | ||
| 128 | KEY(1, 1, KEY_5), | ||
| 129 | KEY(1, 2, KEY_6), | ||
| 130 | KEY(1, 3, KEY_LEFT), | ||
| 131 | |||
| 132 | KEY(2, 0, KEY_7), | ||
| 133 | KEY(2, 1, KEY_8), | ||
| 134 | KEY(2, 2, KEY_9), | ||
| 135 | KEY(2, 3, KEY_RIGHT), | ||
| 136 | |||
| 137 | KEY(3, 0, KEY_0), | ||
| 138 | KEY(3, 1, KEY_DOWN), | ||
| 139 | KEY(3, 2, KEY_ESC), | ||
| 140 | KEY(3, 3, KEY_ENTER), | ||
| 141 | }; | ||
| 142 | |||
| 143 | static struct matrix_keymap_data mbimx51_map_data = { | ||
| 144 | .keymap = mbimx51_keymap, | ||
| 145 | .keymap_size = ARRAY_SIZE(mbimx51_keymap), | ||
| 146 | }; | ||
| 147 | |||
| 148 | static int tsc2007_get_pendown_state(void) | ||
| 149 | { | ||
| 150 | return !gpio_get_value(MBIMX51_TSC2007_GPIO); | ||
| 151 | } | ||
| 152 | |||
| 153 | struct tsc2007_platform_data tsc2007_data = { | ||
| 154 | .model = 2007, | ||
| 155 | .x_plate_ohms = 180, | ||
| 156 | .get_pendown_state = tsc2007_get_pendown_state, | ||
| 157 | }; | ||
| 158 | |||
| 159 | static struct i2c_board_info mbimx51_i2c_devices[] = { | ||
| 160 | { | ||
| 161 | I2C_BOARD_INFO("tsc2007", 0x48), | ||
| 162 | .irq = MBIMX51_TSC2007_IRQ, | ||
| 163 | .platform_data = &tsc2007_data, | ||
| 164 | }, | ||
| 165 | }; | ||
| 166 | |||
| 167 | /* | ||
| 168 | * baseboard initialization. | ||
| 169 | */ | ||
| 170 | void __init eukrea_mbimx51_baseboard_init(void) | ||
| 171 | { | ||
| 172 | mxc_iomux_v3_setup_multiple_pads(mbimx51_pads, | ||
| 173 | ARRAY_SIZE(mbimx51_pads)); | ||
| 174 | |||
| 175 | mxc_register_device(&mxc_uart_device1, NULL); | ||
| 176 | mxc_register_device(&mxc_uart_device2, &uart_pdata); | ||
| 177 | |||
| 178 | gpio_request(MBIMX51_LED0, "LED0"); | ||
| 179 | gpio_direction_output(MBIMX51_LED0, 1); | ||
| 180 | gpio_free(MBIMX51_LED0); | ||
| 181 | gpio_request(MBIMX51_LED1, "LED1"); | ||
| 182 | gpio_direction_output(MBIMX51_LED1, 1); | ||
| 183 | gpio_free(MBIMX51_LED1); | ||
| 184 | gpio_request(MBIMX51_LED2, "LED2"); | ||
| 185 | gpio_direction_output(MBIMX51_LED2, 1); | ||
| 186 | gpio_free(MBIMX51_LED2); | ||
| 187 | gpio_request(MBIMX51_LED3, "LED3"); | ||
| 188 | gpio_direction_output(MBIMX51_LED3, 1); | ||
| 189 | gpio_free(MBIMX51_LED3); | ||
| 190 | |||
| 191 | platform_add_devices(devices, ARRAY_SIZE(devices)); | ||
| 192 | |||
| 193 | mxc_register_device(&mxc_keypad_device, &mbimx51_map_data); | ||
| 194 | |||
| 195 | gpio_request(MBIMX51_TSC2007_GPIO, "tsc2007_irq"); | ||
| 196 | gpio_direction_input(MBIMX51_TSC2007_GPIO); | ||
| 197 | set_irq_type(MBIMX51_TSC2007_IRQ, IRQF_TRIGGER_FALLING); | ||
| 198 | i2c_register_board_info(1, mbimx51_i2c_devices, | ||
| 199 | ARRAY_SIZE(mbimx51_i2c_devices)); | ||
| 200 | } | ||
diff --git a/arch/arm/plat-mxc/include/mach/eukrea-baseboards.h b/arch/arm/plat-mxc/include/mach/eukrea-baseboards.h index 4e7cbe7fe801..634e3f4c454d 100644 --- a/arch/arm/plat-mxc/include/mach/eukrea-baseboards.h +++ b/arch/arm/plat-mxc/include/mach/eukrea-baseboards.h | |||
| @@ -28,17 +28,19 @@ | |||
| 28 | * its own devices, it calls baseboard's init function. | 28 | * its own devices, it calls baseboard's init function. |
| 29 | * TODO: Add your own baseboard init function and call it from | 29 | * TODO: Add your own baseboard init function and call it from |
| 30 | * inside eukrea_cpuimx25_init() eukrea_cpuimx27_init() | 30 | * inside eukrea_cpuimx25_init() eukrea_cpuimx27_init() |
| 31 | * or eukrea_cpuimx35_init(). | 31 | * eukrea_cpuimx35_init() or eukrea_cpuimx51_init(). |
| 32 | * | 32 | * |
| 33 | * This example here is for the development board. Refer | 33 | * This example here is for the development board. Refer |
| 34 | * mach-mx25/eukrea_mbimxsd-baseboard.c for cpuimx25 | 34 | * mach-mx25/eukrea_mbimxsd-baseboard.c for cpuimx25 |
| 35 | * mach-imx/eukrea_mbimx27-baseboard.c for cpuimx27 | 35 | * mach-imx/eukrea_mbimx27-baseboard.c for cpuimx27 |
| 36 | * mach-mx3/eukrea_mbimxsd-baseboard.c for cpuimx35 | 36 | * mach-mx3/eukrea_mbimxsd-baseboard.c for cpuimx35 |
| 37 | * mach-mx5/eukrea_mbimx51-baseboard.c for cpuimx51 | ||
| 37 | */ | 38 | */ |
| 38 | 39 | ||
| 39 | extern void eukrea_mbimx25_baseboard_init(void); | 40 | extern void eukrea_mbimx25_baseboard_init(void); |
| 40 | extern void eukrea_mbimx27_baseboard_init(void); | 41 | extern void eukrea_mbimx27_baseboard_init(void); |
| 41 | extern void eukrea_mbimx35_baseboard_init(void); | 42 | extern void eukrea_mbimx35_baseboard_init(void); |
| 43 | extern void eukrea_mbimx51_baseboard_init(void); | ||
| 42 | 44 | ||
| 43 | #endif | 45 | #endif |
| 44 | 46 | ||
