From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 5/9] mx23_olinuxino: Add MMC support
Date: Tue, 22 Jan 2013 02:47:21 +0100 [thread overview]
Message-ID: <201301220247.21925.marex@denx.de> (raw)
In-Reply-To: <1358819250-31625-6-git-send-email-otavio@ossystems.com.br>
Dear Otavio Salvador,
Description is missing.
> From: Marek Vasut <marex@denx.de>
>
> Signed-off-by: Marek Vasut <marex@denx.de>
> ---
> board/olimex/mx23_olinuxino/mx23_olinuxino.c | 17 ++++++++++++++++-
> board/olimex/mx23_olinuxino/spl_boot.c | 10 ++++++++++
> include/configs/mx23_olinuxino.h | 12 ++++++++++++
> 3 files changed, 38 insertions(+), 1 deletion(-)
>
> diff --git a/board/olimex/mx23_olinuxino/mx23_olinuxino.c
> b/board/olimex/mx23_olinuxino/mx23_olinuxino.c index 2fcad26..421ed9c
> 100644
> --- a/board/olimex/mx23_olinuxino/mx23_olinuxino.c
> +++ b/board/olimex/mx23_olinuxino/mx23_olinuxino.c
> @@ -23,7 +23,10 @@
> */
>
> #include <common.h>
> +#include <asm/io.h>
> +#include <asm/arch/iomux-mx23.h>
> #include <asm/arch/imx-regs.h>
> +#include <asm/arch/clock.h>
> #include <asm/arch/sys_proto.h>
>
> DECLARE_GLOBAL_DATA_PTR;
> @@ -33,7 +36,12 @@ DECLARE_GLOBAL_DATA_PTR;
> */
> int board_early_init_f(void)
> {
> - /* SSP clock init will come here soon. */
> + /* IO0 clock at 480MHz */
> + mxs_set_ioclk(MXC_IOCLK0, 480000);
> +
> + /* SSP0 clock at 96MHz */
> + mxs_set_sspclk(MXC_SSPCLK0, 96000, 0);
> +
> return 0;
> }
>
> @@ -42,6 +50,13 @@ int dram_init(void)
> return mxs_dram_init();
> }
>
> +#ifdef CONFIG_CMD_MMC
> +int board_mmc_init(bd_t *bis)
> +{
> + return mxsmmc_initialize(bis, 0, NULL);
> +}
> +#endif
> +
> int board_init(void)
> {
> /* Adress of boot parameters */
> diff --git a/board/olimex/mx23_olinuxino/spl_boot.c
> b/board/olimex/mx23_olinuxino/spl_boot.c index aaebe6c..3cc40cd 100644
> --- a/board/olimex/mx23_olinuxino/spl_boot.c
> +++ b/board/olimex/mx23_olinuxino/spl_boot.c
> @@ -30,6 +30,7 @@
> #include <asm/arch/sys_proto.h>
>
> #define MUX_CONFIG_EMI (MXS_PAD_3V3 | MXS_PAD_12MA | MXS_PAD_NOPULL)
> +#define MUX_CONFIG_SSP (MXS_PAD_3V3 | MXS_PAD_8MA | MXS_PAD_PULLUP)
>
> const iomux_cfg_t iomux_setup[] = {
> /* DUART */
> @@ -82,6 +83,15 @@ const iomux_cfg_t iomux_setup[] = {
> MX23_PAD_EMI_CKE__EMI_CKE | MUX_CONFIG_EMI,
> MX23_PAD_EMI_RASN__EMI_RASN | MUX_CONFIG_EMI,
> MX23_PAD_EMI_WEN__EMI_WEN | MUX_CONFIG_EMI,
> +
> + /* MMC 0 */
> + MX23_PAD_SSP1_CMD__SSP1_CMD | MUX_CONFIG_SSP,
> + MX23_PAD_SSP1_DETECT__SSP1_DETECT | MUX_CONFIG_SSP,
> + MX23_PAD_SSP1_DATA0__SSP1_DATA0 | MUX_CONFIG_SSP,
> + MX23_PAD_SSP1_DATA1__SSP1_DATA1 | MUX_CONFIG_SSP,
> + MX23_PAD_SSP1_DATA2__SSP1_DATA2 | MUX_CONFIG_SSP,
> + MX23_PAD_SSP1_DATA3__SSP1_DATA3 | MUX_CONFIG_SSP,
> + MX23_PAD_SSP1_SCK__SSP1_SCK | MUX_CONFIG_SSP,
> };
>
> void board_init_ll(void)
> diff --git a/include/configs/mx23_olinuxino.h
> b/include/configs/mx23_olinuxino.h index e5e718c..bc63481 100644
> --- a/include/configs/mx23_olinuxino.h
> +++ b/include/configs/mx23_olinuxino.h
> @@ -53,8 +53,10 @@
> #define CONFIG_DOS_PARTITION
>
> #define CONFIG_CMD_CACHE
> +#define CONFIG_CMD_EXT2
> #define CONFIG_CMD_FAT
> #define CONFIG_CMD_GPIO
> +#define CONFIG_CMD_MMC
>
> /*
> * Memory configurations
> @@ -110,6 +112,16 @@
> #define CONFIG_BAUDRATE 115200 /* Default baud rate */
>
> /*
> + * MMC Driver
> + */
> +#ifdef CONFIG_CMD_MMC
> +#define CONFIG_MMC
> +#define CONFIG_BOUNCE_BUFFER
> +#define CONFIG_GENERIC_MMC
> +#define CONFIG_MXS_MMC
> +#endif
> +
> +/*
> * APBH DMA
> */
> #define CONFIG_APBH_DMA
Best regards,
Marek Vasut
next prev parent reply other threads:[~2013-01-22 1:47 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-22 1:47 [U-Boot] [PATCH 0/9] iMX23 MMC support and environment addition Otavio Salvador
2013-01-22 1:47 ` [U-Boot] [PATCH 1/9] mx23: Add SSP registers map Otavio Salvador
2013-01-22 1:47 ` [U-Boot] [PATCH 2/9] mx23: Use XFER_COUNT field in HW_SSP_CTRL0 register in MMC PIO mode Otavio Salvador
2013-01-22 1:45 ` Marek Vasut
2013-01-22 1:53 ` Otavio Salvador
2013-01-22 2:01 ` Marek Vasut
2013-01-22 1:47 ` [U-Boot] [PATCH 3/9] mx23: Fix transfer size setting for SPI Otavio Salvador
2013-01-22 1:46 ` Marek Vasut
2013-01-22 1:55 ` Otavio Salvador
2013-01-22 2:00 ` Marek Vasut
2013-01-24 18:14 ` Marek Vasut
2013-01-22 1:47 ` [U-Boot] [PATCH 4/9] mx23evk: Add initial board support Otavio Salvador
2013-01-22 1:46 ` Marek Vasut
2013-01-22 2:02 ` Otavio Salvador
2013-01-22 2:16 ` Marek Vasut
2013-01-22 2:30 ` Fabio Estevam
2013-01-22 2:42 ` Marek Vasut
2013-01-22 10:05 ` Otavio Salvador
2013-01-22 1:47 ` [U-Boot] [PATCH 5/9] mx23_olinuxino: Add MMC support Otavio Salvador
2013-01-22 1:47 ` Marek Vasut [this message]
2013-01-22 1:58 ` Otavio Salvador
2013-01-22 1:47 ` [U-Boot] [PATCH 6/9] mx23_olinuxino: Skip MMC Card detection Otavio Salvador
2013-01-22 1:48 ` Marek Vasut
2013-01-22 1:58 ` Otavio Salvador
2013-01-22 1:59 ` Marek Vasut
2013-01-22 1:47 ` [U-Boot] [PATCH 7/9] mx23_olinuxino: Add default environment Otavio Salvador
2013-01-22 1:49 ` Marek Vasut
2013-01-22 2:00 ` Otavio Salvador
2013-01-22 2:34 ` Fabio Estevam
2013-01-22 1:47 ` [U-Boot] [PATCH 8/9] mxs: Fix MMC reset to avoid write errors and timeout in iMX23 Otavio Salvador
2013-01-22 1:49 ` Marek Vasut
2013-01-22 2:03 ` Otavio Salvador
2013-01-22 2:15 ` Marek Vasut
2013-01-22 1:47 ` [U-Boot] [PATCH 9/9] mx23: Use PIO mode support for MMC Otavio Salvador
2013-01-22 1:50 ` Marek Vasut
2013-01-22 1:56 ` Otavio Salvador
2013-01-22 1:59 ` Marek Vasut
2013-01-23 9:04 ` Stefano Babic
2013-01-23 11:05 ` Otavio Salvador
2013-01-23 11:26 ` Marek Vasut
2013-01-23 11:39 ` Stefano Babic
2013-01-23 11:48 ` Marek Vasut
2013-01-23 12:12 ` Otavio Salvador
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=201301220247.21925.marex@denx.de \
--to=marex@denx.de \
--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