iomux-v3.h 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129
  1. /*
  2. * Based on Linux i.MX iomux-v3.h file:
  3. * Copyright (C) 2009 by Jan Weitzel Phytec Messtechnik GmbH,
  4. * <armlinux@phytec.de>
  5. *
  6. * Copyright (C) 2011 Freescale Semiconductor, Inc.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License
  10. * as published by the Free Software Foundation; either version 2
  11. * of the License, or (at your option) any later version.
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  20. * MA 02110-1301, USA.
  21. */
  22. #ifndef __MACH_IOMUX_V3_H__
  23. #define __MACH_IOMUX_V3_H__
  24. /*
  25. * build IOMUX_PAD structure
  26. *
  27. * This iomux scheme is based around pads, which are the physical balls
  28. * on the processor.
  29. *
  30. * - Each pad has a pad control register (IOMUXC_SW_PAD_CTRL_x) which controls
  31. * things like driving strength and pullup/pulldown.
  32. * - Each pad can have but not necessarily does have an output routing register
  33. * (IOMUXC_SW_MUX_CTL_PAD_x).
  34. * - Each pad can have but not necessarily does have an input routing register
  35. * (IOMUXC_x_SELECT_INPUT)
  36. *
  37. * The three register sets do not have a fixed offset to each other,
  38. * hence we order this table by pad control registers (which all pads
  39. * have) and put the optional i/o routing registers into additional
  40. * fields.
  41. *
  42. * The naming convention for the pad modes is SOC_PAD_<padname>__<padmode>
  43. * If <padname> or <padmode> refers to a GPIO, it is named GPIO_<unit>_<num>
  44. *
  45. * IOMUX/PAD Bit field definitions
  46. *
  47. * MUX_CTRL_OFS: 0..11 (12)
  48. * PAD_CTRL_OFS: 12..23 (12)
  49. * SEL_INPUT_OFS: 24..35 (12)
  50. * MUX_MODE + SION: 36..40 (5)
  51. * PAD_CTRL + NO_PAD_CTRL: 41..58 (18)
  52. * SEL_INP: 59..62 (4)
  53. * reserved: 63 (1)
  54. */
  55. typedef u64 iomux_v3_cfg_t;
  56. #define MUX_CTRL_OFS_SHIFT 0
  57. #define MUX_CTRL_OFS_MASK ((iomux_v3_cfg_t)0xfff << MUX_CTRL_OFS_SHIFT)
  58. #define MUX_PAD_CTRL_OFS_SHIFT 12
  59. #define MUX_PAD_CTRL_OFS_MASK ((iomux_v3_cfg_t)0xfff << \
  60. MUX_PAD_CTRL_OFS_SHIFT)
  61. #define MUX_SEL_INPUT_OFS_SHIFT 24
  62. #define MUX_SEL_INPUT_OFS_MASK ((iomux_v3_cfg_t)0xfff << \
  63. MUX_SEL_INPUT_OFS_SHIFT)
  64. #define MUX_MODE_SHIFT 36
  65. #define MUX_MODE_MASK ((iomux_v3_cfg_t)0x1f << MUX_MODE_SHIFT)
  66. #define MUX_PAD_CTRL_SHIFT 41
  67. #define MUX_PAD_CTRL_MASK ((iomux_v3_cfg_t)0x3ffff << MUX_PAD_CTRL_SHIFT)
  68. #define MUX_SEL_INPUT_SHIFT 59
  69. #define MUX_SEL_INPUT_MASK ((iomux_v3_cfg_t)0xf << MUX_SEL_INPUT_SHIFT)
  70. #define MUX_PAD_CTRL(x) ((iomux_v3_cfg_t)(x) << MUX_PAD_CTRL_SHIFT)
  71. #define IOMUX_PAD(pad_ctrl_ofs, mux_ctrl_ofs, mux_mode, sel_input_ofs, \
  72. sel_input, pad_ctrl) \
  73. (((iomux_v3_cfg_t)(mux_ctrl_ofs) << MUX_CTRL_OFS_SHIFT) | \
  74. ((iomux_v3_cfg_t)(mux_mode) << MUX_MODE_SHIFT) | \
  75. ((iomux_v3_cfg_t)(pad_ctrl_ofs) << MUX_PAD_CTRL_OFS_SHIFT) | \
  76. ((iomux_v3_cfg_t)(pad_ctrl) << MUX_PAD_CTRL_SHIFT) | \
  77. ((iomux_v3_cfg_t)(sel_input_ofs) << MUX_SEL_INPUT_OFS_SHIFT)| \
  78. ((iomux_v3_cfg_t)(sel_input) << MUX_SEL_INPUT_SHIFT))
  79. #define NO_PAD_CTRL (1 << 17)
  80. #define GPIO_PIN_MASK 0x1f
  81. #define GPIO_PORT_SHIFT 5
  82. #define GPIO_PORT_MASK (0x7 << GPIO_PORT_SHIFT)
  83. #define GPIO_PORTA (0 << GPIO_PORT_SHIFT)
  84. #define GPIO_PORTB (1 << GPIO_PORT_SHIFT)
  85. #define GPIO_PORTC (2 << GPIO_PORT_SHIFT)
  86. #define GPIO_PORTD (3 << GPIO_PORT_SHIFT)
  87. #define GPIO_PORTE (4 << GPIO_PORT_SHIFT)
  88. #define GPIO_PORTF (5 << GPIO_PORT_SHIFT)
  89. #define PAD_CTL_HYS (1 << 16)
  90. #define PAD_CTL_PUS_100K_DOWN (0 << 14)
  91. #define PAD_CTL_PUS_47K_UP (1 << 14)
  92. #define PAD_CTL_PUS_100K_UP (2 << 14)
  93. #define PAD_CTL_PUS_22K_UP (3 << 14)
  94. #define PAD_CTL_PUE (1 << 13)
  95. #define PAD_CTL_PKE (1 << 12)
  96. #define PAD_CTL_ODE (1 << 11)
  97. #define PAD_CTL_SPEED_LOW (1 << 6)
  98. #define PAD_CTL_SPEED_MED (2 << 6)
  99. #define PAD_CTL_SPEED_HIGH (3 << 6)
  100. #define PAD_CTL_DSE_DISABLE (0 << 3)
  101. #define PAD_CTL_DSE_240ohm (1 << 3)
  102. #define PAD_CTL_DSE_120ohm (2 << 3)
  103. #define PAD_CTL_DSE_80ohm (3 << 3)
  104. #define PAD_CTL_DSE_60ohm (4 << 3)
  105. #define PAD_CTL_DSE_48ohm (5 << 3)
  106. #define PAD_CTL_DSE_40ohm (6 << 3)
  107. #define PAD_CTL_DSE_34ohm (7 << 3)
  108. #define PAD_CTL_SRE_FAST (1 << 0)
  109. #define PAD_CTL_SRE_SLOW (0 << 0)
  110. #define IOMUX_CONFIG_SION 0x10
  111. #define NO_MUX_I 0
  112. #define NO_PAD_I 0
  113. void imx_iomux_v3_setup_pad(iomux_v3_cfg_t pad);
  114. void imx_iomux_v3_setup_multiple_pads(iomux_v3_cfg_t const *pad_list,
  115. unsigned count);
  116. #endif /* __MACH_IOMUX_V3_H__*/