public inbox for linux-arm-kernel@lists.infradead.org
 help / color / mirror / Atom feed
From: manjugk@ti.com (G, Manjunath Kondaiah)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 1/4] dt: omap3: add SoC file for handling i2c controllers
Date: Thu, 14 Jul 2011 09:21:15 +0530	[thread overview]
Message-ID: <20110714035115.GB26506@manju-desktop> (raw)
In-Reply-To: <CACxGe6vuX4286cN7sNa=3RsWeGzNmNBGVqeqKvcoyiLU9Z9A9A@mail.gmail.com>

On Thu, Jul 14, 2011 at 07:58:35AM +0900, Grant Likely wrote:
> On Thu, Jul 14, 2011 at 7:57 AM, Grant Likely <grant.likely@secretlab.ca> wrote:
> > On Thu, Jul 14, 2011 at 7:06 AM, G, Manjunath Kondaiah <manjugk@ti.com> wrote:
> >>
> >> Add omap3 SoC file for handling omap3 SoC i2c controllers existing
> >> on l4-core bus.
> >>
> >> Out of three i2c controllers, first i2c controller is interfaced with
> >> PMIC on all the boards of OMAP3. The clock for i2c controllers are
> >> controlled through omap hwmod framework hence first i2c controller
> >> device registration through dt is disabled till hwmod dependencies
> >> are resolved.
> >>
> >> Signed-off-by: G, Manjunath Kondaiah <manjugk@ti.com>
> >> ---
> >> ?arch/arm/boot/dts/omap3-soc.dtsi | ? 65 ++++++++++++++++++++++++++++++++++++++
> >> ?1 files changed, 65 insertions(+), 0 deletions(-)
> >> ?create mode 100644 arch/arm/boot/dts/omap3-soc.dtsi
> >>
> >> diff --git a/arch/arm/boot/dts/omap3-soc.dtsi b/arch/arm/boot/dts/omap3-soc.dtsi
> >> new file mode 100644
> >> index 0000000..f186a32
> >> --- /dev/null
> >> +++ b/arch/arm/boot/dts/omap3-soc.dtsi
> >> @@ -0,0 +1,65 @@
> >> +/*
> >> + * Device Tree Source for OMAP3 SoC
> >> + *
> >> + * Copyright (C) 2011 Texas Instruments Incorporated - http://www.ti.com/
> >> + *
> >> + * This file is licensed under the terms of the GNU General Public License
> >> + * version 2. ?This program is licensed "as is" without any warranty of any
> >> + * kind, whether express or implied.
> >> + */
> >> +
> >> +/dts-v1/;
> >> +/include/ "skeleton.dtsi"
> >> +
> >> +/ {
> >> + ? ? ? #address-cells = <1>;
> >> + ? ? ? #size-cells = <1>;
> >> + ? ? ? model = "ti,omap3";
> >
> > You can drop the model property here since this doesn't define a board.
> >
> >> + ? ? ? compatible = "ti,omap3";
> >> +
> >> + ? ? ? intc: interrupt-controller at 0x48200000 {
> >> + ? ? ? ? ? ? ? compatible = "ti,omap3-intc", "arm,intc";
> >
> > Which arm intc controller? ?For any new 'compatible' value you define,
> > the patch needs to include documentation for it in
> > Documentation/devicetree/bindings.
> >
> >> + ? ? ? ? ? ? ? interrupt-controller;
> >> + ? ? ? ? ? ? ? #interrupt-cells = <1>;
> >> + ? ? ? ? ? ? ? reg = <0x48200000 0x1000>;
> >> + ? ? ? };
> >> +
> >> + ? ? ? l4-core {
> >> + ? ? ? ? ? ? ? compatible = "ti,l4-core";
> >
> > Probably should be "ti,omap3-l4-core"?
> >
> >> + ? ? ? ? ? ? ? #address-cells = <1>;
> >> + ? ? ? ? ? ? ? #size-cells = <1>;
> >> + ? ? ? ? ? ? ? ranges = <0 0x48000000 0x1000000>;
> >> +
> >> + ? ? ? ? ? ? ? i2c at 1 {
> 
> This name is wrong.  The address portion of the name must match the
> address in the first entry of the 'reg' property.  So, that would be:
> "i2c at 70000".
> 
> >> + ? ? ? ? ? ? ? ? ? ? ? #address-cells = <1>;
> >> + ? ? ? ? ? ? ? ? ? ? ? #size-cells = <0>;
> >> + ? ? ? ? ? ? ? ? ? ? ? compatible = "ti,omap3-i2c";
> >> + ? ? ? ? ? ? ? ? ? ? ? reg = <0x70000 0x100>;
> >> + ? ? ? ? ? ? ? ? ? ? ? interrupts = < 88 >;
> >> + ? ? ? ? ? ? ? ? ? ? ? status = "disabled";
> >
> > Drop the 'status' properties. ?I know the current tegra code does
> > this, but I'd prefer devices to be enabled by default and for boards
> > to explicitly disable them instead of the other way around.
ok. I will use the convention.

-Manjunath

  reply	other threads:[~2011-07-14  3:51 UTC|newest]

Thread overview: 27+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1310592975-25773-1-git-send-email-manjugk@ti.com>
     [not found] ` <1310592975-25773-2-git-send-email-manjugk@ti.com>
2011-07-13 22:57   ` [PATCH 1/4] dt: omap3: add SoC file for handling i2c controllers Grant Likely
2011-07-13 22:58     ` Grant Likely
2011-07-14  3:51       ` G, Manjunath Kondaiah [this message]
2011-07-14  3:34     ` G, Manjunath Kondaiah
     [not found] ` <1310592975-25773-3-git-send-email-manjugk@ti.com>
2011-07-13 23:04   ` [PATCH 2/4] dt: OMAP3: Beagle board: set clock freq for i2c devices Grant Likely
     [not found] ` <1310592975-25773-4-git-send-email-manjugk@ti.com>
2011-07-13 23:15   ` [PATCH 3/4] dt: omap3: add generic board file for dt support Grant Likely
2011-07-14  8:53     ` [PATCH] omap2+: Use Kconfig symbol in Makefile instead of obj-y Tony Lindgren
     [not found]     ` <CAC63_iSqN=rX6MbzFWM6z+zf1Eybg3MOD=qQVdeNg5cyENhPjw@mail.gmail.com>
2011-07-16 20:07       ` [PATCH 3/4] dt: omap3: add generic board file for dt support G, Manjunath Kondaiah
2011-07-17  5:13         ` Grant Likely
2011-07-18  9:07           ` Tony Lindgren
2011-07-19 21:34             ` Grant Likely
2011-07-21  7:18               ` Tony Lindgren
2011-07-21  8:55               ` Rajendra Nayak
2011-07-21  9:09                 ` Felipe Balbi
2011-07-21  9:33                   ` Rajendra Nayak
2011-07-21  9:39                     ` Felipe Balbi
2011-07-28 18:20                 ` Cousson, Benoit
2011-07-18 10:15           ` G, Manjunath Kondaiah
2011-07-19 21:36             ` Grant Likely
2011-07-19  5:58           ` G, Manjunath Kondaiah
2011-07-19 21:37             ` Grant Likely
2011-07-21 10:24               ` G, Manjunath Kondaiah
2011-07-21 23:53           ` Kevin Hilman
     [not found] ` <1310592975-25773-5-git-send-email-manjugk@ti.com>
2011-07-13 23:20   ` [PATCH 4/4] dt: i2c-omap: Convert i2c driver to use device tree Grant Likely
2011-07-28 17:34     ` Cousson, Benoit
2011-07-28 21:32       ` Grant Likely
2011-08-03 12:56         ` Cousson, Benoit

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=20110714035115.GB26506@manju-desktop \
    --to=manjugk@ti.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox