| /* Copyright (c) 2011, 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/irq.h> |
| #include <linux/i2c.h> |
| #include <linux/slimbus/slimbus.h> |
| #include <linux/msm_ssbi.h> |
| #include <linux/spi/spi.h> |
| #include <linux/dma-mapping.h> |
| #include <linux/platform_data/qcom_crypto_device.h> |
| #include <asm/mach-types.h> |
| #include <asm/mach/arch.h> |
| #include <asm/hardware/gic.h> |
| #include <asm/mach/mmc.h> |
| |
| #include <mach/board.h> |
| #include <mach/msm_iomap.h> |
| #include <linux/usb/msm_hsusb.h> |
| #include <linux/usb/android.h> |
| #include <mach/socinfo.h> |
| #include <mach/msm_spi.h> |
| #include "timer.h" |
| #include "devices.h" |
| #include <mach/gpio.h> |
| #include <mach/gpiomux.h> |
| #include <linux/android_pmem.h> |
| #include <mach/msm_memtypes.h> |
| #include <linux/bootmem.h> |
| #include <asm/setup.h> |
| #include <mach/dma.h> |
| |
| #include "msm_watchdog.h" |
| #include "board-apq8064.h" |
| |
| #define MSM_PMEM_KERNEL_EBI1_SIZE 0x600000 |
| #define MSM_PMEM_ADSP_SIZE 0x3800000 |
| #define MSM_PMEM_AUDIO_SIZE 0x28B000 |
| #define MSM_PMEM_SIZE 0x1800000 /* 24 Mbytes */ |
| |
| static struct memtype_reserve apq8064_reserve_table[] __initdata = { |
| [MEMTYPE_SMI] = { |
| }, |
| [MEMTYPE_EBI0] = { |
| .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| }, |
| [MEMTYPE_EBI1] = { |
| .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| }, |
| }; |
| |
| static int apq8064_paddr_to_memtype(unsigned int paddr) |
| { |
| return MEMTYPE_EBI1; |
| } |
| |
| static unsigned pmem_size = MSM_PMEM_SIZE; |
| static int __init pmem_size_setup(char *p) |
| { |
| pmem_size = memparse(p, NULL); |
| return 0; |
| } |
| early_param("pmem_size", pmem_size_setup); |
| |
| static unsigned pmem_adsp_size = MSM_PMEM_ADSP_SIZE; |
| |
| static int __init pmem_adsp_size_setup(char *p) |
| { |
| pmem_adsp_size = memparse(p, NULL); |
| return 0; |
| } |
| early_param("pmem_adsp_size", pmem_adsp_size_setup); |
| |
| static unsigned pmem_audio_size = MSM_PMEM_AUDIO_SIZE; |
| |
| static int __init pmem_audio_size_setup(char *p) |
| { |
| pmem_audio_size = memparse(p, NULL); |
| return 0; |
| } |
| early_param("pmem_audio_size", pmem_audio_size_setup); |
| |
| static struct android_pmem_platform_data android_pmem_pdata = { |
| .name = "pmem", |
| .allocator_type = PMEM_ALLOCATORTYPE_ALLORNOTHING, |
| .cached = 1, |
| .memory_type = MEMTYPE_EBI1, |
| }; |
| |
| static struct platform_device android_pmem_device = { |
| .name = "android_pmem", |
| .id = 0, |
| .dev = {.platform_data = &android_pmem_pdata}, |
| }; |
| |
| static struct android_pmem_platform_data android_pmem_adsp_pdata = { |
| .name = "pmem_adsp", |
| .allocator_type = PMEM_ALLOCATORTYPE_BITMAP, |
| .cached = 0, |
| .memory_type = MEMTYPE_EBI1, |
| }; |
| |
| static unsigned pmem_kernel_ebi1_size = MSM_PMEM_KERNEL_EBI1_SIZE; |
| static int __init pmem_kernel_ebi1_size_setup(char *p) |
| { |
| pmem_kernel_ebi1_size = memparse(p, NULL); |
| return 0; |
| } |
| early_param("pmem_kernel_ebi1_size", pmem_kernel_ebi1_size_setup); |
| |
| static struct platform_device android_pmem_adsp_device = { |
| .name = "android_pmem", |
| .id = 2, |
| .dev = { .platform_data = &android_pmem_adsp_pdata }, |
| }; |
| |
| static struct android_pmem_platform_data android_pmem_audio_pdata = { |
| .name = "pmem_audio", |
| .allocator_type = PMEM_ALLOCATORTYPE_BITMAP, |
| .cached = 0, |
| .memory_type = MEMTYPE_EBI1, |
| }; |
| |
| static struct platform_device android_pmem_audio_device = { |
| .name = "android_pmem", |
| .id = 4, |
| .dev = { .platform_data = &android_pmem_audio_pdata }, |
| }; |
| |
| static void __init size_pmem_devices(void) |
| { |
| android_pmem_adsp_pdata.size = pmem_adsp_size; |
| android_pmem_pdata.size = pmem_size; |
| android_pmem_audio_pdata.size = MSM_PMEM_AUDIO_SIZE; |
| } |
| |
| static void __init reserve_memory_for(struct android_pmem_platform_data *p) |
| { |
| apq8064_reserve_table[p->memory_type].size += p->size; |
| } |
| |
| |
| static void __init reserve_pmem_memory(void) |
| { |
| reserve_memory_for(&android_pmem_adsp_pdata); |
| reserve_memory_for(&android_pmem_pdata); |
| reserve_memory_for(&android_pmem_audio_pdata); |
| apq8064_reserve_table[MEMTYPE_EBI1].size += pmem_kernel_ebi1_size; |
| } |
| |
| static void __init apq8064_calculate_reserve_sizes(void) |
| { |
| size_pmem_devices(); |
| reserve_pmem_memory(); |
| } |
| |
| static struct reserve_info apq8064_reserve_info __initdata = { |
| .memtype_reserve_table = apq8064_reserve_table, |
| .calculate_reserve_sizes = apq8064_calculate_reserve_sizes, |
| .paddr_to_memtype = apq8064_paddr_to_memtype, |
| }; |
| |
| static int apq8064_memory_bank_size(void) |
| { |
| return 1<<29; |
| } |
| |
| static void __init locate_unstable_memory(void) |
| { |
| struct membank *mb = &meminfo.bank[meminfo.nr_banks - 1]; |
| unsigned long bank_size; |
| unsigned long low, high; |
| |
| bank_size = apq8064_memory_bank_size(); |
| low = meminfo.bank[0].start; |
| high = mb->start + mb->size; |
| low &= ~(bank_size - 1); |
| |
| if (high - low <= bank_size) |
| return; |
| apq8064_reserve_info.low_unstable_address = low + bank_size; |
| apq8064_reserve_info.max_unstable_size = high - low - bank_size; |
| apq8064_reserve_info.bank_size = bank_size; |
| pr_info("low unstable address %lx max size %lx bank size %lx\n", |
| apq8064_reserve_info.low_unstable_address, |
| apq8064_reserve_info.max_unstable_size, |
| apq8064_reserve_info.bank_size); |
| } |
| |
| static void __init apq8064_reserve(void) |
| { |
| reserve_info = &apq8064_reserve_info; |
| locate_unstable_memory(); |
| msm_reserve(); |
| } |
| |
| static struct platform_device android_usb_device = { |
| .name = "android_usb", |
| .id = -1, |
| }; |
| |
| static struct msm_otg_platform_data msm_otg_pdata = { |
| .mode = USB_PERIPHERAL, |
| .otg_control = OTG_PHY_CONTROL, |
| .phy_type = SNPS_28NM_INTEGRATED_PHY, |
| .pclk_src_name = "dfab_usb_hs_clk", |
| }; |
| |
| /* APQ8064 has 4 SDCC controllers */ |
| enum sdcc_controllers { |
| SDCC1, |
| SDCC2, |
| SDCC3, |
| SDCC4, |
| MAX_SDCC_CONTROLLER |
| }; |
| |
| /* All SDCC controllers require VDD/VCC voltage */ |
| static struct msm_mmc_reg_data mmc_vdd_reg_data[MAX_SDCC_CONTROLLER] = { |
| /* SDCC1 : eMMC card connected */ |
| [SDCC1] = { |
| .name = "sdc_vdd", |
| .high_vol_level = 2950000, |
| .low_vol_level = 2950000, |
| .always_on = 1, |
| .lpm_sup = 1, |
| .lpm_uA = 9000, |
| .hpm_uA = 200000, /* 200mA */ |
| }, |
| /* SDCC3 : External card slot connected */ |
| [SDCC3] = { |
| .name = "sdc_vdd", |
| .high_vol_level = 2950000, |
| .low_vol_level = 2950000, |
| .hpm_uA = 600000, /* 600mA */ |
| } |
| }; |
| |
| /* Only slots having eMMC card will require VCCQ voltage */ |
| static struct msm_mmc_reg_data mmc_vccq_reg_data[1] = { |
| /* SDCC1 : eMMC card connected */ |
| [SDCC1] = { |
| .name = "sdc_vccq", |
| .always_on = 1, |
| .high_vol_level = 1800000, |
| .low_vol_level = 1800000, |
| .hpm_uA = 200000, /* 200mA */ |
| } |
| }; |
| |
| /* All SDCC controllers may require voting for VDD PAD voltage */ |
| static struct msm_mmc_reg_data mmc_vddp_reg_data[MAX_SDCC_CONTROLLER] = { |
| /* SDCC3 : External card slot connected */ |
| [SDCC3] = { |
| .name = "sdc_vddp", |
| .high_vol_level = 2950000, |
| .low_vol_level = 1850000, |
| .always_on = 1, |
| .lpm_sup = 1, |
| /* Max. Active current required is 16 mA */ |
| .hpm_uA = 16000, |
| /* |
| * Sleep current required is ~300 uA. But min. vote can be |
| * in terms of mA (min. 1 mA). So let's vote for 2 mA |
| * during sleep. |
| */ |
| .lpm_uA = 2000, |
| } |
| }; |
| |
| static struct msm_mmc_slot_reg_data mmc_slot_vreg_data[MAX_SDCC_CONTROLLER] = { |
| /* SDCC1 : eMMC card connected */ |
| [SDCC1] = { |
| .vdd_data = &mmc_vdd_reg_data[SDCC1], |
| .vccq_data = &mmc_vccq_reg_data[SDCC1], |
| }, |
| /* SDCC3 : External card slot connected */ |
| [SDCC3] = { |
| .vdd_data = &mmc_vdd_reg_data[SDCC3], |
| .vddp_data = &mmc_vddp_reg_data[SDCC3], |
| } |
| }; |
| |
| /* SDC1 pad data */ |
| static struct msm_mmc_pad_drv sdc1_pad_drv_on_cfg[] = { |
| {TLMM_HDRV_SDC1_CLK, GPIO_CFG_16MA}, |
| {TLMM_HDRV_SDC1_CMD, GPIO_CFG_10MA}, |
| {TLMM_HDRV_SDC1_DATA, GPIO_CFG_10MA} |
| }; |
| |
| static struct msm_mmc_pad_drv sdc1_pad_drv_off_cfg[] = { |
| {TLMM_HDRV_SDC1_CLK, GPIO_CFG_2MA}, |
| {TLMM_HDRV_SDC1_CMD, GPIO_CFG_2MA}, |
| {TLMM_HDRV_SDC1_DATA, GPIO_CFG_2MA} |
| }; |
| |
| static struct msm_mmc_pad_pull sdc1_pad_pull_on_cfg[] = { |
| {TLMM_PULL_SDC1_CLK, GPIO_CFG_NO_PULL}, |
| {TLMM_PULL_SDC1_CMD, GPIO_CFG_PULL_UP}, |
| {TLMM_PULL_SDC1_DATA, GPIO_CFG_PULL_UP} |
| }; |
| |
| static struct msm_mmc_pad_pull sdc1_pad_pull_off_cfg[] = { |
| {TLMM_PULL_SDC1_CLK, GPIO_CFG_NO_PULL}, |
| {TLMM_PULL_SDC1_CMD, GPIO_CFG_PULL_DOWN}, |
| {TLMM_PULL_SDC1_DATA, GPIO_CFG_PULL_DOWN} |
| }; |
| |
| /* SDC3 pad data */ |
| static struct msm_mmc_pad_drv sdc3_pad_drv_on_cfg[] = { |
| {TLMM_HDRV_SDC3_CLK, GPIO_CFG_8MA}, |
| {TLMM_HDRV_SDC3_CMD, GPIO_CFG_8MA}, |
| {TLMM_HDRV_SDC3_DATA, GPIO_CFG_8MA} |
| }; |
| |
| static struct msm_mmc_pad_drv sdc3_pad_drv_off_cfg[] = { |
| {TLMM_HDRV_SDC3_CLK, GPIO_CFG_2MA}, |
| {TLMM_HDRV_SDC3_CMD, GPIO_CFG_2MA}, |
| {TLMM_HDRV_SDC3_DATA, GPIO_CFG_2MA} |
| }; |
| |
| static struct msm_mmc_pad_pull sdc3_pad_pull_on_cfg[] = { |
| {TLMM_PULL_SDC3_CLK, GPIO_CFG_NO_PULL}, |
| {TLMM_PULL_SDC3_CMD, GPIO_CFG_PULL_UP}, |
| {TLMM_PULL_SDC3_DATA, GPIO_CFG_PULL_UP} |
| }; |
| |
| static struct msm_mmc_pad_pull sdc3_pad_pull_off_cfg[] = { |
| {TLMM_PULL_SDC3_CLK, GPIO_CFG_NO_PULL}, |
| {TLMM_PULL_SDC3_CMD, GPIO_CFG_PULL_DOWN}, |
| {TLMM_PULL_SDC3_DATA, GPIO_CFG_PULL_DOWN} |
| }; |
| |
| static struct msm_mmc_pad_pull_data mmc_pad_pull_data[MAX_SDCC_CONTROLLER] = { |
| [SDCC1] = { |
| .on = sdc1_pad_pull_on_cfg, |
| .off = sdc1_pad_pull_off_cfg, |
| .size = ARRAY_SIZE(sdc1_pad_pull_on_cfg) |
| }, |
| [SDCC3] = { |
| .on = sdc3_pad_pull_on_cfg, |
| .off = sdc3_pad_pull_off_cfg, |
| .size = ARRAY_SIZE(sdc3_pad_pull_on_cfg) |
| }, |
| }; |
| |
| static struct msm_mmc_pad_drv_data mmc_pad_drv_data[MAX_SDCC_CONTROLLER] = { |
| [SDCC1] = { |
| .on = sdc1_pad_drv_on_cfg, |
| .off = sdc1_pad_drv_off_cfg, |
| .size = ARRAY_SIZE(sdc1_pad_drv_on_cfg) |
| }, |
| [SDCC3] = { |
| .on = sdc3_pad_drv_on_cfg, |
| .off = sdc3_pad_drv_off_cfg, |
| .size = ARRAY_SIZE(sdc3_pad_drv_on_cfg) |
| }, |
| }; |
| |
| static struct msm_mmc_pad_data mmc_pad_data[MAX_SDCC_CONTROLLER] = { |
| [SDCC1] = { |
| .pull = &mmc_pad_pull_data[SDCC1], |
| .drv = &mmc_pad_drv_data[SDCC1] |
| }, |
| [SDCC3] = { |
| .pull = &mmc_pad_pull_data[SDCC3], |
| .drv = &mmc_pad_drv_data[SDCC3] |
| }, |
| }; |
| |
| static struct msm_mmc_pin_data mmc_slot_pin_data[MAX_SDCC_CONTROLLER] = { |
| [SDCC1] = { |
| .pad_data = &mmc_pad_data[SDCC1], |
| }, |
| [SDCC3] = { |
| .pad_data = &mmc_pad_data[SDCC3], |
| }, |
| }; |
| |
| #ifdef CONFIG_MMC_MSM_SDC1_SUPPORT |
| static unsigned int sdc1_sup_clk_rates[] = { |
| 400000, 24000000, 48000000, 96000000 |
| }; |
| |
| static struct mmc_platform_data sdc1_data = { |
| .ocr_mask = MMC_VDD_27_28 | MMC_VDD_28_29, |
| #ifdef CONFIG_MMC_MSM_SDC1_8_BIT_SUPPORT |
| .mmc_bus_width = MMC_CAP_8_BIT_DATA, |
| #else |
| .mmc_bus_width = MMC_CAP_4_BIT_DATA, |
| #endif |
| .sup_clk_table = sdc1_sup_clk_rates, |
| .sup_clk_cnt = ARRAY_SIZE(sdc1_sup_clk_rates), |
| .pin_data = &mmc_slot_pin_data[SDCC1], |
| .vreg_data = &mmc_slot_vreg_data[SDCC1], |
| }; |
| static struct mmc_platform_data *apq8064_sdc1_pdata = &sdc1_data; |
| #else |
| static struct mmc_platform_data *apq8064_sdc1_pdata; |
| #endif |
| |
| #ifdef CONFIG_MMC_MSM_SDC3_SUPPORT |
| static unsigned int sdc3_sup_clk_rates[] = { |
| 400000, 24000000, 48000000, 96000000 |
| }; |
| |
| static struct mmc_platform_data sdc3_data = { |
| .ocr_mask = MMC_VDD_27_28 | MMC_VDD_28_29, |
| .mmc_bus_width = MMC_CAP_4_BIT_DATA, |
| .sup_clk_table = sdc3_sup_clk_rates, |
| .sup_clk_cnt = ARRAY_SIZE(sdc3_sup_clk_rates), |
| .pin_data = &mmc_slot_pin_data[SDCC3], |
| .vreg_data = &mmc_slot_vreg_data[SDCC3], |
| }; |
| static struct mmc_platform_data *apq8064_sdc3_pdata = &sdc3_data; |
| #else |
| static struct mmc_platform_data *apq8064_sdc3_pdata; |
| #endif |
| |
| static void __init apq8064_init_mmc(void) |
| { |
| if ((machine_is_apq8064_rumi3()) || machine_is_apq8064_sim()) { |
| if (apq8064_sdc1_pdata) { |
| if (machine_is_apq8064_sim()) |
| apq8064_sdc1_pdata->disable_bam = true; |
| apq8064_sdc1_pdata->disable_runtime_pm = true; |
| apq8064_sdc1_pdata->disable_cmd23 = true; |
| } |
| if (apq8064_sdc3_pdata) { |
| if (machine_is_apq8064_sim()) |
| apq8064_sdc3_pdata->disable_bam = true; |
| apq8064_sdc3_pdata->disable_runtime_pm = true; |
| apq8064_sdc3_pdata->disable_cmd23 = true; |
| } |
| } |
| apq8064_add_sdcc(1, apq8064_sdc1_pdata); |
| apq8064_add_sdcc(3, apq8064_sdc3_pdata); |
| } |
| |
| #if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \ |
| defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE) || \ |
| defined(CONFIG_CRYPTO_DEV_QCEDEV) || \ |
| defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE) |
| |
| #define QCE_SIZE 0x10000 |
| #define QCE_0_BASE 0x11000000 |
| |
| #define QCE_HW_KEY_SUPPORT 0 |
| #define QCE_SHA_HMAC_SUPPORT 1 |
| #define QCE_SHARE_CE_RESOURCE 3 |
| #define QCE_CE_SHARED 0 |
| |
| static struct resource qcrypto_resources[] = { |
| [0] = { |
| .start = QCE_0_BASE, |
| .end = QCE_0_BASE + QCE_SIZE - 1, |
| .flags = IORESOURCE_MEM, |
| }, |
| [1] = { |
| .name = "crypto_channels", |
| .start = DMOV8064_CE_IN_CHAN, |
| .end = DMOV8064_CE_OUT_CHAN, |
| .flags = IORESOURCE_DMA, |
| }, |
| [2] = { |
| .name = "crypto_crci_in", |
| .start = DMOV8064_CE_IN_CRCI, |
| .end = DMOV8064_CE_IN_CRCI, |
| .flags = IORESOURCE_DMA, |
| }, |
| [3] = { |
| .name = "crypto_crci_out", |
| .start = DMOV8064_CE_OUT_CRCI, |
| .end = DMOV8064_CE_OUT_CRCI, |
| .flags = IORESOURCE_DMA, |
| }, |
| }; |
| |
| static struct resource qcedev_resources[] = { |
| [0] = { |
| .start = QCE_0_BASE, |
| .end = QCE_0_BASE + QCE_SIZE - 1, |
| .flags = IORESOURCE_MEM, |
| }, |
| [1] = { |
| .name = "crypto_channels", |
| .start = DMOV8064_CE_IN_CHAN, |
| .end = DMOV8064_CE_OUT_CHAN, |
| .flags = IORESOURCE_DMA, |
| }, |
| [2] = { |
| .name = "crypto_crci_in", |
| .start = DMOV8064_CE_IN_CRCI, |
| .end = DMOV8064_CE_IN_CRCI, |
| .flags = IORESOURCE_DMA, |
| }, |
| [3] = { |
| .name = "crypto_crci_out", |
| .start = DMOV8064_CE_OUT_CRCI, |
| .end = DMOV8064_CE_OUT_CRCI, |
| .flags = IORESOURCE_DMA, |
| }, |
| }; |
| |
| #endif |
| |
| #if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \ |
| defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE) |
| |
| static struct msm_ce_hw_support qcrypto_ce_hw_suppport = { |
| .ce_shared = QCE_CE_SHARED, |
| .shared_ce_resource = QCE_SHARE_CE_RESOURCE, |
| .hw_key_support = QCE_HW_KEY_SUPPORT, |
| .sha_hmac = QCE_SHA_HMAC_SUPPORT, |
| }; |
| |
| static struct platform_device qcrypto_device = { |
| .name = "qcrypto", |
| .id = 0, |
| .num_resources = ARRAY_SIZE(qcrypto_resources), |
| .resource = qcrypto_resources, |
| .dev = { |
| .coherent_dma_mask = DMA_BIT_MASK(32), |
| .platform_data = &qcrypto_ce_hw_suppport, |
| }, |
| }; |
| #endif |
| |
| #if defined(CONFIG_CRYPTO_DEV_QCEDEV) || \ |
| defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE) |
| |
| static struct msm_ce_hw_support qcedev_ce_hw_suppport = { |
| .ce_shared = QCE_CE_SHARED, |
| .shared_ce_resource = QCE_SHARE_CE_RESOURCE, |
| .hw_key_support = QCE_HW_KEY_SUPPORT, |
| .sha_hmac = QCE_SHA_HMAC_SUPPORT, |
| }; |
| |
| static struct platform_device qcedev_device = { |
| .name = "qce", |
| .id = 0, |
| .num_resources = ARRAY_SIZE(qcedev_resources), |
| .resource = qcedev_resources, |
| .dev = { |
| .coherent_dma_mask = DMA_BIT_MASK(32), |
| .platform_data = &qcedev_ce_hw_suppport, |
| }, |
| }; |
| #endif |
| |
| |
| #define MSM_SHARED_RAM_PHYS 0x80000000 |
| static void __init apq8064_map_io(void) |
| { |
| msm_shared_ram_phys = MSM_SHARED_RAM_PHYS; |
| msm_map_apq8064_io(); |
| if (socinfo_init() < 0) |
| pr_err("socinfo_init() failed!\n"); |
| } |
| |
| static void __init apq8064_init_irq(void) |
| { |
| unsigned int i; |
| gic_init(0, GIC_PPI_START, MSM_QGIC_DIST_BASE, |
| (void *)MSM_QGIC_CPU_BASE); |
| |
| /* Edge trigger PPIs except AVS_SVICINT and AVS_SVICINTSWDONE */ |
| writel_relaxed(0xFFFFD7FF, MSM_QGIC_DIST_BASE + GIC_DIST_CONFIG + 4); |
| |
| writel_relaxed(0x0000FFFF, MSM_QGIC_DIST_BASE + GIC_DIST_ENABLE_SET); |
| mb(); |
| |
| /* |
| * FIXME: Not installing AVS_SVICINT and AVS_SVICINTSWDONE yet |
| * as they are configured as level, which does not play nice with |
| * handle_percpu_irq. |
| */ |
| for (i = GIC_PPI_START; i < GIC_SPI_START; i++) { |
| if (i != AVS_SVICINT && i != AVS_SVICINTSWDONE) |
| irq_set_handler(i, handle_percpu_irq); |
| } |
| } |
| |
| static struct platform_device msm8064_device_saw_regulator_core0 = { |
| .name = "saw-regulator", |
| .id = 0, |
| .dev = { |
| .platform_data = &msm8064_saw_regulator_pdata_8921_s5, |
| }, |
| }; |
| |
| static struct platform_device msm8064_device_saw_regulator_core1 = { |
| .name = "saw-regulator", |
| .id = 1, |
| .dev = { |
| .platform_data = &msm8064_saw_regulator_pdata_8921_s6, |
| }, |
| }; |
| |
| static struct platform_device msm8064_device_saw_regulator_core2 = { |
| .name = "saw-regulator", |
| .id = 2, |
| .dev = { |
| .platform_data = &msm8064_saw_regulator_pdata_8821_s0, |
| }, |
| }; |
| |
| static struct platform_device msm8064_device_saw_regulator_core3 = { |
| .name = "saw-regulator", |
| .id = 3, |
| .dev = { |
| .platform_data = &msm8064_saw_regulator_pdata_8821_s1, |
| }, |
| }; |
| |
| static struct platform_device *common_devices[] __initdata = { |
| &apq8064_device_dmov, |
| &apq8064_device_qup_i2c_gsbi4, |
| &apq8064_device_qup_spi_gsbi5, |
| &apq8064_slim_ctrl, |
| &apq8064_device_ssbi_pmic1, |
| &apq8064_device_ssbi_pmic2, |
| &msm_device_smd_apq8064, |
| &apq8064_device_otg, |
| &apq8064_device_gadget_peripheral, |
| &android_usb_device, |
| &android_pmem_device, |
| &android_pmem_adsp_device, |
| &android_pmem_audio_device, |
| &msm8064_device_watchdog, |
| &msm8064_device_saw_regulator_core0, |
| &msm8064_device_saw_regulator_core1, |
| &msm8064_device_saw_regulator_core2, |
| &msm8064_device_saw_regulator_core3, |
| #if defined(CONFIG_CRYPTO_DEV_QCRYPTO) || \ |
| defined(CONFIG_CRYPTO_DEV_QCRYPTO_MODULE) |
| &qcrypto_device, |
| #endif |
| |
| #if defined(CONFIG_CRYPTO_DEV_QCEDEV) || \ |
| defined(CONFIG_CRYPTO_DEV_QCEDEV_MODULE) |
| &qcedev_device, |
| #endif |
| }; |
| |
| static struct platform_device *sim_devices[] __initdata = { |
| &apq8064_device_uart_gsbi3, |
| &msm_device_sps_apq8064, |
| }; |
| |
| static struct platform_device *rumi3_devices[] __initdata = { |
| &apq8064_device_uart_gsbi1, |
| &msm_device_sps_apq8064, |
| }; |
| |
| static struct msm_spi_platform_data apq8064_qup_spi_gsbi5_pdata = { |
| .max_clock_speed = 24000000, |
| }; |
| |
| #define KS8851_IRQ_GPIO 43 |
| |
| static struct spi_board_info spi_board_info[] __initdata = { |
| { |
| .modalias = "ks8851", |
| .irq = MSM_GPIO_TO_INT(KS8851_IRQ_GPIO), |
| .max_speed_hz = 19200000, |
| .bus_num = 0, |
| .chip_select = 2, |
| .mode = SPI_MODE_0, |
| }, |
| }; |
| |
| #ifdef CONFIG_KS8851 |
| static struct gpiomux_setting gpio_eth_config = { |
| .pull = GPIOMUX_PULL_NONE, |
| .drv = GPIOMUX_DRV_8MA, |
| .func = GPIOMUX_FUNC_GPIO, |
| }; |
| |
| /* The SPI configurations apply to GSBI 5*/ |
| static struct gpiomux_setting gpio_spi_config = { |
| .func = GPIOMUX_FUNC_2, |
| .drv = GPIOMUX_DRV_8MA, |
| .pull = GPIOMUX_PULL_NONE, |
| }; |
| |
| /* The SPI configurations apply to GSBI 5 chip select 2*/ |
| static struct gpiomux_setting gpio_spi_cs2_config = { |
| .func = GPIOMUX_FUNC_3, |
| .drv = GPIOMUX_DRV_8MA, |
| .pull = GPIOMUX_PULL_NONE, |
| }; |
| #endif |
| |
| struct msm_gpiomux_config apq8064_ethernet_configs[NR_GPIO_IRQS] = { |
| #ifdef CONFIG_KS8851 |
| { |
| .gpio = KS8851_IRQ_GPIO, |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_eth_config, |
| [GPIOMUX_ACTIVE] = &gpio_eth_config, |
| } |
| }, |
| #endif |
| }; |
| |
| static struct msm_gpiomux_config apq8064_gsbi_configs[] __initdata = { |
| #ifdef CONFIG_KS8851 |
| { |
| .gpio = 51, /* GSBI5 QUP SPI_DATA_MOSI */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| { |
| .gpio = 52, /* GSBI5 QUP SPI_DATA_MISO */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| { |
| .gpio = 31, /* GSBI5 QUP SPI_CS2_N */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_cs2_config, |
| }, |
| }, |
| { |
| .gpio = 54, /* GSBI5 QUP SPI_CLK */ |
| .settings = { |
| [GPIOMUX_SUSPENDED] = &gpio_spi_config, |
| }, |
| }, |
| #endif |
| }; |
| |
| static struct pm8xxx_mpp_platform_data |
| apq8064_pm8921_mpp_pdata __devinitdata = { |
| .mpp_base = PM8921_MPP_PM_TO_SYS(1), |
| }; |
| |
| static struct pm8xxx_gpio_platform_data |
| apq8064_pm8921_gpio_pdata __devinitdata = { |
| .gpio_base = PM8921_GPIO_PM_TO_SYS(1), |
| }; |
| |
| static struct pm8xxx_irq_platform_data |
| apq8064_pm8921_irq_pdata __devinitdata = { |
| .irq_base = PM8921_IRQ_BASE, |
| .devirq = PM8921_USR_IRQ_N, |
| .irq_trigger_flag = IRQF_TRIGGER_HIGH, |
| .dev_id = 0, |
| }; |
| |
| static struct pm8921_platform_data |
| apq8064_pm8921_platform_data __devinitdata = { |
| .regulator_pdatas = msm8064_pm8921_regulator_pdata, |
| .irq_pdata = &apq8064_pm8921_irq_pdata, |
| .gpio_pdata = &apq8064_pm8921_gpio_pdata, |
| .mpp_pdata = &apq8064_pm8921_mpp_pdata, |
| }; |
| |
| static struct pm8xxx_irq_platform_data |
| apq8064_pm8821_irq_pdata __devinitdata = { |
| .irq_base = PM8821_IRQ_BASE, |
| .devirq = PM8821_USR_IRQ_N, |
| .irq_trigger_flag = IRQF_TRIGGER_HIGH, |
| .dev_id = 1, |
| }; |
| |
| static struct pm8xxx_mpp_platform_data |
| apq8064_pm8821_mpp_pdata __devinitdata = { |
| .mpp_base = PM8821_MPP_PM_TO_SYS(1), |
| }; |
| |
| static struct pm8821_platform_data |
| apq8064_pm8821_platform_data __devinitdata = { |
| .irq_pdata = &apq8064_pm8821_irq_pdata, |
| .mpp_pdata = &apq8064_pm8821_mpp_pdata, |
| }; |
| |
| static struct msm_ssbi_platform_data apq8064_ssbi_pm8921_pdata __devinitdata = { |
| .controller_type = MSM_SBI_CTRL_PMIC_ARBITER, |
| .slave = { |
| .name = "pm8921-core", |
| .platform_data = &apq8064_pm8921_platform_data, |
| }, |
| }; |
| |
| static struct msm_ssbi_platform_data apq8064_ssbi_pm8821_pdata __devinitdata = { |
| .controller_type = MSM_SBI_CTRL_PMIC_ARBITER, |
| .slave = { |
| .name = "pm8821-core", |
| .platform_data = &apq8064_pm8821_platform_data, |
| }, |
| }; |
| |
| static struct slim_boardinfo apq8064_slim_devices[] = { |
| /* Add slimbus slaves as needed */ |
| }; |
| |
| static struct msm_i2c_platform_data apq8064_i2c_qup_gsbi4_pdata = { |
| .clk_freq = 100000, |
| .src_clk_rate = 24000000, |
| }; |
| |
| static void __init apq8064_i2c_init(void) |
| { |
| apq8064_device_qup_i2c_gsbi4.dev.platform_data = |
| &apq8064_i2c_qup_gsbi4_pdata; |
| } |
| |
| static int __init gpiomux_init(void) |
| { |
| int rc; |
| |
| rc = msm_gpiomux_init(NR_GPIO_IRQS); |
| if (rc) { |
| pr_err(KERN_ERR "msm_gpiomux_init failed %d\n", rc); |
| return rc; |
| } |
| msm_gpiomux_install(apq8064_ethernet_configs, |
| ARRAY_SIZE(apq8064_ethernet_configs)); |
| |
| msm_gpiomux_install(apq8064_gsbi_configs, |
| ARRAY_SIZE(apq8064_gsbi_configs)); |
| return 0; |
| } |
| |
| #ifdef CONFIG_KS8851 |
| static int ethernet_init(void) |
| { |
| int ret; |
| ret = gpio_request(KS8851_IRQ_GPIO, "ks8851_irq"); |
| if (ret) { |
| pr_err("ks8851 gpio_request failed: %d\n", ret); |
| goto fail; |
| } |
| |
| return 0; |
| fail: |
| return ret; |
| } |
| #else |
| static int ethernet_init(void) |
| { |
| return 0; |
| } |
| #endif |
| |
| static void __init apq8064_clock_init(void) |
| { |
| if (machine_is_apq8064_sim()) |
| msm_clock_init(&apq8064_clock_init_data); |
| else |
| msm_clock_init(&apq8064_dummy_clock_init_data); |
| } |
| |
| static void __init apq8064_common_init(void) |
| { |
| if (socinfo_init() < 0) |
| pr_err("socinfo_init() failed!\n"); |
| apq8064_clock_init(); |
| gpiomux_init(); |
| apq8064_i2c_init(); |
| |
| apq8064_device_qup_spi_gsbi5.dev.platform_data = |
| &apq8064_qup_spi_gsbi5_pdata; |
| apq8064_device_ssbi_pmic1.dev.platform_data = |
| &apq8064_ssbi_pm8921_pdata; |
| apq8064_device_ssbi_pmic2.dev.platform_data = |
| &apq8064_ssbi_pm8821_pdata; |
| apq8064_device_otg.dev.platform_data = &msm_otg_pdata; |
| apq8064_pm8921_platform_data.num_regulators = |
| msm8064_pm8921_regulator_pdata_len; |
| platform_add_devices(common_devices, ARRAY_SIZE(common_devices)); |
| apq8064_init_mmc(); |
| slim_register_board_info(apq8064_slim_devices, |
| ARRAY_SIZE(apq8064_slim_devices)); |
| } |
| |
| static void __init apq8064_sim_init(void) |
| { |
| struct msm_watchdog_pdata *wdog_pdata = (struct msm_watchdog_pdata *) |
| &msm8064_device_watchdog.dev.platform_data; |
| |
| wdog_pdata->bark_time = 15000; |
| apq8064_common_init(); |
| platform_add_devices(sim_devices, ARRAY_SIZE(sim_devices)); |
| } |
| |
| static void __init apq8064_rumi3_init(void) |
| { |
| apq8064_pm8921_irq_pdata.devirq = 0; |
| apq8064_pm8821_irq_pdata.devirq = 0; |
| apq8064_common_init(); |
| ethernet_init(); |
| platform_add_devices(rumi3_devices, ARRAY_SIZE(rumi3_devices)); |
| spi_register_board_info(spi_board_info, ARRAY_SIZE(spi_board_info)); |
| } |
| |
| MACHINE_START(APQ8064_SIM, "QCT APQ8064 SIMULATOR") |
| .map_io = apq8064_map_io, |
| .reserve = apq8064_reserve, |
| .init_irq = apq8064_init_irq, |
| .timer = &msm_timer, |
| .init_machine = apq8064_sim_init, |
| MACHINE_END |
| |
| MACHINE_START(APQ8064_RUMI3, "QCT APQ8064 RUMI3") |
| .map_io = apq8064_map_io, |
| .reserve = apq8064_reserve, |
| .init_irq = apq8064_init_irq, |
| .timer = &msm_timer, |
| .init_machine = apq8064_rumi3_init, |
| MACHINE_END |
| |