All of lore.kernel.org
 help / color / mirror / Atom feed
* [pm-wip/mmc][PATCH 00/10] OMAP MMC Hwmod & Runtime patches
@ 2010-08-20 20:10 kishore kadiyala
  2010-08-26 23:17 ` Kevin Hilman
  0 siblings, 1 reply; 3+ messages in thread
From: kishore kadiyala @ 2010-08-20 20:10 UTC (permalink / raw)
  To: linux-omap; +Cc: khilman, tony, b-cousson

Hi,

1) The patch series has dependency on Tony's patches
   http://www.spinics.net/lists/linux-omap/msg34835.html
   http://www.spinics.net/lists/linux-omap/msg34834.html

2) The patch series has some updations of hwmod data
   for MMC controller's on MMC2/3.
3) Also adds & updates hwmod data for mmc and uart for OMAP4.
   Adding UART for OMAP4 helps to validate MMC cards from console
4) Also the series includes couple of fixes
   a) runtime crash seen currently on tree. Validated on OMAP3430.
   b) crash on OMAP4430 when CONFIG_MMC_OMAP_HS is not set.

The entire series has been tested on OMAP4430 SDP with omap3_defconfig
Currently working on runtime for MMC and will update later.


Kishore Kadiyala (7):
  [PM-WIP-MMC] OMAP2 HWMOD: Updating MMC Controller data
  [PM-WIP-MMC] OMAP3 HWMOD: Updating MMC controller data
  [PM-WIP-MMC] OMAP2/OMAP3: Updating hwmod name for MMC controller
  [PM-WIP-MMC] OMAP4 hwmod: Updating hwmod data for MMC controllers
  [PM-WIP-MMC] OMAP MMC: Remove MMC controller reset
  [PM-WIP-MMC] OMAP MMC: Register offset handling
  [PM-WIP-MMC] OMAP MMC : Fix crash with CONFIG_PM_RUNTIME

Benoit Cousson (3):
  [PM-WIP-MMC] OMAP4 hwmod: Adding hwmod data for MMC controller
  [PM-WIP-UART] OMAP4 hwmod : Adding hwmod data for UART
  [PM-WIP-MMC] omap4 hsmmc: Fix the init if CONFIG_MMC_OMAP_HS is not
    set

 arch/arm/mach-omap2/board-4430sdp.c        |    7 +-
 arch/arm/mach-omap2/devices.c              |  106 +-----
 arch/arm/mach-omap2/hsmmc.c                |    6 +
 arch/arm/mach-omap2/omap_hwmod_2430_data.c |    9 +-
 arch/arm/mach-omap2/omap_hwmod_3xxx_data.c |   11 +-
 arch/arm/mach-omap2/omap_hwmod_44xx_data.c |  567 +++++++++++++++++++++++++++-
 arch/arm/plat-omap/include/plat/mmc.h      |   76 ++++
 drivers/mmc/host/omap_hsmmc.c              |  256 ++++++-------
 8 files changed, 785 insertions(+), 253 deletions(-)



^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [pm-wip/mmc][PATCH 00/10] OMAP MMC Hwmod & Runtime patches
  2010-08-20 20:10 [pm-wip/mmc][PATCH 00/10] OMAP MMC Hwmod & Runtime patches kishore kadiyala
@ 2010-08-26 23:17 ` Kevin Hilman
  2010-08-27 14:13   ` kishore kadiyala
  0 siblings, 1 reply; 3+ messages in thread
From: Kevin Hilman @ 2010-08-26 23:17 UTC (permalink / raw)
  To: kishore kadiyala; +Cc: linux-omap, tony, b-cousson

"kishore kadiyala" <kishore.kadiyala@ti.com> writes:

> Hi,
>
> 1) The patch series has dependency on Tony's patches
>    http://www.spinics.net/lists/linux-omap/msg34835.html
>    http://www.spinics.net/lists/linux-omap/msg34834.html
>
> 2) The patch series has some updations of hwmod data
>    for MMC controller's on MMC2/3.
> 3) Also adds & updates hwmod data for mmc and uart for OMAP4.
>    Adding UART for OMAP4 helps to validate MMC cards from console
> 4) Also the series includes couple of fixes
>    a) runtime crash seen currently on tree. Validated on OMAP3430.
>    b) crash on OMAP4430 when CONFIG_MMC_OMAP_HS is not set.
>
> The entire series has been tested on OMAP4430 SDP with omap3_defconfig
> Currently working on runtime for MMC and will update later.

This needs testing on OMAP2 as well.

Please take over responsibility of the pm-wip/mmc branch and feel free
to combine those patches with yours.  They are there just to get
started, but you are free to take them and do what you like with them.

For the next rev, just include/merge the patches from pm-wip/mmc with
yours and post them against my pm-core branch (a.k.a. pm-wip/hwmods-omap4)

> Kishore Kadiyala (7):
>   [PM-WIP-MMC] OMAP2 HWMOD: Updating MMC Controller data
>   [PM-WIP-MMC] OMAP3 HWMOD: Updating MMC controller data
>   [PM-WIP-MMC] OMAP2/OMAP3: Updating hwmod name for MMC controller
>   [PM-WIP-MMC] OMAP4 hwmod: Updating hwmod data for MMC controllers

Some minor nits on naming:  let's use the prefix:

     <soc>: hwmod data: <shortlog>

e.g. OMAP3: hwmod data: add MMC controllers

Kevin

>   [PM-WIP-MMC] OMAP MMC: Remove MMC controller reset
>   [PM-WIP-MMC] OMAP MMC: Register offset handling
>   [PM-WIP-MMC] OMAP MMC : Fix crash with CONFIG_PM_RUNTIME
>
> Benoit Cousson (3):
>   [PM-WIP-MMC] OMAP4 hwmod: Adding hwmod data for MMC controller
>   [PM-WIP-UART] OMAP4 hwmod : Adding hwmod data for UART
>   [PM-WIP-MMC] omap4 hsmmc: Fix the init if CONFIG_MMC_OMAP_HS is not
>     set
>
>  arch/arm/mach-omap2/board-4430sdp.c        |    7 +-
>  arch/arm/mach-omap2/devices.c              |  106 +-----
>  arch/arm/mach-omap2/hsmmc.c                |    6 +
>  arch/arm/mach-omap2/omap_hwmod_2430_data.c |    9 +-
>  arch/arm/mach-omap2/omap_hwmod_3xxx_data.c |   11 +-
>  arch/arm/mach-omap2/omap_hwmod_44xx_data.c |  567 +++++++++++++++++++++++++++-
>  arch/arm/plat-omap/include/plat/mmc.h      |   76 ++++
>  drivers/mmc/host/omap_hsmmc.c              |  256 ++++++-------
>  8 files changed, 785 insertions(+), 253 deletions(-)

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [pm-wip/mmc][PATCH 00/10] OMAP MMC Hwmod & Runtime patches
  2010-08-26 23:17 ` Kevin Hilman
