omap.h 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /*
  2. * This header provides constants for OMAP pinctrl bindings.
  3. *
  4. * Copyright (C) 2009 Nokia
  5. * Copyright (C) 2009-2010 Texas Instruments
  6. */
  7. #ifndef _DT_BINDINGS_PINCTRL_OMAP_H
  8. #define _DT_BINDINGS_PINCTRL_OMAP_H
  9. /* 34xx mux mode options for each pin. See TRM for options */
  10. #define MUX_MODE0 0
  11. #define MUX_MODE1 1
  12. #define MUX_MODE2 2
  13. #define MUX_MODE3 3
  14. #define MUX_MODE4 4
  15. #define MUX_MODE5 5
  16. #define MUX_MODE6 6
  17. #define MUX_MODE7 7
  18. /* 24xx/34xx mux bit defines */
  19. #define PULL_ENA (1 << 3)
  20. #define PULL_UP (1 << 4)
  21. #define ALTELECTRICALSEL (1 << 5)
  22. /* 34xx specific mux bit defines */
  23. #define INPUT_EN (1 << 8)
  24. #define OFF_EN (1 << 9)
  25. #define OFFOUT_EN (1 << 10)
  26. #define OFFOUT_VAL (1 << 11)
  27. #define OFF_PULL_EN (1 << 12)
  28. #define OFF_PULL_UP (1 << 13)
  29. #define WAKEUP_EN (1 << 14)
  30. /* 44xx specific mux bit defines */
  31. #define WAKEUP_EVENT (1 << 15)
  32. /* Active pin states */
  33. #define PIN_OUTPUT 0
  34. #define PIN_OUTPUT_PULLUP (PIN_OUTPUT | PULL_ENA | PULL_UP)
  35. #define PIN_OUTPUT_PULLDOWN (PIN_OUTPUT | PULL_ENA)
  36. #define PIN_INPUT INPUT_EN
  37. #define PIN_INPUT_PULLUP (PULL_ENA | INPUT_EN | PULL_UP)
  38. #define PIN_INPUT_PULLDOWN (PULL_ENA | INPUT_EN)
  39. /* Off mode states */
  40. #define PIN_OFF_NONE 0
  41. #define PIN_OFF_OUTPUT_HIGH (OFF_EN | OFFOUT_EN | OFFOUT_VAL)
  42. #define PIN_OFF_OUTPUT_LOW (OFF_EN | OFFOUT_EN)
  43. #define PIN_OFF_INPUT_PULLUP (OFF_EN | OFF_PULL_EN | OFF_PULL_UP)
  44. #define PIN_OFF_INPUT_PULLDOWN (OFF_EN | OFF_PULL_EN)
  45. #define PIN_OFF_WAKEUPENABLE WAKEUP_EN
  46. #endif