From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tony Lindgren Subject: Re: [PATCH] OMAP2EVM: Adding hsmmc support Date: Fri, 8 Aug 2008 10:49:28 +0300 Message-ID: <20080808074927.GK24923@atomide.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Received: from mho-01-bos.mailhop.org ([63.208.196.178]:56138 "EHLO mho-01-bos.mailhop.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751947AbYHHHt3 (ORCPT ); Fri, 8 Aug 2008 03:49:29 -0400 Content-Disposition: inline In-Reply-To: Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: Arun KS Cc: linux-omap@vger.kernel.org * Arun KS [080806 14:19]: > This patch enables high speed MMC support for OMAP2EVM board Pushing today. Tony > Signed-off-by: Arun KS > --- > arch/arm/mach-omap2/Makefile | 3 ++- > arch/arm/mach-omap2/board-omap2evm.c | 10 ++++++++++ > 2 files changed, 12 insertions(+), 1 deletions(-) > > diff --git a/arch/arm/mach-omap2/Makefile b/arch/arm/mach-omap2/Makefile > index 10dc68f..0e982d3 100644 > --- a/arch/arm/mach-omap2/Makefile > +++ b/arch/arm/mach-omap2/Makefile > @@ -49,7 +49,8 @@ obj-$(CONFIG_MACH_OMAP_2430SDP) += board-2430sdp.o \ > hsmmc.o \ > usb-musb.o \ > usb-ehci.o > -obj-$(CONFIG_MACH_OMAP2EVM) += board-omap2evm.o > +obj-$(CONFIG_MACH_OMAP2EVM) += board-omap2evm.o \ > + hsmmc.o > obj-$(CONFIG_MACH_OMAP_3430SDP) += board-3430sdp.o \ > hsmmc.o \ > usb-musb.o \ > diff --git a/arch/arm/mach-omap2/board-omap2evm.c > b/arch/arm/mach-omap2/board-omap2evm.c > index 13c53cc..b6354e3 100644 > --- a/arch/arm/mach-omap2/board-omap2evm.c > +++ b/arch/arm/mach-omap2/board-omap2evm.c > @@ -26,6 +26,7 @@ > #include > #include > #include > +#include > > static struct resource omap2evm_smc911x_resources[] = { > [0] = { > @@ -83,9 +84,17 @@ static struct omap_uart_config > omap2_evm_uart_config __initdata = { > .enabled_uarts = ((1 << 0) | (1 << 1) | (1 << 2)), > }; > > +static struct omap_mmc_config omap2_evm_mmc_config __initdata = { > + .mmc [0] = { > + .enabled = 1, > + .wire4 = 1, > + }, > +}; > + > static struct omap_board_config_kernel omap2_evm_config[] __initdata = { > { OMAP_TAG_UART, &omap2_evm_uart_config }, > { OMAP_TAG_LCD, &omap2_evm_lcd_config }, > + { OMAP_TAG_MMC, &omap2_evm_mmc_config }, > }; > > static int __init omap2_evm_i2c_init(void) > @@ -110,6 +119,7 @@ static void __init omap2_evm_init(void) > omap_board_config = omap2_evm_config; > omap_board_config_size = ARRAY_SIZE(omap2_evm_config); > omap_serial_init(); > + hsmmc_init(); > } > > static void __init omap2_evm_map_io(void) > -- > 1.5.3.4 > -- > To unsubscribe from this list: send the line "unsubscribe linux-omap" in > the body of a message to majordomo@vger.kernel.org > More majordomo info at http://vger.kernel.org/majordomo-info.html