Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 1 | /* |
| 2 | * based on code from the following |
| 3 | * Copyright 2009-2010 Freescale Semiconductor, Inc. All Rights Reserved. |
| 4 | * Copyright 2009-2010 Pegatron Corporation. All Rights Reserved. |
| 5 | * Copyright 2009-2010 Genesi USA, Inc. All Rights Reserved. |
| 6 | * |
| 7 | * The code contained herein is licensed under the GNU General Public |
| 8 | * License. You may obtain a copy of the GNU General Public License |
| 9 | * Version 2 or later at the following locations: |
| 10 | * |
| 11 | * http://www.opensource.org/licenses/gpl-license.html |
| 12 | * http://www.gnu.org/copyleft/gpl.html |
| 13 | */ |
| 14 | |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/i2c.h> |
| 18 | #include <linux/gpio.h> |
| 19 | #include <linux/leds.h> |
| 20 | #include <linux/input.h> |
| 21 | #include <linux/delay.h> |
| 22 | #include <linux/io.h> |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 23 | #include <linux/spi/flash.h> |
| 24 | #include <linux/spi/spi.h> |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 25 | #include <linux/mfd/mc13892.h> |
| 26 | #include <linux/regulator/machine.h> |
| 27 | #include <linux/regulator/consumer.h> |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 28 | |
| 29 | #include <mach/common.h> |
| 30 | #include <mach/hardware.h> |
| 31 | #include <mach/iomux-mx51.h> |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 32 | |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 33 | #include <linux/usb/otg.h> |
| 34 | #include <linux/usb/ulpi.h> |
| 35 | #include <mach/ulpi.h> |
| 36 | |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 37 | #include <asm/irq.h> |
| 38 | #include <asm/setup.h> |
| 39 | #include <asm/mach-types.h> |
| 40 | #include <asm/mach/arch.h> |
| 41 | #include <asm/mach/time.h> |
| 42 | |
| 43 | #include "devices-imx51.h" |
| 44 | #include "devices.h" |
| 45 | #include "efika.h" |
Arnaud Patard (Rtp) | 856e656 | 2011-02-17 15:31:31 +0100 | [diff] [blame] | 46 | #include "cpu_op-mx51.h" |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 47 | |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 48 | #define MX51_USB_CTRL_1_OFFSET 0x10 |
| 49 | #define MX51_USB_CTRL_UH1_EXT_CLK_EN (1 << 25) |
| 50 | #define MX51_USB_PLL_DIV_19_2_MHZ 0x01 |
| 51 | |
| 52 | #define EFIKAMX_USB_HUB_RESET IMX_GPIO_NR(1, 5) |
| 53 | #define EFIKAMX_USBH1_STP IMX_GPIO_NR(1, 27) |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 54 | |
| 55 | #define EFIKAMX_SPI_CS0 IMX_GPIO_NR(4, 24) |
| 56 | #define EFIKAMX_SPI_CS1 IMX_GPIO_NR(4, 25) |
| 57 | |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 58 | #define EFIKAMX_PMIC IMX_GPIO_NR(1, 6) |
| 59 | |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 60 | static iomux_v3_cfg_t mx51efika_pads[] = { |
| 61 | /* UART1 */ |
| 62 | MX51_PAD_UART1_RXD__UART1_RXD, |
| 63 | MX51_PAD_UART1_TXD__UART1_TXD, |
| 64 | MX51_PAD_UART1_RTS__UART1_RTS, |
| 65 | MX51_PAD_UART1_CTS__UART1_CTS, |
| 66 | |
| 67 | /* SD 1 */ |
| 68 | MX51_PAD_SD1_CMD__SD1_CMD, |
| 69 | MX51_PAD_SD1_CLK__SD1_CLK, |
| 70 | MX51_PAD_SD1_DATA0__SD1_DATA0, |
| 71 | MX51_PAD_SD1_DATA1__SD1_DATA1, |
| 72 | MX51_PAD_SD1_DATA2__SD1_DATA2, |
| 73 | MX51_PAD_SD1_DATA3__SD1_DATA3, |
| 74 | |
| 75 | /* SD 2 */ |
| 76 | MX51_PAD_SD2_CMD__SD2_CMD, |
| 77 | MX51_PAD_SD2_CLK__SD2_CLK, |
| 78 | MX51_PAD_SD2_DATA0__SD2_DATA0, |
| 79 | MX51_PAD_SD2_DATA1__SD2_DATA1, |
| 80 | MX51_PAD_SD2_DATA2__SD2_DATA2, |
| 81 | MX51_PAD_SD2_DATA3__SD2_DATA3, |
| 82 | |
| 83 | /* SD/MMC WP/CD */ |
| 84 | MX51_PAD_GPIO1_0__SD1_CD, |
| 85 | MX51_PAD_GPIO1_1__SD1_WP, |
| 86 | MX51_PAD_GPIO1_7__SD2_WP, |
| 87 | MX51_PAD_GPIO1_8__SD2_CD, |
| 88 | |
| 89 | /* spi */ |
| 90 | MX51_PAD_CSPI1_MOSI__ECSPI1_MOSI, |
| 91 | MX51_PAD_CSPI1_MISO__ECSPI1_MISO, |
| 92 | MX51_PAD_CSPI1_SS0__GPIO4_24, |
| 93 | MX51_PAD_CSPI1_SS1__GPIO4_25, |
| 94 | MX51_PAD_CSPI1_RDY__ECSPI1_RDY, |
| 95 | MX51_PAD_CSPI1_SCLK__ECSPI1_SCLK, |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 96 | MX51_PAD_GPIO1_6__GPIO1_6, |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 97 | |
| 98 | /* USB HOST1 */ |
| 99 | MX51_PAD_USBH1_CLK__USBH1_CLK, |
| 100 | MX51_PAD_USBH1_DIR__USBH1_DIR, |
| 101 | MX51_PAD_USBH1_NXT__USBH1_NXT, |
| 102 | MX51_PAD_USBH1_DATA0__USBH1_DATA0, |
| 103 | MX51_PAD_USBH1_DATA1__USBH1_DATA1, |
| 104 | MX51_PAD_USBH1_DATA2__USBH1_DATA2, |
| 105 | MX51_PAD_USBH1_DATA3__USBH1_DATA3, |
| 106 | MX51_PAD_USBH1_DATA4__USBH1_DATA4, |
| 107 | MX51_PAD_USBH1_DATA5__USBH1_DATA5, |
| 108 | MX51_PAD_USBH1_DATA6__USBH1_DATA6, |
| 109 | MX51_PAD_USBH1_DATA7__USBH1_DATA7, |
| 110 | |
| 111 | /* USB HUB RESET */ |
| 112 | MX51_PAD_GPIO1_5__GPIO1_5, |
| 113 | |
| 114 | /* WLAN */ |
| 115 | MX51_PAD_EIM_A22__GPIO2_16, |
| 116 | MX51_PAD_EIM_A16__GPIO2_10, |
| 117 | |
| 118 | /* USB PHY RESET */ |
| 119 | MX51_PAD_EIM_D27__GPIO2_9, |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 120 | }; |
| 121 | |
| 122 | /* Serial ports */ |
| 123 | static const struct imxuart_platform_data uart_pdata = { |
| 124 | .flags = IMXUART_HAVE_RTSCTS, |
| 125 | }; |
| 126 | |
| 127 | /* This function is board specific as the bit mask for the plldiv will also |
| 128 | * be different for other Freescale SoCs, thus a common bitmask is not |
| 129 | * possible and cannot get place in /plat-mxc/ehci.c. |
| 130 | */ |
| 131 | static int initialize_otg_port(struct platform_device *pdev) |
| 132 | { |
| 133 | u32 v; |
| 134 | void __iomem *usb_base; |
| 135 | void __iomem *usbother_base; |
| 136 | usb_base = ioremap(MX51_OTG_BASE_ADDR, SZ_4K); |
| 137 | if (!usb_base) |
| 138 | return -ENOMEM; |
| 139 | usbother_base = (void __iomem *)(usb_base + MX5_USBOTHER_REGS_OFFSET); |
| 140 | |
| 141 | /* Set the PHY clock to 19.2MHz */ |
| 142 | v = __raw_readl(usbother_base + MXC_USB_PHY_CTR_FUNC2_OFFSET); |
| 143 | v &= ~MX5_USB_UTMI_PHYCTRL1_PLLDIV_MASK; |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 144 | v |= MX51_USB_PLL_DIV_19_2_MHZ; |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 145 | __raw_writel(v, usbother_base + MXC_USB_PHY_CTR_FUNC2_OFFSET); |
| 146 | iounmap(usb_base); |
| 147 | |
| 148 | mdelay(10); |
| 149 | |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 150 | return mx51_initialize_usb_hw(pdev->id, MXC_EHCI_INTERNAL_PHY); |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 151 | } |
| 152 | |
| 153 | static struct mxc_usbh_platform_data dr_utmi_config = { |
| 154 | .init = initialize_otg_port, |
| 155 | .portsc = MXC_EHCI_UTMI_16BIT, |
| 156 | }; |
| 157 | |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 158 | static int initialize_usbh1_port(struct platform_device *pdev) |
| 159 | { |
| 160 | iomux_v3_cfg_t usbh1stp = MX51_PAD_USBH1_STP__USBH1_STP; |
| 161 | iomux_v3_cfg_t usbh1gpio = MX51_PAD_USBH1_STP__GPIO1_27; |
| 162 | u32 v; |
| 163 | void __iomem *usb_base; |
| 164 | void __iomem *socregs_base; |
| 165 | |
| 166 | mxc_iomux_v3_setup_pad(usbh1gpio); |
| 167 | gpio_request(EFIKAMX_USBH1_STP, "usbh1_stp"); |
| 168 | gpio_direction_output(EFIKAMX_USBH1_STP, 0); |
| 169 | msleep(1); |
| 170 | gpio_set_value(EFIKAMX_USBH1_STP, 1); |
| 171 | msleep(1); |
| 172 | |
| 173 | usb_base = ioremap(MX51_OTG_BASE_ADDR, SZ_4K); |
| 174 | socregs_base = (void __iomem *)(usb_base + MX5_USBOTHER_REGS_OFFSET); |
| 175 | |
| 176 | /* The clock for the USBH1 ULPI port will come externally */ |
| 177 | /* from the PHY. */ |
| 178 | v = __raw_readl(socregs_base + MX51_USB_CTRL_1_OFFSET); |
| 179 | __raw_writel(v | MX51_USB_CTRL_UH1_EXT_CLK_EN, |
| 180 | socregs_base + MX51_USB_CTRL_1_OFFSET); |
| 181 | |
| 182 | iounmap(usb_base); |
| 183 | |
| 184 | gpio_free(EFIKAMX_USBH1_STP); |
| 185 | mxc_iomux_v3_setup_pad(usbh1stp); |
| 186 | |
| 187 | mdelay(10); |
| 188 | |
Arnaud Patard (Rtp) | 37df0e5 | 2011-06-27 22:41:04 +0200 | [diff] [blame] | 189 | return mx51_initialize_usb_hw(pdev->id, MXC_EHCI_ITC_NO_THRESHOLD); |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 190 | } |
| 191 | |
| 192 | static struct mxc_usbh_platform_data usbh1_config = { |
| 193 | .init = initialize_usbh1_port, |
| 194 | .portsc = MXC_EHCI_MODE_ULPI, |
| 195 | }; |
| 196 | |
| 197 | static void mx51_efika_hubreset(void) |
| 198 | { |
| 199 | gpio_request(EFIKAMX_USB_HUB_RESET, "usb_hub_rst"); |
| 200 | gpio_direction_output(EFIKAMX_USB_HUB_RESET, 1); |
| 201 | msleep(1); |
| 202 | gpio_set_value(EFIKAMX_USB_HUB_RESET, 0); |
| 203 | msleep(1); |
| 204 | gpio_set_value(EFIKAMX_USB_HUB_RESET, 1); |
| 205 | } |
| 206 | |
| 207 | static void __init mx51_efika_usb(void) |
| 208 | { |
| 209 | mx51_efika_hubreset(); |
| 210 | |
| 211 | /* pulling it low, means no USB at all... */ |
| 212 | gpio_request(EFIKA_USB_PHY_RESET, "usb_phy_reset"); |
| 213 | gpio_direction_output(EFIKA_USB_PHY_RESET, 0); |
| 214 | msleep(1); |
| 215 | gpio_set_value(EFIKA_USB_PHY_RESET, 1); |
| 216 | |
Sascha Hauer | 48f6b09 | 2011-03-02 09:27:42 +0100 | [diff] [blame] | 217 | usbh1_config.otg = imx_otg_ulpi_create(ULPI_OTG_DRVVBUS | |
| 218 | ULPI_OTG_DRVVBUS_EXT | ULPI_OTG_EXTVBUSIND); |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 219 | |
| 220 | mxc_register_device(&mxc_usbdr_host_device, &dr_utmi_config); |
Sascha Hauer | 48f6b09 | 2011-03-02 09:27:42 +0100 | [diff] [blame] | 221 | if (usbh1_config.otg) |
| 222 | mxc_register_device(&mxc_usbh1_device, &usbh1_config); |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 223 | } |
| 224 | |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 225 | static struct mtd_partition mx51_efika_spi_nor_partitions[] = { |
| 226 | { |
| 227 | .name = "u-boot", |
| 228 | .offset = 0, |
| 229 | .size = SZ_256K, |
| 230 | }, |
| 231 | { |
| 232 | .name = "config", |
| 233 | .offset = MTDPART_OFS_APPEND, |
| 234 | .size = SZ_64K, |
| 235 | }, |
| 236 | }; |
| 237 | |
| 238 | static struct flash_platform_data mx51_efika_spi_flash_data = { |
| 239 | .name = "spi_flash", |
| 240 | .parts = mx51_efika_spi_nor_partitions, |
| 241 | .nr_parts = ARRAY_SIZE(mx51_efika_spi_nor_partitions), |
| 242 | .type = "sst25vf032b", |
| 243 | }; |
| 244 | |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 245 | static struct regulator_consumer_supply sw1_consumers[] = { |
| 246 | { |
| 247 | .supply = "cpu_vcc", |
| 248 | } |
| 249 | }; |
| 250 | |
| 251 | static struct regulator_consumer_supply vdig_consumers[] = { |
| 252 | /* sgtl5000 */ |
| 253 | REGULATOR_SUPPLY("VDDA", "1-000a"), |
| 254 | REGULATOR_SUPPLY("VDDD", "1-000a"), |
| 255 | }; |
| 256 | |
| 257 | static struct regulator_consumer_supply vvideo_consumers[] = { |
| 258 | /* sgtl5000 */ |
| 259 | REGULATOR_SUPPLY("VDDIO", "1-000a"), |
| 260 | }; |
| 261 | |
| 262 | static struct regulator_consumer_supply vsd_consumers[] = { |
Shawn Guo | 57ed331 | 2011-06-30 09:24:26 +0800 | [diff] [blame] | 263 | REGULATOR_SUPPLY("vmmc", "sdhci-esdhc-imx51.0"), |
| 264 | REGULATOR_SUPPLY("vmmc", "sdhci-esdhc-imx51.1"), |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 265 | }; |
| 266 | |
| 267 | static struct regulator_consumer_supply pwgt1_consumer[] = { |
| 268 | { |
| 269 | .supply = "pwgt1", |
| 270 | } |
| 271 | }; |
| 272 | |
| 273 | static struct regulator_consumer_supply pwgt2_consumer[] = { |
| 274 | { |
| 275 | .supply = "pwgt2", |
| 276 | } |
| 277 | }; |
| 278 | |
| 279 | static struct regulator_consumer_supply coincell_consumer[] = { |
| 280 | { |
| 281 | .supply = "coincell", |
| 282 | } |
| 283 | }; |
| 284 | |
| 285 | static struct regulator_init_data sw1_init = { |
| 286 | .constraints = { |
| 287 | .name = "SW1", |
| 288 | .min_uV = 600000, |
| 289 | .max_uV = 1375000, |
| 290 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE, |
| 291 | .valid_modes_mask = 0, |
| 292 | .always_on = 1, |
| 293 | .boot_on = 1, |
| 294 | .state_mem = { |
| 295 | .uV = 850000, |
| 296 | .mode = REGULATOR_MODE_NORMAL, |
| 297 | .enabled = 1, |
| 298 | }, |
| 299 | }, |
| 300 | .num_consumer_supplies = ARRAY_SIZE(sw1_consumers), |
| 301 | .consumer_supplies = sw1_consumers, |
| 302 | }; |
| 303 | |
| 304 | static struct regulator_init_data sw2_init = { |
| 305 | .constraints = { |
| 306 | .name = "SW2", |
| 307 | .min_uV = 900000, |
| 308 | .max_uV = 1850000, |
| 309 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE, |
| 310 | .always_on = 1, |
| 311 | .boot_on = 1, |
| 312 | .state_mem = { |
| 313 | .uV = 950000, |
| 314 | .mode = REGULATOR_MODE_NORMAL, |
| 315 | .enabled = 1, |
| 316 | }, |
| 317 | } |
| 318 | }; |
| 319 | |
| 320 | static struct regulator_init_data sw3_init = { |
| 321 | .constraints = { |
| 322 | .name = "SW3", |
| 323 | .min_uV = 1100000, |
| 324 | .max_uV = 1850000, |
| 325 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE, |
| 326 | .always_on = 1, |
| 327 | .boot_on = 1, |
| 328 | } |
| 329 | }; |
| 330 | |
| 331 | static struct regulator_init_data sw4_init = { |
| 332 | .constraints = { |
| 333 | .name = "SW4", |
| 334 | .min_uV = 1100000, |
| 335 | .max_uV = 1850000, |
| 336 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE, |
| 337 | .always_on = 1, |
| 338 | .boot_on = 1, |
| 339 | } |
| 340 | }; |
| 341 | |
| 342 | static struct regulator_init_data viohi_init = { |
| 343 | .constraints = { |
| 344 | .name = "VIOHI", |
| 345 | .boot_on = 1, |
| 346 | .always_on = 1, |
| 347 | } |
| 348 | }; |
| 349 | |
| 350 | static struct regulator_init_data vusb_init = { |
| 351 | .constraints = { |
| 352 | .name = "VUSB", |
| 353 | .boot_on = 1, |
| 354 | .always_on = 1, |
| 355 | } |
| 356 | }; |
| 357 | |
| 358 | static struct regulator_init_data swbst_init = { |
| 359 | .constraints = { |
| 360 | .name = "SWBST", |
| 361 | } |
| 362 | }; |
| 363 | |
| 364 | static struct regulator_init_data vdig_init = { |
| 365 | .constraints = { |
| 366 | .name = "VDIG", |
| 367 | .min_uV = 1050000, |
| 368 | .max_uV = 1800000, |
| 369 | .valid_ops_mask = |
| 370 | REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, |
| 371 | .boot_on = 1, |
| 372 | .always_on = 1, |
| 373 | }, |
| 374 | .num_consumer_supplies = ARRAY_SIZE(vdig_consumers), |
| 375 | .consumer_supplies = vdig_consumers, |
| 376 | }; |
| 377 | |
| 378 | static struct regulator_init_data vpll_init = { |
| 379 | .constraints = { |
| 380 | .name = "VPLL", |
| 381 | .min_uV = 1050000, |
| 382 | .max_uV = 1800000, |
| 383 | .valid_ops_mask = |
| 384 | REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, |
| 385 | .boot_on = 1, |
| 386 | .always_on = 1, |
| 387 | } |
| 388 | }; |
| 389 | |
| 390 | static struct regulator_init_data vusb2_init = { |
| 391 | .constraints = { |
| 392 | .name = "VUSB2", |
| 393 | .min_uV = 2400000, |
| 394 | .max_uV = 2775000, |
| 395 | .valid_ops_mask = REGULATOR_CHANGE_VOLTAGE, |
| 396 | .boot_on = 1, |
| 397 | .always_on = 1, |
| 398 | } |
| 399 | }; |
| 400 | |
| 401 | static struct regulator_init_data vvideo_init = { |
| 402 | .constraints = { |
| 403 | .name = "VVIDEO", |
| 404 | .min_uV = 2775000, |
| 405 | .max_uV = 2775000, |
| 406 | .valid_ops_mask = |
| 407 | REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, |
| 408 | .boot_on = 1, |
| 409 | .apply_uV = 1, |
| 410 | }, |
| 411 | .num_consumer_supplies = ARRAY_SIZE(vvideo_consumers), |
| 412 | .consumer_supplies = vvideo_consumers, |
| 413 | }; |
| 414 | |
| 415 | static struct regulator_init_data vaudio_init = { |
| 416 | .constraints = { |
| 417 | .name = "VAUDIO", |
| 418 | .min_uV = 2300000, |
| 419 | .max_uV = 3000000, |
| 420 | .valid_ops_mask = |
| 421 | REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, |
| 422 | .boot_on = 1, |
| 423 | } |
| 424 | }; |
| 425 | |
| 426 | static struct regulator_init_data vsd_init = { |
| 427 | .constraints = { |
| 428 | .name = "VSD", |
| 429 | .min_uV = 1800000, |
| 430 | .max_uV = 3150000, |
| 431 | .valid_ops_mask = |
| 432 | REGULATOR_CHANGE_VOLTAGE, |
| 433 | .boot_on = 1, |
| 434 | }, |
| 435 | .num_consumer_supplies = ARRAY_SIZE(vsd_consumers), |
| 436 | .consumer_supplies = vsd_consumers, |
| 437 | }; |
| 438 | |
| 439 | static struct regulator_init_data vcam_init = { |
| 440 | .constraints = { |
| 441 | .name = "VCAM", |
| 442 | .min_uV = 2500000, |
| 443 | .max_uV = 3000000, |
| 444 | .valid_ops_mask = |
| 445 | REGULATOR_CHANGE_VOLTAGE | |
| 446 | REGULATOR_CHANGE_MODE | REGULATOR_CHANGE_STATUS, |
| 447 | .valid_modes_mask = REGULATOR_MODE_FAST | REGULATOR_MODE_NORMAL, |
| 448 | .boot_on = 1, |
| 449 | } |
| 450 | }; |
| 451 | |
| 452 | static struct regulator_init_data vgen1_init = { |
| 453 | .constraints = { |
| 454 | .name = "VGEN1", |
| 455 | .min_uV = 1200000, |
| 456 | .max_uV = 3150000, |
| 457 | .valid_ops_mask = |
| 458 | REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, |
| 459 | .boot_on = 1, |
| 460 | .always_on = 1, |
| 461 | } |
| 462 | }; |
| 463 | |
| 464 | static struct regulator_init_data vgen2_init = { |
| 465 | .constraints = { |
| 466 | .name = "VGEN2", |
| 467 | .min_uV = 1200000, |
| 468 | .max_uV = 3150000, |
| 469 | .valid_ops_mask = |
| 470 | REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, |
| 471 | .boot_on = 1, |
| 472 | .always_on = 1, |
| 473 | } |
| 474 | }; |
| 475 | |
| 476 | static struct regulator_init_data vgen3_init = { |
| 477 | .constraints = { |
| 478 | .name = "VGEN3", |
| 479 | .min_uV = 1800000, |
| 480 | .max_uV = 2900000, |
| 481 | .valid_ops_mask = |
| 482 | REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, |
| 483 | .boot_on = 1, |
| 484 | .always_on = 1, |
| 485 | } |
| 486 | }; |
| 487 | |
| 488 | static struct regulator_init_data gpo1_init = { |
| 489 | .constraints = { |
| 490 | .name = "GPO1", |
| 491 | } |
| 492 | }; |
| 493 | |
| 494 | static struct regulator_init_data gpo2_init = { |
| 495 | .constraints = { |
| 496 | .name = "GPO2", |
| 497 | } |
| 498 | }; |
| 499 | |
| 500 | static struct regulator_init_data gpo3_init = { |
| 501 | .constraints = { |
| 502 | .name = "GPO3", |
| 503 | } |
| 504 | }; |
| 505 | |
| 506 | static struct regulator_init_data gpo4_init = { |
| 507 | .constraints = { |
| 508 | .name = "GPO4", |
| 509 | } |
| 510 | }; |
| 511 | |
| 512 | static struct regulator_init_data pwgt1_init = { |
| 513 | .constraints = { |
| 514 | .valid_ops_mask = REGULATOR_CHANGE_STATUS, |
| 515 | .boot_on = 1, |
| 516 | }, |
| 517 | .num_consumer_supplies = ARRAY_SIZE(pwgt1_consumer), |
| 518 | .consumer_supplies = pwgt1_consumer, |
| 519 | }; |
| 520 | |
| 521 | static struct regulator_init_data pwgt2_init = { |
| 522 | .constraints = { |
| 523 | .valid_ops_mask = REGULATOR_CHANGE_STATUS, |
| 524 | .boot_on = 1, |
| 525 | }, |
| 526 | .num_consumer_supplies = ARRAY_SIZE(pwgt2_consumer), |
| 527 | .consumer_supplies = pwgt2_consumer, |
| 528 | }; |
| 529 | |
| 530 | static struct regulator_init_data vcoincell_init = { |
| 531 | .constraints = { |
| 532 | .name = "COINCELL", |
| 533 | .min_uV = 3000000, |
| 534 | .max_uV = 3000000, |
| 535 | .valid_ops_mask = |
| 536 | REGULATOR_CHANGE_VOLTAGE | REGULATOR_CHANGE_STATUS, |
| 537 | }, |
| 538 | .num_consumer_supplies = ARRAY_SIZE(coincell_consumer), |
| 539 | .consumer_supplies = coincell_consumer, |
| 540 | }; |
| 541 | |
| 542 | static struct mc13xxx_regulator_init_data mx51_efika_regulators[] = { |
| 543 | { .id = MC13892_SW1, .init_data = &sw1_init }, |
| 544 | { .id = MC13892_SW2, .init_data = &sw2_init }, |
| 545 | { .id = MC13892_SW3, .init_data = &sw3_init }, |
| 546 | { .id = MC13892_SW4, .init_data = &sw4_init }, |
| 547 | { .id = MC13892_SWBST, .init_data = &swbst_init }, |
| 548 | { .id = MC13892_VIOHI, .init_data = &viohi_init }, |
| 549 | { .id = MC13892_VPLL, .init_data = &vpll_init }, |
| 550 | { .id = MC13892_VDIG, .init_data = &vdig_init }, |
| 551 | { .id = MC13892_VSD, .init_data = &vsd_init }, |
| 552 | { .id = MC13892_VUSB2, .init_data = &vusb2_init }, |
| 553 | { .id = MC13892_VVIDEO, .init_data = &vvideo_init }, |
| 554 | { .id = MC13892_VAUDIO, .init_data = &vaudio_init }, |
| 555 | { .id = MC13892_VCAM, .init_data = &vcam_init }, |
| 556 | { .id = MC13892_VGEN1, .init_data = &vgen1_init }, |
| 557 | { .id = MC13892_VGEN2, .init_data = &vgen2_init }, |
| 558 | { .id = MC13892_VGEN3, .init_data = &vgen3_init }, |
| 559 | { .id = MC13892_VUSB, .init_data = &vusb_init }, |
| 560 | { .id = MC13892_GPO1, .init_data = &gpo1_init }, |
| 561 | { .id = MC13892_GPO2, .init_data = &gpo2_init }, |
| 562 | { .id = MC13892_GPO3, .init_data = &gpo3_init }, |
| 563 | { .id = MC13892_GPO4, .init_data = &gpo4_init }, |
| 564 | { .id = MC13892_PWGT1SPI, .init_data = &pwgt1_init }, |
| 565 | { .id = MC13892_PWGT2SPI, .init_data = &pwgt2_init }, |
| 566 | { .id = MC13892_VCOINCELL, .init_data = &vcoincell_init }, |
| 567 | }; |
| 568 | |
| 569 | static struct mc13xxx_platform_data mx51_efika_mc13892_data = { |
| 570 | .flags = MC13XXX_USE_RTC | MC13XXX_USE_REGULATOR, |
Andres Salomon | 251290a | 2011-03-04 08:06:53 -0800 | [diff] [blame] | 571 | .regulators = { |
| 572 | .num_regulators = ARRAY_SIZE(mx51_efika_regulators), |
| 573 | .regulators = mx51_efika_regulators, |
| 574 | }, |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 575 | }; |
| 576 | |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 577 | static struct spi_board_info mx51_efika_spi_board_info[] __initdata = { |
| 578 | { |
| 579 | .modalias = "m25p80", |
| 580 | .max_speed_hz = 25000000, |
| 581 | .bus_num = 0, |
| 582 | .chip_select = 1, |
| 583 | .platform_data = &mx51_efika_spi_flash_data, |
| 584 | .irq = -1, |
| 585 | }, |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 586 | { |
| 587 | .modalias = "mc13892", |
| 588 | .max_speed_hz = 1000000, |
| 589 | .bus_num = 0, |
| 590 | .chip_select = 0, |
| 591 | .platform_data = &mx51_efika_mc13892_data, |
Shawn Guo | e309fb1 | 2011-08-14 00:14:01 +0800 | [diff] [blame^] | 592 | .irq = IMX_GPIO_TO_IRQ(EFIKAMX_PMIC), |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 593 | }, |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 594 | }; |
| 595 | |
| 596 | static int mx51_efika_spi_cs[] = { |
| 597 | EFIKAMX_SPI_CS0, |
| 598 | EFIKAMX_SPI_CS1, |
| 599 | }; |
| 600 | |
| 601 | static const struct spi_imx_master mx51_efika_spi_pdata __initconst = { |
| 602 | .chipselect = mx51_efika_spi_cs, |
| 603 | .num_chipselect = ARRAY_SIZE(mx51_efika_spi_cs), |
| 604 | }; |
| 605 | |
| 606 | void __init efika_board_common_init(void) |
| 607 | { |
| 608 | mxc_iomux_v3_setup_multiple_pads(mx51efika_pads, |
| 609 | ARRAY_SIZE(mx51efika_pads)); |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 610 | imx51_add_imx_uart(0, &uart_pdata); |
Arnaud Patard (Rtp) | 9d72af6 | 2011-02-17 15:31:29 +0100 | [diff] [blame] | 611 | mx51_efika_usb(); |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 612 | imx51_add_sdhci_esdhc_imx(0, NULL); |
| 613 | |
Arnaud Patard (Rtp) | 2432cff | 2011-02-17 15:31:30 +0100 | [diff] [blame] | 614 | /* FIXME: comes from original code. check this. */ |
| 615 | if (mx51_revision() < IMX_CHIP_REVISION_2_0) |
| 616 | sw2_init.constraints.state_mem.uV = 1100000; |
| 617 | else if (mx51_revision() == IMX_CHIP_REVISION_2_0) { |
| 618 | sw2_init.constraints.state_mem.uV = 1250000; |
| 619 | sw1_init.constraints.state_mem.uV = 1000000; |
| 620 | } |
| 621 | if (machine_is_mx51_efikasb()) |
| 622 | vgen1_init.constraints.max_uV = 1200000; |
| 623 | |
| 624 | gpio_request(EFIKAMX_PMIC, "pmic irq"); |
| 625 | gpio_direction_input(EFIKAMX_PMIC); |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 626 | spi_register_board_info(mx51_efika_spi_board_info, |
| 627 | ARRAY_SIZE(mx51_efika_spi_board_info)); |
| 628 | imx51_add_ecspi(0, &mx51_efika_spi_pdata); |
Arnaud Patard (Rtp) | 856e656 | 2011-02-17 15:31:31 +0100 | [diff] [blame] | 629 | |
| 630 | #if defined(CONFIG_CPU_FREQ_IMX) |
| 631 | get_cpu_op = mx51_get_cpu_op; |
| 632 | #endif |
Arnaud Patard (Rtp) | 7ac18a3 | 2011-02-17 15:31:28 +0100 | [diff] [blame] | 633 | } |
| 634 | |