omap.h 1.4 KB

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