All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bo Shen <voice.shen@atmel.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 1/2] ARM: at91sam9m10g45ek: enable mci0 support
Date: Thu, 22 May 2014 09:35:16 +0800	[thread overview]
Message-ID: <537D5454.4050802@atmel.com> (raw)
In-Reply-To: <1400640136-17946-1-git-send-email-josh.wu@atmel.com>

Hi Josh,

On 05/21/2014 10:42 AM, Josh Wu wrote:
> Also we enable the mmc command in configuration file.
>
> As both CONFIG_CMD_MMC and CONFIG_CMD_USB use the CONFIG_DOS_PARTITION,
> so remove the redundant CONFIG_DOS_PARTITION definition.
>
> Signed-off-by: Josh Wu <josh.wu@atmel.com>

Acked-by: Bo Shen <voice.shen@atmel.com>

> ---
> v1 -> v2:
>    1. refined the comment for the pins.
>    2. remove detected pin initialization.
>    3. move the mci initialization code to devices.c
>    4. remove useless header file: mmc.h
>
>   .../cpu/arm926ejs/at91/at91sam9m10g45_devices.c    |   17 +++++++++++++++++
>   board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c    |   10 ++++++++++
>   include/configs/at91sam9m10g45ek.h                 |   15 ++++++++++++++-
>   3 files changed, 41 insertions(+), 1 deletion(-)
>
> diff --git a/arch/arm/cpu/arm926ejs/at91/at91sam9m10g45_devices.c b/arch/arm/cpu/arm926ejs/at91/at91sam9m10g45_devices.c
> index 7d7725c..0e6c0da 100644
> --- a/arch/arm/cpu/arm926ejs/at91/at91sam9m10g45_devices.c
> +++ b/arch/arm/cpu/arm926ejs/at91/at91sam9m10g45_devices.c
> @@ -165,3 +165,20 @@ void at91_macb_hw_init(void)
>   #endif
>   }
>   #endif
> +
> +#ifdef CONFIG_GENERIC_ATMEL_MCI
> +void at91_mci_hw_init(void)
> +{
> +	struct at91_pmc *pmc = (struct at91_pmc *)ATMEL_BASE_PMC;
> +
> +	at91_set_a_periph(AT91_PIO_PORTA, 0, 0);	/* MCI0 CLK */
> +	at91_set_a_periph(AT91_PIO_PORTA, 1, 0);	/* MCI0 CDA */
> +	at91_set_a_periph(AT91_PIO_PORTA, 2, 0);	/* MCI0 DA0 */
> +	at91_set_a_periph(AT91_PIO_PORTA, 3, 0);	/* MCI0 DA1 */
> +	at91_set_a_periph(AT91_PIO_PORTA, 4, 0);	/* MCI0 DA2 */
> +	at91_set_a_periph(AT91_PIO_PORTA, 5, 0);	/* MCI0 DA3 */
> +
> +	/* Enable clock */
> +	writel(1 << ATMEL_ID_MCI0, &pmc->pcer);
> +}
> +#endif
> diff --git a/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c b/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
> index b7e2efd..5788116 100644
> --- a/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
> +++ b/board/atmel/at91sam9m10g45ek/at91sam9m10g45ek.c
> @@ -16,6 +16,7 @@
>   #include <asm/arch/clk.h>
>   #include <lcd.h>
>   #include <atmel_lcdc.h>
> +#include <atmel_mci.h>
>   #if defined(CONFIG_RESET_PHY_R) && defined(CONFIG_MACB)
>   #include <net.h>
>   #endif
> @@ -217,6 +218,15 @@ void lcd_show_board_info(void)
>   #endif /* CONFIG_LCD_INFO */
>   #endif
>
> +#ifdef CONFIG_GENERIC_ATMEL_MCI
> +int board_mmc_init(bd_t *bis)
> +{
> +	at91_mci_hw_init();
> +
> +	return atmel_mci_init((void *)ATMEL_BASE_MCI0);
> +}
> +#endif
> +
>   int board_early_init_f(void)
>   {
>   	at91_seriald_hw_init();
> diff --git a/include/configs/at91sam9m10g45ek.h b/include/configs/at91sam9m10g45ek.h
> index ccfda71..df277e7 100644
> --- a/include/configs/at91sam9m10g45ek.h
> +++ b/include/configs/at91sam9m10g45ek.h
> @@ -115,6 +115,20 @@
>
>   #endif
>
> +/* MMC */
> +#define CONFIG_CMD_MMC
> +
> +#ifdef CONFIG_CMD_MMC
> +#define CONFIG_MMC
> +#define CONFIG_GENERIC_MMC
> +#define CONFIG_GENERIC_ATMEL_MCI
> +#endif
> +
> +#if defined(CONFIG_CMD_USB) || defined(CONFIG_CMD_MMC)
> +#define CONFIG_CMD_FAT
> +#define CONFIG_DOS_PARTITION
> +#endif
> +
>   /* Ethernet */
>   #define CONFIG_MACB
>   #define CONFIG_RMII
> @@ -126,7 +140,6 @@
>   #define CONFIG_USB_EHCI
>   #define CONFIG_USB_EHCI_ATMEL
>   #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS	2
> -#define CONFIG_DOS_PARTITION
>   #define CONFIG_USB_STORAGE
>
>   #define CONFIG_SYS_LOAD_ADDR		0x22000000	/* load address */
>

Best Regards,
Bo Shen

  parent reply	other threads:[~2014-05-22  1:35 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-05-21  2:42 [U-Boot] [PATCH v2 1/2] ARM: at91sam9m10g45ek: enable mci0 support Josh Wu
2014-05-21  2:42 ` [U-Boot] [PATCH v2 2/2] ARM: at91sam9m10g45ek: add mmc environment configuration support Josh Wu
2014-05-22  1:35   ` Bo Shen
2014-05-26 22:13   ` [U-Boot] [U-Boot, v2, " Andreas Bießmann
2014-05-22  1:35 ` Bo Shen [this message]
2014-05-26 22:13 ` [U-Boot] [U-Boot,v2,1/2] ARM: at91sam9m10g45ek: enable mci0 support Andreas Bießmann

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=537D5454.4050802@atmel.com \
    --to=voice.shen@atmel.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.