From mboxrd@z Thu Jan 1 00:00:00 1970 From: Stephen Warren Date: Tue, 4 Oct 2011 11:32:45 -0600 Subject: [U-Boot] [PATCH v2 1/4] tegra2: Seaboard's MMC has an 8-bit bus Message-ID: <1317749568-9657-1-git-send-email-swarren@nvidia.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Modify board_mmc_init to configure SDMMC4 for an 8-bit bus, since that's what is wired up on the board. Signed-off-by: Stephen Warren --- Note: These patches build on various Tegra2-related patches recently posted by Simon Glass; see v2 of the 6-entry patchset shown at: http://patchwork.ozlabs.org/project/uboot/list/?submitter=6170&state=1&q=tegra2 board/nvidia/common/board.c | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index d13537d..8033612 100644 --- a/board/nvidia/common/board.c +++ b/board/nvidia/common/board.c @@ -163,8 +163,8 @@ int board_mmc_init(bd_t *bd) gpio_config_mmc(); debug("board_mmc_init: init eMMC\n"); - /* init dev 0, eMMC chip, with 4-bit bus */ - tegra2_mmc_init(0, 4); + /* init dev 0, eMMC chip, with 8-bit bus */ + tegra2_mmc_init(0, 8); debug("board_mmc_init: init SD slot\n"); /* init dev 1, SD slot, with 4-bit bus */ -- 1.7.0.4