tegra.c 4.6 KB
Newer Older
G
Grant Likely 已提交
1
/*
2
 * NVIDIA Tegra SoC device tree board support
G
Grant Likely 已提交
3
 *
4
 * Copyright (C) 2011, 2013, NVIDIA Corporation
G
Grant Likely 已提交
5 6 7 8 9 10 11 12 13 14 15 16 17 18
 * Copyright (C) 2010 Secret Lab Technologies, Ltd.
 * Copyright (C) 2010 Google, Inc.
 *
 * This software is licensed under the terms of the GNU General Public
 * License version 2, as published by the Free Software Foundation, and
 * may be copied, distributed, and modified under those terms.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 */

19
#include <linux/clocksource.h>
G
Grant Likely 已提交
20 21 22 23 24 25 26 27 28 29 30 31
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/platform_device.h>
#include <linux/serial_8250.h>
#include <linux/clk.h>
#include <linux/dma-mapping.h>
#include <linux/irqdomain.h>
#include <linux/of.h>
#include <linux/of_address.h>
#include <linux/of_fdt.h>
#include <linux/of_platform.h>
#include <linux/pda_power.h>
S
Stephen Warren 已提交
32
#include <linux/platform_data/tegra_usb.h>
G
Grant Likely 已提交
33 34 35
#include <linux/io.h>
#include <linux/i2c.h>
#include <linux/i2c-tegra.h>
36 37
#include <linux/slab.h>
#include <linux/sys_soc.h>
S
Stephen Warren 已提交
38
#include <linux/usb/tegra_usb_phy.h>
G
Grant Likely 已提交
39 40 41 42 43 44 45

#include <asm/mach-types.h>
#include <asm/mach/arch.h>
#include <asm/mach/time.h>
#include <asm/setup.h>

#include "board.h"
46
#include "common.h"
47
#include "fuse.h"
48
#include "iomap.h"
S
Stephen Warren 已提交
49

H
Hiroshi Doyu 已提交
50
static struct tegra_ehci_platform_data tegra_ehci1_pdata = {
S
Stephen Warren 已提交
51 52 53 54 55
	.operating_mode = TEGRA_USB_OTG,
	.power_down_on_bus_suspend = 1,
	.vbus_gpio = -1,
};

H
Hiroshi Doyu 已提交
56
static struct tegra_ulpi_config tegra_ehci2_ulpi_phy_config = {
S
Stephen Warren 已提交
57 58 59 60
	.reset_gpio = -1,
	.clk = "cdev2",
};

H
Hiroshi Doyu 已提交
61
static struct tegra_ehci_platform_data tegra_ehci2_pdata = {
S
Stephen Warren 已提交
62 63 64 65 66 67
	.phy_config = &tegra_ehci2_ulpi_phy_config,
	.operating_mode = TEGRA_USB_HOST,
	.power_down_on_bus_suspend = 1,
	.vbus_gpio = -1,
};

H
Hiroshi Doyu 已提交
68
static struct tegra_ehci_platform_data tegra_ehci3_pdata = {
S
Stephen Warren 已提交
69 70 71 72
	.operating_mode = TEGRA_USB_HOST,
	.power_down_on_bus_suspend = 1,
	.vbus_gpio = -1,
};
G
Grant Likely 已提交
73

H
Hiroshi Doyu 已提交
74
static struct of_dev_auxdata tegra20_auxdata_lookup[] __initdata = {
75
	OF_DEV_AUXDATA("nvidia,tegra20-ehci", 0xC5000000, "tegra-ehci.0",
76
		       &tegra_ehci1_pdata),
77
	OF_DEV_AUXDATA("nvidia,tegra20-ehci", 0xC5004000, "tegra-ehci.1",
78
		       &tegra_ehci2_pdata),
79
	OF_DEV_AUXDATA("nvidia,tegra20-ehci", 0xC5008000, "tegra-ehci.2",
80
		       &tegra_ehci3_pdata),
G
Grant Likely 已提交
81 82 83 84 85
	{}
};

static void __init tegra_dt_init(void)
{
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108
	struct soc_device_attribute *soc_dev_attr;
	struct soc_device *soc_dev;
	struct device *parent = NULL;

	soc_dev_attr = kzalloc(sizeof(*soc_dev_attr), GFP_KERNEL);
	if (!soc_dev_attr)
		goto out;

	soc_dev_attr->family = kasprintf(GFP_KERNEL, "Tegra");
	soc_dev_attr->revision = kasprintf(GFP_KERNEL, "%d", tegra_revision);
	soc_dev_attr->soc_id = kasprintf(GFP_KERNEL, "%d", tegra_chip_id);

	soc_dev = soc_device_register(soc_dev_attr);
	if (IS_ERR(soc_dev)) {
		kfree(soc_dev_attr->family);
		kfree(soc_dev_attr->revision);
		kfree(soc_dev_attr->soc_id);
		kfree(soc_dev_attr);
		goto out;
	}

	parent = soc_device_to_device(soc_dev);

109 110 111 112
	/*
	 * Finished with the static registrations now; fill in the missing
	 * devices
	 */
113
out:
114
	of_platform_populate(NULL, of_default_bus_match_table,
115
				tegra20_auxdata_lookup, parent);
G
Grant Likely 已提交
116 117
}

118 119
static void __init trimslice_init(void)
{
120
#ifdef CONFIG_TEGRA_PCI
121 122 123 124 125 126
	int ret;

	ret = tegra_pcie_init(true, true);
	if (ret)
		pr_err("tegra_pci_init() failed: %d\n", ret);
#endif
127
}
128

129 130
static void __init harmony_init(void)
{
131
#ifdef CONFIG_TEGRA_PCI
132 133 134 135 136 137
	int ret;

	ret = harmony_pcie_init();
	if (ret)
		pr_err("harmony_pcie_init() failed: %d\n", ret);
#endif
138
}
139

140 141
static void __init paz00_init(void)
{
142 143
	if (IS_ENABLED(CONFIG_ARCH_TEGRA_2x_SOC))
		tegra_paz00_wifikill_init();
144 145
}

146 147 148 149 150
static struct {
	char *machine;
	void (*init)(void);
} board_init_funcs[] = {
	{ "compulab,trimslice", trimslice_init },
151
	{ "nvidia,harmony", harmony_init },
152
	{ "compal,paz00", paz00_init },
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168
};

static void __init tegra_dt_init_late(void)
{
	int i;

	tegra_init_late();

	for (i = 0; i < ARRAY_SIZE(board_init_funcs); i++) {
		if (of_machine_is_compatible(board_init_funcs[i].machine)) {
			board_init_funcs[i].init();
			break;
		}
	}
}

169 170 171
static const char * const tegra_dt_board_compat[] = {
	"nvidia,tegra114",
	"nvidia,tegra30",
172
	"nvidia,tegra20",
G
Grant Likely 已提交
173 174 175
	NULL
};

176
DT_MACHINE_START(TEGRA_DT, "NVIDIA Tegra SoC (Flattened Device Tree)")
G
Grant Likely 已提交
177
	.map_io		= tegra_map_common_io,
178
	.smp		= smp_ops(tegra_smp_ops),
179
	.init_early	= tegra_init_early,
180
	.init_irq	= tegra_dt_init_irq,
181
	.init_time	= clocksource_of_init,
G
Grant Likely 已提交
182
	.init_machine	= tegra_dt_init,
183
	.init_late	= tegra_dt_init_late,
184
	.restart	= tegra_assert_system_reset,
185
	.dt_compat	= tegra_dt_board_compat,
G
Grant Likely 已提交
186
MACHINE_END