blob: e7ef1a9ad4f24a4046e63c152ce55d115ed52cb5 [file] [log] [blame]
Rohit Vaswani3fc60342012-04-23 18:55:15 -07001/* Copyright (c) 2012, Code Aurora Forum. All rights reserved.
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
13#include <linux/kernel.h>
14#include <linux/platform_device.h>
15#include <linux/io.h>
16#include <linux/irq.h>
17#include <linux/irqdomain.h>
18#include <linux/of.h>
19#include <linux/of_address.h>
20#include <linux/of_platform.h>
21#include <linux/of_irq.h>
22#include <linux/memory.h>
23#include <asm/mach/map.h>
Abhimanyu Kapur490d20c2012-06-22 17:34:20 -070024#include <asm/hardware/cache-l2x0.h>
Rohit Vaswani3fc60342012-04-23 18:55:15 -070025#include <asm/hardware/gic.h>
26#include <asm/arch_timer.h>
27#include <asm/mach/arch.h>
28#include <asm/mach/time.h>
29#include <mach/socinfo.h>
30#include <mach/board.h>
31#include <mach/gpio.h>
32#include "clock.h"
33
Abhimanyu Kapur490d20c2012-06-22 17:34:20 -070034#define L2CC_AUX_CTRL ((0x1 << L2X0_AUX_CTRL_SHARE_OVERRIDE_SHIFT) | \
35 (0x2 << L2X0_AUX_CTRL_WAY_SIZE_SHIFT) | \
36 (0x1 << L2X0_AUX_CTRL_EVNT_MON_BUS_EN_SHIFT))
37
Rohit Vaswani3fc60342012-04-23 18:55:15 -070038static struct clk_lookup msm_clocks_dummy[] = {
Jin Hong8d328582012-05-01 15:45:29 -070039 CLK_DUMMY("core_clk", BLSP1_UART_CLK, "msm_serial_hsl.0", OFF),
40 CLK_DUMMY("iface_clk", BLSP1_UART_CLK, "msm_serial_hsl.0", OFF),
Rohit Vaswani3fc60342012-04-23 18:55:15 -070041 CLK_DUMMY("phy_clk", NULL, "msm_otg", OFF),
42 CLK_DUMMY("core_clk", NULL, "msm_otg", OFF),
43 CLK_DUMMY("alt_core_clk", NULL, "msm_otg", OFF),
44 CLK_DUMMY("iface_clk", NULL, "msm_otg", OFF),
45 CLK_DUMMY("xo", NULL, "msm_otg", OFF),
46 CLK_DUMMY("dfab_clk", DFAB_CLK, NULL, 0),
47 CLK_DUMMY("dma_bam_pclk", DMA_BAM_P_CLK, NULL, 0),
48 CLK_DUMMY("mem_clk", NULL, NULL, 0),
Rohit Vaswani0045df42012-06-29 16:21:48 -070049 CLK_DUMMY("core_clk", SPI_CLK, "spi_qsd.1", OFF),
50 CLK_DUMMY("iface_clk", SPI_P_CLK, "spi_qsd.1", OFF),
Rohit Vaswani3fc60342012-04-23 18:55:15 -070051 CLK_DUMMY("core_clk", NULL, "f9966000.i2c", 0),
52 CLK_DUMMY("iface_clk", NULL, "f9966000.i2c", 0),
53 CLK_DUMMY("core_clk", NULL, "fe12f000.slim", OFF),
54};
55
56struct clock_init_data msm_dummy_clock_init_data __initdata = {
57 .table = msm_clocks_dummy,
58 .size = ARRAY_SIZE(msm_clocks_dummy),
59};
60
61static struct of_device_id irq_match[] __initdata = {
62 { .compatible = "qcom,msm-qgic2", .data = gic_of_init, },
63 { .compatible = "qcom,msm-gpio", .data = msm_gpio_of_init, },
64 {}
65};
66
67static const char *msm9625_dt_match[] __initconst = {
68 "qcom,msm9625",
69 NULL
70};
71
72static struct of_dev_auxdata msm9625_auxdata_lookup[] __initdata = {
Jin Hong8d328582012-05-01 15:45:29 -070073 OF_DEV_AUXDATA("qcom,msm-lsuart-v14", 0xF991F000, \
74 "msm_serial_hsl.0", NULL),
Rohit Vaswani0045df42012-06-29 16:21:48 -070075 OF_DEV_AUXDATA("qcom,spi-qup-v2", 0xF9928000, \
76 "spi_qsd.1", NULL),
Rohit Vaswani3fc60342012-04-23 18:55:15 -070077 {}
78};
79
80void __init msm9625_init_irq(void)
81{
Abhimanyu Kapur490d20c2012-06-22 17:34:20 -070082 l2x0_of_init(L2CC_AUX_CTRL, L2X0_AUX_CTRL_MASK);
Rohit Vaswani3fc60342012-04-23 18:55:15 -070083 of_irq_init(irq_match);
84}
85
86static void __init msm_dt_timer_init(void)
87{
88 arch_timer_of_register();
89}
90
91static struct sys_timer msm_dt_timer = {
92 .init = msm_dt_timer_init
93};
94
95void __init msm9625_init(void)
96{
97 if (socinfo_init() < 0)
98 pr_err("%s: socinfo_init() failed\n", __func__);
Rohit Vaswani5a06e792012-06-29 16:03:23 -070099
100 msm9625_init_gpiomux();
Rohit Vaswani3fc60342012-04-23 18:55:15 -0700101 msm_clock_init(&msm_dummy_clock_init_data);
102 of_platform_populate(NULL, of_default_bus_match_table,
103 msm9625_auxdata_lookup, NULL);
104}
105
106DT_MACHINE_START(MSM_DT, "Qualcomm MSM (Flattened Device Tree)")
107 .map_io = msm_map_msm9625_io,
108 .init_irq = msm9625_init_irq,
109 .init_machine = msm9625_init,
110 .handle_irq = gic_handle_irq,
111 .timer = &msm_dt_timer,
112 .dt_compat = msm9625_dt_match,
113 .nr_irqs = -1,
114MACHINE_END