Ben,
On 08/05/2011 04:24 PM, Rob Herring wrote:
> From: Rob Herring
>
> Add of_match_table and DT style i2c registration to designware i2c
> driver.
>
> Signed-off-by: Rob Herring
> Acked-by: Grant Likely
> Cc: devicetree-discuss@lists.ozlabs.org
> Cc: Ben Dooks
> Cc: linux-...@vger.kernel.o
Shawn Guo wrote at Monday, August 15, 2011 9:45 PM:
> On Mon, Aug 15, 2011 at 02:28:18PM -0600, Stephen Warren wrote:
> > Signed-off-by: Stephen Warren
> > ---
> > arch/arm/mach-tegra/pinmux.c | 249
> > ++
> > 1 files changed, 249 insertions(+), 0 deleti
You may define constants as follows:
/define/ $TWO 2;
/define/ $FOUR 4;
/define/ $OTHER $FOUR;
And properties may use these values as follows:
foo = <1 $TWO 3 $FOUR 5>;
Signed-off-by: Stephen Warren
---
Note 1: This is against dtc in the Linux kernel. Should this patch be
against upstream dtc,
On 8/23/2011 5:18 PM, G, Manjunath Kondaiah wrote:
On Tue, Aug 23, 2011 at 03:48:15PM +0200, Cousson, Benoit wrote:
From: G, Manjunath Kondaiah
To: devicetree-discuss@lists.ozlabs.org
CC: linux-o...@vger.kernel.org, linux-arm-ker...@lists.infradead.org
Add omap4 soc dts file for handling omap
Hi Stephen,
On Tue, Aug 23 2011, Stephen Warren wrote:
> From: Grant Likely
>
> Add hooks to read gpio configuration out of the device tree node.
>
> [grant.likely: Rewrite of original patch from John Bonesio]
> Signed-off-by: Grant Likely
> [swarren: Fixed tegra_sdhci_get_ro() to retrieve pdata
Hi Benoit,
On Wed, Aug 24, 2011 at 12:33 AM, Cousson, Benoit wrote:
>> From: G, Manjunath Kondaiah
>> To: devicetree-discuss@lists.ozlabs.org
>> CC: linux-o...@vger.kernel.org, linux-arm-ker...@lists.infradead.org
>>
>>
>> Update omap4 panda dts file with required clock frequencies
>> for the i2c
The device tree support has been added to i2c1 controller and
corresponding i2c initilization in generic board file is cleaned
up so that platfom device is registered through dt and omap device
and not through board i2c initilization.
A couple of typos in the changelog.
That patch should be in
From: G, Manjunath Kondaiah
To: devicetree-discuss@lists.ozlabs.org
CC: linux-o...@vger.kernel.org, linux-arm-ker...@lists.infradead.org
Update omap4 panda dts file with required clock frequencies
for the i2c client devices existing on panda board.
Signed-off-by: G, Manjunath Kondaiah
---
ar
Linus Walleij wrote at Tuesday, August 23, 2011 6:51 AM:
> On Tue, Aug 16, 2011 at 7:12 PM, Stephen Warren wrote:
>
> > One issue here: There isn't always a single gpio/pinmux parent; as a
> > concrete example, the ALSA/ASoC driver for Tegra+WM8903 uses GPIOs both
> > from Tegra itself, and from
Stephen Warren wrote at Friday, August 12, 2011 3:09 PM:
...
> Related, here's the list of outstanding patches for i2c-tegra.c that I'm
> aware of:
>
> [PATCH] i2c: Tegra: Add of_match_table
> http://www.spinics.net/lists/linux-i2c/msg05898.html
>
> [PATCH] i2c: tegra: add I2C_FUNC_SMBUS_EMUL to
Stephen Warren wrote at Tuesday, August 09, 2011 12:17 PM:
> The active platform data pointer is stored as pltfm_host->priv, and not
> always in the platform device itself. In particular, the platform data in
> the platform device is NULL when the platform data comes from Device Tree.
>
> Signed-o
From: Grant Likely
Add hooks to read gpio configuration out of the device tree node.
[grant.likely: Rewrite of original patch from John Bonesio]
Signed-off-by: Grant Likely
[swarren: Fixed tegra_sdhci_get_ro() to retrieve pdata correctly]
[swarren: Reworked to avoid #ifdef CONFIG_OF]
[swarren:
The bindings were recently updated to be more in-line with other SDHCI
bindings that are already merged.
Signed-off-by: Stephen Warren
---
arch/arm/boot/dts/tegra-harmony.dts | 12 ++--
arch/arm/boot/dts/tegra-seaboard.dts |6 +++---
2 files changed, 9 insertions(+), 9 deletions(-
Hi Grant,
On Tue, Aug 23, 2011 at 10:03:36AM +0500, G, Manjunath Kondaiah wrote:
>
> The device tree support has been added to i2c1 controller and
> corresponding i2c initilization in generic board file is cleaned
> up so that platfom device is registered through dt and omap device
> and not thro
On Tue, Aug 23, 2011 at 10:03:28AM +0500, G, Manjunath Kondaiah wrote:
>
> Patch series reworked from:
> http://permalink.gmane.org/gmane.linux.ports.arm.omap/61674
> Also added support for i2c1 controller on omap4 based panda
> board.
>
> Baseline:
> =
> git://git.secretlab.ca/git/linux-
On Tue, Aug 23, 2011 at 03:05:01PM +0200, Cousson, Benoit wrote:
> From: G, Manjunath Kondaiah
> >The generic board file is created and derived from omap4 panda board file.
> >
> >The changes here focus on minimal configuration to boot panda board with
> >dt enabled which provides basic platform fo
On Tue, Aug 23, 2011 at 10:07:05AM +0100, Jamie Iles wrote:
> Hi,
>
> This creates a build failure for non-omap platforms as they don't know
> about struct omap_device_pm_latency, struct omap_hwmod etc.
>
> An empty of_omap_device_create() as inline should do the trick.
Thanks. I will introduce
On Tue, Aug 23, 2011 at 03:48:15PM +0200, Cousson, Benoit wrote:
> From: G, Manjunath Kondaiah
> >To: devicetree-discuss@lists.ozlabs.org
> >CC: linux-o...@vger.kernel.org, linux-arm-ker...@lists.infradead.org
> >
> >
> >Add omap4 soc dts file for handling omap4 soc i2c
> >controllers existing on l
On Tue, Aug 23, 2011 at 01:53:54PM +0530, Rajendra Nayak wrote:
> On 8/23/2011 10:33 AM, G, Manjunath Kondaiah wrote:
> >
> >Add omap4 soc dts file for handling omap4 soc i2c
> >controllers existing on l4-core bus.
> >
> >Signed-off-by: G, Manjunath Kondaiah
> >---
> > arch/arm/boot/dts/omap4-pand
From: G, Manjunath Kondaiah
To: devicetree-discuss@lists.ozlabs.org
CC: linux-o...@vger.kernel.org, linux-arm-ker...@lists.infradead.org
Add omap4 soc dts file for handling omap4 soc i2c
controllers existing on l4-core bus.
The subject and changelog is not accurate. You are doing at least 3 t
From: G, Manjunath Kondaiah
The generic board file is created and derived from omap4 panda board file.
The changes here focus on minimal configuration to boot panda board with
dt enabled which provides basic platform for converting device drivers for
using dt.
Signed-off-by: G, Manjunath Kondai
On Tue, Aug 16, 2011 at 7:12 PM, Stephen Warren wrote:
> One issue here: There isn't always a single gpio/pinmux parent; as a
> concrete example, the ALSA/ASoC driver for Tegra+WM8903 uses GPIOs both
> from Tegra itself, and from the WM8903 audio codec.
The Ux500 have pinmuxing on the DB8500 and
Hi Manju,
Few "minor" comments about your subjects in this series.
Patch series reworked from:
http://permalink.gmane.org/gmane.linux.ports.arm.omap/61674
Also added support for i2c1 controller on omap4 based panda
board.
Baseline:
=
git://git.secretlab.ca/git/linux-2.6.git
Branch: dev
Hi,
This creates a build failure for non-omap platforms as they don't know
about struct omap_device_pm_latency, struct omap_hwmod etc.
An empty of_omap_device_create() as inline should do the trick.
Jamie
On Tue, Aug 23, 2011 at 10:03:35AM +0500, G, Manjunath Kondaiah wrote:
>
> The omap devi
On 8/23/2011 10:33 AM, G, Manjunath Kondaiah wrote:
Add omap4 soc dts file for handling omap4 soc i2c
controllers existing on l4-core bus.
Signed-off-by: G, Manjunath Kondaiah
---
arch/arm/boot/dts/omap4-panda.dts |7 +---
arch/arm/boot/dts/omap4.dtsi | 68
25 matches
Mail list logo