blob: 1de83a7cadb548212e2c88698624d3afd33e9629 [file] [log] [blame]
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -08001/* Copyright (c) 2011-2013, The Linux Foundation. All rights reserved.
Sathish Ambleyc58afc22011-10-09 21:55:39 -07002 *
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 Kapur440cdde2012-12-04 00:05:40 -080013#include <linux/err.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070014#include <linux/kernel.h>
15#include <linux/platform_device.h>
16#include <linux/io.h>
17#include <linux/irq.h>
18#include <linux/irqdomain.h>
19#include <linux/of.h>
20#include <linux/of_address.h>
21#include <linux/of_platform.h>
Olav Hauganb800c8c2012-01-30 08:50:45 -080022#include <linux/memory.h>
23#ifdef CONFIG_ANDROID_PMEM
24#include <linux/android_pmem.h>
25#endif
Matt Wagantallecaa1172012-05-08 21:38:45 -070026#include <linux/regulator/machine.h>
Michael Bohan2a468322012-08-14 17:06:34 -070027#include <linux/regulator/krait-regulator.h>
Eugene Seahce52ef22012-07-12 12:40:38 -060028#include <linux/msm_thermal.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070029#include <asm/mach/map.h>
30#include <asm/hardware/gic.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070031#include <asm/mach/map.h>
32#include <asm/mach/arch.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070033#include <mach/board.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070034#include <mach/gpiomux.h>
35#include <mach/msm_iomap.h>
Olav Hauganb800c8c2012-01-30 08:50:45 -080036#ifdef CONFIG_ION_MSM
37#include <mach/ion.h>
38#endif
39#include <mach/msm_memtypes.h>
Jeff Hugo70946092012-02-10 11:30:43 -070040#include <mach/msm_smd.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070041#include <mach/restart.h>
Mahesh Sivasubramaniana8ff9922012-03-27 17:50:42 -060042#include <mach/rpm-smd.h>
David Collins8f4cebc2012-05-08 16:54:50 -070043#include <mach/rpm-regulator-smd.h>
Vikram Mulukutlaaeadb5f2012-05-04 14:03:07 -070044#include <mach/socinfo.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070045#include "board-dt.h"
Sathish Ambleyc58afc22011-10-09 21:55:39 -070046#include "clock.h"
Michael Bohan037a0f52012-02-29 19:13:09 -080047#include "devices.h"
Praveen Chidambaramda9501d2012-04-26 19:48:29 -060048#include "spm.h"
Jeff Hugoa643ca12012-06-11 16:00:23 -060049#include "modem_notifier.h"
Girish Mahadevan40abbe12012-04-25 14:58:13 -060050#include "lpm_resources.h"
Syed Rameez Mustafa9de46342012-11-30 11:00:08 -080051#include "platsmp.h"
Sathish Ambleyc58afc22011-10-09 21:55:39 -070052
Olav Hauganb800c8c2012-01-30 08:50:45 -080053
Rohit Vaswani750bee12012-09-20 16:18:10 -070054static struct memtype_reserve msm8974_reserve_table[] __initdata = {
Olav Hauganb800c8c2012-01-30 08:50:45 -080055 [MEMTYPE_SMI] = {
56 },
57 [MEMTYPE_EBI0] = {
58 .flags = MEMTYPE_FLAGS_1M_ALIGN,
59 },
60 [MEMTYPE_EBI1] = {
61 .flags = MEMTYPE_FLAGS_1M_ALIGN,
62 },
63};
64
Rohit Vaswani750bee12012-09-20 16:18:10 -070065static int msm8974_paddr_to_memtype(unsigned int paddr)
Olav Hauganb800c8c2012-01-30 08:50:45 -080066{
67 return MEMTYPE_EBI1;
68}
69
Rohit Vaswani750bee12012-09-20 16:18:10 -070070static struct reserve_info msm8974_reserve_info __initdata = {
71 .memtype_reserve_table = msm8974_reserve_table,
Rohit Vaswani750bee12012-09-20 16:18:10 -070072 .paddr_to_memtype = msm8974_paddr_to_memtype,
Olav Hauganb800c8c2012-01-30 08:50:45 -080073};
74
Neeti Desai1b2cb552012-11-01 21:57:36 -070075void __init msm_8974_reserve(void)
Olav Hauganb800c8c2012-01-30 08:50:45 -080076{
Rohit Vaswani750bee12012-09-20 16:18:10 -070077 reserve_info = &msm8974_reserve_info;
78 of_scan_flat_dt(dt_scan_for_memory_reserve, msm8974_reserve_table);
Neeti Desai1b2cb552012-11-01 21:57:36 -070079 msm_reserve();
80}
81
82static void __init msm8974_early_memory(void)
83{
84 reserve_info = &msm8974_reserve_info;
85 of_scan_flat_dt(dt_scan_for_memory_hole, msm8974_reserve_table);
Olav Hauganb800c8c2012-01-30 08:50:45 -080086}
87
Bhakthavatsala Raghavendrab9766542012-08-17 16:25:48 -070088static struct platform_device msm_fm_platform_init = {
89 .name = "iris_fm",
90 .id = -1,
91};
92
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -070093static struct platform_device *msm_bus_8974_devices[] = {
Bhakthavatsala Raghavendrab9766542012-08-17 16:25:48 -070094 &msm_fm_platform_init,
Gagan Macdd9bb792012-04-25 16:56:48 -060095};
96
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -070097static void __init msm8974_init_buses(void)
Gagan Macdd9bb792012-04-25 16:56:48 -060098{
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -070099 platform_add_devices(msm_bus_8974_devices,
100 ARRAY_SIZE(msm_bus_8974_devices));
Gagan Macdd9bb792012-04-25 16:56:48 -0600101};
Hariprasad Dhalinarasimhaf42732a2012-05-21 18:00:49 -0700102
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700103/*
104 * Used to satisfy dependencies for devices that need to be
105 * run early or in a particular order. Most likely your device doesn't fall
106 * into this category, and thus the driver should not be added here. The
107 * EPROBE_DEFER can satisfy most dependency problems.
108 */
Rohit Vaswani750bee12012-09-20 16:18:10 -0700109void __init msm8974_add_drivers(void)
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700110{
Jeff Hugoa643ca12012-06-11 16:00:23 -0600111 msm_init_modem_notifier_list();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700112 msm_smd_init();
113 msm_rpm_driver_init();
Girish Mahadevan40abbe12012-04-25 14:58:13 -0600114 msm_lpmrs_module_init();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700115 rpm_regulator_smd_driver_init();
116 msm_spm_device_init();
Michael Bohan2a468322012-08-14 17:06:34 -0700117 krait_power_init();
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700118 if (machine_is_msm8974_rumi())
Vikram Mulukutla19245e02012-07-23 15:58:04 -0700119 msm_clock_init(&msm8974_rumi_clock_init_data);
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700120 else
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700121 msm_clock_init(&msm8974_clock_init_data);
122 msm8974_init_buses();
Eugene Seahce52ef22012-07-12 12:40:38 -0600123 msm_thermal_device_init();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700124}
125
Rohit Vaswani750bee12012-09-20 16:18:10 -0700126static struct of_dev_auxdata msm8974_auxdata_lookup[] __initdata = {
Pavankumar Kondeti0063b842012-01-16 12:19:58 +0530127 OF_DEV_AUXDATA("qcom,hsusb-otg", 0xF9A55000, \
128 "msm_otg", NULL),
Vijayavardhan Vennapusa1f5da0b2013-01-08 20:03:57 +0530129 OF_DEV_AUXDATA("qcom,ehci-host", 0xF9A55000, \
130 "msm_ehci_host", NULL),
Manu Gautam51be9712012-06-06 14:54:52 +0530131 OF_DEV_AUXDATA("qcom,dwc-usb3-msm", 0xF9200000, \
132 "msm_dwc3", NULL),
Shimrit Malichi57ae1492012-08-06 14:03:45 +0300133 OF_DEV_AUXDATA("qcom,usb-bam-msm", 0xF9304000, \
134 "usb_bam", NULL),
Harini Jayaraman5f98dbb2011-12-20 13:38:19 -0700135 OF_DEV_AUXDATA("qcom,spi-qup-v2", 0xF9924000, \
136 "spi_qsd.1", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530137 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9824000, \
David Ng665140f2012-04-12 16:03:45 -0700138 "msm_sdcc.1", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530139 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98A4000, \
140 "msm_sdcc.2", NULL),
141 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9864000, \
David Ng665140f2012-04-12 16:03:45 -0700142 "msm_sdcc.3", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530143 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98E4000, \
144 "msm_sdcc.4", NULL),
Hariprasad Dhalinarasimhade991f02012-05-31 13:15:51 -0700145 OF_DEV_AUXDATA("qcom,msm-rng", 0xF9BFF000, \
146 "msm_rng", NULL),
Ramesh Masavarapufb1f01e2012-06-14 09:40:40 -0700147 OF_DEV_AUXDATA("qcom,qseecom", 0xFE806000, \
148 "qseecom", NULL),
Adrian Salido-Moreno5ef3ac02012-05-14 18:40:47 -0700149 OF_DEV_AUXDATA("qcom,mdss_mdp", 0xFD900000, "mdp.0", NULL),
Siddartha Mohanadoss0a188882012-07-06 15:51:00 -0700150 OF_DEV_AUXDATA("qcom,msm-tsens", 0xFC4A8000, \
151 "msm-tsens", NULL),
Mona Hossainb43e94b2012-05-07 08:52:06 -0700152 OF_DEV_AUXDATA("qcom,qcedev", 0xFD440000, \
153 "qcedev.0", NULL),
154 OF_DEV_AUXDATA("qcom,qcrypto", 0xFD440000, \
155 "qcrypto.0", NULL),
Ming-yi Linb6ade102013-02-04 14:05:08 +0800156 OF_DEV_AUXDATA("qcom,hsic-host", 0xF9A00000, \
157 "msm_hsic_host", NULL),
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700158 {}
159};
160
Rohit Vaswani750bee12012-09-20 16:18:10 -0700161static void __init msm8974_map_io(void)
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700162{
Rohit Vaswani750bee12012-09-20 16:18:10 -0700163 msm_map_8974_io();
Rohit Vaswani750bee12012-09-20 16:18:10 -0700164}
165
166void __init msm8974_init(void)
167{
168 struct of_dev_auxdata *adata = msm8974_auxdata_lookup;
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -0800169
Abhimanyu Kapur91a0a502013-01-11 19:24:59 -0800170 if (socinfo_init() < 0)
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -0800171 pr_err("%s: socinfo_init() failed\n", __func__);
Rohit Vaswani750bee12012-09-20 16:18:10 -0700172
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700173 msm_8974_init_gpiomux();
Matt Wagantallecaa1172012-05-08 21:38:45 -0700174 regulator_has_full_constraints();
Rohit Vaswani750bee12012-09-20 16:18:10 -0700175 of_platform_populate(NULL, of_default_bus_match_table, adata, NULL);
Rohit Vaswani750bee12012-09-20 16:18:10 -0700176 msm8974_add_drivers();
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700177}
Olav Hauganb800c8c2012-01-30 08:50:45 -0800178
Rohit Vaswani750bee12012-09-20 16:18:10 -0700179void __init msm8974_init_very_early(void)
Olav Hauganb800c8c2012-01-30 08:50:45 -0800180{
Rohit Vaswani750bee12012-09-20 16:18:10 -0700181 msm8974_early_memory();
Olav Hauganb800c8c2012-01-30 08:50:45 -0800182}
Rohit Vaswani750bee12012-09-20 16:18:10 -0700183
184static const char *msm8974_dt_match[] __initconst = {
185 "qcom,msm8974",
186 NULL
187};
188
189DT_MACHINE_START(MSM8974_DT, "Qualcomm MSM 8974 (Flattened Device Tree)")
190 .map_io = msm8974_map_io,
191 .init_irq = msm_dt_init_irq,
192 .init_machine = msm8974_init,
193 .handle_irq = gic_handle_irq,
194 .timer = &msm_dt_timer,
195 .dt_compat = msm8974_dt_match,
Neeti Desai1b2cb552012-11-01 21:57:36 -0700196 .reserve = msm_8974_reserve,
Rohit Vaswani750bee12012-09-20 16:18:10 -0700197 .init_very_early = msm8974_init_very_early,
198 .restart = msm_restart,
Syed Rameez Mustafa9de46342012-11-30 11:00:08 -0800199 .smp = &msm8974_smp_ops,
Rohit Vaswani750bee12012-09-20 16:18:10 -0700200MACHINE_END