2011-07-20 07:26:54 +08:00
|
|
|
/*
|
2013-02-14 01:15:50 +08:00
|
|
|
* NVIDIA Tegra SoC device tree board support
|
2011-07-20 07:26:54 +08:00
|
|
|
*
|
2013-02-14 01:15:50 +08:00
|
|
|
* Copyright (C) 2011, 2013, NVIDIA Corporation
|
2011-07-20 07:26:54 +08:00
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2012-10-24 01:52:53 +08:00
|
|
|
#include <linux/clocksource.h>
|
2011-07-20 07:26:54 +08:00
|
|
|
#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>
|
2012-08-28 05:22:48 +08:00
|
|
|
#include <linux/platform_data/tegra_usb.h>
|
2011-07-20 07:26:54 +08:00
|
|
|
#include <linux/io.h>
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/i2c-tegra.h>
|
2012-08-28 05:22:48 +08:00
|
|
|
#include <linux/usb/tegra_usb_phy.h>
|
2011-07-20 07:26:54 +08:00
|
|
|
|
|
|
|
#include <asm/mach-types.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include <asm/mach/time.h>
|
|
|
|
#include <asm/setup.h>
|
|
|
|
|
|
|
|
#include "board.h"
|
2011-09-08 20:15:22 +08:00
|
|
|
#include "common.h"
|
2012-10-05 04:24:09 +08:00
|
|
|
#include "iomap.h"
|
2012-08-28 05:22:48 +08:00
|
|
|
|
2013-01-03 14:27:05 +08:00
|
|
|
static struct tegra_ehci_platform_data tegra_ehci1_pdata = {
|
2012-08-28 05:22:48 +08:00
|
|
|
.operating_mode = TEGRA_USB_OTG,
|
|
|
|
.power_down_on_bus_suspend = 1,
|
|
|
|
.vbus_gpio = -1,
|
|
|
|
};
|
|
|
|
|
2013-01-03 14:27:05 +08:00
|
|
|
static struct tegra_ulpi_config tegra_ehci2_ulpi_phy_config = {
|
2012-08-28 05:22:48 +08:00
|
|
|
.reset_gpio = -1,
|
|
|
|
.clk = "cdev2",
|
|
|
|
};
|
|
|
|
|
2013-01-03 14:27:05 +08:00
|
|
|
static struct tegra_ehci_platform_data tegra_ehci2_pdata = {
|
2012-08-28 05:22:48 +08:00
|
|
|
.phy_config = &tegra_ehci2_ulpi_phy_config,
|
|
|
|
.operating_mode = TEGRA_USB_HOST,
|
|
|
|
.power_down_on_bus_suspend = 1,
|
|
|
|
.vbus_gpio = -1,
|
|
|
|
};
|
|
|
|
|
2013-01-03 14:27:05 +08:00
|
|
|
static struct tegra_ehci_platform_data tegra_ehci3_pdata = {
|
2012-08-28 05:22:48 +08:00
|
|
|
.operating_mode = TEGRA_USB_HOST,
|
|
|
|
.power_down_on_bus_suspend = 1,
|
|
|
|
.vbus_gpio = -1,
|
|
|
|
};
|
2011-07-20 07:26:54 +08:00
|
|
|
|
2013-01-03 14:27:05 +08:00
|
|
|
static struct of_dev_auxdata tegra20_auxdata_lookup[] __initdata = {
|
2012-12-18 02:31:01 +08:00
|
|
|
OF_DEV_AUXDATA("nvidia,tegra20-ehci", 0xC5000000, "tegra-ehci.0",
|
2012-03-20 03:57:13 +08:00
|
|
|
&tegra_ehci1_pdata),
|
2012-12-18 02:31:01 +08:00
|
|
|
OF_DEV_AUXDATA("nvidia,tegra20-ehci", 0xC5004000, "tegra-ehci.1",
|
2012-03-20 03:57:13 +08:00
|
|
|
&tegra_ehci2_pdata),
|
2012-12-18 02:31:01 +08:00
|
|
|
OF_DEV_AUXDATA("nvidia,tegra20-ehci", 0xC5008000, "tegra-ehci.2",
|
2012-03-20 03:57:13 +08:00
|
|
|
&tegra_ehci3_pdata),
|
2011-07-20 07:26:54 +08:00
|
|
|
{}
|
|
|
|
};
|
|
|
|
|
|
|
|
static void __init tegra_dt_init(void)
|
|
|
|
{
|
2011-12-17 06:12:32 +08:00
|
|
|
/*
|
|
|
|
* Finished with the static registrations now; fill in the missing
|
|
|
|
* devices
|
|
|
|
*/
|
2012-06-29 06:29:19 +08:00
|
|
|
of_platform_populate(NULL, of_default_bus_match_table,
|
2011-12-17 06:12:32 +08:00
|
|
|
tegra20_auxdata_lookup, NULL);
|
2011-07-20 07:26:54 +08:00
|
|
|
}
|
|
|
|
|
2012-05-03 03:43:26 +08:00
|
|
|
static void __init trimslice_init(void)
|
|
|
|
{
|
2012-08-04 04:55:36 +08:00
|
|
|
#ifdef CONFIG_TEGRA_PCI
|
2012-05-03 03:43:26 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = tegra_pcie_init(true, true);
|
|
|
|
if (ret)
|
|
|
|
pr_err("tegra_pci_init() failed: %d\n", ret);
|
|
|
|
#endif
|
2012-08-04 04:55:36 +08:00
|
|
|
}
|
2012-05-03 03:43:26 +08:00
|
|
|
|
2012-05-03 05:47:12 +08:00
|
|
|
static void __init harmony_init(void)
|
|
|
|
{
|
ARM: dt: tegra: harmony: add regulators
Harmony uses a TPS6586x regulator. Instantiate this, and hook up a
couple of fixed GPIO-controlled regulators too.
Based on Ventana regulator patch by Stephen Warren <swarren@nvidia.com>
and converted to Harmony.
swarren made the following changes:
* Added ldo0 regulator configuration to device tree, and updated
board-harmony-pcie.c for the new regulator name.
* Fixed vdd_1v05's voltage from 10.5V to 1.05V.
* Modified board-harmony-pcie.c to obtain the en_vdd_1v05 GPIO number at
run-time from device tree instead of hard-coding it.
* Removed board-harmony{-power.c,.h} now that they're unused.
* Disabled vdd_1v05 regulator; the code in board-harmony-pcie.c hijacks
this GPIO for now. This will be fixed when the PCIe driver is re-
written as a driver. The code can't regulator_get("vdd_1v05") right
now, because the vdd_1v05 regulator's probe gets deferred due to its
supply being the PMIC, which gets probed after the regulator the first
time around, and this dependency is only resolved by repeated probing,
which happens when deferred_probe_initcall() is called, which happens
in a late initcall, whose runtime order relative to harmony_pcie_init()
is undefined, since that's also called from a late initcall.
* Removed unused harmony_pcie_initcall().
Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
2012-08-17 04:59:59 +08:00
|
|
|
#ifdef CONFIG_TEGRA_PCI
|
2012-05-03 05:47:12 +08:00
|
|
|
int ret;
|
|
|
|
|
|
|
|
ret = harmony_pcie_init();
|
|
|
|
if (ret)
|
|
|
|
pr_err("harmony_pcie_init() failed: %d\n", ret);
|
|
|
|
#endif
|
2012-08-04 05:24:38 +08:00
|
|
|
}
|
2012-05-03 05:47:12 +08:00
|
|
|
|
2012-05-03 06:05:44 +08:00
|
|
|
static void __init paz00_init(void)
|
|
|
|
{
|
2013-02-14 01:15:50 +08:00
|
|
|
if (IS_ENABLED(CONFIG_ARCH_TEGRA_2x_SOC))
|
|
|
|
tegra_paz00_wifikill_init();
|
2012-05-03 06:05:44 +08:00
|
|
|
}
|
|
|
|
|
2012-05-03 03:43:26 +08:00
|
|
|
static struct {
|
|
|
|
char *machine;
|
|
|
|
void (*init)(void);
|
|
|
|
} board_init_funcs[] = {
|
|
|
|
{ "compulab,trimslice", trimslice_init },
|
2012-05-03 05:47:12 +08:00
|
|
|
{ "nvidia,harmony", harmony_init },
|
2012-05-03 06:05:44 +08:00
|
|
|
{ "compal,paz00", paz00_init },
|
2012-05-03 03:43:26 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-02-14 01:15:50 +08:00
|
|
|
static const char * const tegra_dt_board_compat[] = {
|
|
|
|
"nvidia,tegra114",
|
|
|
|
"nvidia,tegra30",
|
2012-02-28 09:26:16 +08:00
|
|
|
"nvidia,tegra20",
|
2011-07-20 07:26:54 +08:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2013-02-14 01:15:50 +08:00
|
|
|
DT_MACHINE_START(TEGRA_DT, "NVIDIA Tegra SoC (Flattened Device Tree)")
|
2011-07-20 07:26:54 +08:00
|
|
|
.map_io = tegra_map_common_io,
|
2011-09-08 20:15:22 +08:00
|
|
|
.smp = smp_ops(tegra_smp_ops),
|
2013-02-14 01:15:48 +08:00
|
|
|
.init_early = tegra_init_early,
|
2011-11-30 09:29:19 +08:00
|
|
|
.init_irq = tegra_dt_init_irq,
|
2012-10-24 01:52:53 +08:00
|
|
|
.init_time = clocksource_of_init,
|
2011-07-20 07:26:54 +08:00
|
|
|
.init_machine = tegra_dt_init,
|
2012-05-03 03:43:26 +08:00
|
|
|
.init_late = tegra_dt_init_late,
|
2011-11-05 16:48:33 +08:00
|
|
|
.restart = tegra_assert_system_reset,
|
2013-02-14 01:15:50 +08:00
|
|
|
.dt_compat = tegra_dt_board_compat,
|
2011-07-20 07:26:54 +08:00
|
|
|
MACHINE_END
|