i915_guc_reg.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * Copyright © 2014 Intel Corporation
  3. *
  4. * Permission is hereby granted, free of charge, to any person obtaining a
  5. * copy of this software and associated documentation files (the "Software"),
  6. * to deal in the Software without restriction, including without limitation
  7. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  8. * and/or sell copies of the Software, and to permit persons to whom the
  9. * Software is furnished to do so, subject to the following conditions:
  10. *
  11. * The above copyright notice and this permission notice (including the next
  12. * paragraph) shall be included in all copies or substantial portions of the
  13. * Software.
  14. *
  15. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  16. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  17. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  18. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  19. * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  20. * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  21. * IN THE SOFTWARE.
  22. *
  23. */
  24. #ifndef _I915_GUC_REG_H_
  25. #define _I915_GUC_REG_H_
  26. /* Definitions of GuC H/W registers, bits, etc */
  27. #define GUC_STATUS 0xc000
  28. #define GS_BOOTROM_SHIFT 1
  29. #define GS_BOOTROM_MASK (0x7F << GS_BOOTROM_SHIFT)
  30. #define GS_BOOTROM_RSA_FAILED (0x50 << GS_BOOTROM_SHIFT)
  31. #define GS_UKERNEL_SHIFT 8
  32. #define GS_UKERNEL_MASK (0xFF << GS_UKERNEL_SHIFT)
  33. #define GS_UKERNEL_LAPIC_DONE (0x30 << GS_UKERNEL_SHIFT)
  34. #define GS_UKERNEL_DPC_ERROR (0x60 << GS_UKERNEL_SHIFT)
  35. #define GS_UKERNEL_READY (0xF0 << GS_UKERNEL_SHIFT)
  36. #define GS_MIA_SHIFT 16
  37. #define GS_MIA_MASK (0x07 << GS_MIA_SHIFT)
  38. #define GUC_WOPCM_SIZE 0xc050
  39. #define GUC_WOPCM_SIZE_VALUE (0x80 << 12) /* 512KB */
  40. #define GUC_WOPCM_OFFSET 0x80000 /* 512KB */
  41. #define SOFT_SCRATCH(n) (0xc180 + ((n) * 4))
  42. #define UOS_RSA_SCRATCH_0 0xc200
  43. #define DMA_ADDR_0_LOW 0xc300
  44. #define DMA_ADDR_0_HIGH 0xc304
  45. #define DMA_ADDR_1_LOW 0xc308
  46. #define DMA_ADDR_1_HIGH 0xc30c
  47. #define DMA_ADDRESS_SPACE_WOPCM (7 << 16)
  48. #define DMA_ADDRESS_SPACE_GTT (8 << 16)
  49. #define DMA_COPY_SIZE 0xc310
  50. #define DMA_CTRL 0xc314
  51. #define UOS_MOVE (1<<4)
  52. #define START_DMA (1<<0)
  53. #define DMA_GUC_WOPCM_OFFSET 0xc340
  54. #define GEN8_GT_PM_CONFIG 0x138140
  55. #define GEN9_GT_PM_CONFIG 0x13816c
  56. #define GEN8_GT_DOORBELL_ENABLE (1<<0)
  57. #define GEN8_GTCR 0x4274
  58. #define GEN8_GTCR_INVALIDATE (1<<0)
  59. #define GUC_ARAT_C6DIS 0xA178
  60. #define GUC_SHIM_CONTROL 0xc064
  61. #define GUC_DISABLE_SRAM_INIT_TO_ZEROES (1<<0)
  62. #define GUC_ENABLE_READ_CACHE_LOGIC (1<<1)
  63. #define GUC_ENABLE_MIA_CACHING (1<<2)
  64. #define GUC_GEN10_MSGCH_ENABLE (1<<4)
  65. #define GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA (1<<9)
  66. #define GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA (1<<10)
  67. #define GUC_ENABLE_MIA_CLOCK_GATING (1<<15)
  68. #define GUC_GEN10_SHIM_WC_ENABLE (1<<21)
  69. #define GUC_SHIM_CONTROL_VALUE (GUC_DISABLE_SRAM_INIT_TO_ZEROES | \
  70. GUC_ENABLE_READ_CACHE_LOGIC | \
  71. GUC_ENABLE_MIA_CACHING | \
  72. GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA | \
  73. GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA)
  74. #define HOST2GUC_INTERRUPT 0xc4c8
  75. #define HOST2GUC_TRIGGER (1<<0)
  76. #define DRBMISC1 0x1984
  77. #define DOORBELL_ENABLE (1<<0)
  78. #define GEN8_DRBREGL(x) (0x1000 + (x) * 8)
  79. #define GEN8_DRB_VALID (1<<0)
  80. #define GEN8_DRBREGU(x) (GEN8_DRBREGL(x) + 4)
  81. #define DE_GUCRMR 0x44054
  82. #define GUC_BCS_RCS_IER 0xC550
  83. #define GUC_VCS2_VCS1_IER 0xC554
  84. #define GUC_WD_VECS_IER 0xC558
  85. #define GUC_PM_P24C_IER 0xC55C
  86. #endif