Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4

2010-07-02 Thread Paul Walmsley
Hi,

On Wed, 23 Jun 2010, Kevin Hilman wrote:

> From: Rajendra Nayak 
> 
> Signed-off-by: Rajendra Nayak 
> Signed-off-by: Benoit Cousson 
> Cc: Paul Walmsley 
> Signed-off-by: Kevin Hilman 

This patch has been updated to include BenoƮt's compile fix; revised patch 
below.


- Paul

OMAP4: hwmod: Enable omap_device build for OMAP4

From: Rajendra Nayak 

Enable omap_device layer support for OMAP4, so that drivers can
use them to enable/idle/shutdown devices.

Signed-off-by: Rajendra Nayak 
Signed-off-by: Benoit Cousson 
Signed-off-by: Kevin Hilman 
Signed-off-by: Paul Walmsley 
---
 arch/arm/mach-omap2/Makefile |2 +-
 arch/arm/plat-omap/Makefile  |1 +
 2 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile
index 6c6d7c6..2fa3418 100644
--- a/arch/arm/mach-omap2/Makefile
+++ b/arch/arm/mach-omap2/Makefile
@@ -15,7 +15,7 @@ clock-common  = clock.o 
clock_common_data.o \
 
 obj-$(CONFIG_ARCH_OMAP2) += $(omap-2-3-common) $(prcm-common) $(hwmod-common)
 obj-$(CONFIG_ARCH_OMAP3) += $(omap-2-3-common) $(prcm-common) $(hwmod-common)
-obj-$(CONFIG_ARCH_OMAP4) += $(prcm-common)
+obj-$(CONFIG_ARCH_OMAP4) += $(prcm-common) $(hwmod-common)
 
 obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o
 
diff --git a/arch/arm/plat-omap/Makefile b/arch/arm/plat-omap/Makefile
index 98f0191..9405831 100644
--- a/arch/arm/plat-omap/Makefile
+++ b/arch/arm/plat-omap/Makefile
@@ -15,6 +15,7 @@ obj-$(CONFIG_ARCH_OMAP16XX) += ocpi.o
 # omap_device support (OMAP2+ only at the moment)
 obj-$(CONFIG_ARCH_OMAP2) += omap_device.o
 obj-$(CONFIG_ARCH_OMAP3) += omap_device.o
+obj-$(CONFIG_ARCH_OMAP4) += omap_device.o
 
 obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o
 obj-$(CONFIG_OMAP_IOMMU) += iommu.o iovmm.o

Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4

2010-06-24 Thread Kevin Hilman
"Nayak, Rajendra"  writes:

>> -Original Message-
>> From: Kevin Hilman [mailto:khil...@deeprootsystems.com]
>> Sent: Thursday, June 24, 2010 12:52 PM
>> To: Nayak, Rajendra
>> Cc: Paul Walmsley; linux-omap@vger.kernel.org; Cousson, Benoit
>> Subject: Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4
>> 
>> "Nayak, Rajendra"  writes:
>> 
>> >> -Original Message-
>> >> From: Paul Walmsley [mailto:p...@pwsan.com]
>> >> Sent: Thursday, June 24, 2010 12:11 AM
>> >> To: Nayak, Rajendra
>> >> Cc: Kevin Hilman; linux-omap@vger.kernel.org; Cousson, Benoit
>> >> Subject: Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for
>> OMAP4
>> >>
>> >> Hi Rajendra
>> >>
>> >> On Wed, 23 Jun 2010, Kevin Hilman wrote:
>> >>
>> >> > From: Rajendra Nayak 
>> >> >
>> >>
>> >> Please add a brief patch changelog entry here.  Maybe just say this is
>> >> necessary for integration code using omap_device to work on OMAP4?
>> >
>> > Yes, will do, not sure how that got missed.
>> 
>> Rajendra,
>> 
>> If you just reply here with the changelog entry, I will update it in
>> this series.
>
> Ok, this one should do.
>
> Enable omap_device layer support for OMAP4, so that drivers can
> use them to enable/idle/shutdown devices.
>

Thanks, will add for next spin of this series.

Thanks,

Kevin
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


RE: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4

2010-06-24 Thread Nayak, Rajendra


> -Original Message-
> From: Kevin Hilman [mailto:khil...@deeprootsystems.com]
> Sent: Thursday, June 24, 2010 12:52 PM
> To: Nayak, Rajendra
> Cc: Paul Walmsley; linux-omap@vger.kernel.org; Cousson, Benoit
> Subject: Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4
> 
> "Nayak, Rajendra"  writes:
> 
> >> -Original Message-
> >> From: Paul Walmsley [mailto:p...@pwsan.com]
> >> Sent: Thursday, June 24, 2010 12:11 AM
> >> To: Nayak, Rajendra
> >> Cc: Kevin Hilman; linux-omap@vger.kernel.org; Cousson, Benoit
> >> Subject: Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for
> OMAP4
> >>
> >> Hi Rajendra
> >>
> >> On Wed, 23 Jun 2010, Kevin Hilman wrote:
> >>
> >> > From: Rajendra Nayak 
> >> >
> >>
> >> Please add a brief patch changelog entry here.  Maybe just say this is
> >> necessary for integration code using omap_device to work on OMAP4?
> >
> > Yes, will do, not sure how that got missed.
> 
> Rajendra,
> 
> If you just reply here with the changelog entry, I will update it in
> this series.

Ok, this one should do.

Enable omap_device layer support for OMAP4, so that drivers can
use them to enable/idle/shutdown devices.

> 
> This patch is needed in this series as the patch
> "OMAP: create omap_devices for MPU, DSP, L3"  depends on it.
> 
> Thanks,
> 
> Kevin
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4

2010-06-24 Thread Kevin Hilman
"Nayak, Rajendra"  writes:

