blob: e624e3f09b0087aaf62a4ee6734b8a292627325a [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>
Matt Wagantallecaa1172012-05-08 21:38:45 -070023#include <linux/regulator/machine.h>
Michael Bohan2a468322012-08-14 17:06:34 -070024#include <linux/regulator/krait-regulator.h>
Eugene Seahce52ef22012-07-12 12:40:38 -060025#include <linux/msm_thermal.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070026#include <asm/mach/map.h>
27#include <asm/hardware/gic.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070028#include <asm/mach/map.h>
29#include <asm/mach/arch.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070030#include <mach/board.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070031#include <mach/gpiomux.h>
32#include <mach/msm_iomap.h>
Olav Hauganb800c8c2012-01-30 08:50:45 -080033#ifdef CONFIG_ION_MSM
34#include <mach/ion.h>
35#endif
36#include <mach/msm_memtypes.h>
Jeff Hugo70946092012-02-10 11:30:43 -070037#include <mach/msm_smd.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070038#include <mach/restart.h>
Mahesh Sivasubramaniana8ff9922012-03-27 17:50:42 -060039#include <mach/rpm-smd.h>
David Collins8f4cebc2012-05-08 16:54:50 -070040#include <mach/rpm-regulator-smd.h>
Vikram Mulukutlaaeadb5f2012-05-04 14:03:07 -070041#include <mach/socinfo.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070042#include "board-dt.h"
Sathish Ambleyc58afc22011-10-09 21:55:39 -070043#include "clock.h"
Michael Bohan037a0f52012-02-29 19:13:09 -080044#include "devices.h"
Praveen Chidambaramda9501d2012-04-26 19:48:29 -060045#include "spm.h"
Jeff Hugoa643ca12012-06-11 16:00:23 -060046#include "modem_notifier.h"
Girish Mahadevan40abbe12012-04-25 14:58:13 -060047#include "lpm_resources.h"
Syed Rameez Mustafa9de46342012-11-30 11:00:08 -080048#include "platsmp.h"
Sathish Ambleyc58afc22011-10-09 21:55:39 -070049
Olav Hauganb800c8c2012-01-30 08:50:45 -080050
Rohit Vaswani750bee12012-09-20 16:18:10 -070051static struct memtype_reserve msm8974_reserve_table[] __initdata = {
Olav Hauganb800c8c2012-01-30 08:50:45 -080052 [MEMTYPE_SMI] = {
53 },
54 [MEMTYPE_EBI0] = {
55 .flags = MEMTYPE_FLAGS_1M_ALIGN,
56 },
57 [MEMTYPE_EBI1] = {
58 .flags = MEMTYPE_FLAGS_1M_ALIGN,
59 },
60};
61
Rohit Vaswani750bee12012-09-20 16:18:10 -070062static int msm8974_paddr_to_memtype(unsigned int paddr)
Olav Hauganb800c8c2012-01-30 08:50:45 -080063{
64 return MEMTYPE_EBI1;
65}
66
Rohit Vaswani750bee12012-09-20 16:18:10 -070067static struct reserve_info msm8974_reserve_info __initdata = {
68 .memtype_reserve_table = msm8974_reserve_table,
Rohit Vaswani750bee12012-09-20 16:18:10 -070069 .paddr_to_memtype = msm8974_paddr_to_memtype,
Olav Hauganb800c8c2012-01-30 08:50:45 -080070};
71
Neeti Desai1b2cb552012-11-01 21:57:36 -070072void __init msm_8974_reserve(void)
Olav Hauganb800c8c2012-01-30 08:50:45 -080073{
Rohit Vaswani750bee12012-09-20 16:18:10 -070074 reserve_info = &msm8974_reserve_info;
75 of_scan_flat_dt(dt_scan_for_memory_reserve, msm8974_reserve_table);
Neeti Desai1b2cb552012-11-01 21:57:36 -070076 msm_reserve();
77}
78
79static void __init msm8974_early_memory(void)
80{
81 reserve_info = &msm8974_reserve_info;
82 of_scan_flat_dt(dt_scan_for_memory_hole, msm8974_reserve_table);
Olav Hauganb800c8c2012-01-30 08:50:45 -080083}
84
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070085/*
86 * Used to satisfy dependencies for devices that need to be
87 * run early or in a particular order. Most likely your device doesn't fall
88 * into this category, and thus the driver should not be added here. The
89 * EPROBE_DEFER can satisfy most dependency problems.
90 */
Rohit Vaswani750bee12012-09-20 16:18:10 -070091void __init msm8974_add_drivers(void)
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070092{
Jeff Hugoa643ca12012-06-11 16:00:23 -060093 msm_init_modem_notifier_list();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070094 msm_smd_init();
95 msm_rpm_driver_init();
Girish Mahadevan40abbe12012-04-25 14:58:13 -060096 msm_lpmrs_module_init();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070097 rpm_regulator_smd_driver_init();
98 msm_spm_device_init();
Michael Bohan2a468322012-08-14 17:06:34 -070099 krait_power_init();
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700100 if (machine_is_msm8974_rumi())
Vikram Mulukutla19245e02012-07-23 15:58:04 -0700101 msm_clock_init(&msm8974_rumi_clock_init_data);
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700102 else
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700103 msm_clock_init(&msm8974_clock_init_data);
Eugene Seahce52ef22012-07-12 12:40:38 -0600104 msm_thermal_device_init();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700105}
106
Rohit Vaswani750bee12012-09-20 16:18:10 -0700107static struct of_dev_auxdata msm8974_auxdata_lookup[] __initdata = {
Pavankumar Kondeti0063b842012-01-16 12:19:58 +0530108 OF_DEV_AUXDATA("qcom,hsusb-otg", 0xF9A55000, \
109 "msm_otg", NULL),
Vijayavardhan Vennapusa1f5da0b2013-01-08 20:03:57 +0530110 OF_DEV_AUXDATA("qcom,ehci-host", 0xF9A55000, \
111 "msm_ehci_host", NULL),
Manu Gautam51be9712012-06-06 14:54:52 +0530112 OF_DEV_AUXDATA("qcom,dwc-usb3-msm", 0xF9200000, \
113 "msm_dwc3", NULL),
Shimrit Malichi57ae1492012-08-06 14:03:45 +0300114 OF_DEV_AUXDATA("qcom,usb-bam-msm", 0xF9304000, \
115 "usb_bam", NULL),
Harini Jayaraman5f98dbb2011-12-20 13:38:19 -0700116 OF_DEV_AUXDATA("qcom,spi-qup-v2", 0xF9924000, \
117 "spi_qsd.1", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530118 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9824000, \
David Ng665140f2012-04-12 16:03:45 -0700119 "msm_sdcc.1", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530120 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98A4000, \
121 "msm_sdcc.2", NULL),
122 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9864000, \
David Ng665140f2012-04-12 16:03:45 -0700123 "msm_sdcc.3", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530124 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98E4000, \
125 "msm_sdcc.4", NULL),
Venkat Gopalakrishnan13268f92012-09-17 15:15:07 -0700126 OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF9824900, \
127 "msm_sdcc.1", NULL),
128 OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF98A4900, \
129 "msm_sdcc.2", NULL),
130 OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF9864900, \
131 "msm_sdcc.3", NULL),
132 OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF98E4900, \
133 "msm_sdcc.4", NULL),
Hariprasad Dhalinarasimhade991f02012-05-31 13:15:51 -0700134 OF_DEV_AUXDATA("qcom,msm-rng", 0xF9BFF000, \
135 "msm_rng", NULL),
Ramesh Masavarapufb1f01e2012-06-14 09:40:40 -0700136 OF_DEV_AUXDATA("qcom,qseecom", 0xFE806000, \
137 "qseecom", NULL),
Adrian Salido-Moreno5ef3ac02012-05-14 18:40:47 -0700138 OF_DEV_AUXDATA("qcom,mdss_mdp", 0xFD900000, "mdp.0", NULL),
Siddartha Mohanadoss0a188882012-07-06 15:51:00 -0700139 OF_DEV_AUXDATA("qcom,msm-tsens", 0xFC4A8000, \
140 "msm-tsens", NULL),
Mona Hossainb43e94b2012-05-07 08:52:06 -0700141 OF_DEV_AUXDATA("qcom,qcedev", 0xFD440000, \
142 "qcedev.0", NULL),
143 OF_DEV_AUXDATA("qcom,qcrypto", 0xFD440000, \
144 "qcrypto.0", NULL),
Ming-yi Linb6ade102013-02-04 14:05:08 +0800145 OF_DEV_AUXDATA("qcom,hsic-host", 0xF9A00000, \
146 "msm_hsic_host", NULL),
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700147 {}
148};
149
Rohit Vaswani750bee12012-09-20 16:18:10 -0700150static void __init msm8974_map_io(void)
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700151{
Rohit Vaswani750bee12012-09-20 16:18:10 -0700152 msm_map_8974_io();
Rohit Vaswani750bee12012-09-20 16:18:10 -0700153}
154
155void __init msm8974_init(void)
156{
157 struct of_dev_auxdata *adata = msm8974_auxdata_lookup;
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -0800158
Abhimanyu Kapur91a0a502013-01-11 19:24:59 -0800159 if (socinfo_init() < 0)
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -0800160 pr_err("%s: socinfo_init() failed\n", __func__);
Rohit Vaswani750bee12012-09-20 16:18:10 -0700161
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700162 msm_8974_init_gpiomux();
Matt Wagantallecaa1172012-05-08 21:38:45 -0700163 regulator_has_full_constraints();
Rohit Vaswani750bee12012-09-20 16:18:10 -0700164 of_platform_populate(NULL, of_default_bus_match_table, adata, NULL);
Rohit Vaswani750bee12012-09-20 16:18:10 -0700165 msm8974_add_drivers();
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700166}
Olav Hauganb800c8c2012-01-30 08:50:45 -0800167
Rohit Vaswani750bee12012-09-20 16:18:10 -0700168void __init msm8974_init_very_early(void)
Olav Hauganb800c8c2012-01-30 08:50:45 -0800169{
Rohit Vaswani750bee12012-09-20 16:18:10 -0700170 msm8974_early_memory();
Olav Hauganb800c8c2012-01-30 08:50:45 -0800171}
Rohit Vaswani750bee12012-09-20 16:18:10 -0700172
173static const char *msm8974_dt_match[] __initconst = {
174 "qcom,msm8974",
175 NULL
176};
177
178DT_MACHINE_START(MSM8974_DT, "Qualcomm MSM 8974 (Flattened Device Tree)")
179 .map_io = msm8974_map_io,
180 .init_irq = msm_dt_init_irq,
181 .init_machine = msm8974_init,
182 .handle_irq = gic_handle_irq,
183 .timer = &msm_dt_timer,
184 .dt_compat = msm8974_dt_match,
Neeti Desai1b2cb552012-11-01 21:57:36 -0700185 .reserve = msm_8974_reserve,
Rohit Vaswani750bee12012-09-20 16:18:10 -0700186 .init_very_early = msm8974_init_very_early,
187 .restart = msm_restart,
Syed Rameez Mustafa9de46342012-11-30 11:00:08 -0800188 .smp = &msm8974_smp_ops,
Rohit Vaswani750bee12012-09-20 16:18:10 -0700189MACHINE_END