twl6030_omap4.dtsi 888 B

1234567891011121314151617181920212223242526272829303132333435
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (C) 2013 Texas Instruments Incorporated - http://www.ti.com/
  4. */
  5. &twl {
  6. /*
  7. * On most OMAP4 platforms, the twl6030 IRQ line is connected
  8. * to the SYS_NIRQ1 line on OMAP and the twl6030 MSECURE line is
  9. * connected to the fref_clk0_out.sys_drm_msecure line.
  10. * Therefore, configure the defaults for the SYS_NIRQ1 and
  11. * fref_clk0_out.sys_drm_msecure pins here.
  12. */
  13. pinctrl-names = "default";
  14. pinctrl-0 = <
  15. &twl6030_pins
  16. &twl6030_wkup_pins
  17. >;
  18. };
  19. &omap4_pmx_wkup {
  20. twl6030_wkup_pins: pinmux_twl6030_wkup_pins {
  21. pinctrl-single,pins = <
  22. OMAP4_IOPAD(0x054, PIN_OUTPUT | MUX_MODE2) /* fref_clk0_out.sys_drm_msecure */
  23. >;
  24. };
  25. };
  26. &omap4_pmx_core {
  27. twl6030_pins: pinmux_twl6030_pins {
  28. pinctrl-single,pins = <
  29. OMAP4_IOPAD(0x19e, WAKEUP_EN | PIN_INPUT_PULLUP | MUX_MODE0) /* sys_nirq1.sys_nirq1 */
  30. >;
  31. };
  32. };