Re: [PATCH 0/5] ARM: OMAP: TLL driver implementation for USB host driver

2012-03-19 Thread Munegowda, Keshava
On Fri, Mar 16, 2012 at 10:13 PM, Samuel Ortiz sa...@linux.intel.com wrote:
 Hi Keshava,

 On Mon, Mar 05, 2012 at 08:13:45PM +0530, Munegowda, Keshava wrote:
 On Mon, Mar 5, 2012 at 8:01 PM, Keshava Munegowda keshava_mgo...@ti.com 
 wrote:
  From: Keshava Munegowda keshava_mgo...@ti.com
 
  The TLL configuration is removed from the UHH driver and implemented as
  a seperate platform driver. Now, the UHH driver configures the TLL
  through API's exported by the TLL platform driver. The TLL is an
  has independent hardware mod structure for in OMAP3 and later chips,
  hence an dedicated platform driver is created.
 
  Signed-off-by: Keshava Munegowda keshava_mgo...@ti.com
 
  Keshava Munegowda (5):
   ARM: OMAP: USB: HOST TLL platform driver
   ARM: OMAP: USB: Build the USB HOST TLL omap device
   ARM: OMAP: USB: Remove TLL specific code
   ARM: OMAP: USB: Invoke the TLL driver from USB HS core driver
   ARM: OMAP: change the USB TLL clocks device name
 
   arch/arm/mach-omap2/clock3xxx_data.c  |    8 +-
   arch/arm/mach-omap2/clock44xx_data.c  |    4 +-
   arch/arm/mach-omap2/usb-host.c        |   28 ++-
   arch/arm/plat-omap/include/plat/usb.h |    9 +
   drivers/mfd/Kconfig                   |    2 +-
   drivers/mfd/Makefile                  |    2 +-
   drivers/mfd/omap-usb-host.c           |  232 +
   drivers/mfd/omap-usb-tll.c            |  463 
  +
   8 files changed, 513 insertions(+), 235 deletions(-)
   create mode 100644 drivers/mfd/omap-usb-tll.c
 

 Hi Samuel
         just to get your attention; I have added your mail id in the
 to list.
 please let me know  your comments on this patch series;
 Here as well, I don't think I was cc'ed on the original submission. Without
 getting the actual patch, I'll have hard time reviewing it.

 Cheers,
 Samuel.

Sorry,  I resend the series CCing  you

regards
keshava
--
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 0/5] ARM: OMAP: TLL driver implementation for USB host driver

2012-03-16 Thread Samuel Ortiz
Hi Keshava,

On Mon, Mar 05, 2012 at 08:13:45PM +0530, Munegowda, Keshava wrote:
 On Mon, Mar 5, 2012 at 8:01 PM, Keshava Munegowda keshava_mgo...@ti.com 
 wrote:
  From: Keshava Munegowda keshava_mgo...@ti.com
 
  The TLL configuration is removed from the UHH driver and implemented as
  a seperate platform driver. Now, the UHH driver configures the TLL
  through API's exported by the TLL platform driver. The TLL is an
  has independent hardware mod structure for in OMAP3 and later chips,
  hence an dedicated platform driver is created.
 
  Signed-off-by: Keshava Munegowda keshava_mgo...@ti.com
 
  Keshava Munegowda (5):
   ARM: OMAP: USB: HOST TLL platform driver
   ARM: OMAP: USB: Build the USB HOST TLL omap device
   ARM: OMAP: USB: Remove TLL specific code
   ARM: OMAP: USB: Invoke the TLL driver from USB HS core driver
   ARM: OMAP: change the USB TLL clocks device name
 
   arch/arm/mach-omap2/clock3xxx_data.c  |    8 +-
   arch/arm/mach-omap2/clock44xx_data.c  |    4 +-
   arch/arm/mach-omap2/usb-host.c        |   28 ++-
   arch/arm/plat-omap/include/plat/usb.h |    9 +
   drivers/mfd/Kconfig                   |    2 +-
   drivers/mfd/Makefile                  |    2 +-
   drivers/mfd/omap-usb-host.c           |  232 +
   drivers/mfd/omap-usb-tll.c            |  463 
  +
   8 files changed, 513 insertions(+), 235 deletions(-)
   create mode 100644 drivers/mfd/omap-usb-tll.c
 
 
 Hi Samuel
 just to get your attention; I have added your mail id in the
 to list.
 please let me know  your comments on this patch series;
