devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] arm/dt: Add basic device tree support for genesi mx board
@ 2011-03-30 13:15 Jason Liu
       [not found] ` <1301490914-2279-1-git-send-email-jason.hui-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Jason Liu @ 2011-03-30 13:15 UTC (permalink / raw)
  To: devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ
  Cc: grant.likely-QSEj5FYQhm4dnm+yROfE0A,
	linaro-dev-cunTk1MwBs8s++Sfvej+rw, patches-QSEj5FYQhm4dnm+yROfE0A

This patch add support for Genesi Efika MX Smarttop and Smartbook

Signed-off-by: Jason Liu <jason.hui-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>

---
Grant, uboot patch has been included in your uboot patchset.
And mx51_efika build break, need pull in the patch to fix it
http://git.pengutronix.de/?p=imx/linux-2.6.git;a=commitdiff;
h=251290a6078cb88382344b3ee535ae8c6254c1b5
---
 arch/arm/boot/dts/genesi-efikamx.dts   |   30 ++++++++++++++++++++++++++++++
 arch/arm/boot/dts/genesi-efikasb.dts   |   30 ++++++++++++++++++++++++++++++
 arch/arm/mach-mx5/Kconfig              |    1 +
 arch/arm/mach-mx5/board-mx51_efikamx.c |    6 ++++++
 arch/arm/mach-mx5/board-mx51_efikasb.c |    6 ++++++
 5 files changed, 73 insertions(+), 0 deletions(-)

diff --git a/arch/arm/boot/dts/genesi-efikamx.dts b/arch/arm/boot/dts/genesi-efikamx.dts
new file mode 100644
index 0000000..eca9616
--- /dev/null
+++ b/arch/arm/boot/dts/genesi-efikamx.dts
@@ -0,0 +1,30 @@
+/*
+ * Copyright 2011 Linaro Ltd.
+ *
+ * The code contained herein is licensed under the GNU General Public
+ * License. You may obtain a copy of the GNU General Public License
+ * Version 2 or later at the following locations:
+ *
+ * http://www.opensource.org/licenses/gpl-license.html
+ * http://www.gnu.org/copyleft/gpl.html
+ */
+
+/dts-v1/;
+
+/ {
+	model = "Genesi EfikaMX nettop";
+	compatible = "genesi,efikamx";
+	#address-cells = <1>;
+	#size-cells = <1>;
+
+	aliases {
+	};
+
+	memory {
+		device_type = "memory";
+		reg = <0x90000000 0x20000000>;
+	};
+
+	chosen {
+	};
+};
diff --git a/arch/arm/boot/dts/genesi-efikasb.dts b/arch/arm/boot/dts/genesi-efikasb.dts
new file mode 100644
index 0000000..fc60baf
--- /dev/null
+++ b/arch/arm/boot/dts/genesi-efikasb.dts
@@ -0,0 +1,30 @@
+/*
+ * Copyright 2011 Linaro Ltd.
+ *
+ * The code contained herein is licensed under the GNU General Public
+ * License. You may obtain a copy of the GNU General Public License
+ * Version 2 or later at the following locations:
+ *
+ * http://www.opensource.org/licenses/gpl-license.html
+ * http://www.gnu.org/copyleft/gpl.html
+ */
+
+/dts-v1/;
+
+/ {
+	model = "Genesi Efika Smartbook";
+	compatible = "genesi,efikasb";
+	#address-cells = <1>;
+	#size-cells = <1>;
+
+	aliases {
+	};
+
+	memory {
+		device_type = "memory";
+		reg = <0x90000000 0x20000000>;
+	};
+
+	chosen {
+	};
+};
diff --git a/arch/arm/mach-mx5/Kconfig b/arch/arm/mach-mx5/Kconfig
index a61e01e..8aba7ea 100644
--- a/arch/arm/mach-mx5/Kconfig
+++ b/arch/arm/mach-mx5/Kconfig
@@ -123,6 +123,7 @@ config MX5_DT_COMMON
 config MX51_EFIKA_COMMON
 	bool
 	select SOC_IMX51
+	select MX5_DT_COMMON
 	select IMX_HAVE_PLATFORM_IMX_UART
 	select IMX_HAVE_PLATFORM_SDHCI_ESDHC_IMX
 	select IMX_HAVE_PLATFORM_SPI_IMX
diff --git a/arch/arm/mach-mx5/board-mx51_efikamx.c b/arch/arm/mach-mx5/board-mx51_efikamx.c
index acab191..1e9ed26 100644
--- a/arch/arm/mach-mx5/board-mx51_efikamx.c
+++ b/arch/arm/mach-mx5/board-mx51_efikamx.c
@@ -286,6 +286,11 @@ static struct sys_timer mx51_efikamx_timer = {
 	.init = mx51_efikamx_timer_init,
 };
 
+static const char *mx51_efikamx_dt_match[] __initdata = {
+	"genesi,efikamx",
+	NULL
+};
+
 MACHINE_START(MX51_EFIKAMX, "Genesi EfikaMX nettop")
 	/* Maintainer: Amit Kucheria <amit.kucheria-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org> */
 	.boot_params = MX51_PHYS_OFFSET + 0x100,
@@ -294,4 +299,5 @@ MACHINE_START(MX51_EFIKAMX, "Genesi EfikaMX nettop")
 	.init_irq = mx51_init_irq,
 	.timer = &mx51_efikamx_timer,
 	.init_machine = mx51_efikamx_init,
+	.dt_compat = mx51_efikamx_dt_match,
 MACHINE_END
diff --git a/arch/arm/mach-mx5/board-mx51_efikasb.c b/arch/arm/mach-mx5/board-mx51_efikasb.c
index db04ce8..6b80fce 100644
--- a/arch/arm/mach-mx5/board-mx51_efikasb.c
+++ b/arch/arm/mach-mx5/board-mx51_efikasb.c
@@ -273,6 +273,11 @@ static struct sys_timer mx51_efikasb_timer = {
 	.init	= mx51_efikasb_timer_init,
 };
 
+static const char *mx51_efikasb_dt_match[] __initdata = {
+	"genesi,efikasb",
+	NULL
+};
+
 MACHINE_START(MX51_EFIKASB, "Genesi Efika Smartbook")
 	.boot_params = MX51_PHYS_OFFSET + 0x100,
 	.map_io = mx51_map_io,
@@ -280,4 +285,5 @@ MACHINE_START(MX51_EFIKASB, "Genesi Efika Smartbook")
 	.init_irq = mx51_init_irq,
 	.init_machine =  efikasb_board_init,
 	.timer = &mx51_efikasb_timer,
+	.dt_compat = mx51_efikasb_dt_match,
 MACHINE_END
-- 
1.7.1

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] arm/dt: Add basic device tree support for genesi mx board
       [not found] ` <1301490914-2279-1-git-send-email-jason.hui-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
