xref: /dflybsd-src/sys/dev/drm/i915/i915_guc_reg.h (revision a85cb24f18e3804e75ab8bcda7692564d0563317)
1a05eeebfSFrançois Tigeot /*
2a05eeebfSFrançois Tigeot  * Copyright © 2014 Intel Corporation
3a05eeebfSFrançois Tigeot  *
4a05eeebfSFrançois Tigeot  * Permission is hereby granted, free of charge, to any person obtaining a
5a05eeebfSFrançois Tigeot  * copy of this software and associated documentation files (the "Software"),
6a05eeebfSFrançois Tigeot  * to deal in the Software without restriction, including without limitation
7a05eeebfSFrançois Tigeot  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8a05eeebfSFrançois Tigeot  * and/or sell copies of the Software, and to permit persons to whom the
9a05eeebfSFrançois Tigeot  * Software is furnished to do so, subject to the following conditions:
10a05eeebfSFrançois Tigeot  *
11a05eeebfSFrançois Tigeot  * The above copyright notice and this permission notice (including the next
12a05eeebfSFrançois Tigeot  * paragraph) shall be included in all copies or substantial portions of the
13a05eeebfSFrançois Tigeot  * Software.
14a05eeebfSFrançois Tigeot  *
15a05eeebfSFrançois Tigeot  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16a05eeebfSFrançois Tigeot  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17a05eeebfSFrançois Tigeot  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
18a05eeebfSFrançois Tigeot  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19a05eeebfSFrançois Tigeot  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20a05eeebfSFrançois Tigeot  * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21a05eeebfSFrançois Tigeot  * IN THE SOFTWARE.
22a05eeebfSFrançois Tigeot  *
23a05eeebfSFrançois Tigeot  */
24a05eeebfSFrançois Tigeot #ifndef _I915_GUC_REG_H_
25a05eeebfSFrançois Tigeot #define _I915_GUC_REG_H_
26a05eeebfSFrançois Tigeot 
27a05eeebfSFrançois Tigeot /* Definitions of GuC H/W registers, bits, etc */
28a05eeebfSFrançois Tigeot 
29aee94f86SFrançois Tigeot #define GUC_STATUS			_MMIO(0xc000)
308621f407SFrançois Tigeot #define   GS_RESET_SHIFT		0
318621f407SFrançois Tigeot #define   GS_MIA_IN_RESET		  (0x01 << GS_RESET_SHIFT)
32a05eeebfSFrançois Tigeot #define   GS_BOOTROM_SHIFT		1
33a05eeebfSFrançois Tigeot #define   GS_BOOTROM_MASK		  (0x7F << GS_BOOTROM_SHIFT)
34a05eeebfSFrançois Tigeot #define   GS_BOOTROM_RSA_FAILED		  (0x50 << GS_BOOTROM_SHIFT)
358621f407SFrançois Tigeot #define   GS_BOOTROM_JUMP_PASSED	  (0x76 << GS_BOOTROM_SHIFT)
36a05eeebfSFrançois Tigeot #define   GS_UKERNEL_SHIFT		8
37a05eeebfSFrançois Tigeot #define   GS_UKERNEL_MASK		  (0xFF << GS_UKERNEL_SHIFT)
38a05eeebfSFrançois Tigeot #define   GS_UKERNEL_LAPIC_DONE		  (0x30 << GS_UKERNEL_SHIFT)
39a05eeebfSFrançois Tigeot #define   GS_UKERNEL_DPC_ERROR		  (0x60 << GS_UKERNEL_SHIFT)
40a05eeebfSFrançois Tigeot #define   GS_UKERNEL_READY		  (0xF0 << GS_UKERNEL_SHIFT)
41a05eeebfSFrançois Tigeot #define   GS_MIA_SHIFT			16
42a05eeebfSFrançois Tigeot #define   GS_MIA_MASK			  (0x07 << GS_MIA_SHIFT)
438621f407SFrançois Tigeot #define   GS_MIA_CORE_STATE		  (0x01 << GS_MIA_SHIFT)
448621f407SFrançois Tigeot #define   GS_MIA_HALT_REQUESTED		  (0x02 << GS_MIA_SHIFT)
458621f407SFrançois Tigeot #define   GS_MIA_ISR_ENTRY		  (0x04 << GS_MIA_SHIFT)
468621f407SFrançois Tigeot #define   GS_AUTH_STATUS_SHIFT		30
478621f407SFrançois Tigeot #define   GS_AUTH_STATUS_MASK		  (0x03 << GS_AUTH_STATUS_SHIFT)
488621f407SFrançois Tigeot #define   GS_AUTH_STATUS_BAD		  (0x01 << GS_AUTH_STATUS_SHIFT)
498621f407SFrançois Tigeot #define   GS_AUTH_STATUS_GOOD		  (0x02 << GS_AUTH_STATUS_SHIFT)
50a05eeebfSFrançois Tigeot 
51aee94f86SFrançois Tigeot #define SOFT_SCRATCH(n)			_MMIO(0xc180 + (n) * 4)
52c0e85e96SFrançois Tigeot #define SOFT_SCRATCH_COUNT		16
53a05eeebfSFrançois Tigeot 
54aee94f86SFrançois Tigeot #define UOS_RSA_SCRATCH(i)		_MMIO(0xc200 + (i) * 4)
55aee94f86SFrançois Tigeot #define   UOS_RSA_SCRATCH_MAX_COUNT	  64
56aee94f86SFrançois Tigeot #define DMA_ADDR_0_LOW			_MMIO(0xc300)
57aee94f86SFrançois Tigeot #define DMA_ADDR_0_HIGH			_MMIO(0xc304)
58aee94f86SFrançois Tigeot #define DMA_ADDR_1_LOW			_MMIO(0xc308)
59aee94f86SFrançois Tigeot #define DMA_ADDR_1_HIGH			_MMIO(0xc30c)
60a05eeebfSFrançois Tigeot #define   DMA_ADDRESS_SPACE_WOPCM	  (7 << 16)
61a05eeebfSFrançois Tigeot #define   DMA_ADDRESS_SPACE_GTT		  (8 << 16)
62aee94f86SFrançois Tigeot #define DMA_COPY_SIZE			_MMIO(0xc310)
63aee94f86SFrançois Tigeot #define DMA_CTRL			_MMIO(0xc314)
64*a85cb24fSFrançois Tigeot #define   HUC_UKERNEL			  (1<<9)
65a05eeebfSFrançois Tigeot #define   UOS_MOVE			  (1<<4)
66a05eeebfSFrançois Tigeot #define   START_DMA			  (1<<0)
67aee94f86SFrançois Tigeot #define DMA_GUC_WOPCM_OFFSET		_MMIO(0xc340)
68*a85cb24fSFrançois Tigeot #define   HUC_LOADING_AGENT_VCR		  (0<<1)
69*a85cb24fSFrançois Tigeot #define   HUC_LOADING_AGENT_GUC		  (1<<1)
70352ff8bdSFrançois Tigeot #define   GUC_WOPCM_OFFSET_VALUE	  0x80000	/* 512KB */
71aee94f86SFrançois Tigeot #define GUC_MAX_IDLE_COUNT		_MMIO(0xC3E4)
72352ff8bdSFrançois Tigeot 
73*a85cb24fSFrançois Tigeot #define HUC_STATUS2             _MMIO(0xD3B0)
74*a85cb24fSFrançois Tigeot #define   HUC_FW_VERIFIED       (1<<7)
75*a85cb24fSFrançois Tigeot 
761487f786SFrançois Tigeot /* Defines WOPCM space available to GuC firmware */
77aee94f86SFrançois Tigeot #define GUC_WOPCM_SIZE			_MMIO(0xc050)
78352ff8bdSFrançois Tigeot /* GuC addresses below GUC_WOPCM_TOP don't map through the GTT */
791487f786SFrançois Tigeot #define   GUC_WOPCM_TOP			  (0x80 << 12)	/* 512KB */
801487f786SFrançois Tigeot #define   BXT_GUC_WOPCM_RC6_RESERVED	  (0x10 << 12)	/* 64KB  */
81a05eeebfSFrançois Tigeot 
82*a85cb24fSFrançois Tigeot /* GuC addresses above GUC_GGTT_TOP also don't map through the GTT */
83*a85cb24fSFrançois Tigeot #define GUC_GGTT_TOP			0xFEE00000
84*a85cb24fSFrançois Tigeot 
85aee94f86SFrançois Tigeot #define GEN8_GT_PM_CONFIG		_MMIO(0x138140)
86aee94f86SFrançois Tigeot #define GEN9LP_GT_PM_CONFIG		_MMIO(0x138140)
87aee94f86SFrançois Tigeot #define GEN9_GT_PM_CONFIG		_MMIO(0x13816c)
88352ff8bdSFrançois Tigeot #define   GT_DOORBELL_ENABLE		  (1<<0)
89a05eeebfSFrançois Tigeot 
90aee94f86SFrançois Tigeot #define GEN8_GTCR			_MMIO(0x4274)
91a05eeebfSFrançois Tigeot #define   GEN8_GTCR_INVALIDATE		  (1<<0)
92a05eeebfSFrançois Tigeot 
93aee94f86SFrançois Tigeot #define GUC_ARAT_C6DIS			_MMIO(0xA178)
94a05eeebfSFrançois Tigeot 
95aee94f86SFrançois Tigeot #define GUC_SHIM_CONTROL		_MMIO(0xc064)
96a05eeebfSFrançois Tigeot #define   GUC_DISABLE_SRAM_INIT_TO_ZEROES	(1<<0)
97a05eeebfSFrançois Tigeot #define   GUC_ENABLE_READ_CACHE_LOGIC		(1<<1)
98a05eeebfSFrançois Tigeot #define   GUC_ENABLE_MIA_CACHING		(1<<2)
99a05eeebfSFrançois Tigeot #define   GUC_GEN10_MSGCH_ENABLE		(1<<4)
100a05eeebfSFrançois Tigeot #define   GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA	(1<<9)
101a05eeebfSFrançois Tigeot #define   GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA	(1<<10)
102a05eeebfSFrançois Tigeot #define   GUC_ENABLE_MIA_CLOCK_GATING		(1<<15)
103a05eeebfSFrançois Tigeot #define   GUC_GEN10_SHIM_WC_ENABLE		(1<<21)
104a05eeebfSFrançois Tigeot 
105a05eeebfSFrançois Tigeot #define GUC_SHIM_CONTROL_VALUE	(GUC_DISABLE_SRAM_INIT_TO_ZEROES	| \
106a05eeebfSFrançois Tigeot 				 GUC_ENABLE_READ_CACHE_LOGIC		| \
107a05eeebfSFrançois Tigeot 				 GUC_ENABLE_MIA_CACHING			| \
108a05eeebfSFrançois Tigeot 				 GUC_ENABLE_READ_CACHE_FOR_SRAM_DATA	| \
109352ff8bdSFrançois Tigeot 				 GUC_ENABLE_READ_CACHE_FOR_WOPCM_DATA	| \
110352ff8bdSFrançois Tigeot 				 GUC_ENABLE_MIA_CLOCK_GATING)
111a05eeebfSFrançois Tigeot 
112*a85cb24fSFrançois Tigeot #define GUC_SEND_INTERRUPT		_MMIO(0xc4c8)
113*a85cb24fSFrançois Tigeot #define   GUC_SEND_TRIGGER		  (1<<0)
114a05eeebfSFrançois Tigeot 
115aee94f86SFrançois Tigeot #define GEN8_DRBREGL(x)			_MMIO(0x1000 + (x) * 8)
116a05eeebfSFrançois Tigeot #define   GEN8_DRB_VALID		  (1<<0)
117aee94f86SFrançois Tigeot #define GEN8_DRBREGU(x)			_MMIO(0x1000 + (x) * 8 + 4)
118a05eeebfSFrançois Tigeot 
119aee94f86SFrançois Tigeot #define DE_GUCRMR			_MMIO(0x44054)
120a05eeebfSFrançois Tigeot 
121aee94f86SFrançois Tigeot #define GUC_BCS_RCS_IER			_MMIO(0xC550)
122aee94f86SFrançois Tigeot #define GUC_VCS2_VCS1_IER		_MMIO(0xC554)
123aee94f86SFrançois Tigeot #define GUC_WD_VECS_IER			_MMIO(0xC558)
124aee94f86SFrançois Tigeot #define GUC_PM_P24C_IER			_MMIO(0xC55C)
125a05eeebfSFrançois Tigeot 
126a05eeebfSFrançois Tigeot #endif
127