| /* Copyright (c) 2011-2012, Code Aurora Forum. 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 version 2 and |
| * only version 2 as published by the Free Software Foundation. |
| * |
| * 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. |
| */ |
| |
| #include <linux/kernel.h> |
| #include <linux/platform_device.h> |
| #include <linux/io.h> |
| #include <linux/gpio.h> |
| #include <linux/irq.h> |
| #include <linux/irqdomain.h> |
| #include <linux/of.h> |
| #include <linux/of_address.h> |
| #include <linux/of_platform.h> |
| #include <linux/of_irq.h> |
| #ifdef CONFIG_ION_MSM |
| #include <linux/ion.h> |
| #endif |
| #include <linux/memory.h> |
| #ifdef CONFIG_ANDROID_PMEM |
| #include <linux/android_pmem.h> |
| #endif |
| #include <linux/regulator/stub-regulator.h> |
| #include <linux/regulator/machine.h> |
| #include <asm/mach/map.h> |
| #include <asm/hardware/gic.h> |
| #include <mach/board.h> |
| #include <mach/gpiomux.h> |
| #include <mach/msm_iomap.h> |
| #ifdef CONFIG_ION_MSM |
| #include <mach/ion.h> |
| #endif |
| #include <mach/msm_memtypes.h> |
| #include <mach/msm_smd.h> |
| #include <mach/rpm-smd.h> |
| #include <mach/rpm-regulator-smd.h> |
| #include <mach/qpnp-int.h> |
| #include <mach/socinfo.h> |
| #include <mach/msm_bus_board.h> |
| #include "clock.h" |
| #include "devices.h" |
| #include "spm.h" |
| #include "modem_notifier.h" |
| #include "lpm_resources.h" |
| |
| #define MSM_KERNEL_EBI1_MEM_SIZE 0x280000 |
| #ifdef CONFIG_FB_MSM_HDMI_AS_PRIMARY |
| #define MSM_ION_SF_SIZE 0x4000000 /* 64 Mbytes */ |
| #else |
| #define MSM_ION_SF_SIZE 0x2800000 /* 40 Mbytes */ |
| #endif |
| #define MSM_ION_MM_FW_SIZE 0xa00000 /* (10MB) */ |
| #define MSM_ION_MM_SIZE 0x7800000 /* (120MB) */ |
| #define MSM_ION_QSECOM_SIZE 0x100000 /* (1MB) */ |
| #define MSM_ION_MFC_SIZE SZ_8K |
| #define MSM_ION_AUDIO_SIZE 0x2B4000 |
| #define MSM_ION_HEAP_NUM 8 |
| |
| #ifdef CONFIG_KERNEL_PMEM_EBI_REGION |
| static unsigned kernel_ebi1_mem_size = MSM_KERNEL_EBI1_MEM_SIZE; |
| static int __init kernel_ebi1_mem_size_setup(char *p) |
| { |
| kernel_ebi1_mem_size = memparse(p, NULL); |
| return 0; |
| } |
| early_param("kernel_ebi1_mem_size", kernel_ebi1_mem_size_setup); |
| #endif |
| |
| static struct memtype_reserve msm_8974_reserve_table[] __initdata = { |
| [MEMTYPE_SMI] = { |
| }, |
| [MEMTYPE_EBI0] = { |
| .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| }, |
| [MEMTYPE_EBI1] = { |
| .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| }, |
| }; |
| |
| static int msm_8974_paddr_to_memtype(unsigned int paddr) |
| { |
| return MEMTYPE_EBI1; |
| } |
| |
| #ifdef CONFIG_ION_MSM |
| static struct ion_cp_heap_pdata cp_mm_ion_pdata = { |
| .permission_type = IPT_TYPE_MM_CARVEOUT, |
| .align = PAGE_SIZE, |
| }; |
| |
| static struct ion_cp_heap_pdata cp_mfc_ion_pdata = { |
| .permission_type = IPT_TYPE_MFC_SHAREDMEM, |
| .align = PAGE_SIZE, |
| }; |
| |
| static struct ion_co_heap_pdata co_ion_pdata = { |
| .adjacent_mem_id = INVALID_HEAP_ID, |
| .align = PAGE_SIZE, |
| }; |
| |
| static struct ion_co_heap_pdata fw_co_ion_pdata = { |
| .adjacent_mem_id = ION_CP_MM_HEAP_ID, |
| .align = SZ_128K, |
| }; |
| |
| /** |
| * These heaps are listed in the order they will be allocated. Due to |
| * video hardware restrictions and content protection the FW heap has to |
| * be allocated adjacent (below) the MM heap and the MFC heap has to be |
| * allocated after the MM heap to ensure MFC heap is not more than 256MB |
| * away from the base address of the FW heap. |
| * However, the order of FW heap and MM heap doesn't matter since these |
| * two heaps are taken care of by separate code to ensure they are adjacent |
| * to each other. |
| * Don't swap the order unless you know what you are doing! |
| */ |
| static struct ion_platform_data ion_pdata = { |
| .nr = MSM_ION_HEAP_NUM, |
| .heaps = { |
| { |
| .id = ION_SYSTEM_HEAP_ID, |
| .type = ION_HEAP_TYPE_SYSTEM, |
| .name = ION_VMALLOC_HEAP_NAME, |
| }, |
| { |
| .id = ION_CP_MM_HEAP_ID, |
| .type = ION_HEAP_TYPE_CP, |
| .name = ION_MM_HEAP_NAME, |
| .size = MSM_ION_MM_SIZE, |
| .memory_type = ION_EBI_TYPE, |
| .extra_data = (void *) &cp_mm_ion_pdata, |
| }, |
| { |
| .id = ION_MM_FIRMWARE_HEAP_ID, |
| .type = ION_HEAP_TYPE_CARVEOUT, |
| .name = ION_MM_FIRMWARE_HEAP_NAME, |
| .size = MSM_ION_MM_FW_SIZE, |
| .memory_type = ION_EBI_TYPE, |
| .extra_data = (void *) &fw_co_ion_pdata, |
| }, |
| { |
| .id = ION_CP_MFC_HEAP_ID, |
| .type = ION_HEAP_TYPE_CP, |
| .name = ION_MFC_HEAP_NAME, |
| .size = MSM_ION_MFC_SIZE, |
| .memory_type = ION_EBI_TYPE, |
| .extra_data = (void *) &cp_mfc_ion_pdata, |
| }, |
| { |
| .id = ION_SF_HEAP_ID, |
| .type = ION_HEAP_TYPE_CARVEOUT, |
| .name = ION_SF_HEAP_NAME, |
| .size = MSM_ION_SF_SIZE, |
| .memory_type = ION_EBI_TYPE, |
| .extra_data = (void *) &co_ion_pdata, |
| }, |
| { |
| .id = ION_IOMMU_HEAP_ID, |
| .type = ION_HEAP_TYPE_IOMMU, |
| .name = ION_IOMMU_HEAP_NAME, |
| }, |
| { |
| .id = ION_QSECOM_HEAP_ID, |
| .type = ION_HEAP_TYPE_CARVEOUT, |
| .name = ION_QSECOM_HEAP_NAME, |
| .size = MSM_ION_QSECOM_SIZE, |
| .memory_type = ION_EBI_TYPE, |
| .extra_data = (void *) &co_ion_pdata, |
| }, |
| { |
| .id = ION_AUDIO_HEAP_ID, |
| .type = ION_HEAP_TYPE_CARVEOUT, |
| .name = ION_AUDIO_HEAP_NAME, |
| .size = MSM_ION_AUDIO_SIZE, |
| .memory_type = ION_EBI_TYPE, |
| .extra_data = (void *) &co_ion_pdata, |
| }, |
| } |
| }; |
| |
| static struct platform_device ion_dev = { |
| .name = "ion-msm", |
| .id = 1, |
| .dev = { .platform_data = &ion_pdata }, |
| }; |
| |
| static void __init reserve_ion_memory(void) |
| { |
| msm_8974_reserve_table[MEMTYPE_EBI1].size += MSM_ION_MM_SIZE; |
| msm_8974_reserve_table[MEMTYPE_EBI1].size += MSM_ION_MM_FW_SIZE; |
| msm_8974_reserve_table[MEMTYPE_EBI1].size += MSM_ION_SF_SIZE; |
| msm_8974_reserve_table[MEMTYPE_EBI1].size += MSM_ION_MFC_SIZE; |
| msm_8974_reserve_table[MEMTYPE_EBI1].size += MSM_ION_QSECOM_SIZE; |
| msm_8974_reserve_table[MEMTYPE_EBI1].size += MSM_ION_AUDIO_SIZE; |
| #ifdef CONFIG_KERNEL_PMEM_EBI_REGION |
| msm_8974_reserve_table[MEMTYPE_EBI1].size += kernel_ebi1_mem_size; |
| #endif |
| } |
| #endif |
| |
| static struct resource smd_resource[] = { |
| { |
| .name = "modem_smd_in", |
| .start = 32 + 17, /* mss_sw_to_kpss_ipc_irq0 */ |
| .flags = IORESOURCE_IRQ, |
| }, |
| { |
| .name = "modem_smsm_in", |
| .start = 32 + 18, /* mss_sw_to_kpss_ipc_irq1 */ |
| .flags = IORESOURCE_IRQ, |
| }, |
| { |
| .name = "adsp_smd_in", |
| .start = 32 + 156, /* lpass_to_kpss_ipc_irq0 */ |
| .flags = IORESOURCE_IRQ, |
| }, |
| { |
| .name = "adsp_smsm_in", |
| .start = 32 + 157, /* lpass_to_kpss_ipc_irq1 */ |
| .flags = IORESOURCE_IRQ, |
| }, |
| { |
| .name = "wcnss_smd_in", |
| .start = 32 + 142, /* WcnssAppsSmdMedIrq */ |
| .flags = IORESOURCE_IRQ, |
| }, |
| { |
| .name = "wcnss_smsm_in", |
| .start = 32 + 144, /* RivaAppsWlanSmsmIrq */ |
| .flags = IORESOURCE_IRQ, |
| }, |
| { |
| .name = "rpm_smd_in", |
| .start = 32 + 168, /* rpm_to_kpss_ipc_irq4 */ |
| .flags = IORESOURCE_IRQ, |
| }, |
| }; |
| |
| static struct smd_subsystem_config smd_config_list[] = { |
| { |
| .irq_config_id = SMD_MODEM, |
| .subsys_name = "modem", |
| .edge = SMD_APPS_MODEM, |
| |
| .smd_int.irq_name = "modem_smd_in", |
| .smd_int.flags = IRQF_TRIGGER_RISING, |
| .smd_int.irq_id = -1, |
| .smd_int.device_name = "smd_dev", |
| .smd_int.dev_id = 0, |
| .smd_int.out_bit_pos = 1 << 12, |
| .smd_int.out_base = (void __iomem *)MSM_APCS_GCC_BASE, |
| .smd_int.out_offset = 0x8, |
| |
| .smsm_int.irq_name = "modem_smsm_in", |
| .smsm_int.flags = IRQF_TRIGGER_RISING, |
| .smsm_int.irq_id = -1, |
| .smsm_int.device_name = "smsm_dev", |
| .smsm_int.dev_id = 0, |
| .smsm_int.out_bit_pos = 1 << 13, |
| .smsm_int.out_base = (void __iomem *)MSM_APCS_GCC_BASE, |
| .smsm_int.out_offset = 0x8, |
| }, |
| { |
| .irq_config_id = SMD_Q6, |
| .subsys_name = "adsp", |
| .edge = SMD_APPS_QDSP, |
| |
| .smd_int.irq_name = "adsp_smd_in", |
| .smd_int.flags = IRQF_TRIGGER_RISING, |
| .smd_int.irq_id = -1, |
| .smd_int.device_name = "smd_dev", |
| .smd_int.dev_id = 0, |
| .smd_int.out_bit_pos = 1 << 8, |
| .smd_int.out_base = (void __iomem *)MSM_APCS_GCC_BASE, |
| .smd_int.out_offset = 0x8, |
| |
| .smsm_int.irq_name = "adsp_smsm_in", |
| .smsm_int.flags = IRQF_TRIGGER_RISING, |
| .smsm_int.irq_id = -1, |
| .smsm_int.device_name = "smsm_dev", |
| .smsm_int.dev_id = 0, |
| .smsm_int.out_bit_pos = 1 << 9, |
| .smsm_int.out_base = (void __iomem *)MSM_APCS_GCC_BASE, |
| .smsm_int.out_offset = 0x8, |
| }, |
| { |
| .irq_config_id = SMD_WCNSS, |
| .subsys_name = "wcnss", |
| .edge = SMD_APPS_WCNSS, |
| |
| .smd_int.irq_name = "wcnss_smd_in", |
| .smd_int.flags = IRQF_TRIGGER_RISING, |
| .smd_int.irq_id = -1, |
| .smd_int.device_name = "smd_dev", |
| .smd_int.dev_id = 0, |
| .smd_int.out_bit_pos = 1 << 17, |
| .smd_int.out_base = (void __iomem *)MSM_APCS_GCC_BASE, |
| .smd_int.out_offset = 0x8, |
| |
| .smsm_int.irq_name = "wcnss_smsm_in", |
| .smsm_int.flags = IRQF_TRIGGER_RISING, |
| .smsm_int.irq_id = -1, |
| .smsm_int.device_name = "smsm_dev", |
| .smsm_int.dev_id = 0, |
| .smsm_int.out_bit_pos = 1 << 19, |
| .smsm_int.out_base = (void __iomem *)MSM_APCS_GCC_BASE, |
| .smsm_int.out_offset = 0x8, |
| }, |
| { |
| .irq_config_id = SMD_RPM, |
| .subsys_name = NULL, /* do not use PIL to load RPM */ |
| .edge = SMD_APPS_RPM, |
| |
| .smd_int.irq_name = "rpm_smd_in", |
| .smd_int.flags = IRQF_TRIGGER_RISING, |
| .smd_int.irq_id = -1, |
| .smd_int.device_name = "smd_dev", |
| .smd_int.dev_id = 0, |
| .smd_int.out_bit_pos = 1 << 0, |
| .smd_int.out_base = (void __iomem *)MSM_APCS_GCC_BASE, |
| .smd_int.out_offset = 0x8, |
| |
| .smsm_int.irq_name = NULL, /* RPM does not support SMSM */ |
| .smsm_int.flags = 0, |
| .smsm_int.irq_id = 0, |
| .smsm_int.device_name = NULL, |
| .smsm_int.dev_id = 0, |
| .smsm_int.out_bit_pos = 0, |
| .smsm_int.out_base = NULL, |
| .smsm_int.out_offset = 0, |
| }, |
| }; |
| |
| static struct smd_smem_regions aux_smem_areas[] = { |
| { |
| .phys_addr = (void *)(0xfc428000), |
| .size = 0x4000, |
| }, |
| }; |
| |
| static struct smd_subsystem_restart_config smd_ssr_cfg = { |
| .disable_smsm_reset_handshake = 1, |
| }; |
| |
| static struct smd_platform smd_platform_data = { |
| .num_ss_configs = ARRAY_SIZE(smd_config_list), |
| .smd_ss_configs = smd_config_list, |
| .smd_ssr_config = &smd_ssr_cfg, |
| .num_smem_areas = ARRAY_SIZE(aux_smem_areas), |
| .smd_smem_areas = aux_smem_areas, |
| }; |
| |
| struct platform_device msm_device_smd_8974 = { |
| .name = "msm_smd", |
| .id = -1, |
| .resource = smd_resource, |
| .num_resources = ARRAY_SIZE(smd_resource), |
| .dev = { |
| .platform_data = &smd_platform_data, |
| } |
| }; |
| |
| static void __init msm_8974_calculate_reserve_sizes(void) |
| { |
| #ifdef CONFIG_ION_MSM |
| reserve_ion_memory(); |
| #endif |
| } |
| |
| static struct reserve_info msm_8974_reserve_info __initdata = { |
| .memtype_reserve_table = msm_8974_reserve_table, |
| .calculate_reserve_sizes = msm_8974_calculate_reserve_sizes, |
| .paddr_to_memtype = msm_8974_paddr_to_memtype, |
| }; |
| |
| static void __init msm_8974_early_memory(void) |
| { |
| reserve_info = &msm_8974_reserve_info; |
| } |
| |
| void __init msm_8974_reserve(void) |
| { |
| msm_reserve(); |
| } |
| |
| static struct platform_device android_usb_device = { |
| .name = "android_usb", |
| .id = -1, |
| }; |
| |
| #define SHARED_IMEM_TZ_BASE 0xFE805720 |
| static struct resource msm8974_tzlog_resources[] = { |
| { |
| .start = SHARED_IMEM_TZ_BASE, |
| .end = SHARED_IMEM_TZ_BASE + SZ_4K - 1, |
| .flags = IORESOURCE_MEM, |
| }, |
| }; |
| |
| struct platform_device msm8974_device_tz_log = { |
| .name = "tz_log", |
| .id = 0, |
| .num_resources = ARRAY_SIZE(msm8974_tzlog_resources), |
| .resource = msm8974_tzlog_resources, |
| }; |
| |
| #define BIMC_BASE 0xfc380000 |
| #define BIMC_SIZE 0x0006A000 |
| #define SYS_NOC_BASE 0xfc460000 |
| #define PERIPH_NOC_BASE 0xFC468000 |
| #define OCMEM_NOC_BASE 0xfc470000 |
| #define MMSS_NOC_BASE 0xfc478000 |
| #define CONFIG_NOC_BASE 0xfc480000 |
| #define NOC_SIZE 0x00004000 |
| |
| static struct resource bimc_res[] = { |
| { |
| .start = BIMC_BASE, |
| .end = BIMC_BASE + BIMC_SIZE, |
| .flags = IORESOURCE_MEM, |
| .name = "bimc_mem", |
| }, |
| }; |
| |
| static struct resource ocmem_noc_res[] = { |
| { |
| .start = OCMEM_NOC_BASE, |
| .end = OCMEM_NOC_BASE + NOC_SIZE, |
| .flags = IORESOURCE_MEM, |
| .name = "ocmem_noc_mem", |
| }, |
| }; |
| |
| static struct resource mmss_noc_res[] = { |
| { |
| .start = MMSS_NOC_BASE, |
| .end = MMSS_NOC_BASE + NOC_SIZE, |
| .flags = IORESOURCE_MEM, |
| .name = "mmss_noc_mem", |
| }, |
| }; |
| |
| static struct resource sys_noc_res[] = { |
| { |
| .start = SYS_NOC_BASE, |
| .end = SYS_NOC_BASE + NOC_SIZE, |
| .flags = IORESOURCE_MEM, |
| .name = "sys_noc_mem", |
| }, |
| }; |
| |
| static struct resource config_noc_res[] = { |
| { |
| .start = CONFIG_NOC_BASE, |
| .end = CONFIG_NOC_BASE + NOC_SIZE, |
| .flags = IORESOURCE_MEM, |
| .name = "config_noc_mem", |
| }, |
| }; |
| |
| static struct resource periph_noc_res[] = { |
| { |
| .start = PERIPH_NOC_BASE, |
| .end = PERIPH_NOC_BASE + NOC_SIZE, |
| .flags = IORESOURCE_MEM, |
| .name = "periph_noc_mem", |
| }, |
| }; |
| |
| static struct platform_device msm_bus_sys_noc = { |
| .name = "msm_bus_fabric", |
| .id = MSM_BUS_FAB_SYS_NOC, |
| .num_resources = ARRAY_SIZE(sys_noc_res), |
| .resource = sys_noc_res, |
| }; |
| |
| static struct platform_device msm_bus_bimc = { |
| .name = "msm_bus_fabric", |
| .id = MSM_BUS_FAB_BIMC, |
| .num_resources = ARRAY_SIZE(bimc_res), |
| .resource = bimc_res, |
| }; |
| |
| static struct platform_device msm_bus_mmss_noc = { |
| .name = "msm_bus_fabric", |
| .id = MSM_BUS_FAB_MMSS_NOC, |
| .num_resources = ARRAY_SIZE(mmss_noc_res), |
| .resource = mmss_noc_res, |
| }; |
| |
| static struct platform_device msm_bus_ocmem_noc = { |
| .name = "msm_bus_fabric", |
| .id = MSM_BUS_FAB_OCMEM_NOC, |
| .num_resources = ARRAY_SIZE(ocmem_noc_res), |
| .resource = ocmem_noc_res, |
| }; |
| |
| static struct platform_device msm_bus_periph_noc = { |
| .name = "msm_bus_fabric", |
| .id = MSM_BUS_FAB_PERIPH_NOC, |
| .num_resources = ARRAY_SIZE(periph_noc_res), |
| .resource = periph_noc_res, |
| }; |
| |
| static struct platform_device msm_bus_config_noc = { |
| .name = "msm_bus_fabric", |
| .id = MSM_BUS_FAB_CONFIG_NOC, |
| .num_resources = ARRAY_SIZE(config_noc_res), |
| .resource = config_noc_res, |
| }; |
| |
| static struct platform_device msm_bus_ocmem_vnoc = { |
| .name = "msm_bus_fabric", |
| .id = MSM_BUS_FAB_OCMEM_VNOC, |
| }; |
| |
| static struct platform_device *msm_bus_8974_devices[] = { |
| &msm_bus_sys_noc, |
| &msm_bus_bimc, |
| &msm_bus_mmss_noc, |
| &msm_bus_ocmem_noc, |
| &msm_bus_periph_noc, |
| &msm_bus_config_noc, |
| &msm_bus_ocmem_vnoc, |
| }; |
| |
| static void __init msm8974_init_buses(void) |
| { |
| #ifdef CONFIG_MSM_BUS_SCALING |
| msm_bus_sys_noc.dev.platform_data = |
| &msm_bus_8974_sys_noc_pdata; |
| msm_bus_bimc.dev.platform_data = &msm_bus_8974_bimc_pdata; |
| msm_bus_mmss_noc.dev.platform_data = &msm_bus_8974_mmss_noc_pdata; |
| msm_bus_ocmem_noc.dev.platform_data = &msm_bus_8974_ocmem_noc_pdata; |
| msm_bus_periph_noc.dev.platform_data = &msm_bus_8974_periph_noc_pdata; |
| msm_bus_config_noc.dev.platform_data = &msm_bus_8974_config_noc_pdata; |
| msm_bus_ocmem_vnoc.dev.platform_data = &msm_bus_8974_ocmem_vnoc_pdata; |
| #endif |
| platform_add_devices(msm_bus_8974_devices, |
| ARRAY_SIZE(msm_bus_8974_devices)); |
| }; |
| |
| void __init msm_8974_add_devices(void) |
| { |
| #ifdef CONFIG_ION_MSM |
| platform_device_register(&ion_dev); |
| #endif |
| platform_device_register(&msm_device_smd_8974); |
| platform_device_register(&android_usb_device); |
| platform_add_devices(msm_8974_stub_regulator_devices, |
| msm_8974_stub_regulator_devices_len); |
| platform_device_register(&msm8974_device_tz_log); |
| } |
| |
| static struct clk_lookup msm_clocks_dummy[] = { |
| CLK_DUMMY("xo", XO_CLK, NULL, OFF), |
| CLK_DUMMY("xo", XO_CLK, "pil_pronto", OFF), |
| CLK_DUMMY("core_clk", BLSP2_UART_CLK, "msm_serial_hsl.0", OFF), |
| CLK_DUMMY("iface_clk", BLSP2_UART_CLK, "msm_serial_hsl.0", OFF), |
| CLK_DUMMY("core_clk", SDC1_CLK, NULL, OFF), |
| CLK_DUMMY("iface_clk", SDC1_P_CLK, NULL, OFF), |
| CLK_DUMMY("core_clk", SDC3_CLK, NULL, OFF), |
| CLK_DUMMY("iface_clk", SDC3_P_CLK, NULL, OFF), |
| CLK_DUMMY("phy_clk", NULL, "msm_otg", OFF), |
| CLK_DUMMY("core_clk", NULL, "msm_otg", OFF), |
| CLK_DUMMY("iface_clk", NULL, "msm_otg", OFF), |
| CLK_DUMMY("xo", NULL, "msm_otg", OFF), |
| CLK_DUMMY("dfab_clk", DFAB_CLK, NULL, 0), |
| CLK_DUMMY("dma_bam_pclk", DMA_BAM_P_CLK, NULL, 0), |
| CLK_DUMMY("mem_clk", NULL, NULL, 0), |
| CLK_DUMMY("core_clk", SPI_CLK, "spi_qsd.1", OFF), |
| CLK_DUMMY("iface_clk", SPI_P_CLK, "spi_qsd.1", OFF), |
| CLK_DUMMY("core_clk", NULL, "f9966000.i2c", 0), |
| CLK_DUMMY("iface_clk", NULL, "f9966000.i2c", 0), |
| CLK_DUMMY("core_clk", NULL, "fe12f000.slim", OFF), |
| CLK_DUMMY("core_clk", "mdp.0", NULL, 0), |
| CLK_DUMMY("core_clk_src", "mdp.0", NULL, 0), |
| CLK_DUMMY("lut_clk", "mdp.0", NULL, 0), |
| CLK_DUMMY("vsync_clk", "mdp.0", NULL, 0), |
| CLK_DUMMY("iface_clk", "mdp.0", NULL, 0), |
| CLK_DUMMY("bus_clk", "mdp.0", NULL, 0), |
| }; |
| |
| struct clock_init_data msm_dummy_clock_init_data __initdata = { |
| .table = msm_clocks_dummy, |
| .size = ARRAY_SIZE(msm_clocks_dummy), |
| }; |
| |
| /* |
| * Used to satisfy dependencies for devices that need to be |
| * run early or in a particular order. Most likely your device doesn't fall |
| * into this category, and thus the driver should not be added here. The |
| * EPROBE_DEFER can satisfy most dependency problems. |
| */ |
| void __init msm_8974_add_drivers(void) |
| { |
| msm_init_modem_notifier_list(); |
| msm_smd_init(); |
| msm_rpm_driver_init(); |
| msm_lpmrs_module_init(); |
| rpm_regulator_smd_driver_init(); |
| msm_spm_device_init(); |
| regulator_stub_init(); |
| if (machine_is_msm8974_rumi()) |
| msm_clock_init(&msm_dummy_clock_init_data); |
| else |
| msm_clock_init(&msm8974_clock_init_data); |
| msm8974_init_buses(); |
| } |
| |
| static struct of_device_id irq_match[] __initdata = { |
| { .compatible = "qcom,msm-qgic2", .data = gic_of_init, }, |
| { .compatible = "qcom,msm-gpio", .data = msm_gpio_of_init, }, |
| { .compatible = "qcom,spmi-pmic-arb", .data = qpnpint_of_init, }, |
| {} |
| }; |
| |
| void __init msm_8974_init_irq(void) |
| { |
| of_irq_init(irq_match); |
| } |
| |
| static struct of_dev_auxdata msm_8974_auxdata_lookup[] __initdata = { |
| OF_DEV_AUXDATA("qcom,msm-lsuart-v14", 0xF991F000, \ |
| "msm_serial_hsl.0", NULL), |
| OF_DEV_AUXDATA("qcom,hsusb-otg", 0xF9A55000, \ |
| "msm_otg", NULL), |
| OF_DEV_AUXDATA("qcom,dwc-usb3-msm", 0xF9200000, \ |
| "msm_dwc3", NULL), |
| OF_DEV_AUXDATA("qcom,spi-qup-v2", 0xF9924000, \ |
| "spi_qsd.1", NULL), |
| OF_DEV_AUXDATA("qcom,spmi-pmic-arb", 0xFC4C0000, \ |
| "spmi-pmic-arb.0", NULL), |
| OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9824000, \ |
| "msm_sdcc.1", NULL), |
| OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98A4000, \ |
| "msm_sdcc.2", NULL), |
| OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9864000, \ |
| "msm_sdcc.3", NULL), |
| OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98E4000, \ |
| "msm_sdcc.4", NULL), |
| OF_DEV_AUXDATA("qcom,pil-q6v5-lpass", 0xFE200000, \ |
| "pil-q6v5-lpass", NULL), |
| OF_DEV_AUXDATA("qcom,pil-q6v5-mss", 0xFC880000, "pil-q6v5-mss", NULL), |
| OF_DEV_AUXDATA("qcom,pil-mba", 0xFC820000, "pil-mba", NULL), |
| OF_DEV_AUXDATA("qcom,pil-pronto", 0xFB21B000, \ |
| "pil_pronto", NULL), |
| OF_DEV_AUXDATA("qcom,msm-rng", 0xF9BFF000, \ |
| "msm_rng", NULL), |
| OF_DEV_AUXDATA("qcom,qseecom", 0xFE806000, \ |
| "qseecom", NULL), |
| OF_DEV_AUXDATA("qcom,mdss_mdp", 0xFD900000, "mdp.0", NULL), |
| {} |
| }; |
| |
| void __init msm_8974_init(struct of_dev_auxdata **adata) |
| { |
| msm_8974_init_gpiomux(); |
| |
| *adata = msm_8974_auxdata_lookup; |
| |
| regulator_has_full_constraints(); |
| } |
| |
| void __init msm_8974_very_early(void) |
| { |
| msm_8974_early_memory(); |
| } |