@ 2011-03-30 15:58   ` Steev Klimaszewski
       [not found]     ` <AANLkTikZyhk1MHnTMd6KwGCLu7MTOpq3iR+ajDDAJDPs-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 3+ messages in thread
From: Steev Klimaszewski @ 2011-03-30 15:58 UTC (permalink / raw)
  To: Jason Liu
  Cc: grant.likely-QSEj5FYQhm4dnm+yROfE0A,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ,
	linaro-dev-cunTk1MwBs8s++Sfvej+rw, patches-QSEj5FYQhm4dnm+yROfE0A

On Wed, Mar 30, 2011 at 8:15 AM, Jason Liu <jason.hui@linaro.org> wrote:
> This patch add support for Genesi Efika MX Smarttop and Smartbook
>
> Signed-off-by: Jason Liu <jason.hui@linaro.org>
>
> ---
> Grant, uboot patch has been included in your uboot patchset.
> And mx51_efika build break, need pull in the patch to fix it
> http://git.pengutronix.de/?p=imx/linux-2.6.git;a=commitdiff;
> h=251290a6078cb88382344b3ee535ae8c6254c1b5
> ---
>  arch/arm/boot/dts/genesi-efikamx.dts   |   30 ++++++++++++++++++++++++++++++
>  arch/arm/boot/dts/genesi-efikasb.dts   |   30 ++++++++++++++++++++++++++++++
>  arch/arm/mach-mx5/Kconfig              |    1 +
>  arch/arm/mach-mx5/board-mx51_efikamx.c |    6 ++++++
>  arch/arm/mach-mx5/board-mx51_efikasb.c |    6 ++++++
>  5 files changed, 73 insertions(+), 0 deletions(-)
>
> diff --git a/arch/arm/boot/dts/genesi-efikamx.dts b/arch/arm/boot/dts/genesi-efikamx.dts
> new file mode 100644
> index 0000000..eca9616
> --- /dev/null
> +++ b/arch/arm/boot/dts/genesi-efikamx.dts
> @@ -0,0 +1,30 @@
> +/*
> + * Copyright 2011 Linaro Ltd.
> + *
> + * The code contained herein is licensed under the GNU General Public
> + * License. You may obtain a copy of the GNU General Public License
> + * Version 2 or later at the following locations:
> + *
> + * http://www.opensource.org/licenses/gpl-license.html
> + * http://www.gnu.org/copyleft/gpl.html
> + */
> +
> +/dts-v1/;
> +
> +/ {
> +       model = "Genesi EfikaMX nettop";
> +       compatible = "genesi,efikamx";
> +       #address-cells = <1>;
> +       #size-cells = <1>;
<snip>
>  MACHINE_START(MX51_EFIKAMX, "Genesi EfikaMX nettop")
>        /* Maintainer: Amit Kucheria <amit.kucheria@linaro.org> */
>        .boot_params = MX51_PHYS_OFFSET + 0x100,
> @@ -294,4 +299,5 @@ MACHINE_START(MX51_EFIKAMX, "Genesi EfikaMX nettop")
>        .init_irq = mx51_init_irq,
>        .timer = &mx51_efikamx_timer,
>        .init_machine = mx51_efikamx_init,
> +       .dt_compat = mx51_efikamx_dt_match,
>  MACHINE_END

We actually call the small desktop a Smarttop not nettop :)

