All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/3] mmc: support sdhci instead of s5p_mmc
@ 2012-03-29  8:25 Jaehoon Chung
  2012-03-29 14:24 ` Minkyu Kang
  0 siblings, 1 reply; 3+ messages in thread
From: Jaehoon Chung @ 2012-03-29  8:25 UTC (permalink / raw)
  To: u-boot

This patchset is supported the sdhci controller for Samsung-SoC.
In mmc driver, already implemented the generic sdhci.
There is no reason that didn't use sdhci.c.
So, use the sdhci instead of s5p_mmc.

Jaehoon Chung (3):
  mmc: sdhci: fix the wrong operation when response type is R1b
  mmc: use sdhci.c instead of s5p_mmc.c
  ARM: SAMSUNG: support sdhci controller

 arch/arm/include/asm/arch-exynos/mmc.h  |   93 +++++++++++++++--------------
 arch/arm/include/asm/arch-s5pc1xx/mmc.h |   93 +++++++++++++++--------------
 drivers/mmc/Makefile                    |    2 +-
 drivers/mmc/s5p_sdhci.c                 |   98 +++++++++++++++++++++++++++++++
 drivers/mmc/sdhci.c                     |   45 +++++++++++---
 include/configs/origen.h                |    3 +-
 include/configs/s5p_goni.h              |    3 +-
 include/configs/s5pc210_universal.h     |    3 +-
 include/configs/smdk5250.h              |    3 +-
 include/configs/smdkv310.h              |    3 +-
 include/configs/trats.h                 |    3 +-
 include/sdhci.h                         |    6 ++
 12 files changed, 246 insertions(+), 109 deletions(-)
 create mode 100644 drivers/mmc/s5p_sdhci.c

-- 
1.7.4.1

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

* [U-Boot] [PATCH 0/3] mmc: support sdhci instead of s5p_mmc
  2012-03-29  8:25 [U-Boot] [PATCH 0/3] mmc: support sdhci instead of s5p_mmc Jaehoon Chung
@ 2012-03-29 14:24 ` Minkyu Kang
  2012-03-30  2:07   ` Jaehoon Chung
  0 siblings, 1 reply; 3+ messages in thread
From: Minkyu Kang @ 2012-03-29 14:24 UTC (permalink / raw)
  To: u-boot

On 29 March 2012 17:25, Jaehoon Chung <jh80.chung@samsung.com> wrote:
> This patchset is supported the sdhci controller for Samsung-SoC.
> In mmc driver, already implemented the generic sdhci.
> There is no reason that didn't use sdhci.c.
> So, use the sdhci instead of s5p_mmc.
>
> Jaehoon Chung (3):
> ?mmc: sdhci: fix the wrong operation when response type is R1b
> ?mmc: use sdhci.c instead of s5p_mmc.c
> ?ARM: SAMSUNG: support sdhci controller
>
> ?arch/arm/include/asm/arch-exynos/mmc.h ?| ? 93 +++++++++++++++--------------
> ?arch/arm/include/asm/arch-s5pc1xx/mmc.h | ? 93 +++++++++++++++--------------
> ?drivers/mmc/Makefile ? ? ? ? ? ? ? ? ? ?| ? ?2 +-
> ?drivers/mmc/s5p_sdhci.c ? ? ? ? ? ? ? ? | ? 98 +++++++++++++++++++++++++++++++
> ?drivers/mmc/sdhci.c ? ? ? ? ? ? ? ? ? ? | ? 45 +++++++++++---
> ?include/configs/origen.h ? ? ? ? ? ? ? ?| ? ?3 +-
> ?include/configs/s5p_goni.h ? ? ? ? ? ? ?| ? ?3 +-
> ?include/configs/s5pc210_universal.h ? ? | ? ?3 +-
> ?include/configs/smdk5250.h ? ? ? ? ? ? ?| ? ?3 +-
> ?include/configs/smdkv310.h ? ? ? ? ? ? ?| ? ?3 +-
> ?include/configs/trats.h ? ? ? ? ? ? ? ? | ? ?3 +-
> ?include/sdhci.h ? ? ? ? ? ? ? ? ? ? ? ? | ? ?6 ++
> ?12 files changed, 246 insertions(+), 109 deletions(-)
> ?create mode 100644 drivers/mmc/s5p_sdhci.c
>

Why didn't you remove the s5p_mmc?
Is it need somewhere?

Thanks.
Minkyu Kang.
-- 
from. prom.
www.promsoft.net

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

* [U-Boot] [PATCH 0/3] mmc: support sdhci instead of s5p_mmc
  2012-03-29 14:24 ` Minkyu Kang
@ 2012-03-30  2:07   ` Jaehoon Chung
  0 siblings, 0 replies; 3+ messages in thread
From: Jaehoon Chung @ 2012-03-30  2:07 UTC (permalink / raw)
  To: u-boot

On 03/29/2012 11:24 PM, Minkyu Kang wrote:

> On 29 March 2012 17:25, Jaehoon Chung <jh80.chung@samsung.com> wrote:
>> This patchset is supported the sdhci controller for Samsung-SoC.
>> In mmc driver, already implemented the generic sdhci.
>> There is no reason that didn't use sdhci.c.
>> So, use the sdhci instead of s5p_mmc.
>>
>> Jaehoon Chung (3):
>>  mmc: sdhci: fix the wrong operation when response type is R1b
>>  mmc: use sdhci.c instead of s5p_mmc.c
>>  ARM: SAMSUNG: support sdhci controller
>>
>>  arch/arm/include/asm/arch-exynos/mmc.h  |   93 +++++++++++++++--------------
>>  arch/arm/include/asm/arch-s5pc1xx/mmc.h |   93 +++++++++++++++--------------
>>  drivers/mmc/Makefile                    |    2 +-
>>  drivers/mmc/s5p_sdhci.c                 |   98 +++++++++++++++++++++++++++++++
>>  drivers/mmc/sdhci.c                     |   45 +++++++++++---
>>  include/configs/origen.h                |    3 +-
>>  include/configs/s5p_goni.h              |    3 +-
>>  include/configs/s5pc210_universal.h     |    3 +-
>>  include/configs/smdk5250.h              |    3 +-
>>  include/configs/smdkv310.h              |    3 +-
>>  include/configs/trats.h                 |    3 +-
>>  include/sdhci.h                         |    6 ++
>>  12 files changed, 246 insertions(+), 109 deletions(-)
>>  create mode 100644 drivers/mmc/s5p_sdhci.c
>>
> 
> Why didn't you remove the s5p_mmc?
> Is it need somewhere?

Sorry. i missed that remove the s5p_mmc.
i will resend the patch.

Thanks,
Jaehoon Chung

> 
> Thanks.
> Minkyu Kang.

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

end of thread, other threads:[~2012-03-30  2:07 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-29  8:25 [U-Boot] [PATCH 0/3] mmc: support sdhci instead of s5p_mmc Jaehoon Chung
2012-03-29 14:24 ` Minkyu Kang
2012-03-30  2:07   ` Jaehoon Chung

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.