157692c94SEric Anholt // SPDX-License-Identifier: GPL-2.0+ 257692c94SEric Anholt /* Copyright (C) 2017-2018 Broadcom */ 357692c94SEric Anholt 457692c94SEric Anholt #ifndef V3D_REGS_H 557692c94SEric Anholt #define V3D_REGS_H 657692c94SEric Anholt 757692c94SEric Anholt #include <linux/bitops.h> 857692c94SEric Anholt 957692c94SEric Anholt #define V3D_MASK(high, low) ((u32)GENMASK(high, low)) 1057692c94SEric Anholt /* Using the GNU statement expression extension */ 1157692c94SEric Anholt #define V3D_SET_FIELD(value, field) \ 1257692c94SEric Anholt ({ \ 1357692c94SEric Anholt u32 fieldval = (value) << field##_SHIFT; \ 1457692c94SEric Anholt WARN_ON((fieldval & ~field##_MASK) != 0); \ 1557692c94SEric Anholt fieldval & field##_MASK; \ 1657692c94SEric Anholt }) 1757692c94SEric Anholt 1857692c94SEric Anholt #define V3D_GET_FIELD(word, field) (((word) & field##_MASK) >> \ 1957692c94SEric Anholt field##_SHIFT) 2057692c94SEric Anholt 2157692c94SEric Anholt /* Hub registers for shared hardware between V3D cores. */ 2257692c94SEric Anholt 2357692c94SEric Anholt #define V3D_HUB_AXICFG 0x00000 2457692c94SEric Anholt # define V3D_HUB_AXICFG_MAX_LEN_MASK V3D_MASK(3, 0) 2557692c94SEric Anholt # define V3D_HUB_AXICFG_MAX_LEN_SHIFT 0 2657692c94SEric Anholt #define V3D_HUB_UIFCFG 0x00004 2757692c94SEric Anholt #define V3D_HUB_IDENT0 0x00008 2857692c94SEric Anholt 2957692c94SEric Anholt #define V3D_HUB_IDENT1 0x0000c 3057692c94SEric Anholt # define V3D_HUB_IDENT1_WITH_MSO BIT(19) 3157692c94SEric Anholt # define V3D_HUB_IDENT1_WITH_TSY BIT(18) 3257692c94SEric Anholt # define V3D_HUB_IDENT1_WITH_TFU BIT(17) 3357692c94SEric Anholt # define V3D_HUB_IDENT1_WITH_L3C BIT(16) 3457692c94SEric Anholt # define V3D_HUB_IDENT1_NHOSTS_MASK V3D_MASK(15, 12) 3557692c94SEric Anholt # define V3D_HUB_IDENT1_NHOSTS_SHIFT 12 3657692c94SEric Anholt # define V3D_HUB_IDENT1_NCORES_MASK V3D_MASK(11, 8) 3757692c94SEric Anholt # define V3D_HUB_IDENT1_NCORES_SHIFT 8 3857692c94SEric Anholt # define V3D_HUB_IDENT1_REV_MASK V3D_MASK(7, 4) 3957692c94SEric Anholt # define V3D_HUB_IDENT1_REV_SHIFT 4 4057692c94SEric Anholt # define V3D_HUB_IDENT1_TVER_MASK V3D_MASK(3, 0) 4157692c94SEric Anholt # define V3D_HUB_IDENT1_TVER_SHIFT 0 4257692c94SEric Anholt 4357692c94SEric Anholt #define V3D_HUB_IDENT2 0x00010 4457692c94SEric Anholt # define V3D_HUB_IDENT2_WITH_MMU BIT(8) 4557692c94SEric Anholt # define V3D_HUB_IDENT2_L3C_NKB_MASK V3D_MASK(7, 0) 4657692c94SEric Anholt # define V3D_HUB_IDENT2_L3C_NKB_SHIFT 0 4757692c94SEric Anholt 4857692c94SEric Anholt #define V3D_HUB_IDENT3 0x00014 4957692c94SEric Anholt # define V3D_HUB_IDENT3_IPREV_MASK V3D_MASK(15, 8) 5057692c94SEric Anholt # define V3D_HUB_IDENT3_IPREV_SHIFT 8 5157692c94SEric Anholt # define V3D_HUB_IDENT3_IPIDX_MASK V3D_MASK(7, 0) 5257692c94SEric Anholt # define V3D_HUB_IDENT3_IPIDX_SHIFT 0 5357692c94SEric Anholt 5457692c94SEric Anholt #define V3D_HUB_INT_STS 0x00050 5557692c94SEric Anholt #define V3D_HUB_INT_SET 0x00054 5657692c94SEric Anholt #define V3D_HUB_INT_CLR 0x00058 5757692c94SEric Anholt #define V3D_HUB_INT_MSK_STS 0x0005c 5857692c94SEric Anholt #define V3D_HUB_INT_MSK_SET 0x00060 5957692c94SEric Anholt #define V3D_HUB_INT_MSK_CLR 0x00064 60*0ad5bc1cSIago Toral Quiroga # define V3D_V7_HUB_INT_GMPV BIT(6) 6157692c94SEric Anholt # define V3D_HUB_INT_MMU_WRV BIT(5) 6257692c94SEric Anholt # define V3D_HUB_INT_MMU_PTI BIT(4) 6357692c94SEric Anholt # define V3D_HUB_INT_MMU_CAP BIT(3) 6457692c94SEric Anholt # define V3D_HUB_INT_MSO BIT(2) 6557692c94SEric Anholt # define V3D_HUB_INT_TFUC BIT(1) 6657692c94SEric Anholt # define V3D_HUB_INT_TFUF BIT(0) 6757692c94SEric Anholt 68*0ad5bc1cSIago Toral Quiroga /* GCA registers only exist in V3D < 41 */ 6957692c94SEric Anholt #define V3D_GCA_CACHE_CTRL 0x0000c 7057692c94SEric Anholt # define V3D_GCA_CACHE_CTRL_FLUSH BIT(0) 7157692c94SEric Anholt 7257692c94SEric Anholt #define V3D_GCA_SAFE_SHUTDOWN 0x000b0 7357692c94SEric Anholt # define V3D_GCA_SAFE_SHUTDOWN_EN BIT(0) 7457692c94SEric Anholt 7557692c94SEric Anholt #define V3D_GCA_SAFE_SHUTDOWN_ACK 0x000b4 7657692c94SEric Anholt # define V3D_GCA_SAFE_SHUTDOWN_ACK_ACKED 3 7757692c94SEric Anholt 7857692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_REVISION 0x00000 7957692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_MAJOR_MASK V3D_MASK(15, 8) 8057692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_MAJOR_SHIFT 8 8157692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_MINOR_MASK V3D_MASK(7, 0) 8257692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_MINOR_SHIFT 0 8357692c94SEric Anholt 8457692c94SEric Anholt /* 7268 reset reg */ 8557692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_SW_INIT_0 0x00008 8657692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_SW_INIT_0_V3D_CLK_108_SW_INIT BIT(0) 8757692c94SEric Anholt /* 7278 reset reg */ 8857692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_SW_INIT_1 0x0000c 8957692c94SEric Anholt # define V3D_TOP_GR_BRIDGE_SW_INIT_1_V3D_CLK_108_SW_INIT BIT(0) 9057692c94SEric Anholt 91*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_CS(ver) ((ver >= 71) ? 0x00700 : 0x00400) 92*0ad5bc1cSIago Toral Quiroga 931584f16cSEric Anholt /* Stops current job, empties input fifo. */ 941584f16cSEric Anholt # define V3D_TFU_CS_TFURST BIT(31) 951584f16cSEric Anholt # define V3D_TFU_CS_CVTCT_MASK V3D_MASK(23, 16) 961584f16cSEric Anholt # define V3D_TFU_CS_CVTCT_SHIFT 16 971584f16cSEric Anholt # define V3D_TFU_CS_NFREE_MASK V3D_MASK(13, 8) 981584f16cSEric Anholt # define V3D_TFU_CS_NFREE_SHIFT 8 991584f16cSEric Anholt # define V3D_TFU_CS_BUSY BIT(0) 1001584f16cSEric Anholt 101*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_SU(ver) ((ver >= 71) ? 0x00704 : 0x00404) 1021584f16cSEric Anholt /* Interrupt when FINTTHR input slots are free (0 = disabled) */ 1031584f16cSEric Anholt # define V3D_TFU_SU_FINTTHR_MASK V3D_MASK(13, 8) 1041584f16cSEric Anholt # define V3D_TFU_SU_FINTTHR_SHIFT 8 1051584f16cSEric Anholt /* Skips resetting the CRC at the start of CRC generation. */ 1061584f16cSEric Anholt # define V3D_TFU_SU_CRCCHAIN BIT(4) 1071584f16cSEric Anholt /* skips writes, computes CRC of the image. miplevels must be 0. */ 1081584f16cSEric Anholt # define V3D_TFU_SU_CRC BIT(3) 1091584f16cSEric Anholt # define V3D_TFU_SU_THROTTLE_MASK V3D_MASK(1, 0) 1101584f16cSEric Anholt # define V3D_TFU_SU_THROTTLE_SHIFT 0 1111584f16cSEric Anholt 112*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_ICFG(ver) ((ver >= 71) ? 0x00708 : 0x00408) 1131584f16cSEric Anholt /* Interrupt when the conversion is complete. */ 1141584f16cSEric Anholt # define V3D_TFU_ICFG_IOC BIT(0) 1151584f16cSEric Anholt 1161584f16cSEric Anholt /* Input Image Address */ 117*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_IIA(ver) ((ver >= 71) ? 0x0070c : 0x0040c) 1181584f16cSEric Anholt /* Input Chroma Address */ 119*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_ICA(ver) ((ver >= 71) ? 0x00710 : 0x00410) 1201584f16cSEric Anholt /* Input Image Stride */ 121*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_IIS(ver) ((ver >= 71) ? 0x00714 : 0x00414) 1221584f16cSEric Anholt /* Input Image U-Plane Address */ 123*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_IUA(ver) ((ver >= 71) ? 0x00718 : 0x00418) 124*0ad5bc1cSIago Toral Quiroga /* Image output config (VD 7.x only) */ 125*0ad5bc1cSIago Toral Quiroga #define V3D_V7_TFU_IOC 0x0071c 1261584f16cSEric Anholt /* Output Image Address */ 127*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_IOA(ver) ((ver >= 71) ? 0x00720 : 0x0041c) 1281584f16cSEric Anholt /* Image Output Size */ 129*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_IOS(ver) ((ver >= 71) ? 0x00724 : 0x00420) 1301584f16cSEric Anholt /* TFU YUV Coefficient 0 */ 131*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_COEF0(ver) ((ver >= 71) ? 0x00728 : 0x00424) 132*0ad5bc1cSIago Toral Quiroga /* Use these regs instead of the defaults (V3D 4.x only) */ 1331584f16cSEric Anholt # define V3D_TFU_COEF0_USECOEF BIT(31) 1341584f16cSEric Anholt /* TFU YUV Coefficient 1 */ 135*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_COEF1(ver) ((ver >= 71) ? 0x0072c : 0x00428) 1361584f16cSEric Anholt /* TFU YUV Coefficient 2 */ 137*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_COEF2(ver) ((ver >= 71) ? 0x00730 : 0x0042c) 1381584f16cSEric Anholt /* TFU YUV Coefficient 3 */ 139*0ad5bc1cSIago Toral Quiroga #define V3D_TFU_COEF3(ver) ((ver >= 71) ? 0x00734 : 0x00430) 1401584f16cSEric Anholt 141*0ad5bc1cSIago Toral Quiroga /* V3D 4.x only */ 1421584f16cSEric Anholt #define V3D_TFU_CRC 0x00434 1431584f16cSEric Anholt 14457692c94SEric Anholt /* Per-MMU registers. */ 14557692c94SEric Anholt 14657692c94SEric Anholt #define V3D_MMUC_CONTROL 0x01000 147*0ad5bc1cSIago Toral Quiroga #define V3D_MMUC_CONTROL_CLEAR(ver) ((ver >= 71) ? BIT(11) : BIT(3)) 14857692c94SEric Anholt # define V3D_MMUC_CONTROL_FLUSHING BIT(2) 14957692c94SEric Anholt # define V3D_MMUC_CONTROL_FLUSH BIT(1) 15057692c94SEric Anholt # define V3D_MMUC_CONTROL_ENABLE BIT(0) 15157692c94SEric Anholt 15257692c94SEric Anholt #define V3D_MMU_CTL 0x01200 15357692c94SEric Anholt # define V3D_MMU_CTL_CAP_EXCEEDED BIT(27) 15457692c94SEric Anholt # define V3D_MMU_CTL_CAP_EXCEEDED_ABORT BIT(26) 15557692c94SEric Anholt # define V3D_MMU_CTL_CAP_EXCEEDED_INT BIT(25) 15657692c94SEric Anholt # define V3D_MMU_CTL_CAP_EXCEEDED_EXCEPTION BIT(24) 15757692c94SEric Anholt # define V3D_MMU_CTL_PT_INVALID BIT(20) 15857692c94SEric Anholt # define V3D_MMU_CTL_PT_INVALID_ABORT BIT(19) 15957692c94SEric Anholt # define V3D_MMU_CTL_PT_INVALID_INT BIT(18) 16057692c94SEric Anholt # define V3D_MMU_CTL_PT_INVALID_EXCEPTION BIT(17) 16138c2c791SEric Anholt # define V3D_MMU_CTL_PT_INVALID_ENABLE BIT(16) 16238c2c791SEric Anholt # define V3D_MMU_CTL_WRITE_VIOLATION BIT(12) 16357692c94SEric Anholt # define V3D_MMU_CTL_WRITE_VIOLATION_ABORT BIT(11) 16457692c94SEric Anholt # define V3D_MMU_CTL_WRITE_VIOLATION_INT BIT(10) 16557692c94SEric Anholt # define V3D_MMU_CTL_WRITE_VIOLATION_EXCEPTION BIT(9) 16657692c94SEric Anholt # define V3D_MMU_CTL_TLB_CLEARING BIT(7) 16757692c94SEric Anholt # define V3D_MMU_CTL_TLB_STATS_CLEAR BIT(3) 16857692c94SEric Anholt # define V3D_MMU_CTL_TLB_CLEAR BIT(2) 16957692c94SEric Anholt # define V3D_MMU_CTL_TLB_STATS_ENABLE BIT(1) 17057692c94SEric Anholt # define V3D_MMU_CTL_ENABLE BIT(0) 17157692c94SEric Anholt 17257692c94SEric Anholt #define V3D_MMU_PT_PA_BASE 0x01204 17357692c94SEric Anholt #define V3D_MMU_HIT 0x01208 17457692c94SEric Anholt #define V3D_MMU_MISSES 0x0120c 17557692c94SEric Anholt #define V3D_MMU_STALLS 0x01210 17657692c94SEric Anholt 17757692c94SEric Anholt #define V3D_MMU_ADDR_CAP 0x01214 17857692c94SEric Anholt # define V3D_MMU_ADDR_CAP_ENABLE BIT(31) 17957692c94SEric Anholt # define V3D_MMU_ADDR_CAP_MPAGE_MASK V3D_MASK(11, 0) 18057692c94SEric Anholt # define V3D_MMU_ADDR_CAP_MPAGE_SHIFT 0 18157692c94SEric Anholt 18257692c94SEric Anholt #define V3D_MMU_SHOOT_DOWN 0x01218 18357692c94SEric Anholt # define V3D_MMU_SHOOT_DOWN_SHOOTING BIT(29) 18457692c94SEric Anholt # define V3D_MMU_SHOOT_DOWN_SHOOT BIT(28) 18557692c94SEric Anholt # define V3D_MMU_SHOOT_DOWN_PAGE_MASK V3D_MASK(27, 0) 18657692c94SEric Anholt # define V3D_MMU_SHOOT_DOWN_PAGE_SHIFT 0 18757692c94SEric Anholt 18857692c94SEric Anholt #define V3D_MMU_BYPASS_START 0x0121c 18957692c94SEric Anholt #define V3D_MMU_BYPASS_END 0x01220 19057692c94SEric Anholt 19157692c94SEric Anholt /* AXI ID of the access that faulted */ 19257692c94SEric Anholt #define V3D_MMU_VIO_ID 0x0122c 19357692c94SEric Anholt 19457692c94SEric Anholt /* Address for illegal PTEs to return */ 19557692c94SEric Anholt #define V3D_MMU_ILLEGAL_ADDR 0x01230 19657692c94SEric Anholt # define V3D_MMU_ILLEGAL_ADDR_ENABLE BIT(31) 19757692c94SEric Anholt 19857692c94SEric Anholt /* Address that faulted */ 19957692c94SEric Anholt #define V3D_MMU_VIO_ADDR 0x01234 20057692c94SEric Anholt 201091d6283SEric Anholt #define V3D_MMU_DEBUG_INFO 0x01238 202091d6283SEric Anholt # define V3D_MMU_PA_WIDTH_MASK V3D_MASK(11, 8) 203091d6283SEric Anholt # define V3D_MMU_PA_WIDTH_SHIFT 8 204091d6283SEric Anholt # define V3D_MMU_VA_WIDTH_MASK V3D_MASK(7, 4) 205091d6283SEric Anholt # define V3D_MMU_VA_WIDTH_SHIFT 4 206091d6283SEric Anholt # define V3D_MMU_VERSION_MASK V3D_MASK(3, 0) 207091d6283SEric Anholt # define V3D_MMU_VERSION_SHIFT 0 208091d6283SEric Anholt 20957692c94SEric Anholt /* Per-V3D-core registers */ 21057692c94SEric Anholt 21157692c94SEric Anholt #define V3D_CTL_IDENT0 0x00000 21257692c94SEric Anholt # define V3D_IDENT0_VER_MASK V3D_MASK(31, 24) 21357692c94SEric Anholt # define V3D_IDENT0_VER_SHIFT 24 21457692c94SEric Anholt 21557692c94SEric Anholt #define V3D_CTL_IDENT1 0x00004 21657692c94SEric Anholt /* Multiples of 1kb */ 21757692c94SEric Anholt # define V3D_IDENT1_VPM_SIZE_MASK V3D_MASK(31, 28) 21857692c94SEric Anholt # define V3D_IDENT1_VPM_SIZE_SHIFT 28 21957692c94SEric Anholt # define V3D_IDENT1_NSEM_MASK V3D_MASK(23, 16) 22057692c94SEric Anholt # define V3D_IDENT1_NSEM_SHIFT 16 22157692c94SEric Anholt # define V3D_IDENT1_NTMU_MASK V3D_MASK(15, 12) 22257692c94SEric Anholt # define V3D_IDENT1_NTMU_SHIFT 12 22357692c94SEric Anholt # define V3D_IDENT1_QUPS_MASK V3D_MASK(11, 8) 22457692c94SEric Anholt # define V3D_IDENT1_QUPS_SHIFT 8 22557692c94SEric Anholt # define V3D_IDENT1_NSLC_MASK V3D_MASK(7, 4) 22657692c94SEric Anholt # define V3D_IDENT1_NSLC_SHIFT 4 22757692c94SEric Anholt # define V3D_IDENT1_REV_MASK V3D_MASK(3, 0) 22857692c94SEric Anholt # define V3D_IDENT1_REV_SHIFT 0 22957692c94SEric Anholt 23057692c94SEric Anholt #define V3D_CTL_IDENT2 0x00008 23157692c94SEric Anholt # define V3D_IDENT2_BCG_INT BIT(28) 23257692c94SEric Anholt 23357692c94SEric Anholt #define V3D_CTL_MISCCFG 0x00018 234a7dde1b7SEric Anholt # define V3D_CTL_MISCCFG_QRMAXCNT_MASK V3D_MASK(3, 1) 235a7dde1b7SEric Anholt # define V3D_CTL_MISCCFG_QRMAXCNT_SHIFT 1 23657692c94SEric Anholt # define V3D_MISCCFG_OVRTMUOUT BIT(0) 23757692c94SEric Anholt 23857692c94SEric Anholt #define V3D_CTL_L2CACTL 0x00020 23957692c94SEric Anholt # define V3D_L2CACTL_L2CCLR BIT(2) 24057692c94SEric Anholt # define V3D_L2CACTL_L2CDIS BIT(1) 24157692c94SEric Anholt # define V3D_L2CACTL_L2CENA BIT(0) 24257692c94SEric Anholt 24357692c94SEric Anholt #define V3D_CTL_SLCACTL 0x00024 24457692c94SEric Anholt # define V3D_SLCACTL_TVCCS_MASK V3D_MASK(27, 24) 24557692c94SEric Anholt # define V3D_SLCACTL_TVCCS_SHIFT 24 24657692c94SEric Anholt # define V3D_SLCACTL_TDCCS_MASK V3D_MASK(19, 16) 24757692c94SEric Anholt # define V3D_SLCACTL_TDCCS_SHIFT 16 24857692c94SEric Anholt # define V3D_SLCACTL_UCC_MASK V3D_MASK(11, 8) 24957692c94SEric Anholt # define V3D_SLCACTL_UCC_SHIFT 8 25057692c94SEric Anholt # define V3D_SLCACTL_ICC_MASK V3D_MASK(3, 0) 25157692c94SEric Anholt # define V3D_SLCACTL_ICC_SHIFT 0 25257692c94SEric Anholt 25357692c94SEric Anholt #define V3D_CTL_L2TCACTL 0x00030 25457692c94SEric Anholt # define V3D_L2TCACTL_TMUWCF BIT(8) 255d223f98fSEric Anholt /* Invalidates cache lines. */ 25657692c94SEric Anholt # define V3D_L2TCACTL_FLM_FLUSH 0 257d223f98fSEric Anholt /* Removes cachelines without writing dirty lines back. */ 25857692c94SEric Anholt # define V3D_L2TCACTL_FLM_CLEAR 1 259d223f98fSEric Anholt /* Writes out dirty cachelines and marks them clean, but doesn't invalidate. */ 26057692c94SEric Anholt # define V3D_L2TCACTL_FLM_CLEAN 2 26157692c94SEric Anholt # define V3D_L2TCACTL_FLM_MASK V3D_MASK(2, 1) 26257692c94SEric Anholt # define V3D_L2TCACTL_FLM_SHIFT 1 26357692c94SEric Anholt # define V3D_L2TCACTL_L2TFLS BIT(0) 26457692c94SEric Anholt #define V3D_CTL_L2TFLSTA 0x00034 26557692c94SEric Anholt #define V3D_CTL_L2TFLEND 0x00038 26657692c94SEric Anholt 26757692c94SEric Anholt #define V3D_CTL_INT_STS 0x00050 26857692c94SEric Anholt #define V3D_CTL_INT_SET 0x00054 26957692c94SEric Anholt #define V3D_CTL_INT_CLR 0x00058 27057692c94SEric Anholt #define V3D_CTL_INT_MSK_STS 0x0005c 27157692c94SEric Anholt #define V3D_CTL_INT_MSK_SET 0x00060 27257692c94SEric Anholt #define V3D_CTL_INT_MSK_CLR 0x00064 27357692c94SEric Anholt # define V3D_INT_QPU_MASK V3D_MASK(27, 16) 27457692c94SEric Anholt # define V3D_INT_QPU_SHIFT 16 275*0ad5bc1cSIago Toral Quiroga #define V3D_INT_CSDDONE(ver) ((ver >= 71) ? BIT(6) : BIT(7)) 276*0ad5bc1cSIago Toral Quiroga #define V3D_INT_PCTR(ver) ((ver >= 71) ? BIT(5) : BIT(6)) 27757692c94SEric Anholt # define V3D_INT_GMPV BIT(5) 27857692c94SEric Anholt # define V3D_INT_TRFB BIT(4) 27957692c94SEric Anholt # define V3D_INT_SPILLUSE BIT(3) 28057692c94SEric Anholt # define V3D_INT_OUTOMEM BIT(2) 28157692c94SEric Anholt # define V3D_INT_FLDONE BIT(1) 28257692c94SEric Anholt # define V3D_INT_FRDONE BIT(0) 28357692c94SEric Anholt 28457692c94SEric Anholt #define V3D_CLE_CT0CS 0x00100 28557692c94SEric Anholt #define V3D_CLE_CT1CS 0x00104 28657692c94SEric Anholt #define V3D_CLE_CTNCS(n) (V3D_CLE_CT0CS + 4 * n) 28757692c94SEric Anholt #define V3D_CLE_CT0EA 0x00108 28857692c94SEric Anholt #define V3D_CLE_CT1EA 0x0010c 28957692c94SEric Anholt #define V3D_CLE_CTNEA(n) (V3D_CLE_CT0EA + 4 * n) 29057692c94SEric Anholt #define V3D_CLE_CT0CA 0x00110 29157692c94SEric Anholt #define V3D_CLE_CT1CA 0x00114 29257692c94SEric Anholt #define V3D_CLE_CTNCA(n) (V3D_CLE_CT0CA + 4 * n) 29357692c94SEric Anholt #define V3D_CLE_CT0RA 0x00118 29457692c94SEric Anholt #define V3D_CLE_CT1RA 0x0011c 295624bb0c0SEric Anholt #define V3D_CLE_CTNRA(n) (V3D_CLE_CT0RA + 4 * n) 29657692c94SEric Anholt #define V3D_CLE_CT0LC 0x00120 29757692c94SEric Anholt #define V3D_CLE_CT1LC 0x00124 29857692c94SEric Anholt #define V3D_CLE_CT0PC 0x00128 29957692c94SEric Anholt #define V3D_CLE_CT1PC 0x0012c 30057692c94SEric Anholt #define V3D_CLE_PCS 0x00130 30157692c94SEric Anholt #define V3D_CLE_BFC 0x00134 30257692c94SEric Anholt #define V3D_CLE_RFC 0x00138 30357692c94SEric Anholt #define V3D_CLE_TFBC 0x0013c 30457692c94SEric Anholt #define V3D_CLE_TFIT 0x00140 30557692c94SEric Anholt #define V3D_CLE_CT1CFG 0x00144 30657692c94SEric Anholt #define V3D_CLE_CT1TILECT 0x00148 30757692c94SEric Anholt #define V3D_CLE_CT1TSKIP 0x0014c 30857692c94SEric Anholt #define V3D_CLE_CT1PTCT 0x00150 30957692c94SEric Anholt #define V3D_CLE_CT0SYNC 0x00154 31057692c94SEric Anholt #define V3D_CLE_CT1SYNC 0x00158 31157692c94SEric Anholt #define V3D_CLE_CT0QTS 0x0015c 31257692c94SEric Anholt # define V3D_CLE_CT0QTS_ENABLE BIT(1) 31357692c94SEric Anholt #define V3D_CLE_CT0QBA 0x00160 31457692c94SEric Anholt #define V3D_CLE_CT1QBA 0x00164 31557692c94SEric Anholt #define V3D_CLE_CTNQBA(n) (V3D_CLE_CT0QBA + 4 * n) 31657692c94SEric Anholt #define V3D_CLE_CT0QEA 0x00168 31757692c94SEric Anholt #define V3D_CLE_CT1QEA 0x0016c 31857692c94SEric Anholt #define V3D_CLE_CTNQEA(n) (V3D_CLE_CT0QEA + 4 * n) 31957692c94SEric Anholt #define V3D_CLE_CT0QMA 0x00170 32057692c94SEric Anholt #define V3D_CLE_CT0QMS 0x00174 32157692c94SEric Anholt #define V3D_CLE_CT1QCFG 0x00178 32257692c94SEric Anholt /* If set without ETPROC, entirely skip tiles with no primitives. */ 32357692c94SEric Anholt # define V3D_CLE_QCFG_ETFILT BIT(7) 32457692c94SEric Anholt /* If set with ETFILT, just write the clear color to tiles with no 32557692c94SEric Anholt * primitives. 32657692c94SEric Anholt */ 32757692c94SEric Anholt # define V3D_CLE_QCFG_ETPROC BIT(6) 32857692c94SEric Anholt # define V3D_CLE_QCFG_ETSFLUSH BIT(1) 32957692c94SEric Anholt # define V3D_CLE_QCFG_MCDIS BIT(0) 33057692c94SEric Anholt 33157692c94SEric Anholt #define V3D_PTB_BPCA 0x00300 33257692c94SEric Anholt #define V3D_PTB_BPCS 0x00304 33357692c94SEric Anholt #define V3D_PTB_BPOA 0x00308 33457692c94SEric Anholt #define V3D_PTB_BPOS 0x0030c 33557692c94SEric Anholt 33657692c94SEric Anholt #define V3D_PTB_BXCF 0x00310 33757692c94SEric Anholt # define V3D_PTB_BXCF_RWORDERDISA BIT(1) 33857692c94SEric Anholt # define V3D_PTB_BXCF_CLIPDISA BIT(0) 33957692c94SEric Anholt 3406915c9a5SEric Anholt #define V3D_V3_PCTR_0_EN 0x00674 3416915c9a5SEric Anholt #define V3D_V3_PCTR_0_EN_ENABLE BIT(31) 3426915c9a5SEric Anholt #define V3D_V4_PCTR_0_EN 0x00650 3436915c9a5SEric Anholt /* When a bit is set, resets the counter to 0. */ 3446915c9a5SEric Anholt #define V3D_V3_PCTR_0_CLR 0x00670 3456915c9a5SEric Anholt #define V3D_V4_PCTR_0_CLR 0x00654 3466915c9a5SEric Anholt #define V3D_PCTR_0_OVERFLOW 0x00658 3476915c9a5SEric Anholt 3486915c9a5SEric Anholt #define V3D_V3_PCTR_0_PCTRS0 0x00684 3496915c9a5SEric Anholt #define V3D_V3_PCTR_0_PCTRS15 0x00660 3506915c9a5SEric Anholt #define V3D_V3_PCTR_0_PCTRSX(x) (V3D_V3_PCTR_0_PCTRS0 + \ 3516915c9a5SEric Anholt 4 * (x)) 3526915c9a5SEric Anholt /* Each src reg muxes four counters each. */ 3536915c9a5SEric Anholt #define V3D_V4_PCTR_0_SRC_0_3 0x00660 3546915c9a5SEric Anholt #define V3D_V4_PCTR_0_SRC_28_31 0x0067c 35526a4dc29SJuan A. Suarez Romero #define V3D_V4_PCTR_0_SRC_X(x) (V3D_V4_PCTR_0_SRC_0_3 + \ 35626a4dc29SJuan A. Suarez Romero 4 * (x)) 3576915c9a5SEric Anholt # define V3D_PCTR_S0_MASK V3D_MASK(6, 0) 358*0ad5bc1cSIago Toral Quiroga # define V3D_V7_PCTR_S0_MASK V3D_MASK(7, 0) 3596915c9a5SEric Anholt # define V3D_PCTR_S0_SHIFT 0 3606915c9a5SEric Anholt # define V3D_PCTR_S1_MASK V3D_MASK(14, 8) 361*0ad5bc1cSIago Toral Quiroga # define V3D_V7_PCTR_S1_MASK V3D_MASK(15, 8) 3626915c9a5SEric Anholt # define V3D_PCTR_S1_SHIFT 8 3636915c9a5SEric Anholt # define V3D_PCTR_S2_MASK V3D_MASK(22, 16) 364*0ad5bc1cSIago Toral Quiroga # define V3D_V7_PCTR_S2_MASK V3D_MASK(23, 16) 3656915c9a5SEric Anholt # define V3D_PCTR_S2_SHIFT 16 3666915c9a5SEric Anholt # define V3D_PCTR_S3_MASK V3D_MASK(30, 24) 367*0ad5bc1cSIago Toral Quiroga # define V3D_V7_PCTR_S3_MASK V3D_MASK(31, 24) 3686915c9a5SEric Anholt # define V3D_PCTR_S3_SHIFT 24 369*0ad5bc1cSIago Toral Quiroga #define V3D_PCTR_CYCLE_COUNT(ver) ((ver >= 71) ? 0 : 32) 3706915c9a5SEric Anholt 3716915c9a5SEric Anholt /* Output values of the counters. */ 3726915c9a5SEric Anholt #define V3D_PCTR_0_PCTR0 0x00680 3736915c9a5SEric Anholt #define V3D_PCTR_0_PCTR31 0x006fc 3746915c9a5SEric Anholt #define V3D_PCTR_0_PCTRX(x) (V3D_PCTR_0_PCTR0 + \ 3756915c9a5SEric Anholt 4 * (x)) 376*0ad5bc1cSIago Toral Quiroga #define V3D_GMP_STATUS(ver) ((ver >= 71) ? 0x00600 : 0x00800) 37757692c94SEric Anholt # define V3D_GMP_STATUS_GMPRST BIT(31) 37857692c94SEric Anholt # define V3D_GMP_STATUS_WR_COUNT_MASK V3D_MASK(30, 24) 37957692c94SEric Anholt # define V3D_GMP_STATUS_WR_COUNT_SHIFT 24 38057692c94SEric Anholt # define V3D_GMP_STATUS_RD_COUNT_MASK V3D_MASK(22, 16) 38157692c94SEric Anholt # define V3D_GMP_STATUS_RD_COUNT_SHIFT 16 38257692c94SEric Anholt # define V3D_GMP_STATUS_WR_ACTIVE BIT(5) 38357692c94SEric Anholt # define V3D_GMP_STATUS_RD_ACTIVE BIT(4) 38457692c94SEric Anholt # define V3D_GMP_STATUS_CFG_BUSY BIT(3) 38557692c94SEric Anholt # define V3D_GMP_STATUS_CNTOVF BIT(2) 38657692c94SEric Anholt # define V3D_GMP_STATUS_INVPROT BIT(1) 38757692c94SEric Anholt # define V3D_GMP_STATUS_VIO BIT(0) 38857692c94SEric Anholt 389*0ad5bc1cSIago Toral Quiroga #define V3D_GMP_CFG(ver) ((ver >= 71) ? 0x00604 : 0x00804) 39057692c94SEric Anholt # define V3D_GMP_CFG_LBURSTEN BIT(3) 39157692c94SEric Anholt # define V3D_GMP_CFG_PGCRSEN BIT() 39257692c94SEric Anholt # define V3D_GMP_CFG_STOP_REQ BIT(1) 39357692c94SEric Anholt # define V3D_GMP_CFG_PROT_ENABLE BIT(0) 39457692c94SEric Anholt 395*0ad5bc1cSIago Toral Quiroga #define V3D_GMP_VIO_ADDR(ver) ((ver >= 71) ? 0x00608 : 0x00808) 39657692c94SEric Anholt #define V3D_GMP_VIO_TYPE 0x0080c 39757692c94SEric Anholt #define V3D_GMP_TABLE_ADDR 0x00810 39857692c94SEric Anholt #define V3D_GMP_CLEAR_LOAD 0x00814 39957692c94SEric Anholt #define V3D_GMP_PRESERVE_LOAD 0x00818 40057692c94SEric Anholt #define V3D_GMP_VALID_LINES 0x00820 40157692c94SEric Anholt 402d223f98fSEric Anholt #define V3D_CSD_STATUS 0x00900 403d223f98fSEric Anholt # define V3D_CSD_STATUS_NUM_COMPLETED_MASK V3D_MASK(11, 4) 404d223f98fSEric Anholt # define V3D_CSD_STATUS_NUM_COMPLETED_SHIFT 4 405d223f98fSEric Anholt # define V3D_CSD_STATUS_NUM_ACTIVE_MASK V3D_MASK(3, 2) 406d223f98fSEric Anholt # define V3D_CSD_STATUS_NUM_ACTIVE_SHIFT 2 407d223f98fSEric Anholt # define V3D_CSD_STATUS_HAVE_CURRENT_DISPATCH BIT(1) 408d223f98fSEric Anholt # define V3D_CSD_STATUS_HAVE_QUEUED_DISPATCH BIT(0) 409d223f98fSEric Anholt 410*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_QUEUED_CFG0(ver) ((ver >= 71) ? 0x00930 : 0x00904) 411d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG0_NUM_WGS_X_MASK V3D_MASK(31, 16) 412d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG0_NUM_WGS_X_SHIFT 16 413d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG0_WG_X_OFFSET_MASK V3D_MASK(15, 0) 414d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG0_WG_X_OFFSET_SHIFT 0 415d223f98fSEric Anholt 416*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_QUEUED_CFG1(ver) ((ver >= 71) ? 0x00934 : 0x00908) 417d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG1_NUM_WGS_Y_MASK V3D_MASK(31, 16) 418d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG1_NUM_WGS_Y_SHIFT 16 419d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG1_WG_Y_OFFSET_MASK V3D_MASK(15, 0) 420d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG1_WG_Y_OFFSET_SHIFT 0 421d223f98fSEric Anholt 422*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_QUEUED_CFG2(ver) ((ver >= 71) ? 0x00938 : 0x0090c) 423d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG2_NUM_WGS_Z_MASK V3D_MASK(31, 16) 424d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG2_NUM_WGS_Z_SHIFT 16 425d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG2_WG_Z_OFFSET_MASK V3D_MASK(15, 0) 426d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG2_WG_Z_OFFSET_SHIFT 0 427d223f98fSEric Anholt 428*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_QUEUED_CFG3(ver) ((ver >= 71) ? 0x0093c : 0x00910) 429d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_OVERLAP_WITH_PREV BIT(26) 430d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_MAX_SG_ID_MASK V3D_MASK(25, 20) 431d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_MAX_SG_ID_SHIFT 20 432d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_BATCHES_PER_SG_M1_MASK V3D_MASK(19, 12) 433d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_BATCHES_PER_SG_M1_SHIFT 12 434d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_WGS_PER_SG_MASK V3D_MASK(11, 8) 435d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_WGS_PER_SG_SHIFT 8 436d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_WG_SIZE_MASK V3D_MASK(7, 0) 437d223f98fSEric Anholt # define V3D_CSD_QUEUED_CFG3_WG_SIZE_SHIFT 0 438d223f98fSEric Anholt 439d223f98fSEric Anholt /* Number of batches, minus 1 */ 440*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_QUEUED_CFG4(ver) ((ver >= 71) ? 0x00940 : 0x00914) 441d223f98fSEric Anholt 442d223f98fSEric Anholt /* Shader address, pnan, singleseg, threading, like a shader record. */ 443*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_QUEUED_CFG5(ver) ((ver >= 71) ? 0x00944 : 0x00918) 444d223f98fSEric Anholt 445d223f98fSEric Anholt /* Uniforms address (4 byte aligned) */ 446*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_QUEUED_CFG6(ver) ((ver >= 71) ? 0x00948 : 0x0091c) 447d223f98fSEric Anholt 448*0ad5bc1cSIago Toral Quiroga /* V3D 7.x+ only */ 449*0ad5bc1cSIago Toral Quiroga #define V3D_V7_CSD_QUEUED_CFG7 0x0094c 450d223f98fSEric Anholt 451*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_CFG0(ver) ((ver >= 71) ? 0x00958 : 0x00920) 452*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_CFG1(ver) ((ver >= 71) ? 0x0095c : 0x00924) 453*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_CFG2(ver) ((ver >= 71) ? 0x00960 : 0x00928) 454*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_CFG3(ver) ((ver >= 71) ? 0x00964 : 0x0092c) 455*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_CFG4(ver) ((ver >= 71) ? 0x00968 : 0x00930) 456*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_CFG5(ver) ((ver >= 71) ? 0x0096c : 0x00934) 457*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_CFG6(ver) ((ver >= 71) ? 0x00970 : 0x00938) 458*0ad5bc1cSIago Toral Quiroga /* V3D 7.x+ only */ 459*0ad5bc1cSIago Toral Quiroga #define V3D_V7_CSD_CURRENT_CFG7 0x00974 460*0ad5bc1cSIago Toral Quiroga 461*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_ID0(ver) ((ver >= 71) ? 0x00978 : 0x0093c) 462d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_WG_X_MASK V3D_MASK(31, 16) 463d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_WG_X_SHIFT 16 464d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_WG_IN_SG_MASK V3D_MASK(11, 8) 465d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_WG_IN_SG_SHIFT 8 466d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_L_IDX_MASK V3D_MASK(7, 0) 467d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_L_IDX_SHIFT 0 468d223f98fSEric Anholt 469*0ad5bc1cSIago Toral Quiroga #define V3D_CSD_CURRENT_ID1(ver) ((ver >= 71) ? 0x0097c : 0x00940) 470d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_WG_Z_MASK V3D_MASK(31, 16) 471d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_WG_Z_SHIFT 16 472d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_WG_Y_MASK V3D_MASK(15, 0) 473d223f98fSEric Anholt # define V3D_CSD_CURRENT_ID0_WG_Y_SHIFT 0 474d223f98fSEric Anholt 4751ba9d7cbSEric Anholt #define V3D_ERR_FDBGO 0x00f04 4761ba9d7cbSEric Anholt #define V3D_ERR_FDBGB 0x00f08 4771ba9d7cbSEric Anholt #define V3D_ERR_FDBGR 0x00f0c 4781ba9d7cbSEric Anholt 4791ba9d7cbSEric Anholt #define V3D_ERR_FDBGS 0x00f10 4801ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_INTERPZ_IP_STALL BIT(17) 4811ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_DEPTHO_FIFO_IP_STALL BIT(16) 4821ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_XYNRM_IP_STALL BIT(14) 4831ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZREQ_FIFO_OP_VALID BIT(13) 4841ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_QXYF_FIFO_OP_VALID BIT(12) 4851ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_QXYF_FIFO_OP_LAST BIT(11) 4861ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZTEST_ANYQVALID BIT(7) 4871ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZTEST_PASS BIT(6) 4881ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZTEST_QREADY BIT(5) 4891ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZTEST_VLF_OKNOVALID BIT(4) 4901ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZTEST_QSTALL BIT(3) 4911ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZTEST_IP_VLFSTALL BIT(2) 4921ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZTEST_IP_PRSTALL BIT(1) 4931ba9d7cbSEric Anholt # define V3D_ERR_FDBGS_EZTEST_IP_QSTALL BIT(0) 4941ba9d7cbSEric Anholt 4951ba9d7cbSEric Anholt #define V3D_ERR_STAT 0x00f20 4961ba9d7cbSEric Anholt # define V3D_ERR_L2CARE BIT(15) 4971ba9d7cbSEric Anholt # define V3D_ERR_VCMBE BIT(14) 4981ba9d7cbSEric Anholt # define V3D_ERR_VCMRE BIT(13) 4991ba9d7cbSEric Anholt # define V3D_ERR_VCDI BIT(12) 5001ba9d7cbSEric Anholt # define V3D_ERR_VCDE BIT(11) 5011ba9d7cbSEric Anholt # define V3D_ERR_VDWE BIT(10) 5021ba9d7cbSEric Anholt # define V3D_ERR_VPMEAS BIT(9) 5031ba9d7cbSEric Anholt # define V3D_ERR_VPMEFNA BIT(8) 5041ba9d7cbSEric Anholt # define V3D_ERR_VPMEWNA BIT(7) 5051ba9d7cbSEric Anholt # define V3D_ERR_VPMERNA BIT(6) 5061ba9d7cbSEric Anholt # define V3D_ERR_VPMERR BIT(5) 5071ba9d7cbSEric Anholt # define V3D_ERR_VPMEWR BIT(4) 5081ba9d7cbSEric Anholt # define V3D_ERR_VPAERRGL BIT(3) 5091ba9d7cbSEric Anholt # define V3D_ERR_VPAEBRGL BIT(2) 5101ba9d7cbSEric Anholt # define V3D_ERR_VPAERGS BIT(1) 5111ba9d7cbSEric Anholt # define V3D_ERR_VPAEABB BIT(0) 5121ba9d7cbSEric Anholt 51357692c94SEric Anholt #endif /* V3D_REGS_H */ 514