public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/4] mmc: Support designWare Controller
@ 2012-07-03  7:57 Jaehoon Chung
  2012-07-09  2:45 ` Jaehoon Chung
  0 siblings, 1 reply; 3+ messages in thread
From: Jaehoon Chung @ 2012-07-03  7:57 UTC (permalink / raw)
  To: u-boot

Include mmc:dw-mmc:support DesignWare MMC controller at this patchset.
dw-mmc.c is generic interface.(like sdhci.c)
For using dw-mmc controller, need to add the some samsung specific code.
Exynos specific code should be presented into exynos_dw_mmc.c

If want to use with exynos5, must enable the dw-mmc.c.

Changelog v2:
	- Fixed the wrong argument for exynos_dwmci_init()
	- Added CONFIG_DWMMC/CONFIG_EXYNOS_DWMMC at Makefile
	- Changed host->mmc_clk instead of host->get_mmc_clk
	- removed hard-coding value
		: if need, we can set to host->fifoth_val

Jaehoon Chung (4):
  mmc: dw-mmc: support DesignWare MMC Controller
  EXYNOS: clock: add the get_mmc_clk function
  EXYNOS: mmc: support DesignWare Controller for Samsung-SoC
  mmc: dw-mmc: add dw-mmc's confiuration at Makefile

 arch/arm/cpu/armv7/exynos/clock.c        |   78 ++++++
 arch/arm/include/asm/arch-exynos/clk.h   |    1 +
 arch/arm/include/asm/arch-exynos/dwmmc.h |   36 +++
 drivers/mmc/Makefile                     |    3 +
 drivers/mmc/dw_mmc.c                     |  400 ++++++++++++++++++++++++++++++
 drivers/mmc/exynos_dw_mmc.c              |   58 +++++
 include/dwmmc.h                          |  186 ++++++++++++++
 7 files changed, 762 insertions(+), 0 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-exynos/dwmmc.h
 create mode 100644 drivers/mmc/dw_mmc.c
 create mode 100644 drivers/mmc/exynos_dw_mmc.c
 create mode 100644 include/dwmmc.h

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

* [U-Boot] [PATCH v2 0/4] mmc: Support designWare Controller
  2012-07-03  7:57 [U-Boot] [PATCH v2 0/4] mmc: Support designWare Controller Jaehoon Chung
@ 2012-07-09  2:45 ` Jaehoon Chung
  2012-07-16  8:47   ` Minkyu Kang
  0 siblings, 1 reply; 3+ messages in thread
From: Jaehoon Chung @ 2012-07-09  2:45 UTC (permalink / raw)
  To: u-boot

Hi Andy,

Could you merge these series?
If you don't mind, could we merge this at u-boot-samsung?
To use the exynos5, must enable the DesignWare Controller for eMMC.

Best Regards,
Jaehoon Chung

On 07/03/2012 04:57 PM, Jaehoon Chung wrote:

> Include mmc:dw-mmc:support DesignWare MMC controller at this patchset.
> dw-mmc.c is generic interface.(like sdhci.c)
> For using dw-mmc controller, need to add the some samsung specific code.
> Exynos specific code should be presented into exynos_dw_mmc.c
> 
> If want to use with exynos5, must enable the dw-mmc.c.
> 
> Changelog v2:
> 	- Fixed the wrong argument for exynos_dwmci_init()
> 	- Added CONFIG_DWMMC/CONFIG_EXYNOS_DWMMC at Makefile
> 	- Changed host->mmc_clk instead of host->get_mmc_clk
> 	- removed hard-coding value
> 		: if need, we can set to host->fifoth_val
> 
> Jaehoon Chung (4):
>   mmc: dw-mmc: support DesignWare MMC Controller
>   EXYNOS: clock: add the get_mmc_clk function
>   EXYNOS: mmc: support DesignWare Controller for Samsung-SoC
>   mmc: dw-mmc: add dw-mmc's confiuration at Makefile
> 
>  arch/arm/cpu/armv7/exynos/clock.c        |   78 ++++++
>  arch/arm/include/asm/arch-exynos/clk.h   |    1 +
>  arch/arm/include/asm/arch-exynos/dwmmc.h |   36 +++
>  drivers/mmc/Makefile                     |    3 +
>  drivers/mmc/dw_mmc.c                     |  400 ++++++++++++++++++++++++++++++
>  drivers/mmc/exynos_dw_mmc.c              |   58 +++++
>  include/dwmmc.h                          |  186 ++++++++++++++
>  7 files changed, 762 insertions(+), 0 deletions(-)
>  create mode 100644 arch/arm/include/asm/arch-exynos/dwmmc.h
>  create mode 100644 drivers/mmc/dw_mmc.c
>  create mode 100644 drivers/mmc/exynos_dw_mmc.c
>  create mode 100644 include/dwmmc.h
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> http://lists.denx.de/mailman/listinfo/u-boot
> 

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

* [U-Boot] [PATCH v2 0/4] mmc: Support designWare Controller
  2012-07-09  2:45 ` Jaehoon Chung
@ 2012-07-16  8:47   ` Minkyu Kang
  0 siblings, 0 replies; 3+ messages in thread
From: Minkyu Kang @ 2012-07-16  8:47 UTC (permalink / raw)
  To: u-boot

Dear Andy,

On 9 July 2012 11:45, Jaehoon Chung <jh80.chung@samsung.com> wrote:
> Hi Andy,
>
> Could you merge these series?
> If you don't mind, could we merge this at u-boot-samsung?
> To use the exynos5, must enable the DesignWare Controller for eMMC.
>
> Best Regards,
> Jaehoon Chung
>
> On 07/03/2012 04:57 PM, Jaehoon Chung wrote:
>
>> Include mmc:dw-mmc:support DesignWare MMC controller at this patchset.
>> dw-mmc.c is generic interface.(like sdhci.c)
>> For using dw-mmc controller, need to add the some samsung specific code.
>> Exynos specific code should be presented into exynos_dw_mmc.c
>>

If you are OK.
I'll merge this patchset to u-boot-samsung.

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

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

end of thread, other threads:[~2012-07-16  8:47 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-07-03  7:57 [U-Boot] [PATCH v2 0/4] mmc: Support designWare Controller Jaehoon Chung
2012-07-09  2:45 ` Jaehoon Chung
2012-07-16  8:47   ` Minkyu Kang

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox