rcb.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /*
  3. * Copyright (c) 2016 Google, Inc
  4. */
  5. #ifndef __asm_arch_rcba_h
  6. #define __asm_arch_rcba_h
  7. #define PMSYNC_CONFIG 0x33c4 /* 32bit */
  8. #define PMSYNC_CONFIG2 0x33cc /* 32bit */
  9. #define DEEP_S3_POL 0x3328 /* 32bit */
  10. #define DEEP_S3_EN_AC (1 << 0)
  11. #define DEEP_S3_EN_DC (1 << 1)
  12. #define DEEP_S5_POL 0x3330 /* 32bit */
  13. #define DEEP_S5_EN_AC (1 << 14)
  14. #define DEEP_S5_EN_DC (1 << 15)
  15. #define DEEP_SX_CONFIG 0x3334 /* 32bit */
  16. #define DEEP_SX_WAKE_PIN_EN (1 << 2)
  17. #define DEEP_SX_ACPRESENT_PD (1 << 1)
  18. #define DEEP_SX_GP27_PIN_EN (1 << 0)
  19. #define PMSYNC_CONFIG 0x33c4 /* 32bit */
  20. #define PMSYNC_CONFIG2 0x33cc /* 32bit */
  21. #define RC 0x3400 /* 32bit */
  22. #define HPTC 0x3404 /* 32bit */
  23. #define GCS 0x3410 /* 32bit */
  24. #define BUC 0x3414 /* 32bit */
  25. #define PCH_DISABLE_GBE (1 << 5)
  26. #define FD 0x3418 /* 32bit */
  27. #define FDSW 0x3420 /* 8bit */
  28. #define DISPBDF 0x3424 /* 16bit */
  29. #define FD2 0x3428 /* 32bit */
  30. #define CG 0x341c /* 32bit */
  31. /* Function Disable 1 RCBA 0x3418 */
  32. #define PCH_DISABLE_ALWAYS (1 << 0)
  33. #define PCH_DISABLE_ADSPD (1 << 1)
  34. #define PCH_DISABLE_SATA1 (1 << 2)
  35. #define PCH_DISABLE_SMBUS (1 << 3)
  36. #define PCH_DISABLE_HD_AUDIO (1 << 4)
  37. #define PCH_DISABLE_EHCI2 (1 << 13)
  38. #define PCH_DISABLE_LPC (1 << 14)
  39. #define PCH_DISABLE_EHCI1 (1 << 15)
  40. #define PCH_DISABLE_PCIE(x) (1 << (16 + x))
  41. #define PCH_DISABLE_THERMAL (1 << 24)
  42. #define PCH_DISABLE_SATA2 (1 << 25)
  43. #define PCH_DISABLE_XHCI (1 << 27)
  44. /* Function Disable 2 RCBA 0x3428 */
  45. #define PCH_DISABLE_KT (1 << 4)
  46. #define PCH_DISABLE_IDER (1 << 3)
  47. #define PCH_DISABLE_MEI2 (1 << 2)
  48. #define PCH_DISABLE_MEI1 (1 << 1)
  49. #define PCH_ENABLE_DBDF (1 << 0)
  50. #endif