blob: f8645833123bf450da6ddd492a35bb469e1a09c5 [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
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070088/*
89 * Used to satisfy dependencies for devices that need to be
90 * run early or in a particular order. Most likely your device doesn't fall
91 * into this category, and thus the driver should not be added here. The
92 * EPROBE_DEFER can satisfy most dependency problems.
93 */
Rohit Vaswani750bee12012-09-20 16:18:10 -070094void __init msm8974_add_drivers(void)
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070095{
Jeff Hugoa643ca12012-06-11 16:00:23 -060096 msm_init_modem_notifier_list();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070097 msm_smd_init();
98 msm_rpm_driver_init();
Girish Mahadevan40abbe12012-04-25 14:58:13 -060099 msm_lpmrs_module_init();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700100 rpm_regulator_smd_driver_init();
101 msm_spm_device_init();
Michael Bohan2a468322012-08-14 17:06:34 -0700102 krait_power_init();
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700103 if (machine_is_msm8974_rumi())
Vikram Mulukutla19245e02012-07-23 15:58:04 -0700104 msm_clock_init(&msm8974_rumi_clock_init_data);
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700105 else
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700106 msm_clock_init(&msm8974_clock_init_data);
Eugene Seahce52ef22012-07-12 12:40:38 -0600107 msm_thermal_device_init();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700108}
109
Rohit Vaswani750bee12012-09-20 16:18:10 -0700110static struct of_dev_auxdata msm8974_auxdata_lookup[] __initdata = {
Pavankumar Kondeti0063b842012-01-16 12:19:58 +0530111 OF_DEV_AUXDATA("qcom,hsusb-otg", 0xF9A55000, \
112 "msm_otg", NULL),
Vijayavardhan Vennapusa1f5da0b2013-01-08 20:03:57 +0530113 OF_DEV_AUXDATA("qcom,ehci-host", 0xF9A55000, \
114 "msm_ehci_host", NULL),
Manu Gautam51be9712012-06-06 14:54:52 +0530115 OF_DEV_AUXDATA("qcom,dwc-usb3-msm", 0xF9200000, \
116 "msm_dwc3", NULL),
Shimrit Malichi57ae1492012-08-06 14:03:45 +0300117 OF_DEV_AUXDATA("qcom,usb-bam-msm", 0xF9304000, \
118 "usb_bam", NULL),
Harini Jayaraman5f98dbb2011-12-20 13:38:19 -0700119 OF_DEV_AUXDATA("qcom,spi-qup-v2", 0xF9924000, \
120 "spi_qsd.1", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530121 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9824000, \
David Ng665140f2012-04-12 16:03:45 -0700122 "msm_sdcc.1", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530123 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98A4000, \
124 "msm_sdcc.2", NULL),
125 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9864000, \
David Ng665140f2012-04-12 16:03:45 -0700126 "msm_sdcc.3", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530127 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98E4000, \
128 "msm_sdcc.4", NULL),
Hariprasad Dhalinarasimhade991f02012-05-31 13:15:51 -0700129 OF_DEV_AUXDATA("qcom,msm-rng", 0xF9BFF000, \
130 "msm_rng", NULL),
Ramesh Masavarapufb1f01e2012-06-14 09:40:40 -0700131 OF_DEV_AUXDATA("qcom,qseecom", 0xFE806000, \
132 "qseecom", NULL),
Adrian Salido-Moreno5ef3ac02012-05-14 18:40:47 -0700133 OF_DEV_AUXDATA("qcom,mdss_mdp", 0xFD900000, "mdp.0", NULL),
Siddartha Mohanadoss0a188882012-07-06 15:51:00 -0700134 OF_DEV_AUXDATA("qcom,msm-tsens", 0xFC4A8000, \
135 "msm-tsens", NULL),
Mona Hossainb43e94b2012-05-07 08:52:06 -0700136 OF_DEV_AUXDATA("qcom,qcedev", 0xFD440000, \
137 "qcedev.0", NULL),
138 OF_DEV_AUXDATA("qcom,qcrypto", 0xFD440000, \
139 "qcrypto.0", NULL),
Ming-yi Linb6ade102013-02-04 14:05:08 +0800140 OF_DEV_AUXDATA("qcom,hsic-host", 0xF9A00000, \
141 "msm_hsic_host", NULL),
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700142 {}
143};
144
Rohit Vaswani750bee12012-09-20 16:18:10 -0700145static void __init msm8974_map_io(void)
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700146{
Rohit Vaswani750bee12012-09-20 16:18:10 -0700147 msm_map_8974_io();
Rohit Vaswani750bee12012-09-20 16:18:10 -0700148}
149
150void __init msm8974_init(void)
151{
152 struct of_dev_auxdata *adata = msm8974_auxdata_lookup;
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -0800153
Abhimanyu Kapur91a0a502013-01-11 19:24:59 -0800154 if (socinfo_init() < 0)
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -0800155 pr_err("%s: socinfo_init() failed\n", __func__);
Rohit Vaswani750bee12012-09-20 16:18:10 -0700156
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700157 msm_8974_init_gpiomux();
Matt Wagantallecaa1172012-05-08 21:38:45 -0700158 regulator_has_full_constraints();
Rohit Vaswani750bee12012-09-20 16:18:10 -0700159 of_platform_populate(NULL, of_default_bus_match_table, adata, NULL);
Rohit Vaswani750bee12012-09-20 16:18:10 -0700160 msm8974_add_drivers();
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700161}
Olav Hauganb800c8c2012-01-30 08:50:45 -0800162
Rohit Vaswani750bee12012-09-20 16:18:10 -0700163void __init msm8974_init_very_early(void)
Olav Hauganb800c8c2012-01-30 08:50:45 -0800164{
Rohit Vaswani750bee12012-09-20 16:18:10 -0700165 msm8974_early_memory();
Olav Hauganb800c8c2012-01-30 08:50:45 -0800166}
Rohit Vaswani750bee12012-09-20 16:18:10 -0700167
168static const char *msm8974_dt_match[] __initconst = {
169 "qcom,msm8974",
170 NULL
171};
172
173DT_MACHINE_START(MSM8974_DT, "Qualcomm MSM 8974 (Flattened Device Tree)")
174 .map_io = msm8974_map_io,
175 .init_irq = msm_dt_init_irq,
176 .init_machine = msm8974_init,
177 .handle_irq = gic_handle_irq,
178 .timer = &msm_dt_timer,
179 .dt_compat = msm8974_dt_match,
Neeti Desai1b2cb552012-11-01 21:57:36 -0700180 .reserve = msm_8974_reserve,
Rohit Vaswani750bee12012-09-20 16:18:10 -0700181 .init_very_early = msm8974_init_very_early,
182 .restart = msm_restart,
Syed Rameez Mustafa9de46342012-11-30 11:00:08 -0800183 .smp = &msm8974_smp_ops,
Rohit Vaswani750bee12012-09-20 16:18:10 -0700184MACHINE_END