From: Jaehoon Chung <jh80.chung@samsung.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/3] arm:mmc:goni/exynos: Fix wrong mmc base register devices offset.
Date: Wed, 28 Aug 2013 17:45:42 +0900 [thread overview]
Message-ID: <521DB8B6.8010502@samsung.com> (raw)
In-Reply-To: <521DA2B4.8020406@samsung.com>
Looks good to me.
Acked-by: Jaehoon Chung <jh80.chung@samsung.com>
On 08/28/2013 04:11 PM, Przemyslaw Marczak wrote:
> Hi Minkyu,
>
>> On s5pc1xx mmc devices offset is multiply of 0x100000,
>> wrong value was 0x10000. Register offset always points
>> to mmc 0 before this change.
>>
>> Add macro definition of mmc dev register offset to s5pc1xx and
>> exynos mmc.
>
> Could you review this patch, please?
>
>>
>> Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> CC: Minkyu Kang <mk7.kang@samsung.com>
>> ---
>> arch/arm/include/asm/arch-exynos/mmc.h | 6 +++++-
>> arch/arm/include/asm/arch-s5pc1xx/mmc.h | 6 +++++-
>> 2 files changed, 10 insertions(+), 2 deletions(-)
>>
>> diff --git a/arch/arm/include/asm/arch-exynos/mmc.h b/arch/arm/include/asm/arch-exynos/mmc.h
>> index 96610b8..98312d1 100644
>> --- a/arch/arm/include/asm/arch-exynos/mmc.h
>> +++ b/arch/arm/include/asm/arch-exynos/mmc.h
>> @@ -8,6 +8,8 @@
>> #ifndef __ASM_ARCH_MMC_H_
>> #define __ASM_ARCH_MMC_H_
>>
>> +#define S5P_MMC_DEV_OFFSET 0x10000
>> +
>> #define SDHCI_CONTROL2 0x80
>> #define SDHCI_CONTROL3 0x84
>> #define SDHCI_CONTROL4 0x8C
>> @@ -55,7 +57,9 @@ int s5p_sdhci_init(u32 regbase, int index, int bus_width);
>>
>> static inline unsigned int s5p_mmc_init(int index, int bus_width)
>> {
>> - unsigned int base = samsung_get_base_mmc() + (0x10000 * index);
>> + unsigned int base = samsung_get_base_mmc() +
>> + (S5P_MMC_DEV_OFFSET * index);
>> +
>> return s5p_sdhci_init(base, index, bus_width);
>> }
>> #endif
>> diff --git a/arch/arm/include/asm/arch-s5pc1xx/mmc.h b/arch/arm/include/asm/arch-s5pc1xx/mmc.h
>> index 96610b8..55ff10b 100644
>> --- a/arch/arm/include/asm/arch-s5pc1xx/mmc.h
>> +++ b/arch/arm/include/asm/arch-s5pc1xx/mmc.h
>> @@ -8,6 +8,8 @@
>> #ifndef __ASM_ARCH_MMC_H_
>> #define __ASM_ARCH_MMC_H_
>>
>> +#define S5P_MMC_DEV_OFFSET 0x100000
>> +
>> #define SDHCI_CONTROL2 0x80
>> #define SDHCI_CONTROL3 0x84
>> #define SDHCI_CONTROL4 0x8C
>> @@ -55,7 +57,9 @@ int s5p_sdhci_init(u32 regbase, int index, int bus_width);
>>
>> static inline unsigned int s5p_mmc_init(int index, int bus_width)
>> {
>> - unsigned int base = samsung_get_base_mmc() + (0x10000 * index);
>> + unsigned int base = samsung_get_base_mmc() +
>> + (S5P_MMC_DEV_OFFSET * index);
>> +
>> return s5p_sdhci_init(base, index, bus_width);
>> }
>> #endif
>>
>
>
prev parent reply other threads:[~2013-08-28 8:45 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-08-20 10:53 [U-Boot] [PATCH 1/3] arm:mmc:goni/exynos: Fix wrong mmc base register devices offset Przemyslaw Marczak
2013-08-20 10:53 ` [U-Boot] [PATCH 2/3] arm:goni:mmc: Add sd card detection and initialization Przemyslaw Marczak
2013-08-28 7:39 ` Przemyslaw Marczak
2013-08-28 8:41 ` Jaehoon Chung
2013-08-28 10:11 ` Przemyslaw Marczak
2013-08-28 14:36 ` [U-Boot] [PATCH v2] " Przemyslaw Marczak
2013-08-29 3:11 ` Jaehoon Chung
2013-08-30 2:16 ` Minkyu Kang
2013-09-02 14:05 ` Przemyslaw Marczak
2013-08-20 10:53 ` [U-Boot] [PATCH 3/3] ums: Extend ums to use all mmc devices Przemyslaw Marczak
2013-08-28 7:40 ` Przemyslaw Marczak
2013-08-28 8:44 ` Marek Vasut
2013-08-28 10:59 ` Przemyslaw Marczak
2013-08-28 11:03 ` Marek Vasut
2013-08-28 11:21 ` Przemyslaw Marczak
2013-08-28 11:25 ` Marek Vasut
2013-08-28 7:11 ` [U-Boot] [PATCH 1/3] arm:mmc:goni/exynos: Fix wrong mmc base register devices offset Przemyslaw Marczak
2013-08-28 8:45 ` Jaehoon Chung [this message]
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=521DB8B6.8010502@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox