From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ajay Kumar Gupta Subject: [PATCH 5/6 v2] ti814evm: Add support for musb interface Date: Wed, 7 Sep 2011 22:32:24 +0530 Message-ID: <1315414945-19829-6-git-send-email-ajay.gupta@ti.com> References: <1315414945-19829-1-git-send-email-ajay.gupta@ti.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from arroyo.ext.ti.com ([192.94.94.40]:55963 "EHLO arroyo.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754530Ab1IGRCl (ORCPT ); Wed, 7 Sep 2011 13:02:41 -0400 In-Reply-To: <1315414945-19829-1-git-send-email-ajay.gupta@ti.com> Sender: linux-omap-owner@vger.kernel.org List-Id: linux-omap@vger.kernel.org To: linux-omap@vger.kernel.org Cc: linux-usb@vger.kernel.org, balbi@ti.com, tony@atomide.com, Ravi Babu , Ajay Kumar Gupta From: Ravi Babu Adding musb support in ti814 EVM board file. Signed-off-by: Ajay Kumar Gupta Signed-off-by: Ravi Babu --- arch/arm/mach-omap2/board-ti8148evm.c | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-omap2/board-ti8148evm.c b/arch/arm/mach-omap2/board-ti8148evm.c index 588d6b7..7dbf115 100644 --- a/arch/arm/mach-omap2/board-ti8148evm.c +++ b/arch/arm/mach-omap2/board-ti8148evm.c @@ -23,6 +23,14 @@ #include #include #include +#include + +static struct omap_musb_board_data musb_board_data = { + .set_phy_power = ti81xx_musb_phy_power, + .interface_type = MUSB_INTERFACE_ULPI, + .mode = MUSB_OTG, + .power = 500, +}; static struct omap_board_config_kernel ti8148_evm_config[] __initdata = { }; @@ -38,6 +46,7 @@ static void __init ti8148_evm_init(void) omap_serial_init(); omap_board_config = ti8148_evm_config; omap_board_config_size = ARRAY_SIZE(ti8148_evm_config); + usb_musb_init(&musb_board_data); } static void __init ti8148_evm_map_io(void) -- 1.6.2.4