Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 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 | |
| 27 | /* Definitions of GuC H/W registers, bits, etc */ |
| 28 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 29 | #define GUC_STATUS _MMIO(0xc000) |
Dave Gordon | d761701 | 2016-04-04 18:50:57 +0100 | [diff] [blame] | 30 | #define GS_RESET_SHIFT 0 |
| 31 | #define GS_MIA_IN_RESET (0x01 << GS_RESET_SHIFT) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 32 | #define GS_BOOTROM_SHIFT 1 |
| 33 | #define GS_BOOTROM_MASK (0x7F << GS_BOOTROM_SHIFT) |
| 34 | #define GS_BOOTROM_RSA_FAILED (0x50 << GS_BOOTROM_SHIFT) |
Dave Gordon | d761701 | 2016-04-04 18:50:57 +0100 | [diff] [blame] | 35 | #define GS_BOOTROM_JUMP_PASSED (0x76 << GS_BOOTROM_SHIFT) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 36 | #define GS_UKERNEL_SHIFT 8 |
| 37 | #define GS_UKERNEL_MASK (0xFF << GS_UKERNEL_SHIFT) |
| 38 | #define GS_UKERNEL_LAPIC_DONE (0x30 << GS_UKERNEL_SHIFT) |
| 39 | #define GS_UKERNEL_DPC_ERROR (0x60 << GS_UKERNEL_SHIFT) |
| 40 | #define GS_UKERNEL_READY (0xF0 << GS_UKERNEL_SHIFT) |
| 41 | #define GS_MIA_SHIFT 16 |
| 42 | #define GS_MIA_MASK (0x07 << GS_MIA_SHIFT) |
Dave Gordon | d761701 | 2016-04-04 18:50:57 +0100 | [diff] [blame] | 43 | #define GS_MIA_CORE_STATE (0x01 << GS_MIA_SHIFT) |
| 44 | #define GS_MIA_HALT_REQUESTED (0x02 << GS_MIA_SHIFT) |
| 45 | #define GS_MIA_ISR_ENTRY (0x04 << GS_MIA_SHIFT) |
| 46 | #define GS_AUTH_STATUS_SHIFT 30 |
| 47 | #define GS_AUTH_STATUS_MASK (0x03 << GS_AUTH_STATUS_SHIFT) |
| 48 | #define GS_AUTH_STATUS_BAD (0x01 << GS_AUTH_STATUS_SHIFT) |
| 49 | #define GS_AUTH_STATUS_GOOD (0x02 << GS_AUTH_STATUS_SHIFT) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 50 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 51 | #define SOFT_SCRATCH(n) _MMIO(0xc180 + (n) * 4) |
Alex Dai | 68371a9 | 2015-12-18 12:00:09 -0800 | [diff] [blame] | 52 | #define SOFT_SCRATCH_COUNT 16 |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 53 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 54 | #define UOS_RSA_SCRATCH(i) _MMIO(0xc200 + (i) * 4) |
Alex Dai | feda33e | 2015-10-19 16:10:54 -0700 | [diff] [blame] | 55 | #define UOS_RSA_SCRATCH_MAX_COUNT 64 |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 56 | #define DMA_ADDR_0_LOW _MMIO(0xc300) |
| 57 | #define DMA_ADDR_0_HIGH _MMIO(0xc304) |
| 58 | #define DMA_ADDR_1_LOW _MMIO(0xc308) |
| 59 | #define DMA_ADDR_1_HIGH _MMIO(0xc30c) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 60 | #define DMA_ADDRESS_SPACE_WOPCM (7 << 16) |
| 61 | #define DMA_ADDRESS_SPACE_GTT (8 << 16) |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 62 | #define DMA_COPY_SIZE _MMIO(0xc310) |
| 63 | #define DMA_CTRL _MMIO(0xc314) |
Anusha Srivatsa | bd13285 | 2017-01-18 08:05:53 -0800 | [diff] [blame] | 64 | #define HUC_UKERNEL (1<<9) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 65 | #define UOS_MOVE (1<<4) |
| 66 | #define START_DMA (1<<0) |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 67 | #define DMA_GUC_WOPCM_OFFSET _MMIO(0xc340) |
Anusha Srivatsa | bd13285 | 2017-01-18 08:05:53 -0800 | [diff] [blame] | 68 | #define HUC_LOADING_AGENT_VCR (0<<1) |
| 69 | #define HUC_LOADING_AGENT_GUC (1<<1) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 70 | #define GUC_WOPCM_OFFSET_VALUE 0x80000 /* 512KB */ |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 71 | #define GUC_MAX_IDLE_COUNT _MMIO(0xC3E4) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 72 | |
Anusha Srivatsa | bd13285 | 2017-01-18 08:05:53 -0800 | [diff] [blame] | 73 | #define HUC_STATUS2 _MMIO(0xD3B0) |
| 74 | #define HUC_FW_VERIFIED (1<<7) |
| 75 | |
Peter Antoine | 74aa156ba | 2016-05-17 15:12:45 +0100 | [diff] [blame] | 76 | /* Defines WOPCM space available to GuC firmware */ |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 77 | #define GUC_WOPCM_SIZE _MMIO(0xc050) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 78 | /* GuC addresses below GUC_WOPCM_TOP don't map through the GTT */ |
Peter Antoine | 74aa156ba | 2016-05-17 15:12:45 +0100 | [diff] [blame] | 79 | #define GUC_WOPCM_TOP (0x80 << 12) /* 512KB */ |
| 80 | #define BXT_GUC_WOPCM_RC6_RESERVED (0x10 << 12) /* 64KB */ |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 81 | |
Chris Wilson | db9309a | 2017-01-05 15:30:23 +0000 | [diff] [blame] | 82 | /* GuC addresses above GUC_GGTT_TOP also don't map through the GTT */ |
| 83 | #define GUC_GGTT_TOP 0xFEE00000 |
| 84 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 85 | #define GEN8_GT_PM_CONFIG _MMIO(0x138140) |
| 86 | #define GEN9LP_GT_PM_CONFIG _MMIO(0x138140) |
| 87 | #define GEN9_GT_PM_CONFIG _MMIO(0x13816c) |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 88 | #define GT_DOORBELL_ENABLE (1<<0) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 89 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 90 | #define GEN8_GTCR _MMIO(0x4274) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 91 | #define GEN8_GTCR_INVALIDATE (1<<0) |
| 92 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 93 | #define GUC_ARAT_C6DIS _MMIO(0xA178) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 94 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 95 | #define GUC_SHIM_CONTROL _MMIO(0xc064) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 96 | #define GUC_DISABLE_SRAM_INIT_TO_ZEROES (1<<0) |
| 97 | #define GUC_ENABLE_READ_CACHE_LOGIC (1<<1) |
| 98 | #define GUC_ENABLE_MIA_CACHING (1<<2) |
| 99 | #define GUC_GEN10_MSGCH_ENABLE (1<<4) |
| 100 | #define GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA (1<<9) |
| 101 | #define GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA (1<<10) |
| 102 | #define GUC_ENABLE_MIA_CLOCK_GATING (1<<15) |
| 103 | #define GUC_GEN10_SHIM_WC_ENABLE (1<<21) |
| 104 | |
| 105 | #define GUC_SHIM_CONTROL_VALUE (GUC_DISABLE_SRAM_INIT_TO_ZEROES | \ |
| 106 | GUC_ENABLE_READ_CACHE_LOGIC | \ |
| 107 | GUC_ENABLE_MIA_CACHING | \ |
| 108 | GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA | \ |
Alex Dai | 33a732f | 2015-08-12 15:43:36 +0100 | [diff] [blame] | 109 | GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA | \ |
| 110 | GUC_ENABLE_MIA_CLOCK_GATING) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 111 | |
Arkadiusz Hiler | a80bc45 | 2016-11-25 18:59:34 +0100 | [diff] [blame] | 112 | #define GUC_SEND_INTERRUPT _MMIO(0xc4c8) |
| 113 | #define GUC_SEND_TRIGGER (1<<0) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 114 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 115 | #define GEN8_DRBREGL(x) _MMIO(0x1000 + (x) * 8) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 116 | #define GEN8_DRB_VALID (1<<0) |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 117 | #define GEN8_DRBREGU(x) _MMIO(0x1000 + (x) * 8 + 4) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 118 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 119 | #define DE_GUCRMR _MMIO(0x44054) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 120 | |
Ville Syrjälä | f0f59a0 | 2015-11-18 15:33:26 +0200 | [diff] [blame] | 121 | #define GUC_BCS_RCS_IER _MMIO(0xC550) |
| 122 | #define GUC_VCS2_VCS1_IER _MMIO(0xC554) |
| 123 | #define GUC_WD_VECS_IER _MMIO(0xC558) |
| 124 | #define GUC_PM_P24C_IER _MMIO(0xC55C) |
Dave Gordon | 2617268 | 2015-07-09 19:29:04 +0100 | [diff] [blame] | 125 | |
| 126 | #endif |