[PATCH v2 6/6] arm/dt: Basic tegra devicetree support



This patch adds adds very basic support for booting tegra with a
device tree. It simply allows the existing machine_descs to match
against the tegra compatible values so that the kernel can boot.
Kernel parameters and the initrd pointer is read out of the tree
instead of atags.

This is not complete device tree support. This change will be
reverted when a new machine_desc is added that can populate the
device registrations directly from data in the tree instead of using
hard coded data. That change will be made in a future patch.

v2: Fixed cut-and-paste error in commit text

Signed-off-by: Grant Likely <grant.likely@xxxxxxxxxxxx>
---
arch/arm/mach-tegra/board-harmony.c | 6 ++++++
1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-tegra/board-harmony.c b/arch/arm/mach-tegra/board-harmony.c
index b9dbdb1..99884e9 100644
--- a/arch/arm/mach-tegra/board-harmony.c
+++ b/arch/arm/mach-tegra/board-harmony.c
@@ -113,6 +113,11 @@ static void __init tegra_harmony_init(void)
platform_add_devices(harmony_devices, ARRAY_SIZE(harmony_devices));
}

+static const char * tegra_harmony_board_compat[] = {
+ "nvidia,harmony",
+ NULL
+};
+
MACHINE_START(HARMONY, "harmony")
.boot_params = 0x00000100,
.fixup = tegra_harmony_fixup,
@@ -120,4 +125,5 @@ MACHINE_START(HARMONY, "harmony")
.init_machine = tegra_harmony_init,
.map_io = tegra_map_common_io,
.timer = &tegra_timer,
+ .dt_compat = tegra_harmony_board_compat,
MACHINE_END

--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



Relevant Pages

  • [PATCH v2 5/6] arm/dt: Basic versatile devicetree support
    ... This patch adds adds very basic support for booting versatile with a ... against the versatile ab & pb compatible values so that the kernel can ... This is not complete device tree support. ... That change will be made in a future patch. ...
    (Linux-Kernel)
  • [PATCH v3 6/6] arm/dt: Basic tegra devicetree support
    ... This patch adds adds very basic support for booting tegra with a ... This is not complete device tree support. ... That change will be made in a future patch. ...
    (Linux-Kernel)
  • [PATCH v3 5/6] arm/dt: Basic versatile devicetree support
    ... This patch adds adds very basic support for booting versatile with a ... against the versatile ab & pb compatible values so that the kernel can ... This is not complete device tree support. ... That change will be made in a future patch. ...
    (Linux-Kernel)
  • [PATCH 6/8] arm/dt: Basic versatile devicetree support
    ... This patch adds adds very basic support for booting versatile with a ... against the versatile ab & pb compatible values so that the kernel can ... This is not complete device tree support. ... That change will be made in a future patch. ...
    (Linux-Kernel)
  • Re: [PATCH 0/8] Basic ARM device tree support
    ... It's been a while since these patches have been circulated for review. ... This patch series allows CONFIG_OF to be enabled on ARM and allows the ... Only limited device tree support is enabled here. ...
    (Linux-Kernel)