All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jaehoon Chung <jh80.chung@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 0/9]EXYNOS5: Support for Exynos5250 Rev 1.0
Date: Thu, 21 Jun 2012 09:01:39 +0900	[thread overview]
Message-ID: <4FE26463.5060009@samsung.com> (raw)
In-Reply-To: <1340188810-18871-1-git-send-email-rajeshwari.s@samsung.com>

Hi Rajeshwari,

On 06/20/2012 07:40 PM, Rajeshwari Shinde wrote:

> This patch set adds support for Exynos5250 Rev 1.0.
> Exynos5250 Rev 1.0 supports DDR3 Memory configuration and
> support for LPDDR2 is removed.
> Exynos5250 Rev 1.0 supports DWMMC driver but the support for same is
> not yet gone into Mainline. After DWMMC driver is added to Mainline
> support for generic S5P MMC driver will be removed.
> 
> Due to Support of generic S5P MMC driver currently still being there in the
> Mainline you can see the following error on boot.
> 
> mmc_reset: timeout error
> mmc_change_clock: timeout error
> mmc_send_cmd: waiting for status update
> MMC init failed

Is this error produced at exynos5, otherwise all samsung-soc?
I didn't understand why explain mmc issue in these patch series..

Best Regards,
Jaehoon Chung

> 
> Rajeshwari Shinde (9):
>   ARCH: SPL: Add parametric board initializer
>   SMDK5250: SPL: Define parametric board initializer
>   SMDK5250: Add smdk5250-uboot-spl.lds
>   EXYNOS5: CLOCK: define additional clock registers for Exynos5250 Rev
>     1.0
>   EXYNOS5: CLOCK: Add clock support for Exynos5250 Rev 1.0
>   Exynos5: DDR3: Adding the DDR3 memory setup for Exynos5250 Rev 1.0
>   EXYNOS5: CLOCK: Modify MPLL clock out for Exynos5250 Rev 1.0
>   EXYNOS5 : Modify pinnumx settings as per Exynos5250 Rev 1.0
>   SMDK5250: Enable UART and MMC for Exynos5250 Rev 1.0
> 
>  arch/arm/cpu/armv7/exynos/clock.c             |   12 +-
>  arch/arm/cpu/armv7/exynos/pinmux.c            |   18 +-
>  arch/arm/include/asm/arch-exynos/clock.h      |   37 +-
>  arch/arm/include/asm/arch-exynos/dmc.h        |   65 +++
>  arch/arm/include/asm/arch-exynos/spl.h        |   95 +++
>  board/samsung/smdk5250/Makefile               |    3 +-
>  board/samsung/smdk5250/clock_init.c           |  714 +++++++++++++++++++----
>  board/samsung/smdk5250/clock_init.h           |  149 +++++
>  board/samsung/smdk5250/dmc_common.c           |  199 +++++++
>  board/samsung/smdk5250/dmc_init.c             |  462 ---------------
>  board/samsung/smdk5250/dmc_init_ddr3.c        |  228 ++++++++
>  board/samsung/smdk5250/setup.h                |  765 +++++++++++++++----------
>  board/samsung/smdk5250/smdk5250-uboot-spl.lds |   66 +++
>  board/samsung/smdk5250/smdk5250.c             |    6 +-
>  board/samsung/smdk5250/smdk5250_spl.c         |   68 +++
>  include/configs/smdk5250.h                    |    7 +-
>  16 files changed, 1968 insertions(+), 926 deletions(-)
>  create mode 100644 arch/arm/include/asm/arch-exynos/spl.h
>  create mode 100644 board/samsung/smdk5250/clock_init.h
>  create mode 100644 board/samsung/smdk5250/dmc_common.c
>  delete mode 100644 board/samsung/smdk5250/dmc_init.c
>  create mode 100644 board/samsung/smdk5250/dmc_init_ddr3.c
>  create mode 100644 board/samsung/smdk5250/smdk5250-uboot-spl.lds
>  create mode 100644 board/samsung/smdk5250/smdk5250_spl.c
> 

  parent reply	other threads:[~2012-06-21  0:01 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-06-20 10:40 [U-Boot] [PATCH 0/9]EXYNOS5: Support for Exynos5250 Rev 1.0 Rajeshwari Shinde
2012-06-20 10:40 ` [U-Boot] [PATCH 1/9] ARCH: SPL: Add parametric board initializer Rajeshwari Shinde
2012-06-20 10:40 ` [U-Boot] [PATCH 2/9] SMDK5250: SPL: Define " Rajeshwari Shinde
2012-06-20 10:40 ` [U-Boot] [PATCH 3/9] SMDK5250: Add smdk5250-uboot-spl.lds Rajeshwari Shinde
2012-06-20 10:40 ` [U-Boot] [PATCH 4/9] EXYNOS5: CLOCK: define additional clock registers for Exynos5250 Rev 1.0 Rajeshwari Shinde
2012-06-21  4:55   ` Joonyoung Shim
2012-06-21  5:26     ` Rajeshwari Birje
2012-06-20 10:40 ` [U-Boot] [PATCH 5/9] EXYNOS5: CLOCK: Add clock support " Rajeshwari Shinde
2012-06-20 10:40 ` [U-Boot] [PATCH 6/9] Exynos5: DDR3: Adding the DDR3 memory setup " Rajeshwari Shinde
2012-06-20 10:40 ` [U-Boot] [PATCH 7/9] EXYNOS5: CLOCK: Modify MPLL clock out " Rajeshwari Shinde
2012-06-21  5:01   ` Joonyoung Shim
2012-06-20 10:40 ` [U-Boot] [PATCH 8/9] EXYNOS5 : Modify pinnumx settings as per " Rajeshwari Shinde
2012-06-20 10:40 ` [U-Boot] [PATCH 9/9] SMDK5250: Enable UART and MMC for " Rajeshwari Shinde
2012-06-21  0:01 ` Jaehoon Chung [this message]
2012-06-29  7:26   ` [U-Boot] [PATCH 0/9]EXYNOS5: Support " Rajeshwari Birje

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4FE26463.5060009@samsung.com \
    --to=jh80.chung@samsung.com \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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.