mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-02 08:34:20 +08:00
d2912cb15b
Based on 2 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation this program is free software you can redistribute it and or modify it under the terms of the gnu general public license version 2 as published by the free software foundation # extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 4122 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Enrico Weigelt <info@metux.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Reviewed-by: Allison Randal <allison@lohutok.net> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190604081206.933168790@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
36 lines
888 B
Plaintext
36 lines
888 B
Plaintext
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
|
|
*/
|
|
|
|
&twl {
|
|
/*
|
|
* On most OMAP4 platforms, the twl6030 IRQ line is connected
|
|
* to the SYS_NIRQ1 line on OMAP and the twl6030 MSECURE line is
|
|
* connected to the fref_clk0_out.sys_drm_msecure line.
|
|
* Therefore, configure the defaults for the SYS_NIRQ1 and
|
|
* fref_clk0_out.sys_drm_msecure pins here.
|
|
*/
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <
|
|
&twl6030_pins
|
|
&twl6030_wkup_pins
|
|
>;
|
|
};
|
|
|
|
&omap4_pmx_wkup {
|
|
twl6030_wkup_pins: pinmux_twl6030_wkup_pins {
|
|
pinctrl-single,pins = <
|
|
OMAP4_IOPAD(0x054, PIN_OUTPUT | MUX_MODE2) /* fref_clk0_out.sys_drm_msecure */
|
|
>;
|
|
};
|
|
};
|
|
|
|
&omap4_pmx_core {
|
|
twl6030_pins: pinmux_twl6030_pins {
|
|
pinctrl-single,pins = <
|
|
OMAP4_IOPAD(0x19e, WAKEUP_EN | PIN_INPUT_PULLUP | MUX_MODE0) /* sys_nirq1.sys_nirq1 */
|
|
>;
|
|
};
|
|
};
|