Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 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> |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 26 | |
| 27 | #include <mach/eukrea-baseboards.h> |
| 28 | #include <mach/common.h> |
| 29 | #include <mach/hardware.h> |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 30 | #include <mach/iomux-mx51.h> |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 31 | |
| 32 | #include <asm/irq.h> |
| 33 | #include <asm/setup.h> |
| 34 | #include <asm/mach-types.h> |
| 35 | #include <asm/mach/arch.h> |
| 36 | #include <asm/mach/time.h> |
| 37 | |
Uwe Kleine-König | 04b73b1 | 2010-08-11 22:23:06 +0200 | [diff] [blame] | 38 | #include "devices-imx51.h" |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 39 | |
Arnaud Patard (Rtp) | 96886c4 | 2010-11-26 15:20:52 +0100 | [diff] [blame] | 40 | #define CPUIMX51_USBH1_STP IMX_GPIO_NR(1, 27) |
| 41 | #define CPUIMX51_QUARTA_GPIO IMX_GPIO_NR(3, 28) |
| 42 | #define CPUIMX51_QUARTB_GPIO IMX_GPIO_NR(3, 25) |
| 43 | #define CPUIMX51_QUARTC_GPIO IMX_GPIO_NR(3, 26) |
| 44 | #define CPUIMX51_QUARTD_GPIO IMX_GPIO_NR(3, 27) |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 45 | #define CPUIMX51_QUART_XTAL 14745600 |
| 46 | #define CPUIMX51_QUART_REGSHIFT 17 |
| 47 | |
| 48 | /* USB_CTRL_1 */ |
| 49 | #define MX51_USB_CTRL_1_OFFSET 0x10 |
| 50 | #define MX51_USB_CTRL_UH1_EXT_CLK_EN (1 << 25) |
| 51 | |
| 52 | #define MX51_USB_PLLDIV_12_MHZ 0x00 |
| 53 | #define MX51_USB_PLL_DIV_19_2_MHZ 0x01 |
| 54 | #define MX51_USB_PLL_DIV_24_MHZ 0x02 |
| 55 | |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 56 | static struct plat_serial8250_port serial_platform_data[] = { |
| 57 | { |
| 58 | .mapbase = (unsigned long)(MX51_CS1_BASE_ADDR + 0x400000), |
Sascha Hauer | 7cf7381 | 2011-05-11 11:31:54 +0200 | [diff] [blame] | 59 | .irq = gpio_to_irq(CPUIMX51_QUARTA_GPIO), |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 60 | .irqflags = IRQF_TRIGGER_HIGH, |
| 61 | .uartclk = CPUIMX51_QUART_XTAL, |
| 62 | .regshift = CPUIMX51_QUART_REGSHIFT, |
| 63 | .iotype = UPIO_MEM, |
| 64 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, |
| 65 | }, { |
| 66 | .mapbase = (unsigned long)(MX51_CS1_BASE_ADDR + 0x800000), |
Sascha Hauer | 7cf7381 | 2011-05-11 11:31:54 +0200 | [diff] [blame] | 67 | .irq = gpio_to_irq(CPUIMX51_QUARTB_GPIO), |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 68 | .irqflags = IRQF_TRIGGER_HIGH, |
| 69 | .uartclk = CPUIMX51_QUART_XTAL, |
| 70 | .regshift = CPUIMX51_QUART_REGSHIFT, |
| 71 | .iotype = UPIO_MEM, |
| 72 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, |
| 73 | }, { |
| 74 | .mapbase = (unsigned long)(MX51_CS1_BASE_ADDR + 0x1000000), |
Sascha Hauer | 7cf7381 | 2011-05-11 11:31:54 +0200 | [diff] [blame] | 75 | .irq = gpio_to_irq(CPUIMX51_QUARTC_GPIO), |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 76 | .irqflags = IRQF_TRIGGER_HIGH, |
| 77 | .uartclk = CPUIMX51_QUART_XTAL, |
| 78 | .regshift = CPUIMX51_QUART_REGSHIFT, |
| 79 | .iotype = UPIO_MEM, |
| 80 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, |
| 81 | }, { |
| 82 | .mapbase = (unsigned long)(MX51_CS1_BASE_ADDR + 0x2000000), |
Sascha Hauer | 7cf7381 | 2011-05-11 11:31:54 +0200 | [diff] [blame] | 83 | .irq = irq_to_gpio(CPUIMX51_QUARTD_GPIO), |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 84 | .irqflags = IRQF_TRIGGER_HIGH, |
| 85 | .uartclk = CPUIMX51_QUART_XTAL, |
| 86 | .regshift = CPUIMX51_QUART_REGSHIFT, |
| 87 | .iotype = UPIO_MEM, |
| 88 | .flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST | UPF_IOREMAP, |
| 89 | }, { |
| 90 | } |
| 91 | }; |
| 92 | |
| 93 | static struct platform_device serial_device = { |
| 94 | .name = "serial8250", |
| 95 | .id = 0, |
| 96 | .dev = { |
| 97 | .platform_data = serial_platform_data, |
| 98 | }, |
| 99 | }; |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 100 | |
| 101 | static struct platform_device *devices[] __initdata = { |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 102 | &serial_device, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 103 | }; |
| 104 | |
Lothar Waßmann | 8f5260c | 2010-10-26 14:28:31 +0200 | [diff] [blame] | 105 | static iomux_v3_cfg_t eukrea_cpuimx51_pads[] = { |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 106 | /* UART1 */ |
| 107 | MX51_PAD_UART1_RXD__UART1_RXD, |
| 108 | MX51_PAD_UART1_TXD__UART1_TXD, |
| 109 | MX51_PAD_UART1_RTS__UART1_RTS, |
| 110 | MX51_PAD_UART1_CTS__UART1_CTS, |
| 111 | |
| 112 | /* I2C2 */ |
Sascha Hauer | ee1ae4d | 2010-12-15 09:56:35 +0100 | [diff] [blame] | 113 | MX51_PAD_GPIO1_2__I2C2_SCL, |
| 114 | MX51_PAD_GPIO1_3__I2C2_SDA, |
| 115 | MX51_PAD_NANDF_D10__GPIO3_30, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 116 | |
| 117 | /* QUART IRQ */ |
Sascha Hauer | ee1ae4d | 2010-12-15 09:56:35 +0100 | [diff] [blame] | 118 | MX51_PAD_NANDF_D15__GPIO3_25, |
| 119 | MX51_PAD_NANDF_D14__GPIO3_26, |
| 120 | MX51_PAD_NANDF_D13__GPIO3_27, |
| 121 | MX51_PAD_NANDF_D12__GPIO3_28, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 122 | |
| 123 | /* USB HOST1 */ |
| 124 | MX51_PAD_USBH1_CLK__USBH1_CLK, |
| 125 | MX51_PAD_USBH1_DIR__USBH1_DIR, |
| 126 | MX51_PAD_USBH1_NXT__USBH1_NXT, |
| 127 | MX51_PAD_USBH1_DATA0__USBH1_DATA0, |
| 128 | MX51_PAD_USBH1_DATA1__USBH1_DATA1, |
| 129 | MX51_PAD_USBH1_DATA2__USBH1_DATA2, |
| 130 | MX51_PAD_USBH1_DATA3__USBH1_DATA3, |
| 131 | MX51_PAD_USBH1_DATA4__USBH1_DATA4, |
| 132 | MX51_PAD_USBH1_DATA5__USBH1_DATA5, |
| 133 | MX51_PAD_USBH1_DATA6__USBH1_DATA6, |
| 134 | MX51_PAD_USBH1_DATA7__USBH1_DATA7, |
| 135 | MX51_PAD_USBH1_STP__USBH1_STP, |
| 136 | }; |
| 137 | |
Eric Bénard | a392741 | 2010-10-12 16:29:20 +0200 | [diff] [blame] | 138 | static const struct mxc_nand_platform_data |
| 139 | eukrea_cpuimx51_nand_board_info __initconst = { |
| 140 | .width = 1, |
| 141 | .hw_ecc = 1, |
| 142 | .flash_bbt = 1, |
| 143 | }; |
| 144 | |
Uwe Kleine-König | 04b73b1 | 2010-08-11 22:23:06 +0200 | [diff] [blame] | 145 | static const struct imxuart_platform_data uart_pdata __initconst = { |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 146 | .flags = IMXUART_HAVE_RTSCTS, |
| 147 | }; |
| 148 | |
Uwe Kleine-König | 44505c0 | 2010-09-30 16:44:53 +0200 | [diff] [blame] | 149 | static const |
| 150 | struct imxi2c_platform_data eukrea_cpuimx51_i2c_data __initconst = { |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 151 | .bitrate = 100000, |
| 152 | }; |
| 153 | |
| 154 | static struct i2c_board_info eukrea_cpuimx51_i2c_devices[] = { |
| 155 | { |
| 156 | I2C_BOARD_INFO("pcf8563", 0x51), |
| 157 | }, |
| 158 | }; |
| 159 | |
| 160 | /* This function is board specific as the bit mask for the plldiv will also |
| 161 | be different for other Freescale SoCs, thus a common bitmask is not |
| 162 | possible and cannot get place in /plat-mxc/ehci.c.*/ |
| 163 | static int initialize_otg_port(struct platform_device *pdev) |
| 164 | { |
| 165 | u32 v; |
| 166 | void __iomem *usb_base; |
| 167 | void __iomem *usbother_base; |
| 168 | |
Uwe Kleine-König | 7d92e8e | 2011-07-30 23:41:49 +0200 | [diff] [blame] | 169 | usb_base = ioremap(MX51_USB_OTG_BASE_ADDR, SZ_4K); |
Fabio Estevam | 28a4f90 | 2010-12-13 10:47:05 -0200 | [diff] [blame] | 170 | if (!usb_base) |
| 171 | return -ENOMEM; |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 172 | usbother_base = usb_base + MX5_USBOTHER_REGS_OFFSET; |
| 173 | |
| 174 | /* Set the PHY clock to 19.2MHz */ |
| 175 | v = __raw_readl(usbother_base + MXC_USB_PHY_CTR_FUNC2_OFFSET); |
| 176 | v &= ~MX5_USB_UTMI_PHYCTRL1_PLLDIV_MASK; |
| 177 | v |= MX51_USB_PLL_DIV_19_2_MHZ; |
| 178 | __raw_writel(v, usbother_base + MXC_USB_PHY_CTR_FUNC2_OFFSET); |
| 179 | iounmap(usb_base); |
Sascha Hauer | 4bd597b | 2011-01-03 11:30:28 +0100 | [diff] [blame] | 180 | |
| 181 | mdelay(10); |
| 182 | |
| 183 | return mx51_initialize_usb_hw(0, MXC_EHCI_INTERNAL_PHY); |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 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 | |
Uwe Kleine-König | 7d92e8e | 2011-07-30 23:41:49 +0200 | [diff] [blame] | 192 | usb_base = ioremap(MX51_USB_OTG_BASE_ADDR, SZ_4K); |
Fabio Estevam | 28a4f90 | 2010-12-13 10:47:05 -0200 | [diff] [blame] | 193 | if (!usb_base) |
| 194 | return -ENOMEM; |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 195 | usbother_base = usb_base + MX5_USBOTHER_REGS_OFFSET; |
| 196 | |
| 197 | /* The clock for the USBH1 ULPI port will come externally from the PHY. */ |
| 198 | v = __raw_readl(usbother_base + MX51_USB_CTRL_1_OFFSET); |
| 199 | __raw_writel(v | MX51_USB_CTRL_UH1_EXT_CLK_EN, usbother_base + MX51_USB_CTRL_1_OFFSET); |
| 200 | iounmap(usb_base); |
Sascha Hauer | 4bd597b | 2011-01-03 11:30:28 +0100 | [diff] [blame] | 201 | |
| 202 | mdelay(10); |
| 203 | |
| 204 | return mx51_initialize_usb_hw(1, MXC_EHCI_POWER_PINS_ENABLED | |
| 205 | MXC_EHCI_ITC_NO_THRESHOLD); |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 206 | } |
| 207 | |
Uwe Kleine-König | 7d92e8e | 2011-07-30 23:41:49 +0200 | [diff] [blame] | 208 | static const struct mxc_usbh_platform_data dr_utmi_config __initconst = { |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 209 | .init = initialize_otg_port, |
| 210 | .portsc = MXC_EHCI_UTMI_16BIT, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 211 | }; |
| 212 | |
Uwe Kleine-König | 6cafe48 | 2011-07-30 23:57:25 +0200 | [diff] [blame^] | 213 | static const struct fsl_usb2_platform_data usb_pdata __initconst = { |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 214 | .operating_mode = FSL_USB2_DR_DEVICE, |
| 215 | .phy_mode = FSL_USB2_PHY_UTMI_WIDE, |
| 216 | }; |
| 217 | |
Uwe Kleine-König | 7d92e8e | 2011-07-30 23:41:49 +0200 | [diff] [blame] | 218 | static const struct mxc_usbh_platform_data usbh1_config __initconst = { |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 219 | .init = initialize_usbh1_port, |
| 220 | .portsc = MXC_EHCI_MODE_ULPI, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 221 | }; |
| 222 | |
| 223 | static int otg_mode_host; |
| 224 | |
| 225 | static int __init eukrea_cpuimx51_otg_mode(char *options) |
| 226 | { |
| 227 | if (!strcmp(options, "host")) |
| 228 | otg_mode_host = 1; |
| 229 | else if (!strcmp(options, "device")) |
| 230 | otg_mode_host = 0; |
| 231 | else |
| 232 | pr_info("otg_mode neither \"host\" nor \"device\". " |
| 233 | "Defaulting to device\n"); |
| 234 | return 0; |
| 235 | } |
| 236 | __setup("otg_mode=", eukrea_cpuimx51_otg_mode); |
| 237 | |
| 238 | /* |
| 239 | * Board specific initialization. |
| 240 | */ |
| 241 | static void __init eukrea_cpuimx51_init(void) |
| 242 | { |
Shawn Guo | b78d8e5 | 2011-06-06 00:07:55 +0800 | [diff] [blame] | 243 | imx51_soc_init(); |
| 244 | |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 245 | mxc_iomux_v3_setup_multiple_pads(eukrea_cpuimx51_pads, |
| 246 | ARRAY_SIZE(eukrea_cpuimx51_pads)); |
| 247 | |
Uwe Kleine-König | 04b73b1 | 2010-08-11 22:23:06 +0200 | [diff] [blame] | 248 | imx51_add_imx_uart(0, &uart_pdata); |
Eric Bénard | a392741 | 2010-10-12 16:29:20 +0200 | [diff] [blame] | 249 | imx51_add_mxc_nand(&eukrea_cpuimx51_nand_board_info); |
| 250 | |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 251 | gpio_request(CPUIMX51_QUARTA_GPIO, "quarta_irq"); |
| 252 | gpio_direction_input(CPUIMX51_QUARTA_GPIO); |
| 253 | gpio_free(CPUIMX51_QUARTA_GPIO); |
| 254 | gpio_request(CPUIMX51_QUARTB_GPIO, "quartb_irq"); |
| 255 | gpio_direction_input(CPUIMX51_QUARTB_GPIO); |
| 256 | gpio_free(CPUIMX51_QUARTB_GPIO); |
| 257 | gpio_request(CPUIMX51_QUARTC_GPIO, "quartc_irq"); |
| 258 | gpio_direction_input(CPUIMX51_QUARTC_GPIO); |
| 259 | gpio_free(CPUIMX51_QUARTC_GPIO); |
| 260 | gpio_request(CPUIMX51_QUARTD_GPIO, "quartd_irq"); |
| 261 | gpio_direction_input(CPUIMX51_QUARTD_GPIO); |
| 262 | gpio_free(CPUIMX51_QUARTD_GPIO); |
| 263 | |
Uwe Kleine-König | 6bd96f3 | 2010-10-06 12:00:18 +0200 | [diff] [blame] | 264 | imx51_add_fec(NULL); |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 265 | platform_add_devices(devices, ARRAY_SIZE(devices)); |
| 266 | |
Uwe Kleine-König | 44505c0 | 2010-09-30 16:44:53 +0200 | [diff] [blame] | 267 | imx51_add_imx_i2c(1, &eukrea_cpuimx51_i2c_data); |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 268 | i2c_register_board_info(1, eukrea_cpuimx51_i2c_devices, |
| 269 | ARRAY_SIZE(eukrea_cpuimx51_i2c_devices)); |
| 270 | |
| 271 | if (otg_mode_host) |
Uwe Kleine-König | 7d92e8e | 2011-07-30 23:41:49 +0200 | [diff] [blame] | 272 | imx51_add_mxc_ehci_otg(&dr_utmi_config); |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 273 | else { |
| 274 | initialize_otg_port(NULL); |
Uwe Kleine-König | 6cafe48 | 2011-07-30 23:57:25 +0200 | [diff] [blame^] | 275 | imx51_add_fsl_usb2_udc(&usb_pdata); |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 276 | } |
Uwe Kleine-König | 7d92e8e | 2011-07-30 23:41:49 +0200 | [diff] [blame] | 277 | imx51_add_mxc_ehci_hs(1, &usbh1_config); |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 278 | |
| 279 | #ifdef CONFIG_MACH_EUKREA_MBIMX51_BASEBOARD |
| 280 | eukrea_mbimx51_baseboard_init(); |
| 281 | #endif |
| 282 | } |
| 283 | |
| 284 | static void __init eukrea_cpuimx51_timer_init(void) |
| 285 | { |
| 286 | mx51_clocks_init(32768, 24000000, 22579200, 0); |
| 287 | } |
| 288 | |
| 289 | static struct sys_timer mxc_timer = { |
| 290 | .init = eukrea_cpuimx51_timer_init, |
| 291 | }; |
| 292 | |
| 293 | MACHINE_START(EUKREA_CPUIMX51, "Eukrea CPUIMX51 Module") |
| 294 | /* Maintainer: Eric Bénard <eric@eukrea.com> */ |
Sascha Hauer | 7608d7d | 2010-11-04 21:20:43 +0100 | [diff] [blame] | 295 | .boot_params = MX51_PHYS_OFFSET + 0x100, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 296 | .map_io = mx51_map_io, |
Uwe Kleine-König | ab13042 | 2011-02-07 16:35:21 +0100 | [diff] [blame] | 297 | .init_early = imx51_init_early, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 298 | .init_irq = mx51_init_irq, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 299 | .timer = &mxc_timer, |
Uwe Kleine-König | ab13042 | 2011-02-07 16:35:21 +0100 | [diff] [blame] | 300 | .init_machine = eukrea_cpuimx51_init, |
Eric Bénard | ef93f14 | 2010-07-23 16:11:19 +0200 | [diff] [blame] | 301 | MACHINE_END |