-- 
Steev Klimaszewski <steev@genesi-usa.com>
Senior Software Engineer, Genesi USA, Inc.

_______________________________________________
linaro-dev mailing list
linaro-dev@lists.linaro.org
http://lists.linaro.org/mailman/listinfo/linaro-dev

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] arm/dt: Add basic device tree support for genesi mx board
       [not found]     ` <AANLkTikZyhk1MHnTMd6KwGCLu7MTOpq3iR+ajDDAJDPs-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2011-03-31  0:30       ` Loïc Minier
  0 siblings, 0 replies; 3+ messages in thread
From: Loïc Minier @ 2011-03-31  0:30 UTC (permalink / raw)
  To: Steev Klimaszewski
  Cc: grant.likely-QSEj5FYQhm4dnm+yROfE0A,
	linaro-dev-cunTk1MwBs8s++Sfvej+rw,
	devicetree-discuss-uLR06cmDAlY/bJ5BZ2RsiQ

On Wed, Mar 30, 2011, Steev Klimaszewski wrote:
> We actually call the small desktop a Smarttop not nettop :)

 I thought the same, but this name is already used in mainline
 linux/arch/arm/mach-mx5/board-mx51_efikamx.c:
 MACHINE_START(MX51_EFIKAMX, "Genesi EfikaMX nettop"

-- 
Loïc Minier

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2011-03-31  0:30 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-30 13:15 [PATCH] arm/dt: Add basic device tree support for genesi mx board Jason Liu
     [not found] ` <1301490914-2279-1-git-send-email-jason.hui-QSEj5FYQhm4dnm+yROfE0A@public.gmane.org>
2011-03-30 15:58   ` Steev Klimaszewski
     [not found]     ` <AANLkTikZyhk1MHnTMd6KwGCLu7MTOpq3iR+ajDDAJDPs-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2011-03-31  0:30       ` Loïc Minier

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).