>> -Original Message-
>> From: Paul Walmsley [mailto:p...@pwsan.com]
>> Sent: Thursday, June 24, 2010 12:11 AM
>> To: Nayak, Rajendra
>> Cc: Kevin Hilman; linux-omap@vger.kernel.org; Cousson, Benoit
>> Subject: Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4
>> 
>> Hi Rajendra
>> 
>> On Wed, 23 Jun 2010, Kevin Hilman wrote:
>> 
>> > From: Rajendra Nayak 
>> >
>> 
>> Please add a brief patch changelog entry here.  Maybe just say this is
>> necessary for integration code using omap_device to work on OMAP4?
>
> Yes, will do, not sure how that got missed. 

Rajendra,

If you just reply here with the changelog entry, I will update it in
this series.

This patch is needed in this series as the patch 
"OMAP: create omap_devices for MPU, DSP, L3"  depends on it.

Thanks,

Kevin
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


RE: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4

2010-06-24 Thread Nayak, Rajendra


> -Original Message-
> From: Paul Walmsley [mailto:p...@pwsan.com]
> Sent: Thursday, June 24, 2010 12:11 AM
> To: Nayak, Rajendra
> Cc: Kevin Hilman; linux-omap@vger.kernel.org; Cousson, Benoit
> Subject: Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4
> 
> Hi Rajendra
> 
> On Wed, 23 Jun 2010, Kevin Hilman wrote:
> 
> > From: Rajendra Nayak 
> >
> 
> Please add a brief patch changelog entry here.  Maybe just say this is
> necessary for integration code using omap_device to work on OMAP4?

Yes, will do, not sure how that got missed. 
thanks

> 
> > Signed-off-by: Rajendra Nayak 
> > Signed-off-by: Benoit Cousson 
> > Cc: Paul Walmsley 
> > Signed-off-by: Kevin Hilman 
> > ---
> >  arch/arm/plat-omap/Makefile |1 +
> >  1 files changed, 1 insertions(+), 0 deletions(-)
> >
> > diff --git a/arch/arm/plat-omap/Makefile b/arch/arm/plat-omap/Makefile
> > index 98f0191..9405831 100644
> > --- a/arch/arm/plat-omap/Makefile
> > +++ b/arch/arm/plat-omap/Makefile
> > @@ -15,6 +15,7 @@ obj-$(CONFIG_ARCH_OMAP16XX) += ocpi.o
> >  # omap_device support (OMAP2+ only at the moment)
> >  obj-$(CONFIG_ARCH_OMAP2) += omap_device.o
> >  obj-$(CONFIG_ARCH_OMAP3) += omap_device.o
> > +obj-$(CONFIG_ARCH_OMAP4) += omap_device.o
> >
> >  obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o
> >  obj-$(CONFIG_OMAP_IOMMU) += iommu.o iovmm.o
> > --
> > 1.7.0.2
> >
> 
> 
> - Paul
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


Re: [PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4

2010-06-23 Thread Paul Walmsley
Hi Rajendra

On Wed, 23 Jun 2010, Kevin Hilman wrote:

> From: Rajendra Nayak 
> 

Please add a brief patch changelog entry here.  Maybe just say this is 
necessary for integration code using omap_device to work on OMAP4?

> Signed-off-by: Rajendra Nayak 
> Signed-off-by: Benoit Cousson 
> Cc: Paul Walmsley 
> Signed-off-by: Kevin Hilman 
> ---
>  arch/arm/plat-omap/Makefile |1 +
>  1 files changed, 1 insertions(+), 0 deletions(-)
> 
> diff --git a/arch/arm/plat-omap/Makefile b/arch/arm/plat-omap/Makefile
> index 98f0191..9405831 100644
> --- a/arch/arm/plat-omap/Makefile
> +++ b/arch/arm/plat-omap/Makefile
> @@ -15,6 +15,7 @@ obj-$(CONFIG_ARCH_OMAP16XX) += ocpi.o
>  # omap_device support (OMAP2+ only at the moment)
>  obj-$(CONFIG_ARCH_OMAP2) += omap_device.o
>  obj-$(CONFIG_ARCH_OMAP3) += omap_device.o
> +obj-$(CONFIG_ARCH_OMAP4) += omap_device.o
>  
>  obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o
>  obj-$(CONFIG_OMAP_IOMMU) += iommu.o iovmm.o
> -- 
> 1.7.0.2
> 


- Paul
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html


[PATCH 08/13] OMAP4: hwmod: Enable omap_device build for OMAP4

2010-06-23 Thread Kevin Hilman
From: Rajendra Nayak 

Signed-off-by: Rajendra Nayak 
Signed-off-by: Benoit Cousson 
Cc: Paul Walmsley 
Signed-off-by: Kevin Hilman 
---
 arch/arm/plat-omap/Makefile |1 +
 1 files changed, 1 insertions(+), 0 deletions(-)

diff --git a/arch/arm/plat-omap/Makefile b/arch/arm/plat-omap/Makefile
index 98f0191..9405831 100644
--- a/arch/arm/plat-omap/Makefile
+++ b/arch/arm/plat-omap/Makefile
@@ -15,6 +15,7 @@ obj-$(CONFIG_ARCH_OMAP16XX) += ocpi.o
 # omap_device support (OMAP2+ only at the moment)
 obj-$(CONFIG_ARCH_OMAP2) += omap_device.o
 obj-$(CONFIG_ARCH_OMAP3) += omap_device.o
+obj-$(CONFIG_ARCH_OMAP4) += omap_device.o
 
 obj-$(CONFIG_OMAP_MCBSP) += mcbsp.o
 obj-$(CONFIG_OMAP_IOMMU) += iommu.o iovmm.o
-- 
1.7.0.2

--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html