public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on IGEP v2
@ 2009-11-18 18:13 Enric Balletbo i Serra
  2009-11-18 18:13 ` [PATCH 2/3] omap3: Fix typo on IGEP v2 board Enric Balletbo i Serra
  2010-02-05  0:07 ` [APPLIED] [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on Tony Lindgren
  0 siblings, 2 replies; 4+ messages in thread
From: Enric Balletbo i Serra @ 2009-11-18 18:13 UTC (permalink / raw)
  To: linux-omap; +Cc: Enric Balletbo i Serra

From: Enric Balletbo i Serra <eballetbo@iseebcn.com>


Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
---
 arch/arm/mach-omap2/board-igep0020.c |   10 ++++++++++
 1 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c
index 44239e3..221b497 100644
--- a/arch/arm/mach-omap2/board-igep0020.c
+++ b/arch/arm/mach-omap2/board-igep0020.c
@@ -173,12 +173,22 @@ static void __init igep2_init_irq(void)
 	omap_gpio_init();
 }
 
+static struct twl4030_codec_audio_data igep2_audio_data = {
+	.audio_mclk = 26000000,
+};
+
+static struct twl4030_codec_data igep2_codec_data = {
+	.audio_mclk = 26000000,
+	.audio = &igep2_audio_data,
+};
+
 static struct twl4030_platform_data igep2_twldata = {
 	.irq_base	= TWL4030_IRQ_BASE,
 	.irq_end	= TWL4030_IRQ_END,
 
 	/* platform_data for children goes here */
 	.usb		= &igep2_usb_data,
+	.codec		= &igep2_codec_data,
 	.gpio		= &igep2_gpio_data,
 	.vmmc1          = &igep2_vmmc1,
 
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 2/3] omap3: Fix typo on IGEP v2 board
  2009-11-18 18:13 [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on IGEP v2 Enric Balletbo i Serra
@ 2009-11-18 18:13 ` Enric Balletbo i Serra
  2009-11-18 18:13   ` [PATCH 3/3] omap3: Add platform init code for EHCI driver on IGEP v2 Enric Balletbo i Serra
  2010-02-05  0:07 ` [APPLIED] [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on Tony Lindgren
  1 sibling, 1 reply; 4+ messages in thread
From: Enric Balletbo i Serra @ 2009-11-18 18:13 UTC (permalink / raw)
  To: linux-omap; +Cc: Enric Balletbo i Serra

From: Enric Balletbo i Serra <eballetbo@iseebcn.com>


Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
---
 arch/arm/mach-omap2/Kconfig |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/arch/arm/mach-omap2/Kconfig b/arch/arm/mach-omap2/Kconfig
index 10eafa7..8726638 100644
--- a/arch/arm/mach-omap2/Kconfig
+++ b/arch/arm/mach-omap2/Kconfig
@@ -139,7 +139,7 @@ config MACH_CM_T35
 	select OMAP_MUX
 
 config MACH_IGEP0020
-	bool "IGEP0020"
+	bool "IGEP v2 board"
 	depends on ARCH_OMAP3 && ARCH_OMAP34XX
 	select OMAP_PACKAGE_CBB
 
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [PATCH 3/3] omap3: Add platform init code for EHCI driver on IGEP v2
  2009-11-18 18:13 ` [PATCH 2/3] omap3: Fix typo on IGEP v2 board Enric Balletbo i Serra
@ 2009-11-18 18:13   ` Enric Balletbo i Serra
  0 siblings, 0 replies; 4+ messages in thread
From: Enric Balletbo i Serra @ 2009-11-18 18:13 UTC (permalink / raw)
  To: linux-omap; +Cc: Enric Balletbo i Serra

From: Enric Balletbo i Serra <eballetbo@iseebcn.com>


Signed-off-by: Enric Balletbo i Serra <eballetbo@iseebcn.com>
---
 arch/arm/mach-omap2/board-igep0020.c |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c
index 221b497..76f0208 100644
--- a/arch/arm/mach-omap2/board-igep0020.c
+++ b/arch/arm/mach-omap2/board-igep0020.c
@@ -213,6 +213,17 @@ static int __init igep2_i2c_init(void)
 	return 0;
 }
 
+static struct ehci_hcd_omap_platform_data ehci_pdata __initconst = {
+	.port_mode[0] = EHCI_HCD_OMAP_MODE_UNKNOWN,
+	.port_mode[1] = EHCI_HCD_OMAP_MODE_PHY,
+	.port_mode[2] = EHCI_HCD_OMAP_MODE_UNKNOWN,
+
+	.phy_reset = true,
+	.reset_gpio_port[0] = -EINVAL,
+	.reset_gpio_port[1] = IGEP2_GPIO_USBH_NRESET,
+	.reset_gpio_port[2] = -EINVAL,
+};
+
 #ifdef CONFIG_OMAP_MUX
 static struct omap_board_mux board_mux[] __initdata = {
 	{ .reg_offset = OMAP_MUX_TERMINATOR },
@@ -227,6 +238,7 @@ static void __init igep2_init(void)
 	igep2_i2c_init();
 	omap_serial_init();
 	usb_musb_init();
+	usb_ehci_init(&ehci_pdata);
 
 	igep2_init_smsc911x();
 
-- 
1.5.4.3


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [APPLIED] [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on
  2009-11-18 18:13 [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on IGEP v2 Enric Balletbo i Serra
  2009-11-18 18:13 ` [PATCH 2/3] omap3: Fix typo on IGEP v2 board Enric Balletbo i Serra
@ 2010-02-05  0:07 ` Tony Lindgren
  1 sibling, 0 replies; 4+ messages in thread
From: Tony Lindgren @ 2010-02-05  0:07 UTC (permalink / raw)
  To: linux-omap

This patch has been applied to the linux-omap
by youw fwiendly patch wobot.

Branch in linux-omap: for-next

Initial commit ID (Likely to change): e72cab3cc5a7e2fb9808552bec63c6ebbd0c4809

PatchWorks
http://patchwork.kernel.org/patch/67321/

Git (Likely to change, and takes a while to get mirrored)
http://git.kernel.org/?p=linux/kernel/git/tmlind/linux-omap-2.6.git;a=commit;h=e72cab3cc5a7e2fb9808552bec63c6ebbd0c4809



^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2010-02-05  0:07 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-18 18:13 [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on IGEP v2 Enric Balletbo i Serra
2009-11-18 18:13 ` [PATCH 2/3] omap3: Fix typo on IGEP v2 board Enric Balletbo i Serra
2009-11-18 18:13   ` [PATCH 3/3] omap3: Add platform init code for EHCI driver on IGEP v2 Enric Balletbo i Serra
2010-02-05  0:07 ` [APPLIED] [PATCH 1/3] omap3: Add platform data for the twl4030_codec MFD on Tony Lindgren

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox