Abhimanyu Kapur | 440cdde | 2012-12-04 00:05:40 -0800 | [diff] [blame] | 1 | /* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved. |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 2 | * |
| 3 | * This program is free software; you can redistribute it and/or modify |
| 4 | * it under the terms of the GNU General Public License version 2 and |
| 5 | * only version 2 as published by the Free Software Foundation. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | */ |
| 12 | |
Abhimanyu Kapur | 440cdde | 2012-12-04 00:05:40 -0800 | [diff] [blame] | 13 | #include <linux/err.h> |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 14 | #include <linux/kernel.h> |
| 15 | #include <linux/errno.h> |
| 16 | #include <linux/platform_device.h> |
| 17 | #include <linux/io.h> |
| 18 | #include <linux/gpio.h> |
| 19 | #include <linux/irq.h> |
| 20 | #include <linux/irqdomain.h> |
| 21 | #include <linux/of.h> |
| 22 | #include <linux/of_address.h> |
| 23 | #include <linux/of_platform.h> |
| 24 | #include <linux/of_fdt.h> |
| 25 | #include <linux/of_irq.h> |
| 26 | #include <linux/memory.h> |
| 27 | #include <asm/mach/map.h> |
| 28 | #include <asm/arch_timer.h> |
| 29 | #include <asm/hardware/gic.h> |
| 30 | #include <asm/mach/arch.h> |
| 31 | #include <asm/mach/time.h> |
| 32 | #include <mach/board.h> |
| 33 | #include <mach/gpiomux.h> |
| 34 | #include <mach/msm_iomap.h> |
Hanumant Singh | e427131 | 2012-10-24 13:27:57 -0700 | [diff] [blame] | 35 | #include <mach/restart.h> |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 36 | #ifdef CONFIG_ION_MSM |
| 37 | #include <mach/ion.h> |
| 38 | #endif |
Xiaozhe Shi | e428453 | 2013-03-13 16:03:09 -0700 | [diff] [blame] | 39 | #include <linux/regulator/qpnp-regulator.h> |
Neeti Desai | 1c63810 | 2012-11-09 16:08:11 -0800 | [diff] [blame] | 40 | #include <mach/msm_memtypes.h> |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 41 | #include <mach/socinfo.h> |
| 42 | #include <mach/board.h> |
| 43 | #include <mach/clk-provider.h> |
Praveen Chidambaram | 5238071 | 2012-12-20 16:51:11 -0700 | [diff] [blame] | 44 | #include <mach/msm_smd.h> |
| 45 | #include <mach/rpm-smd.h> |
| 46 | #include <linux/msm_thermal.h> |
Rohit Vaswani | 90e3023 | 2012-10-10 16:52:37 -0700 | [diff] [blame] | 47 | #include "board-dt.h" |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 48 | #include "clock.h" |
Syed Rameez Mustafa | 9de4634 | 2012-11-30 11:00:08 -0800 | [diff] [blame] | 49 | #include "platsmp.h" |
Praveen Chidambaram | 5238071 | 2012-12-20 16:51:11 -0700 | [diff] [blame] | 50 | #include "spm.h" |
| 51 | #include "lpm_resources.h" |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 52 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 53 | static struct memtype_reserve msm8610_reserve_table[] __initdata = { |
Neeti Desai | 1c63810 | 2012-11-09 16:08:11 -0800 | [diff] [blame] | 54 | [MEMTYPE_SMI] = { |
| 55 | }, |
| 56 | [MEMTYPE_EBI0] = { |
| 57 | .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| 58 | }, |
| 59 | [MEMTYPE_EBI1] = { |
| 60 | .flags = MEMTYPE_FLAGS_1M_ALIGN, |
| 61 | }, |
| 62 | }; |
| 63 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 64 | static int msm8610_paddr_to_memtype(unsigned int paddr) |
Neeti Desai | 1c63810 | 2012-11-09 16:08:11 -0800 | [diff] [blame] | 65 | { |
| 66 | return MEMTYPE_EBI1; |
| 67 | } |
| 68 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 69 | static struct of_dev_auxdata msm8610_auxdata_lookup[] __initdata = { |
David Ng | b5bac06 | 2012-11-02 00:00:12 -0700 | [diff] [blame] | 70 | OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9824000, \ |
| 71 | "msm_sdcc.1", NULL), |
| 72 | OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98A4000, \ |
| 73 | "msm_sdcc.2", NULL), |
| 74 | {} |
| 75 | }; |
| 76 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 77 | static struct reserve_info msm8610_reserve_info __initdata = { |
| 78 | .memtype_reserve_table = msm8610_reserve_table, |
| 79 | .paddr_to_memtype = msm8610_paddr_to_memtype, |
Neeti Desai | 1c63810 | 2012-11-09 16:08:11 -0800 | [diff] [blame] | 80 | }; |
| 81 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 82 | static void __init msm8610_early_memory(void) |
Neeti Desai | 1c63810 | 2012-11-09 16:08:11 -0800 | [diff] [blame] | 83 | { |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 84 | reserve_info = &msm8610_reserve_info; |
Neeti Desai | 2a575be | 2012-11-26 12:53:10 -0800 | [diff] [blame] | 85 | of_scan_flat_dt(dt_scan_for_memory_hole, msm8610_reserve_table); |
Neeti Desai | 1c63810 | 2012-11-09 16:08:11 -0800 | [diff] [blame] | 86 | } |
| 87 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 88 | static void __init msm8610_reserve(void) |
Neeti Desai | 1c63810 | 2012-11-09 16:08:11 -0800 | [diff] [blame] | 89 | { |
Neeti Desai | 2a575be | 2012-11-26 12:53:10 -0800 | [diff] [blame] | 90 | reserve_info = &msm8610_reserve_info; |
| 91 | of_scan_flat_dt(dt_scan_for_memory_reserve, msm8610_reserve_table); |
Neeti Desai | 1c63810 | 2012-11-09 16:08:11 -0800 | [diff] [blame] | 92 | msm_reserve(); |
| 93 | } |
| 94 | |
Praveen Chidambaram | 5238071 | 2012-12-20 16:51:11 -0700 | [diff] [blame] | 95 | void __init msm8610_add_drivers(void) |
| 96 | { |
| 97 | msm_rpm_driver_init(); |
| 98 | msm_lpmrs_module_init(); |
| 99 | msm_spm_device_init(); |
Xiaozhe Shi | e428453 | 2013-03-13 16:03:09 -0700 | [diff] [blame] | 100 | qpnp_regulator_init(); |
Praveen Chidambaram | 5238071 | 2012-12-20 16:51:11 -0700 | [diff] [blame] | 101 | msm_thermal_device_init(); |
Vikram Mulukutla | d682cd8 | 2013-01-24 12:32:36 -0800 | [diff] [blame] | 102 | |
| 103 | if (machine_is_msm8610_rumi()) |
| 104 | msm_clock_init(&msm8610_rumi_clock_init_data); |
| 105 | else |
| 106 | msm_clock_init(&msm8610_clock_init_data); |
Praveen Chidambaram | 5238071 | 2012-12-20 16:51:11 -0700 | [diff] [blame] | 107 | } |
| 108 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 109 | void __init msm8610_init(void) |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 110 | { |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 111 | struct of_dev_auxdata *adata = msm8610_auxdata_lookup; |
Abhimanyu Kapur | 440cdde | 2012-12-04 00:05:40 -0800 | [diff] [blame] | 112 | |
Abhimanyu Kapur | 91a0a50 | 2013-01-11 19:24:59 -0800 | [diff] [blame] | 113 | if (socinfo_init() < 0) |
Abhimanyu Kapur | 440cdde | 2012-12-04 00:05:40 -0800 | [diff] [blame] | 114 | pr_err("%s: socinfo_init() failed\n", __func__); |
David Ng | b5bac06 | 2012-11-02 00:00:12 -0700 | [diff] [blame] | 115 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 116 | msm8610_init_gpiomux(); |
David Ng | b5bac06 | 2012-11-02 00:00:12 -0700 | [diff] [blame] | 117 | of_platform_populate(NULL, of_default_bus_match_table, adata, NULL); |
Vikram Mulukutla | d682cd8 | 2013-01-24 12:32:36 -0800 | [diff] [blame] | 118 | msm8610_add_drivers(); |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 119 | } |
| 120 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 121 | static const char *msm8610_dt_match[] __initconst = { |
| 122 | "qcom,msm8610", |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 123 | NULL |
| 124 | }; |
| 125 | |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 126 | DT_MACHINE_START(MSM8610_DT, "Qualcomm MSM 8610 (Flattened Device Tree)") |
| 127 | .map_io = msm_map_msm8610_io, |
Praveen Chidambaram | 5238071 | 2012-12-20 16:51:11 -0700 | [diff] [blame] | 128 | .init_irq = msm_dt_init_irq, |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 129 | .init_machine = msm8610_init, |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 130 | .handle_irq = gic_handle_irq, |
Rohit Vaswani | 90e3023 | 2012-10-10 16:52:37 -0700 | [diff] [blame] | 131 | .timer = &msm_dt_timer, |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 132 | .dt_compat = msm8610_dt_match, |
Hanumant Singh | e427131 | 2012-10-24 13:27:57 -0700 | [diff] [blame] | 133 | .restart = msm_restart, |
Syed Rameez Mustafa | 3971c14 | 2013-01-09 19:04:53 -0800 | [diff] [blame] | 134 | .reserve = msm8610_reserve, |
| 135 | .init_very_early = msm8610_early_memory, |
Syed Rameez Mustafa | 9de4634 | 2012-11-30 11:00:08 -0800 | [diff] [blame] | 136 | .smp = &arm_smp_ops, |
Syed Rameez Mustafa | fd0f9b4 | 2012-09-21 18:33:36 -0700 | [diff] [blame] | 137 | MACHINE_END |