All of lore.kernel.org
 help / color / mirror / Atom feed
From: grant.likely@secretlab.ca (Grant Likely)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] arm/dts: Add basic support for gta04 (Openmoko next generation) board.
Date: Thu, 15 Nov 2012 11:59:25 +0000	[thread overview]
Message-ID: <20121115115925.2FE453E09BB@localhost> (raw)
In-Reply-To: <CAAfyv34D4bTO=k8niM42CDQFb0tP4uOnvX_KPT3+F6z59jPg3Q@mail.gmail.com>

On Wed, 14 Nov 2012 21:26:58 +0100, Belisko Marek <marek.belisko@gmail.com> wrote:
> CC' Grant & Rob

Hi Marek

Since this is an OMAP board, you should send the changes to Tony and
they should be merged through the arm-soc tree.

g.

> 
> On Tue, Oct 30, 2012 at 10:42 PM, Marek Belisko
> <marek.belisko@open-nandra.com> wrote:
> > Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
> > ---
> >  arch/arm/boot/dts/omap3-gta04.dts |   65 +++++++++++++++++++++++++++++++++++++
> >  1 file changed, 65 insertions(+)
> >  create mode 100644 arch/arm/boot/dts/omap3-gta04.dts
> >
> > diff --git a/arch/arm/boot/dts/omap3-gta04.dts b/arch/arm/boot/dts/omap3-gta04.dts
> > new file mode 100644
> > index 0000000..76efd13
> > --- /dev/null
> > +++ b/arch/arm/boot/dts/omap3-gta04.dts
> > @@ -0,0 +1,65 @@
> > +/*
> > + * Copyright (C) 2012 Marek Belisko <marek.belisko@open-nandra.com>
> > + *
> > + * Based on omap3-beagle-xm.dts
> > + *
> > + * This program is free software; you can redistribute it and/or modify
> > + * it under the terms of the GNU General Public License version 2 as
> > + * published by the Free Software Foundation.
> > + */
> > +/dts-v1/;
> > +
> > +/include/ "omap3.dtsi"
> > +
> > +/ {
> > +       model = "OMAP3 GTA04";
> > +       compatible = "ti,omap3-gta04", "ti,omap3";
> > +
> > +       memory {
> > +               device_type = "memory";
> > +               reg = <0x80000000 0x20000000>; /* 512 MB */
> > +       };
> > +
> > +       gpio-keys {
> > +               compatible = "gpio-keys";
> > +               #address-cells = <1>;
> > +               #size-cells = <0>;
> > +               aux-button {
> > +                       label = "AUX";
> > +                       linux,code = <169>;
> > +                       gpios = <&gpio1 7 1>;
> > +                       gpio-key,wakeup;
> > +               };
> > +       };
> > +};
> > +
> > +&i2c1 {
> > +       clock-frequency = <2600000>;
> > +
> > +       twl: twl at 48 {
> > +               reg = <0x48>;
> > +               interrupts = <7>; /* SYS_NIRQ cascaded to intc */
> > +               interrupt-parent = <&intc>;
> > +       };
> > +};
> > +
> > +/include/ "twl4030.dtsi"
> > +
> > +&i2c2 {
> > +       clock-frequency = <400000>;
> > +       /* Pressure Sensor */
> > +       bmp085 at 77 {
> > +               compatible = "bosch,bmp085";
> > +               reg = <0x77>;
> > +       };
> > +};
> > +
> > +&i2c3 {
> > +       clock-frequency = <100000>;
> > +};
> > +
> > +&mmc1 {
> > +       vmmc-supply = <&vmmc1>;
> > +       bus-width = <4>;
> > +};
> > +
> > --
> > 1.7.9.5
> >
> 
> 
> 
> -- 
> as simple and primitive as possible
> -------------------------------------------------
> Marek Belisko - OPEN-NANDRA
> Freelance Developer
> 
> Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
> Tel: +421 915 052 184
> skype: marekwhite
> twitter: #opennandra
> web: http://open-nandra.com

-- 
Grant Likely, B.Sc, P.Eng.
Secret Lab Technologies, Ltd.

WARNING: multiple messages have this Message-ID (diff)
From: Grant Likely <grant.likely@secretlab.ca>
To: Belisko Marek <marek.belisko@gmail.com>,
	Rob Herring <rob.herring@calxeda.com>
Cc: linux-arm-kernel@lists.infradead.org,
	linux-kernel@vger.kernel.org,
	devicetree-discuss@lists.ozlabs.org,
	Marek Belisko <marek.belisko@open-nandra.com>
Subject: Re: [PATCH] arm/dts: Add basic support for gta04 (Openmoko next generation) board.
Date: Thu, 15 Nov 2012 11:59:25 +0000	[thread overview]
Message-ID: <20121115115925.2FE453E09BB@localhost> (raw)
In-Reply-To: <CAAfyv34D4bTO=k8niM42CDQFb0tP4uOnvX_KPT3+F6z59jPg3Q@mail.gmail.com>