Here as well, I don't think I was cc'ed on the original submission. Without
getting the actual patch, I'll have hard time reviewing it.

Cheers,
Samuel.

-- 
Intel Open Source Technology Centre
http://oss.intel.com/
--
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 0/5] ARM: OMAP: TLL driver implementation for USB host driver

2012-03-05 Thread Keshava Munegowda
From: Keshava Munegowda keshava_mgo...@ti.com

The TLL configuration is removed from the UHH driver and implemented as
a seperate platform driver. Now, the UHH driver configures the TLL
through API's exported by the TLL platform driver. The TLL is an 
has independent hardware mod structure for in OMAP3 and later chips, 
hence an dedicated platform driver is created.

Signed-off-by: Keshava Munegowda keshava_mgo...@ti.com

Keshava Munegowda (5):
  ARM: OMAP: USB: HOST TLL platform driver
  ARM: OMAP: USB: Build the USB HOST TLL omap device
  ARM: OMAP: USB: Remove TLL specific code
  ARM: OMAP: USB: Invoke the TLL driver from USB HS core driver
  ARM: OMAP: change the USB TLL clocks device name

 arch/arm/mach-omap2/clock3xxx_data.c  |8 +-
 arch/arm/mach-omap2/clock44xx_data.c  |4 +-
 arch/arm/mach-omap2/usb-host.c|   28 ++-
 arch/arm/plat-omap/include/plat/usb.h |9 +
 drivers/mfd/Kconfig   |2 +-
 drivers/mfd/Makefile  |2 +-
 drivers/mfd/omap-usb-host.c   |  232 +
 drivers/mfd/omap-usb-tll.c|  463 +
 8 files changed, 513 insertions(+), 235 deletions(-)
 create mode 100644 drivers/mfd/omap-usb-tll.c

--
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 0/5] ARM: OMAP: TLL driver implementation for USB host driver

2012-03-05 Thread Munegowda, Keshava
On Mon, Mar 5, 2012 at 8:01 PM, Keshava Munegowda keshava_mgo...@ti.com wrote:
 From: Keshava Munegowda keshava_mgo...@ti.com

 The TLL configuration is removed from the UHH driver and implemented as
 a seperate platform driver. Now, the UHH driver configures the TLL
 through API's exported by the TLL platform driver. The TLL is an
 has independent hardware mod structure for in OMAP3 and later chips,
 hence an dedicated platform driver is created.

 Signed-off-by: Keshava Munegowda keshava_mgo...@ti.com

 Keshava Munegowda (5):
  ARM: OMAP: USB: HOST TLL platform driver
  ARM: OMAP: USB: Build the USB HOST TLL omap device
  ARM: OMAP: USB: Remove TLL specific code
  ARM: OMAP: USB: Invoke the TLL driver from USB HS core driver
  ARM: OMAP: change the USB TLL clocks device name

  arch/arm/mach-omap2/clock3xxx_data.c  |    8 +-
  arch/arm/mach-omap2/clock44xx_data.c  |    4 +-
  arch/arm/mach-omap2/usb-host.c        |   28 ++-
  arch/arm/plat-omap/include/plat/usb.h |    9 +
  drivers/mfd/Kconfig                   |    2 +-
  drivers/mfd/Makefile                  |    2 +-
  drivers/mfd/omap-usb-host.c           |  232 +
  drivers/mfd/omap-usb-tll.c            |  463 
 +
  8 files changed, 513 insertions(+), 235 deletions(-)
  create mode 100644 drivers/mfd/omap-usb-tll.c


Hi Samuel
just to get your attention; I have added your mail id in the
to list.
please let me know  your comments on this patch series;

This change was strongly suggested by Paul Walmsley during the
OMAP USB host runtime pm adaptations.

Regards
Keshava
--
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