* [PATCH] arm/tegra: Add device-tree support for TrimSlice board
@ 2011-10-24 10:01 Stephen Warren
[not found] ` <1319450467-11819-1-git-send-email-swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
0 siblings, 1 reply; 5+ messages in thread
From: Stephen Warren @ 2011-10-24 10:01 UTC (permalink / raw)
To: Olof Johansson, Colin Cross
Cc: linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-tegra-u79uwXL29TY76Z2rM5mHXA, Stephen Warren
* Add device-tree file for TrimSlice
* Add that to the list of .dts files to build
* Update board-dt.c to recognize TrimSlice board name
Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
---
arch/arm/boot/dts/tegra-trimslice.dts | 38 +++++++++++++++++++++++++++++++++
arch/arm/mach-tegra/Makefile.boot | 1 +
arch/arm/mach-tegra/board-dt.c | 3 ++
3 files changed, 42 insertions(+), 0 deletions(-)
create mode 100644 arch/arm/boot/dts/tegra-trimslice.dts
diff --git a/arch/arm/boot/dts/tegra-trimslice.dts b/arch/arm/boot/dts/tegra-trimslice.dts
new file mode 100644
index 0000000..d3d0d20
--- /dev/null
+++ b/arch/arm/boot/dts/tegra-trimslice.dts
@@ -0,0 +1,38 @@
+/dts-v1/;
+
+/memreserve/ 0x1c000000 0x04000000;
+/include/ "tegra20.dtsi"
+
+/ {
+ model = "Compulab TrimSlice board";
+ compatible = "compulab,trimslice", "nvidia,tegra20";
+
+ chosen {
+ bootargs = "vmalloc=192M video=tegrafb console=ttyS0,115200n8 root=/dev/mmcblk0p1 rw rootwait";
+ };
+
+ memory@0 {
+ reg = < 0x00000000 0x40000000 >;
+ };
+
+ i2c@7000c000 {
+ clock-frequency = <400000>;
+ };
+
+ i2c@7000c400 {
+ clock-frequency = <400000>;
+ };
+
+ i2c@7000c500 {
+ clock-frequency = <400000>;
+ };
+
+ serial@70006000 {
+ clock-frequency = < 216000000 >;
+ };
+
+ sdhci@c8000600 {
+ cd-gpios = <&gpio 121 0>;
+ wp-gpios = <&gpio 122 0>;
+ };
+};
diff --git a/arch/arm/mach-tegra/Makefile.boot b/arch/arm/mach-tegra/Makefile.boot
index bd12c9f..9f177a4 100644
--- a/arch/arm/mach-tegra/Makefile.boot
+++ b/arch/arm/mach-tegra/Makefile.boot
@@ -4,4 +4,5 @@ initrd_phys-$(CONFIG_ARCH_TEGRA_2x_SOC) := 0x00800000
dtb-$(CONFIG_MACH_HARMONY) += tegra-harmony.dtb
dtb-$(CONFIG_MACH_SEABOARD) += tegra-seaboard.dtb
+dtb-$(CONFIG_MACH_TRIMSLICE) += tegra-trimslice.dtb
dtb-$(CONFIG_MACH_VENTANA) += tegra-ventana.dtb
diff --git a/arch/arm/mach-tegra/board-dt.c b/arch/arm/mach-tegra/board-dt.c
index 0d22212..9ac4ed7 100644
--- a/arch/arm/mach-tegra/board-dt.c
+++ b/arch/arm/mach-tegra/board-dt.c
@@ -47,6 +47,7 @@
void harmony_pinmux_init(int is_dt);
void seaboard_pinmux_init(int is_dt);
+void trimslice_pinmux_init(int is_dt);
void ventana_pinmux_init(int is_dt);
struct of_dev_auxdata tegra20_auxdata_lookup[] __initdata = {
@@ -84,6 +85,7 @@ static struct {
char *machine;
void (*init)(int is_dt);
} pinmux_configs[] = {
+ { "compulab,trimslice", trimslice_pinmux_init },
{ "nvidia,harmony", harmony_pinmux_init },
{ "nvidia,seaboard", seaboard_pinmux_init },
{ "nvidia,ventana", ventana_pinmux_init },
@@ -120,6 +122,7 @@ static void __init tegra_dt_init(void)
}
static const char * tegra_dt_board_compat[] = {
+ "compulab,trimslice",
"nvidia,harmony",
"nvidia,seaboard",
"nvidia,ventana",
--
1.7.4.1
^ permalink raw reply related [flat|nested] 5+ messages in thread[parent not found: <1319450467-11819-1-git-send-email-swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>]
* Re: [PATCH] arm/tegra: Add device-tree support for TrimSlice board [not found] ` <1319450467-11819-1-git-send-email-swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> @ 2011-10-24 21:27 ` Marc Dietrich 2011-10-25 4:10 ` Stephen Warren 0 siblings, 1 reply; 5+ messages in thread From: Marc Dietrich @ 2011-10-24 21:27 UTC (permalink / raw) To: Stephen Warren Cc: Olof Johansson, Colin Cross, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r, linux-tegra-u79uwXL29TY76Z2rM5mHXA Hi Stephen, On Monday 24 October 2011 12:01:07 Stephen Warren wrote: > * Add device-tree file for TrimSlice > * Add that to the list of .dts files to build > * Update board-dt.c to recognize TrimSlice board name > > Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > --- > arch/arm/boot/dts/tegra-trimslice.dts | 38 > +++++++++++++++++++++++++++++++++ arch/arm/mach-tegra/Makefile.boot | > 1 + > arch/arm/mach-tegra/board-dt.c | 3 ++ > 3 files changed, 42 insertions(+), 0 deletions(-) > create mode 100644 arch/arm/boot/dts/tegra-trimslice.dts doesn't this also require to add something like obj-${CONFIG_MACH_TEGRA_DT} += board-trimslice-pinmux.o to the Makefile? And how is the binary device tree generated? I cannot find the proper CONFIG so that Makefile.boot is executed. Marc > diff --git a/arch/arm/boot/dts/tegra-trimslice.dts > b/arch/arm/boot/dts/tegra-trimslice.dts new file mode 100644 > index 0000000..d3d0d20 > --- /dev/null > +++ b/arch/arm/boot/dts/tegra-trimslice.dts > @@ -0,0 +1,38 @@ > +/dts-v1/; > + > +/memreserve/ 0x1c000000 0x04000000; > +/include/ "tegra20.dtsi" > + > +/ { > + model = "Compulab TrimSlice board"; > + compatible = "compulab,trimslice", "nvidia,tegra20"; > + > + chosen { > + bootargs = "vmalloc=192M video=tegrafb console=ttyS0,115200n8 > root=/dev/mmcblk0p1 rw rootwait"; + }; > + > + memory@0 { > + reg = < 0x00000000 0x40000000 >; > + }; > + > + i2c@7000c000 { > + clock-frequency = <400000>; > + }; > + > + i2c@7000c400 { > + clock-frequency = <400000>; > + }; > + > + i2c@7000c500 { > + clock-frequency = <400000>; > + }; > + > + serial@70006000 { > + clock-frequency = < 216000000 >; > + }; > + > + sdhci@c8000600 { > + cd-gpios = <&gpio 121 0>; > + wp-gpios = <&gpio 122 0>; > + }; > +}; > diff --git a/arch/arm/mach-tegra/Makefile.boot > b/arch/arm/mach-tegra/Makefile.boot index bd12c9f..9f177a4 100644 > --- a/arch/arm/mach-tegra/Makefile.boot > +++ b/arch/arm/mach-tegra/Makefile.boot > @@ -4,4 +4,5 @@ initrd_phys-$(CONFIG_ARCH_TEGRA_2x_SOC) := 0x00800000 > > dtb-$(CONFIG_MACH_HARMONY) += tegra-harmony.dtb > dtb-$(CONFIG_MACH_SEABOARD) += tegra-seaboard.dtb > +dtb-$(CONFIG_MACH_TRIMSLICE) += tegra-trimslice.dtb > dtb-$(CONFIG_MACH_VENTANA) += tegra-ventana.dtb > diff --git a/arch/arm/mach-tegra/board-dt.c b/arch/arm/mach-tegra/board-dt.c > index 0d22212..9ac4ed7 100644 > --- a/arch/arm/mach-tegra/board-dt.c > +++ b/arch/arm/mach-tegra/board-dt.c > @@ -47,6 +47,7 @@ > > void harmony_pinmux_init(int is_dt); > void seaboard_pinmux_init(int is_dt); > +void trimslice_pinmux_init(int is_dt); > void ventana_pinmux_init(int is_dt); > > struct of_dev_auxdata tegra20_auxdata_lookup[] __initdata = { > @@ -84,6 +85,7 @@ static struct { > char *machine; > void (*init)(int is_dt); > } pinmux_configs[] = { > + { "compulab,trimslice", trimslice_pinmux_init }, > { "nvidia,harmony", harmony_pinmux_init }, > { "nvidia,seaboard", seaboard_pinmux_init }, > { "nvidia,ventana", ventana_pinmux_init }, > @@ -120,6 +122,7 @@ static void __init tegra_dt_init(void) > } > > static const char * tegra_dt_board_compat[] = { > + "compulab,trimslice", > "nvidia,harmony", > "nvidia,seaboard", > "nvidia,ventana", ^ permalink raw reply [flat|nested] 5+ messages in thread
* RE: [PATCH] arm/tegra: Add device-tree support for TrimSlice board 2011-10-24 21:27 ` Marc Dietrich @ 2011-10-25 4:10 ` Stephen Warren [not found] ` <74CDBE0F657A3D45AFBB94109FB122FF173E1B4171-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Stephen Warren @ 2011-10-25 4:10 UTC (permalink / raw) To: Marc Dietrich Cc: Olof Johansson, Colin Cross, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org Marc Dietrich wrote at Monday, October 24, 2011 3:28 PM: > On Monday 24 October 2011 12:01:07 Stephen Warren wrote: > > * Add device-tree file for TrimSlice > > * Add that to the list of .dts files to build > > * Update board-dt.c to recognize TrimSlice board name > > > > Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > --- > > arch/arm/boot/dts/tegra-trimslice.dts | 38 > > +++++++++++++++++++++++++++++++++ arch/arm/mach-tegra/Makefile.boot | > > 1 + > > arch/arm/mach-tegra/board-dt.c | 3 ++ > > 3 files changed, 42 insertions(+), 0 deletions(-) > > create mode 100644 arch/arm/boot/dts/tegra-trimslice.dts > > doesn't this also require to add something like > > obj-${CONFIG_MACH_TEGRA_DT} += board-trimslice-pinmux.o > > to the Makefile? Yes, definitely. I've fixed this up locally; I hope to repost soon. > And how is the binary device tree generated? I cannot find the proper CONFIG so > that Makefile.boot is executed. make dtbs (this relies on having built dtc, which happens only by "make" not e.g. "make zImage" IIRC) -- nvpublic ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <74CDBE0F657A3D45AFBB94109FB122FF173E1B4171-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>]
* Re: [PATCH] arm/tegra: Add device-tree support for TrimSlice board [not found] ` <74CDBE0F657A3D45AFBB94109FB122FF173E1B4171-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org> @ 2011-10-25 5:52 ` Thierry Reding [not found] ` <20111025055238.GA30358-RM9K5IK7kjIQXX3q8xo1gnVAuStQJXxyR5q1nwbD4aMs9pC9oP6+/A@public.gmane.org> 0 siblings, 1 reply; 5+ messages in thread From: Thierry Reding @ 2011-10-25 5:52 UTC (permalink / raw) To: Stephen Warren Cc: Marc Dietrich, Olof Johansson, Colin Cross, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org [-- Attachment #1: Type: text/plain, Size: 1239 bytes --] * Stephen Warren wrote: > Marc Dietrich wrote at Monday, October 24, 2011 3:28 PM: > > On Monday 24 October 2011 12:01:07 Stephen Warren wrote: > > > * Add device-tree file for TrimSlice > > > * Add that to the list of .dts files to build > > > * Update board-dt.c to recognize TrimSlice board name > > > > > > Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> > > > --- > > > arch/arm/boot/dts/tegra-trimslice.dts | 38 > > > +++++++++++++++++++++++++++++++++ arch/arm/mach-tegra/Makefile.boot | > > > 1 + > > > arch/arm/mach-tegra/board-dt.c | 3 ++ > > > 3 files changed, 42 insertions(+), 0 deletions(-) > > > create mode 100644 arch/arm/boot/dts/tegra-trimslice.dts > > > > doesn't this also require to add something like > > > > obj-${CONFIG_MACH_TEGRA_DT} += board-trimslice-pinmux.o > > > > to the Makefile? > > Yes, definitely. I've fixed this up locally; I hope to repost soon. Can it please be obj-$(CONFIG_MACH_TEGRA_DT) instead? I think both Russell and Olof agreed[0] to use parens instead of braces, even though the current practice is to copy what previous boards did. Thierry [0]: http://article.gmane.org/gmane.linux.ports.tegra/1670 [-- Attachment #2: Type: application/pgp-signature, Size: 198 bytes --] ^ permalink raw reply [flat|nested] 5+ messages in thread
[parent not found: <20111025055238.GA30358-RM9K5IK7kjIQXX3q8xo1gnVAuStQJXxyR5q1nwbD4aMs9pC9oP6+/A@public.gmane.org>]
* Re: [PATCH] arm/tegra: Add device-tree support for TrimSlice board [not found] ` <20111025055238.GA30358-RM9K5IK7kjIQXX3q8xo1gnVAuStQJXxyR5q1nwbD4aMs9pC9oP6+/A@public.gmane.org> @ 2011-10-25 7:55 ` Olof Johansson 0 siblings, 0 replies; 5+ messages in thread From: Olof Johansson @ 2011-10-25 7:55 UTC (permalink / raw) To: Thierry Reding Cc: Stephen Warren, Marc Dietrich, Colin Cross, linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-tegra-u79uwXL29TY76Z2rM5mHXA@public.gmane.org On Tue, Oct 25, 2011 at 7:52 AM, Thierry Reding <thierry.reding-RM9K5IK7kjKj5M59NBduVrNAH6kLmebB@public.gmane.org> wrote: > * Stephen Warren wrote: >> Marc Dietrich wrote at Monday, October 24, 2011 3:28 PM: >> > On Monday 24 October 2011 12:01:07 Stephen Warren wrote: >> > > * Add device-tree file for TrimSlice >> > > * Add that to the list of .dts files to build >> > > * Update board-dt.c to recognize TrimSlice board name >> > > >> > > Signed-off-by: Stephen Warren <swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org> >> > > --- >> > > arch/arm/boot/dts/tegra-trimslice.dts | 38 >> > > +++++++++++++++++++++++++++++++++ arch/arm/mach-tegra/Makefile.boot | >> > > 1 + >> > > arch/arm/mach-tegra/board-dt.c | 3 ++ >> > > 3 files changed, 42 insertions(+), 0 deletions(-) >> > > create mode 100644 arch/arm/boot/dts/tegra-trimslice.dts >> > >> > doesn't this also require to add something like >> > >> > obj-${CONFIG_MACH_TEGRA_DT} += board-trimslice-pinmux.o >> > >> > to the Makefile? >> >> Yes, definitely. I've fixed this up locally; I hope to repost soon. > > Can it please be obj-$(CONFIG_MACH_TEGRA_DT) instead? I think both Russell > and Olof agreed[0] to use parens instead of braces, even though the current > practice is to copy what previous boards did. Ah yeah, I forgot to clean that up for 3.2, I'll post a patch shortly. Braces are nonstandard, and will continue to proliferate if left in there. -Olof ^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2011-10-25 7:55 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-10-24 10:01 [PATCH] arm/tegra: Add device-tree support for TrimSlice board Stephen Warren
[not found] ` <1319450467-11819-1-git-send-email-swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
2011-10-24 21:27 ` Marc Dietrich
2011-10-25 4:10 ` Stephen Warren
[not found] ` <74CDBE0F657A3D45AFBB94109FB122FF173E1B4171-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
2011-10-25 5:52 ` Thierry Reding
[not found] ` <20111025055238.GA30358-RM9K5IK7kjIQXX3q8xo1gnVAuStQJXxyR5q1nwbD4aMs9pC9oP6+/A@public.gmane.org>
2011-10-25 7:55 ` Olof Johansson
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox