lpc11u6x-pinctrl.h 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright (c) 2020 Seagate Technology LLC
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_DT_BINDINGS_LPC11U6X_PINCTRL_H_
  7. #define ZEPHYR_INCLUDE_DT_BINDINGS_LPC11U6X_PINCTRL_H_
  8. /**
  9. * @brief Pin control register for standard digital I/O pins:
  10. *
  11. * [0:2] function.
  12. * [3:4] mode.
  13. * [5] hysteresis.
  14. * [6] invert input.
  15. * [7:9] reserved.
  16. * [10] open-drain mode.
  17. * [11:12] digital filter sample mode.
  18. * [13:15] clock divisor.
  19. * [16:31] reserved.
  20. */
  21. /**
  22. * @brief Control registers for digital/analog I/O pins:
  23. *
  24. * [0:2] function.
  25. * [3:4] mode.
  26. * [5] hysteresis.
  27. * [6] invert input.
  28. * [7] analog mode.
  29. * [8] input glitch filter.
  30. * [9] reserved.
  31. * [10] open-drain mode.
  32. * [11:12] digital filter sample mode.
  33. * [13:15] clock divisor.
  34. * [16:31] reserved.
  35. */
  36. /**
  37. * @brief Control registers for open-drain I/O pins (I2C):
  38. *
  39. * [0:2] function.
  40. * [3:7] reserved.
  41. * [8:9] I2C mode.
  42. * [10] reserved.
  43. * [11:12] digital filter sample mode.
  44. * [13:15] clock divisor.
  45. * [16:31] reserved.
  46. */
  47. #define IOCON_FUNC0 0
  48. #define IOCON_FUNC1 1
  49. #define IOCON_FUNC2 2
  50. #define IOCON_FUNC3 3
  51. #define IOCON_FUNC4 4
  52. #define IOCON_FUNC5 5
  53. #define IOCON_MODE_INACT (0 << 3) /* No pull resistor. */
  54. #define IOCON_MODE_PULLDOWN (1 << 3) /* Enable pull-down resistor. */
  55. #define IOCON_MODE_PULLUP (2 << 3) /* Enable Pull-up resistor. */
  56. #define IOCON_MODE_REPEATER (3 << 3) /* Repeater mode. */
  57. #define IOCON_HYS_EN (1 << 5) /* Enable hysteresis. */
  58. #define IOCON_INV_EN (1 << 6) /* Invert input polarity. */
  59. /* Only for analog pins. */
  60. #define IOCON_ADMODE_EN (0 << 7) /* Enable analog input mode. */
  61. #define IOCON_DIGMODE_EN (1 << 7) /* Enable digital I/O mode. */
  62. #define IOCON_FILTR_DIS (1 << 8) /* Disable noise filtering. */
  63. /* Only for open-drain pins (I2C). */
  64. #define IOCON_SFI2C_EN (0 << 8) /* I2C standard mode / Fast-mode. */
  65. #define IOCON_STDI2C_EN (1 << 8) /* GPIO functionality. */
  66. #define IOCON_FASTI2C_EN (2 << 8) /* I2C Fast-mode Plus. */
  67. #define IOCON_OPENDRAIN_EN (1 << 10) /* Enable open-drain mode. */
  68. /*
  69. * The digital filter mode allows to discard input pulses shorter than
  70. * 1, 2 or 3 clock cycles.
  71. */
  72. #define IOCON_S_MODE_0CLK (0 << 11) /* No input filter. */
  73. #define IOCON_S_MODE_1CLK (1 << 11)
  74. #define IOCON_S_MODE_2CLK (2 << 11)
  75. #define IOCON_S_MODE_3CLK (3 << 11)
  76. /*
  77. * Clock divisor.
  78. */
  79. #define IOCON_CLKDIV0 (0 << 13)
  80. #define IOCON_CLKDIV1 (1 << 13)
  81. #define IOCON_CLKDIV2 (2 << 13)
  82. #define IOCON_CLKDIV3 (3 << 13)
  83. #define IOCON_CLKDIV4 (4 << 13)
  84. #define IOCON_CLKDIV5 (5 << 13)
  85. #define IOCON_CLKDIV6 (6 << 13)
  86. #endif /* ZEPHYR_INCLUDE_DT_BINDINGS_LPC11U6X_PINCTRL_H_ */