blob: 3eed2195bb4f5fae08d7ed229075fb42ae181fa4 [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>
Siddartha Mohanadoss4cef5f42013-04-11 13:59:41 -070025#include <linux/msm_tsens.h>
Eugene Seahce52ef22012-07-12 12:40:38 -060026#include <linux/msm_thermal.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070027#include <asm/mach/map.h>
28#include <asm/hardware/gic.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070029#include <asm/mach/map.h>
30#include <asm/mach/arch.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070031#include <mach/board.h>
Sathish Ambleyc58afc22011-10-09 21:55:39 -070032#include <mach/gpiomux.h>
33#include <mach/msm_iomap.h>
Olav Hauganb800c8c2012-01-30 08:50:45 -080034#ifdef CONFIG_ION_MSM
35#include <mach/ion.h>
36#endif
37#include <mach/msm_memtypes.h>
Jeff Hugo70946092012-02-10 11:30:43 -070038#include <mach/msm_smd.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070039#include <mach/restart.h>
Mahesh Sivasubramaniana8ff9922012-03-27 17:50:42 -060040#include <mach/rpm-smd.h>
David Collins8f4cebc2012-05-08 16:54:50 -070041#include <mach/rpm-regulator-smd.h>
Vikram Mulukutlaaeadb5f2012-05-04 14:03:07 -070042#include <mach/socinfo.h>
Rohit Vaswani750bee12012-09-20 16:18:10 -070043#include "board-dt.h"
Sathish Ambleyc58afc22011-10-09 21:55:39 -070044#include "clock.h"
Michael Bohan037a0f52012-02-29 19:13:09 -080045#include "devices.h"
Praveen Chidambaramda9501d2012-04-26 19:48:29 -060046#include "spm.h"
Jeff Hugoa643ca12012-06-11 16:00:23 -060047#include "modem_notifier.h"
Girish Mahadevan40abbe12012-04-25 14:58:13 -060048#include "lpm_resources.h"
Syed Rameez Mustafa9de46342012-11-30 11:00:08 -080049#include "platsmp.h"
Sathish Ambleyc58afc22011-10-09 21:55:39 -070050
Olav Hauganb800c8c2012-01-30 08:50:45 -080051
Rohit Vaswani750bee12012-09-20 16:18:10 -070052static struct memtype_reserve msm8974_reserve_table[] __initdata = {
Olav Hauganb800c8c2012-01-30 08:50:45 -080053 [MEMTYPE_SMI] = {
54 },
55 [MEMTYPE_EBI0] = {
56 .flags = MEMTYPE_FLAGS_1M_ALIGN,
57 },
58 [MEMTYPE_EBI1] = {
59 .flags = MEMTYPE_FLAGS_1M_ALIGN,
60 },
61};
62
Laura Abbott938d7502013-04-09 10:44:16 -070063static int msm8974_paddr_to_memtype(phys_addr_t paddr)
Olav Hauganb800c8c2012-01-30 08:50:45 -080064{
65 return MEMTYPE_EBI1;
66}
67
Rohit Vaswani750bee12012-09-20 16:18:10 -070068static struct reserve_info msm8974_reserve_info __initdata = {
69 .memtype_reserve_table = msm8974_reserve_table,
Rohit Vaswani750bee12012-09-20 16:18:10 -070070 .paddr_to_memtype = msm8974_paddr_to_memtype,
Olav Hauganb800c8c2012-01-30 08:50:45 -080071};
72
Neeti Desai1b2cb552012-11-01 21:57:36 -070073void __init msm_8974_reserve(void)
Olav Hauganb800c8c2012-01-30 08:50:45 -080074{
Rohit Vaswani750bee12012-09-20 16:18:10 -070075 reserve_info = &msm8974_reserve_info;
76 of_scan_flat_dt(dt_scan_for_memory_reserve, msm8974_reserve_table);
Neeti Desai1b2cb552012-11-01 21:57:36 -070077 msm_reserve();
78}
79
80static void __init msm8974_early_memory(void)
81{
82 reserve_info = &msm8974_reserve_info;
83 of_scan_flat_dt(dt_scan_for_memory_hole, msm8974_reserve_table);
Olav Hauganb800c8c2012-01-30 08:50:45 -080084}
85
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070086/*
87 * Used to satisfy dependencies for devices that need to be
88 * run early or in a particular order. Most likely your device doesn't fall
89 * into this category, and thus the driver should not be added here. The
90 * EPROBE_DEFER can satisfy most dependency problems.
91 */
Rohit Vaswani750bee12012-09-20 16:18:10 -070092void __init msm8974_add_drivers(void)
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070093{
Jeff Hugoa643ca12012-06-11 16:00:23 -060094 msm_init_modem_notifier_list();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070095 msm_smd_init();
96 msm_rpm_driver_init();
Girish Mahadevan40abbe12012-04-25 14:58:13 -060097 msm_lpmrs_module_init();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -070098 rpm_regulator_smd_driver_init();
99 msm_spm_device_init();
Michael Bohan2a468322012-08-14 17:06:34 -0700100 krait_power_init();
Stepan Moskovchenko82f0eab2013-04-02 19:52:28 -0700101 if (of_board_is_rumi())
Vikram Mulukutla19245e02012-07-23 15:58:04 -0700102 msm_clock_init(&msm8974_rumi_clock_init_data);
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700103 else
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700104 msm_clock_init(&msm8974_clock_init_data);
Siddartha Mohanadoss4cef5f42013-04-11 13:59:41 -0700105 tsens_tm_init_driver();
Eugene Seahce52ef22012-07-12 12:40:38 -0600106 msm_thermal_device_init();
Vikram Mulukutlaaa6f36c2012-06-12 18:16:29 -0700107}
108
Rohit Vaswani750bee12012-09-20 16:18:10 -0700109static struct of_dev_auxdata msm8974_auxdata_lookup[] __initdata = {
Pavankumar Kondeti0063b842012-01-16 12:19:58 +0530110 OF_DEV_AUXDATA("qcom,hsusb-otg", 0xF9A55000, \
111 "msm_otg", NULL),
Vijayavardhan Vennapusa1f5da0b2013-01-08 20:03:57 +0530112 OF_DEV_AUXDATA("qcom,ehci-host", 0xF9A55000, \
113 "msm_ehci_host", NULL),
Manu Gautam51be9712012-06-06 14:54:52 +0530114 OF_DEV_AUXDATA("qcom,dwc-usb3-msm", 0xF9200000, \
115 "msm_dwc3", NULL),
Shimrit Malichi57ae1492012-08-06 14:03:45 +0300116 OF_DEV_AUXDATA("qcom,usb-bam-msm", 0xF9304000, \
117 "usb_bam", NULL),
Harini Jayaraman5f98dbb2011-12-20 13:38:19 -0700118 OF_DEV_AUXDATA("qcom,spi-qup-v2", 0xF9924000, \
119 "spi_qsd.1", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530120 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9824000, \
David Ng665140f2012-04-12 16:03:45 -0700121 "msm_sdcc.1", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530122 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98A4000, \
123 "msm_sdcc.2", NULL),
124 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF9864000, \
David Ng665140f2012-04-12 16:03:45 -0700125 "msm_sdcc.3", NULL),
Sujit Reddy Thumma85fc52c2012-05-02 12:53:45 +0530126 OF_DEV_AUXDATA("qcom,msm-sdcc", 0xF98E4000, \
127 "msm_sdcc.4", NULL),
Venkat Gopalakrishnan13268f92012-09-17 15:15:07 -0700128 OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF9824900, \
129 "msm_sdcc.1", NULL),
130 OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF98A4900, \
131 "msm_sdcc.2", NULL),
132 OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF9864900, \
133 "msm_sdcc.3", NULL),
134 OF_DEV_AUXDATA("qcom,sdhci-msm", 0xF98E4900, \
135 "msm_sdcc.4", NULL),
Hariprasad Dhalinarasimhade991f02012-05-31 13:15:51 -0700136 OF_DEV_AUXDATA("qcom,msm-rng", 0xF9BFF000, \
137 "msm_rng", NULL),
Ramesh Masavarapufb1f01e2012-06-14 09:40:40 -0700138 OF_DEV_AUXDATA("qcom,qseecom", 0xFE806000, \
139 "qseecom", NULL),
Adrian Salido-Moreno5ef3ac02012-05-14 18:40:47 -0700140 OF_DEV_AUXDATA("qcom,mdss_mdp", 0xFD900000, "mdp.0", NULL),
Siddartha Mohanadoss0a188882012-07-06 15:51:00 -0700141 OF_DEV_AUXDATA("qcom,msm-tsens", 0xFC4A8000, \
142 "msm-tsens", NULL),
Mona Hossainb43e94b2012-05-07 08:52:06 -0700143 OF_DEV_AUXDATA("qcom,qcedev", 0xFD440000, \
144 "qcedev.0", NULL),
145 OF_DEV_AUXDATA("qcom,qcrypto", 0xFD440000, \
146 "qcrypto.0", NULL),
Ming-yi Linb6ade102013-02-04 14:05:08 +0800147 OF_DEV_AUXDATA("qcom,hsic-host", 0xF9A00000, \
148 "msm_hsic_host", NULL),
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700149 {}
150};
151
Rohit Vaswani750bee12012-09-20 16:18:10 -0700152static void __init msm8974_map_io(void)
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700153{
Rohit Vaswani750bee12012-09-20 16:18:10 -0700154 msm_map_8974_io();
Rohit Vaswani750bee12012-09-20 16:18:10 -0700155}
156
157void __init msm8974_init(void)
158{
159 struct of_dev_auxdata *adata = msm8974_auxdata_lookup;
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -0800160
Abhimanyu Kapur91a0a502013-01-11 19:24:59 -0800161 if (socinfo_init() < 0)
Abhimanyu Kapur440cdde2012-12-04 00:05:40 -0800162 pr_err("%s: socinfo_init() failed\n", __func__);
Rohit Vaswani750bee12012-09-20 16:18:10 -0700163
Abhimanyu Kapur90ced6e2012-06-26 17:41:25 -0700164 msm_8974_init_gpiomux();
Matt Wagantallecaa1172012-05-08 21:38:45 -0700165 regulator_has_full_constraints();
Rohit Vaswani750bee12012-09-20 16:18:10 -0700166 of_platform_populate(NULL, of_default_bus_match_table, adata, NULL);
Rohit Vaswani750bee12012-09-20 16:18:10 -0700167 msm8974_add_drivers();
Sathish Ambleyc58afc22011-10-09 21:55:39 -0700168}
Olav Hauganb800c8c2012-01-30 08:50:45 -0800169
Rohit Vaswani750bee12012-09-20 16:18:10 -0700170void __init msm8974_init_very_early(void)
Olav Hauganb800c8c2012-01-30 08:50:45 -0800171{
Rohit Vaswani750bee12012-09-20 16:18:10 -0700172 msm8974_early_memory();
Olav Hauganb800c8c2012-01-30 08:50:45 -0800173}
Rohit Vaswani750bee12012-09-20 16:18:10 -0700174
175static const char *msm8974_dt_match[] __initconst = {
176 "qcom,msm8974",
Stepan Moskovchenko076ab702013-03-27 18:54:33 -0700177 "qcom,apq8074",
Rohit Vaswani750bee12012-09-20 16:18:10 -0700178 NULL
179};
180
181DT_MACHINE_START(MSM8974_DT, "Qualcomm MSM 8974 (Flattened Device Tree)")
182 .map_io = msm8974_map_io,
183 .init_irq = msm_dt_init_irq,
184 .init_machine = msm8974_init,
185 .handle_irq = gic_handle_irq,
186 .timer = &msm_dt_timer,
187 .dt_compat = msm8974_dt_match,
Neeti Desai1b2cb552012-11-01 21:57:36 -0700188 .reserve = msm_8974_reserve,
Rohit Vaswani750bee12012-09-20 16:18:10 -0700189 .init_very_early = msm8974_init_very_early,
190 .restart = msm_restart,
Syed Rameez Mustafa9de46342012-11-30 11:00:08 -0800191 .smp = &msm8974_smp_ops,
Rohit Vaswani750bee12012-09-20 16:18:10 -0700192MACHINE_END