/* * Copyright (C) 2012-2013 Freescale Semiconductor, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2 of the License, or * (at your option) any later version. * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * You should have received a copy of the GNU General Public License along * with this program; if not, write to the Free Software Foundation, Inc., * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. */ #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef CONFIG_MFD_WM831X #include #include #include #include #endif #include "usb.h" #include "devices-imx6q.h" #include "crm_regs.h" #include "cpu_op-mx6.h" #include "board-mx6q_hdmidongle.h" #include "board-mx6dl_hdmidongle.h" #define HDMIDONGLE_USB_OTG_PWR IMX_GPIO_NR(4, 15) #define HDMIDONGLE_USB_H1_PWR IMX_GPIO_NR(4, 14) #define HDMIDONGLE_ECSPI2_CS0 IMX_GPIO_NR(2, 26) #define HDMIDONGLE_HDMI_CEC_IN IMX_GPIO_NR(4, 11) #define HDMIDONGLE_BT_RST IMX_GPIO_NR(3, 7) #define HDMIDONGLE_BT_EN IMX_GPIO_NR(3, 9) #define HDMIDONGLE_WL_EN IMX_GPIO_NR(3, 10) #define HDMIDONGLE_SD2_CD IMX_GPIO_NR(1, 4) #define HDMIDONGLE_REVA_POWER_KEY IMX_GPIO_NR(6, 16) #define HDMIDONGLE_REVB_POWER_KEY IMX_GPIO_NR(1, 27) #ifdef CONFIG_IMX_PCIE #define HDMIDONGLE_PCIE_PWR_EN IMX_GPIO_NR(3, 7) /*fake pcie power enable */ #define HDMIDONGLE_PCIE_RST IMX_GPIO_NR(3, 9) #define HDMIDONGLE_PCIE_WAKE IMX_GPIO_NR(3, 22) #define HDMIDONGLE_PCIE_DIS IMX_GPIO_NR(3, 10) #endif extern char *gp_reg_id; extern char *soc_reg_id; extern char *pu_reg_id; static const struct esdhc_platform_data mx6q_hdmidongle_sd1_data __initconst = { .always_present = 1, }; static const struct esdhc_platform_data mx6q_hdmidongle_sd2_data __initconst = { .cd_gpio = HDMIDONGLE_SD2_CD, .keep_power_at_suspend = 1, .support_8bit = 0, .delay_line = 0, .cd_type = ESDHC_CD_CONTROLLER, }; static const struct esdhc_platform_data mx6q_hdmidongle_sd3_data __initconst = { .always_present = 1, .keep_power_at_suspend = 1, .support_8bit = 1, .delay_line = 0, .cd_type = ESDHC_CD_PERMANENT, }; static const struct esdhc_platform_data mx6q_hdmidongle_revc_sd3_data __initconst = { .always_present = 1, .keep_power_at_suspend = 1, .support_8bit = 0, .delay_line = 0, .cd_type = ESDHC_CD_PERMANENT, }; static int __init gpmi_nand_platform_init(void) { iomux_v3_cfg_t *nand_pads = NULL; u32 nand_pads_cnt; if (cpu_is_mx6q()) { nand_pads = mx6q_gpmi_nand; nand_pads_cnt = ARRAY_SIZE(mx6q_gpmi_nand); } else if (cpu_is_mx6dl()) { nand_pads = mx6dl_gpmi_nand; nand_pads_cnt = ARRAY_SIZE(mx6dl_gpmi_nand); } BUG_ON(!nand_pads); return mxc_iomux_v3_setup_multiple_pads(nand_pads, nand_pads_cnt); } static struct gpmi_nand_platform_data mx6_gpmi_nand_platform_data __initdata = { .platform_init = gpmi_nand_platform_init, .min_prop_delay_in_ns = 5, .max_prop_delay_in_ns = 9, .max_chip_count = 1, .enable_bbt = 1, .enable_ddr = 0, }; static int __init board_support_onfi_nand(char *p) { mx6_gpmi_nand_platform_data.enable_ddr = 1; return 0; } early_param("onfi_support", board_support_onfi_nand); static const struct anatop_thermal_platform_data mx6q_hdmidongle_anatop_thermal_data __initconst = { .name = "anatop_thermal", }; static inline void mx6q_hdmidongle_init_uart(void) { if (board_is_mx6_reva()) imx6q_add_imx_uart(1, NULL); imx6q_add_imx_uart(0, NULL); imx6q_add_imx_uart(3, NULL); } static int mx6q_hdmidongle_spi_cs[] = { HDMIDONGLE_ECSPI2_CS0, }; static const struct spi_imx_master mx6q_hdmidongle_spi_data __initconst = { .chipselect = mx6q_hdmidongle_spi_cs, .num_chipselect = ARRAY_SIZE(mx6q_hdmidongle_spi_cs), }; #ifdef CONFIG_MFD_WM831X #if 0 /* 1.4125, 1.4125. 1.5 */ #define WM831X_DC1_ON_CONFIG_VAL (0x48< 1) || (ipu_id < 0)) { pr_err("Invalid IPU select for HDMI: %d. Set to 0\n", ipu_id); ipu_id = 0; } if ((disp_id > 1) || (disp_id < 0)) { pr_err("Invalid DI select for HDMI: %d. Set to 0\n", disp_id); disp_id = 0; } /* Configure the connection between IPU1/2 and HDMI */ hdmi_mux_setting = 2*ipu_id + disp_id; /* GPR3, bits 2-3 = HDMI_MUX_CTL */ mxc_iomux_set_gpr_register(3, 2, 2, hdmi_mux_setting); /* Set HDMI event as SDMA event2 while Chip version later than TO1.2 */ if (hdmi_SDMA_check()) mxc_iomux_set_gpr_register(0, 0, 1, 1); } /* On mx6x sabresd board i2c2 iomux with hdmi ddc, * the pins default work at i2c2 function, when hdcp enable, the pins should work at ddc function */ static void hdmi_enable_ddc_pin(void) { if (cpu_is_mx6dl()) mxc_iomux_v3_setup_multiple_pads(mx6dl_hdmidongle_hdmi_ddc_pads, ARRAY_SIZE(mx6dl_hdmidongle_hdmi_ddc_pads)); else mxc_iomux_v3_setup_multiple_pads(mx6q_hdmidongle_hdmi_ddc_pads, ARRAY_SIZE(mx6q_hdmidongle_hdmi_ddc_pads)); } static void hdmi_disable_ddc_pin(void) { if (cpu_is_mx6dl()) mxc_iomux_v3_setup_multiple_pads(mx6dl_hdmidongle_i2c2_pads, ARRAY_SIZE(mx6dl_hdmidongle_i2c2_pads)); else mxc_iomux_v3_setup_multiple_pads(mx6q_hdmidongle_i2c2_pads, ARRAY_SIZE(mx6q_hdmidongle_i2c2_pads)); } static struct fsl_mxc_hdmi_platform_data hdmi_data = { .init = hdmi_init, .enable_pins = hdmi_enable_ddc_pin, .disable_pins = hdmi_disable_ddc_pin, .phy_reg_vlev = 0x0294, .phy_reg_cksymtx = 0x800d, }; static struct fsl_mxc_hdmi_core_platform_data hdmi_core_data = { .ipu_id = 0, .disp_id = 0, }; static struct imx_ipuv3_platform_data ipu_data[] = { { .rev = 4, .csi_clk[0] = "clko_clk", }, { .rev = 4, .csi_clk[0] = "clko_clk", }, }; static void hdmidongle_suspend_enter(void) { /* suspend preparation */ } static void hdmidongle_suspend_exit(void) { /* resume restore */ } static const struct pm_platform_data mx6q_hdmidongle_pm_data __initconst = { .name = "imx_pm", .suspend_enter = hdmidongle_suspend_enter, .suspend_exit = hdmidongle_suspend_exit, }; static struct regulator_consumer_supply hdmidongle_vmmc_consumers[] = { REGULATOR_SUPPLY("vmmc", "sdhci-esdhc-imx.1"), REGULATOR_SUPPLY("vmmc", "sdhci-esdhc-imx.2"), REGULATOR_SUPPLY("vmmc", "sdhci-esdhc-imx.3"), }; static struct regulator_init_data hdmidongle_vmmc_init = { .num_consumer_supplies = ARRAY_SIZE(hdmidongle_vmmc_consumers), .consumer_supplies = hdmidongle_vmmc_consumers, }; static struct fixed_voltage_config hdmidongle_vmmc_reg_config = { .supply_name = "vmmc", .microvolts = 3300000, .gpio = -1, .init_data = &hdmidongle_vmmc_init, }; static struct platform_device hdmidongle_vmmc_reg_devices = { .name = "reg-fixed-voltage", .id = 3, .dev = { .platform_data = &hdmidongle_vmmc_reg_config, }, }; #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) #define GPIO_BUTTON(gpio_num, ev_code, act_low, descr, wake, debounce) \ { \ .gpio = gpio_num, \ .type = EV_KEY, \ .code = ev_code, \ .active_low = act_low, \ .desc = "btn " descr, \ .wakeup = wake, \ .debounce_interval = debounce, \ } static struct gpio_keys_button hdmidongle_reva_buttons[] = { GPIO_BUTTON(HDMIDONGLE_REVA_POWER_KEY, KEY_POWER, 1, "power", 1, 1), }; static struct gpio_keys_platform_data hdmidongle_reva_button_data = { .buttons = hdmidongle_reva_buttons, .nbuttons = ARRAY_SIZE(hdmidongle_reva_buttons), }; static struct platform_device hdmidongle_reva_button_device = { .name = "gpio-keys", .id = -1, .num_resources = 0, .dev = { .platform_data = &hdmidongle_reva_button_data, } }; static struct gpio_keys_button hdmidongle_revb_buttons[] = { GPIO_BUTTON(HDMIDONGLE_REVB_POWER_KEY, KEY_POWER, 1, "power", 1, 1), }; static struct gpio_keys_platform_data hdmidongle_revb_button_data = { .buttons = hdmidongle_revb_buttons, .nbuttons = ARRAY_SIZE(hdmidongle_revb_buttons), }; static struct platform_device hdmidongle_revb_button_device = { .name = "gpio-keys", .id = -1, .num_resources = 0, .dev = { .platform_data = &hdmidongle_revb_button_data, } }; static void __init imx6q_add_device_buttons(void) { if (board_is_mx6_reva()) platform_device_register(&hdmidongle_reva_button_device); else platform_device_register(&hdmidongle_revb_button_device); } #else static void __init imx6q_add_device_buttons(void) {} #endif static struct mxc_dvfs_platform_data hdmidongle_dvfscore_data = { #ifdef CONFIG_MX6_INTER_LDO_BYPASS .reg_id = "VDDCORE", #else .reg_id = "cpu_vddgp", .soc_id = "cpu_vddsoc", .pu_id = "cpu_vddvpu", #endif .clk1_id = "cpu_clk", .clk2_id = "gpc_dvfs_clk", .gpc_cntr_offset = MXC_GPC_CNTR_OFFSET, .ccm_cdcr_offset = MXC_CCM_CDCR_OFFSET, .ccm_cacrr_offset = MXC_CCM_CACRR_OFFSET, .ccm_cdhipr_offset = MXC_CCM_CDHIPR_OFFSET, .prediv_mask = 0x1F800, .prediv_offset = 11, .prediv_val = 3, .div3ck_mask = 0xE0000000, .div3ck_offset = 29, .div3ck_val = 2, .emac_val = 0x08, .upthr_val = 25, .dnthr_val = 9, .pncthr_val = 33, .upcnt_val = 10, .dncnt_val = 10, .delay_time = 80, }; static void __init fixup_mxc_board(struct machine_desc *desc, struct tag *tags, char **cmdline, struct meminfo *mi) { char *str; struct tag *t; int i = 0; struct ipuv3_fb_platform_data *pdata_fb = hdmidongle_fb_data; for_each_tag(t, tags) { if (t->hdr.tag == ATAG_CMDLINE) { str = t->u.cmdline.cmdline; str = strstr(str, "fbmem="); if (str != NULL) { str += 6; pdata_fb[i++].res_size[0] = memparse(str, &str); while (*str == ',' && i < ARRAY_SIZE(hdmidongle_fb_data)) { str++; pdata_fb[i++].res_size[0] = memparse(str, &str); } } break; } } } #define SNVS_LPCR 0x38 static void mx6_snvs_poweroff(void) { void __iomem *mx6_snvs_base = MX6_IO_ADDRESS(MX6Q_SNVS_BASE_ADDR); u32 value; value = readl(mx6_snvs_base + SNVS_LPCR); /*set TOP and DP_EN bit*/ writel(value | 0x60, mx6_snvs_base + SNVS_LPCR); } #ifdef CONFIG_IMX_PCIE static const struct imx_pcie_platform_data mx6_hdmidongle_pcie_data __initconst = { .pcie_pwr_en = HDMIDONGLE_PCIE_PWR_EN, .pcie_rst = HDMIDONGLE_PCIE_RST, .pcie_wake_up = HDMIDONGLE_PCIE_WAKE, .pcie_dis = HDMIDONGLE_PCIE_DIS, }; #endif /*! * Board specific initialization. */ static void __init mx6_hdmidongle_board_init(void) { int i; if (cpu_is_mx6q()) { if (board_is_mx6_revb() || board_is_mx6_revc()) mxc_iomux_v3_setup_multiple_pads(mx6q_hdmidongle_rev_b_pads, ARRAY_SIZE(mx6q_hdmidongle_rev_b_pads)); else mxc_iomux_v3_setup_multiple_pads(mx6q_hdmidongle_rev_a_pads, ARRAY_SIZE(mx6q_hdmidongle_rev_a_pads)); } else if (cpu_is_mx6dl()) { if (board_is_mx6_revb() || board_is_mx6_revc()) mxc_iomux_v3_setup_multiple_pads(mx6dl_hdmidongle_rev_b_pads, ARRAY_SIZE(mx6dl_hdmidongle_rev_b_pads)); else mxc_iomux_v3_setup_multiple_pads(mx6dl_hdmidongle_rev_a_pads, ARRAY_SIZE(mx6dl_hdmidongle_rev_a_pads)); } gp_reg_id = hdmidongle_dvfscore_data.reg_id; soc_reg_id = hdmidongle_dvfscore_data.soc_id; pu_reg_id = hdmidongle_dvfscore_data.pu_id; mx6q_hdmidongle_init_uart(); /* * MX6DL/Solo only supports single IPU * The following codes are used to change ipu id * and display id information for MX6DL/Solo. Then * register 1 IPU device and up to 2 displays for * MX6DL/Solo */ if (cpu_is_mx6dl()) hdmi_core_data.disp_id = 0; imx6q_add_mxc_hdmi_core(&hdmi_core_data); imx6q_add_ipuv3(0, &ipu_data[0]); if (cpu_is_mx6q()) imx6q_add_ipuv3(1, &ipu_data[1]); for (i = 0; i < ARRAY_SIZE(hdmidongle_fb_data); i++) imx6q_add_ipuv3fb(i, &hdmidongle_fb_data[i]); imx6q_add_vdoa(); imx6q_add_v4l2_output(0); imx6q_add_imx_snvs_rtc(); imx6q_add_imx_i2c(1, &mx6q_hdmidongle_i2c_data); imx6q_add_imx_i2c(2, &mx6q_hdmidongle_i2c_data); i2c_register_board_info(1, mxc_i2c1_board_info, ARRAY_SIZE(mxc_i2c1_board_info)); i2c_register_board_info(2, mxc_i2c2_board_info, ARRAY_SIZE(mxc_i2c2_board_info)); /* SPI */ imx6q_add_ecspi(1, &mx6q_hdmidongle_spi_data); spi_device_init(); imx6q_add_mxc_hdmi(&hdmi_data); imx6q_add_anatop_thermal_imx(1, &mx6q_hdmidongle_anatop_thermal_data); imx6q_add_pm_imx(0, &mx6q_hdmidongle_pm_data); /* Move sd3 to first because sd3 connect to emmc. Mfgtools want emmc is mmcblk0 and other sd card is mmcblk1. */ if (board_is_mx6_revc()) imx6q_add_sdhci_usdhc_imx(2, &mx6q_hdmidongle_revc_sd3_data); else imx6q_add_sdhci_usdhc_imx(2, &mx6q_hdmidongle_sd3_data); imx6q_add_sdhci_usdhc_imx(1, &mx6q_hdmidongle_sd2_data); if (board_is_mx6_reva()) imx6q_add_sdhci_usdhc_imx(0, &mx6q_hdmidongle_sd1_data); imx_add_viv_gpu(&imx6_gpu_data, &imx6q_gpu_pdata); imx6q_hdmidongle_init_usb(); imx6q_add_vpu(); platform_device_register(&hdmidongle_vmmc_reg_devices); imx6q_add_otp(); imx6q_add_viim(); imx6q_add_imx2_wdt(0, NULL); imx6q_add_dma(); if (board_is_mx6_revb() || board_is_mx6_revc()) imx6q_add_gpmi(&mx6_gpmi_nand_platform_data); imx6q_add_dvfs_core(&hdmidongle_dvfscore_data); #ifndef CONFIG_MX6_INTER_LDO_BYPASS mx6_cpu_regulator_init(); #endif imx6q_add_device_buttons(); imx6q_add_hdmi_soc(); imx6q_add_hdmi_soc_dai(); if (board_is_mx6_reva()) { gpio_request(HDMIDONGLE_BT_RST, "bt_reset"); gpio_direction_output(HDMIDONGLE_BT_RST, 1); gpio_set_value(HDMIDONGLE_BT_RST, 1); msleep(1000); gpio_request(HDMIDONGLE_BT_EN, "bt_en"); gpio_direction_output(HDMIDONGLE_BT_EN, 1); gpio_set_value(HDMIDONGLE_BT_EN, 1); msleep(1000); gpio_request(HDMIDONGLE_WL_EN, "wl_en"); gpio_direction_output(HDMIDONGLE_WL_EN, 1); gpio_set_value(HDMIDONGLE_WL_EN, 1); msleep(1000); } else if (board_is_mx6_revb() || board_is_mx6_revc()) { /* Add PCIe RC interface support */ #ifdef CONFIG_IMX_PCIE imx6q_add_pcie(&mx6_hdmidongle_pcie_data); #endif } pm_power_off = mx6_snvs_poweroff; imx6q_add_busfreq(); } extern void __iomem *twd_base; static void __init mx6_hdmidongle_timer_init(void) { struct clk *uart_clk; #ifdef CONFIG_LOCAL_TIMERS twd_base = ioremap(LOCAL_TWD_ADDR, SZ_256); BUG_ON(!twd_base); #endif mx6_clocks_init(32768, 24000000, 0, 0); uart_clk = clk_get_sys("imx-uart.0", NULL); early_console_setup(UART4_BASE_ADDR, uart_clk); } static struct sys_timer mx6_hdmidongle_timer = { .init = mx6_hdmidongle_timer_init, }; static void __init mx6q_hdmidongle_reserve(void) { phys_addr_t phys; int i; #if defined(CONFIG_MXC_GPU_VIV) || defined(CONFIG_MXC_GPU_VIV_MODULE) if (imx6q_gpu_pdata.reserved_mem_size) { phys = memblock_alloc_base(imx6q_gpu_pdata.reserved_mem_size, SZ_4K, SZ_1G); memblock_remove(phys, imx6q_gpu_pdata.reserved_mem_size); imx6q_gpu_pdata.reserved_mem_base = phys; } #endif #if defined(CONFIG_ION) if (imx_ion_data.heaps[0].size) { phys = memblock_alloc(imx_ion_data.heaps[0].size, SZ_4K); memblock_remove(phys, imx_ion_data.heaps[0].size); imx_ion_data.heaps[0].base = phys; } #endif for (i = 0; i < ARRAY_SIZE(hdmidongle_fb_data); i++) if (hdmidongle_fb_data[i].res_size[0]) { /* reserve for background buffer */ phys = memblock_alloc(hdmidongle_fb_data[i].res_size[0], SZ_4K); memblock_remove(phys, hdmidongle_fb_data[i].res_size[0]); hdmidongle_fb_data[i].res_base[0] = phys; } } /* * initialize __mach_desc_MX6Q_HDMIDONGLE data structure. */ MACHINE_START(MX6Q_HDMIDONGLE, "Freescale i.MX 6Quad/DualLite HDMI Dongle Board") /* Maintainer: Freescale Semiconductor, Inc. */ .boot_params = MX6_PHYS_OFFSET + 0x100, .fixup = fixup_mxc_board, .map_io = mx6_map_io, .init_irq = mx6_init_irq, .init_machine = mx6_hdmidongle_board_init, .timer = &mx6_hdmidongle_timer, .reserve = mx6q_hdmidongle_reserve, MACHINE_END