tegra186-hsp.h 630 B

123456789101112131415161718192021222324
  1. /*
  2. * This header provides constants for binding nvidia,tegra186-hsp.
  3. */
  4. #ifndef _DT_BINDINGS_MAILBOX_TEGRA186_HSP_H
  5. #define _DT_BINDINGS_MAILBOX_TEGRA186_HSP_H
  6. /*
  7. * These define the type of mailbox that is to be used (doorbell, shared
  8. * mailbox, shared semaphore or arbitrated semaphore).
  9. */
  10. #define TEGRA_HSP_MBOX_TYPE_DB 0x0
  11. #define TEGRA_HSP_MBOX_TYPE_SM 0x1
  12. #define TEGRA_HSP_MBOX_TYPE_SS 0x2
  13. #define TEGRA_HSP_MBOX_TYPE_AS 0x3
  14. /*
  15. * These defines represent the bit associated with the given master ID in the
  16. * doorbell registers.
  17. */
  18. #define TEGRA_HSP_DB_MASTER_CCPLEX 17
  19. #define TEGRA_HSP_DB_MASTER_BPMP 19
  20. #endif