| /* Copyright (c) 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/errno.h> |
| #include <linux/of.h> |
| #include <linux/of_address.h> |
| #include <linux/of_platform.h> |
| #include <linux/of_fdt.h> |
| #include <linux/of_irq.h> |
| #include <asm/hardware/gic.h> |
| #include <asm/mach/arch.h> |
| #include <asm/mach/time.h> |
| #include <mach/socinfo.h> |
| #include <mach/board.h> |
| #include <mach/msm_memtypes.h> |
| #include <mach/qpnp-int.h> |
| #include <linux/io.h> |
| #include <linux/gpio.h> |
| #include <linux/irq.h> |
| #include <linux/irqdomain.h> |
| |
| #include "board-dt.h" |
| #include "clock.h" |
| |
| static struct clk_lookup msm_clocks_dummy[] = { |
| CLK_DUMMY("core_clk", BLSP1_UART_CLK, "msm_serial_hsl.0", OFF), |
| CLK_DUMMY("iface_clk", BLSP1_UART_CLK, "msm_serial_hsl.0", OFF), |
| }; |
| |
| struct clock_init_data mpq8092_clock_init_data __initdata = { |
| .table = msm_clocks_dummy, |
| .size = ARRAY_SIZE(msm_clocks_dummy), |
| }; |
| |
| static struct memtype_reserve mpq8092_reserve_table[] __initdata = { |
| [MEMTYPE_SMI] = { |
| }, |
| [MEMTYPE_EBI0] = { |
| .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| }, |
| [MEMTYPE_EBI1] = { |
| .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| }, |
| }; |
| |
| static int mpq8092_paddr_to_memtype(unsigned int paddr) |
| { |
| return MEMTYPE_EBI1; |
| } |
| |
| static struct reserve_info mpq8092_reserve_info __initdata = { |
| .memtype_reserve_table = mpq8092_reserve_table, |
| .paddr_to_memtype = mpq8092_paddr_to_memtype, |
| }; |
| |
| static void __init mpq8092_early_memory(void) |
| { |
| reserve_info = &mpq8092_reserve_info; |
| of_scan_flat_dt(dt_scan_for_memory_reserve, mpq8092_reserve_table); |
| } |
| |
| static void __init mpq8092_dt_reserve(void) |
| { |
| msm_reserve(); |
| } |
| |
| static void __init mpq8092_map_io(void) |
| { |
| msm_map_mpq8092_io(); |
| if (socinfo_init() < 0) |
| pr_err("%s: socinfo_init() failed\n", __func__); |
| |
| } |
| |
| static struct of_dev_auxdata mpq8092_auxdata_lookup[] __initdata = { |
| OF_DEV_AUXDATA("qcom,msm-lsuart-v14", 0xF991F000, \ |
| "msm_serial_hsl.0", 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), |
| {} |
| }; |
| |
| static void __init mpq8092_init(void) |
| { |
| struct of_dev_auxdata *adata = mpq8092_auxdata_lookup; |
| |
| mpq8092_init_gpiomux(); |
| msm_clock_init(&mpq8092_clock_init_data); |
| of_platform_populate(NULL, of_default_bus_match_table, adata, NULL); |
| } |
| |
| static const char *mpq8092_dt_match[] __initconst = { |
| "qcom,mpq8092-sim", |
| NULL |
| }; |
| |
| DT_MACHINE_START(MSM8092_DT, "Qualcomm MSM 8092 (Flattened Device Tree)") |
| .map_io = mpq8092_map_io, |
| .init_irq = msm_dt_init_irq_nompm, |
| .init_machine = mpq8092_init, |
| .handle_irq = gic_handle_irq, |
| .timer = &msm_dt_timer, |
| .dt_compat = mpq8092_dt_match, |
| .reserve = mpq8092_dt_reserve, |
| .init_very_early = mpq8092_early_memory, |
| MACHINE_END |