Skip to content

Commit 5a90316

Browse files
committed
Merge tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull ARM SoC fixes from Olof Johansson: "A few more fixes for final 3.7. Two dealing with pinmux setup on OMAP, and one dealing with TV output on DaVinci. And one small MAINTAINER update." * tag 'fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: ARM: davinci: dm644x: fix out range signal for ED 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 b80d60e + 65546ab commit 5a90316

File tree

4 files changed

+15
-2
lines changed

4 files changed

+15
-2
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-davinci/dm644x.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -713,8 +713,7 @@ static int dm644x_venc_setup_clock(enum vpbe_enc_timings_type type,
713713
break;
714714
case VPBE_ENC_CUSTOM_TIMINGS:
715715
if (pclock <= 27000000) {
716-
v |= DM644X_VPSS_MUXSEL_PLL2_MODE |
717-
DM644X_VPSS_DACCLKEN;
716+
v |= DM644X_VPSS_DACCLKEN;
718717
writel(v, DAVINCI_SYSMOD_VIRT(SYSMOD_VPSS_CLKCTL));
719718
} else {
720719
/*

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)