@ 2010-08-27 14:13   ` kishore kadiyala
  0 siblings, 0 replies; 3+ messages in thread
From: kishore kadiyala @ 2010-08-27 14:13 UTC (permalink / raw)
  To: Kevin Hilman; +Cc: kishore kadiyala, linux-omap, tony, b-cousson

Thanks Kevin, I will take up things for MMC from here.
Currently working on runtime for MMC and post out once done.

Regards,
Kishore

On Fri, Aug 27, 2010 at 4:47 AM, Kevin Hilman
<khilman@deeprootsystems.com> wrote:
> "kishore kadiyala" <kishore.kadiyala@ti.com> writes:
>
>> Hi,
>>
>> 1) The patch series has dependency on Tony's patches
>>    http://www.spinics.net/lists/linux-omap/msg34835.html
>>    http://www.spinics.net/lists/linux-omap/msg34834.html
>>
>> 2) The patch series has some updations of hwmod data
>>    for MMC controller's on MMC2/3.
>> 3) Also adds & updates hwmod data for mmc and uart for OMAP4.
>>    Adding UART for OMAP4 helps to validate MMC cards from console
>> 4) Also the series includes couple of fixes
>>    a) runtime crash seen currently on tree. Validated on OMAP3430.
>>    b) crash on OMAP4430 when CONFIG_MMC_OMAP_HS is not set.
>>
>> The entire series has been tested on OMAP4430 SDP with omap3_defconfig
>> Currently working on runtime for MMC and will update later.
>
> This needs testing on OMAP2 as well.
>
> Please take over responsibility of the pm-wip/mmc branch and feel free
> to combine those patches with yours.  They are there just to get
> started, but you are free to take them and do what you like with them.
>
> For the next rev, just include/merge the patches from pm-wip/mmc with
> yours and post them against my pm-core branch (a.k.a. pm-wip/hwmods-omap4)
>
>> Kishore Kadiyala (7):
>>   [PM-WIP-MMC] OMAP2 HWMOD: Updating MMC Controller data
>>   [PM-WIP-MMC] OMAP3 HWMOD: Updating MMC controller data
>>   [PM-WIP-MMC] OMAP2/OMAP3: Updating hwmod name for MMC controller
>>   [PM-WIP-MMC] OMAP4 hwmod: Updating hwmod data for MMC controllers
>
> Some minor nits on naming:  let's use the prefix:
>
>     <soc>: hwmod data: <shortlog>
>
> e.g. OMAP3: hwmod data: add MMC controllers
>
> Kevin
>
>>   [PM-WIP-MMC] OMAP MMC: Remove MMC controller reset
>>   [PM-WIP-MMC] OMAP MMC: Register offset handling
>>   [PM-WIP-MMC] OMAP MMC : Fix crash with CONFIG_PM_RUNTIME
>>
>> Benoit Cousson (3):
>>   [PM-WIP-MMC] OMAP4 hwmod: Adding hwmod data for MMC controller
>>   [PM-WIP-UART] OMAP4 hwmod : Adding hwmod data for UART
>>   [PM-WIP-MMC] omap4 hsmmc: Fix the init if CONFIG_MMC_OMAP_HS is not
>>     set
>>
>>  arch/arm/mach-omap2/board-4430sdp.c        |    7 +-
>>  arch/arm/mach-omap2/devices.c              |  106 +-----
>>  arch/arm/mach-omap2/hsmmc.c                |    6 +
>>  arch/arm/mach-omap2/omap_hwmod_2430_data.c |    9 +-
>>  arch/arm/mach-omap2/omap_hwmod_3xxx_data.c |   11 +-
>>  arch/arm/mach-omap2/omap_hwmod_44xx_data.c |  567 +++++++++++++++++++++++++++-
>>  arch/arm/plat-omap/include/plat/mmc.h      |   76 ++++
>>  drivers/mmc/host/omap_hsmmc.c              |  256 ++++++-------
>>  8 files changed, 785 insertions(+), 253 deletions(-)
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
>
--
To unsubscribe from this list: send the line "unsubscribe linux-omap" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2010-08-27 14:13 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-20 20:10 [pm-wip/mmc][PATCH 00/10] OMAP MMC Hwmod & Runtime patches kishore kadiyala
2010-08-26 23:17 ` Kevin Hilman
2010-08-27 14:13   ` kishore kadiyala

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.