On Wed, 14 Nov 2012 21:26:58 +0100, Belisko Marek <marek.belisko@gmail.com> wrote:
> CC' Grant & Rob

Hi Marek

Since this is an OMAP board, you should send the changes to Tony and
they should be merged through the arm-soc tree.

g.

> 
> On Tue, Oct 30, 2012 at 10:42 PM, Marek Belisko
> <marek.belisko@open-nandra.com> wrote:
> > Signed-off-by: Marek Belisko <marek.belisko@open-nandra.com>
> > ---
> >  arch/arm/boot/dts/omap3-gta04.dts |   65 +++++++++++++++++++++++++++++++++++++
> >  1 file changed, 65 insertions(+)
> >  create mode 100644 arch/arm/boot/dts/omap3-gta04.dts
> >
> > diff --git a/arch/arm/boot/dts/omap3-gta04.dts b/arch/arm/boot/dts/omap3-gta04.dts
> > new file mode 100644
> > index 0000000..76efd13
> > --- /dev/null
> > +++ b/arch/arm/boot/dts/omap3-gta04.dts
> > @@ -0,0 +1,65 @@
> > +/*
> > + * Copyright (C) 2012 Marek Belisko <marek.belisko@open-nandra.com>
> > + *
> > + * Based on omap3-beagle-xm.dts
> > + *
> > + * This program is free software; you can redistribute it and/or modify
> > + * it under the terms of the GNU General Public License version 2 as
> > + * published by the Free Software Foundation.
> > + */
> > +/dts-v1/;
> > +
> > +/include/ "omap3.dtsi"
> > +
> > +/ {
> > +       model = "OMAP3 GTA04";
> > +       compatible = "ti,omap3-gta04", "ti,omap3";
> > +
> > +       memory {
> > +               device_type = "memory";
> > +               reg = <0x80000000 0x20000000>; /* 512 MB */
> > +       };
> > +
> > +       gpio-keys {
> > +               compatible = "gpio-keys";
> > +               #address-cells = <1>;
> > +               #size-cells = <0>;
> > +               aux-button {
> > +                       label = "AUX";
> > +                       linux,code = <169>;
> > +                       gpios = <&gpio1 7 1>;
> > +                       gpio-key,wakeup;
> > +               };
> > +       };
> > +};
> > +
> > +&i2c1 {
> > +       clock-frequency = <2600000>;
> > +
> > +       twl: twl@48 {
> > +               reg = <0x48>;
> > +               interrupts = <7>; /* SYS_NIRQ cascaded to intc */
> > +               interrupt-parent = <&intc>;
> > +       };
> > +};
> > +
> > +/include/ "twl4030.dtsi"
> > +
> > +&i2c2 {
> > +       clock-frequency = <400000>;
> > +       /* Pressure Sensor */
> > +       bmp085@77 {
> > +               compatible = "bosch,bmp085";
> > +               reg = <0x77>;
> > +       };
> > +};
> > +
> > +&i2c3 {
> > +       clock-frequency = <100000>;
> > +};
> > +
> > +&mmc1 {
> > +       vmmc-supply = <&vmmc1>;
> > +       bus-width = <4>;
> > +};
> > +
> > --
> > 1.7.9.5
> >
> 
> 
> 
> -- 
> as simple and primitive as possible
> -------------------------------------------------
> Marek Belisko - OPEN-NANDRA
> Freelance Developer
> 
> Ruska Nova Ves 219 | Presov, 08005 Slovak Republic
> Tel: +421 915 052 184
> skype: marekwhite
> twitter: #opennandra
> web: http://open-nandra.com

-- 
Grant Likely, B.Sc, P.Eng.
Secret Lab Technologies, Ltd.

  reply	other threads:[~2012-11-15 11:59 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-10-30 21:42 [PATCH] arm/dts: Add basic support for gta04 (Openmoko next generation) board Marek Belisko
2012-10-30 21:42 ` Marek Belisko
2012-11-14 20:26 ` Belisko Marek
2012-11-14 20:26   ` Belisko Marek
2012-11-15 11:59   ` Grant Likely [this message]
2012-11-15 11:59     ` Grant Likely
2012-11-15 13:29     ` Belisko Marek
2012-11-15 13:29       ` Belisko Marek
2013-01-21 18:46       ` Tony Lindgren
2013-01-21 18:46         ` Tony Lindgren
2013-01-21 18:46         ` Tony Lindgren
  -- strict thread matches above, loose matches on Subject: below --
2013-01-24 18:34 Marek Belisko
2013-01-24 18:34 ` Marek Belisko
2013-03-01 20:40 ` Belisko Marek
2013-03-01 20:40   ` Belisko Marek
2013-06-17 21:06 Marek Belisko
2013-06-17 21:06 ` Marek Belisko

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20121115115925.2FE453E09BB@localhost \
    --to=grant.likely@secretlab.ca \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.