Skip to content

Commit 65546ab

Browse files
committed
Merge tag 'omap-for-v3.7-rc5/fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap into fixes
From Tony Lindgren: Few more regression fixes related to u-boot only muxing essential pins. * tag 'omap-for-v3.7-rc5/fixes-signed' of git://git.kernel.org/pub/scm/linux/kernel/git/tmlind/linux-omap: ARM: OMAP4: TWL: mux sys_drm_msecure as output for PMIC ARM: OMAP3: igep0020: Set WIFI/BT GPIO pins in correct mux mode ARM: OMAP: Add maintainer entry for IGEP machines
2 parents b305555 + 1ef4336 commit 65546ab

File tree

3 files changed

+14
-0
lines changed

3 files changed

+14
-0
lines changed

MAINTAINERS

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -841,6 +841,14 @@ T: git git://git.kernel.org/pub/scm/linux/kernel/git/kristoffer/linux-hpc.git
841841
F: arch/arm/mach-sa1100/jornada720.c
842842
F: arch/arm/mach-sa1100/include/mach/jornada720.h
843843

844+
ARM/IGEP MACHINE SUPPORT
845+
M: Enric Balletbo i Serra <eballetbo@gmail.com>
846+
M: Javier Martinez Canillas <javier@dowhile0.org>
847+
L: linux-omap@vger.kernel.org
848+
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
849+
S: Maintained
850+
F: arch/arm/mach-omap2/board-igep0020.c
851+
844852
ARM/INCOME PXA270 SUPPORT
845853
M: Marek Vasut <marek.vasut@gmail.com>
846854
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)

arch/arm/mach-omap2/board-igep0020.c

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -580,6 +580,11 @@ static void __init igep_wlan_bt_init(void)
580580
} else
581581
return;
582582

583+
/* Make sure that the GPIO pins are muxed correctly */
584+
omap_mux_init_gpio(igep_wlan_bt_gpios[0].gpio, OMAP_PIN_OUTPUT);
585+
omap_mux_init_gpio(igep_wlan_bt_gpios[1].gpio, OMAP_PIN_OUTPUT);
586+
omap_mux_init_gpio(igep_wlan_bt_gpios[2].gpio, OMAP_PIN_OUTPUT);
587+
583588
err = gpio_request_array(igep_wlan_bt_gpios,
584589
ARRAY_SIZE(igep_wlan_bt_gpios));
585590
if (err) {

arch/arm/mach-omap2/twl-common.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ void __init omap4_pmic_init(const char *pmic_type,
7373
{
7474
/* PMIC part*/
7575
omap_mux_init_signal("sys_nirq1", OMAP_PIN_INPUT_PULLUP | OMAP_PIN_OFF_WAKEUPENABLE);
76+
omap_mux_init_signal("fref_clk0_out.sys_drm_msecure", OMAP_PIN_OUTPUT);
7677
omap_pmic_init(1, 400, pmic_type, 7 + OMAP44XX_IRQ_GIC_START, pmic_data);
7778

7879
/* Register additional devices on i2c1 bus if needed */

0 commit comments

Comments
 (0)