1 1.1 riastrad /* $NetBSD: cik_regs.h,v 1.3 2021/12/18 23:44:59 riastradh Exp $ */ 2 1.1 riastrad 3 1.1 riastrad /* 4 1.1 riastrad * Copyright 2014 Advanced Micro Devices, Inc. 5 1.1 riastrad * 6 1.1 riastrad * Permission is hereby granted, free of charge, to any person obtaining a 7 1.1 riastrad * copy of this software and associated documentation files (the "Software"), 8 1.1 riastrad * to deal in the Software without restriction, including without limitation 9 1.1 riastrad * the rights to use, copy, modify, merge, publish, distribute, sublicense, 10 1.1 riastrad * and/or sell copies of the Software, and to permit persons to whom the 11 1.1 riastrad * Software is furnished to do so, subject to the following conditions: 12 1.1 riastrad * 13 1.1 riastrad * The above copyright notice and this permission notice shall be included in 14 1.1 riastrad * all copies or substantial portions of the Software. 15 1.1 riastrad * 16 1.1 riastrad * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 1.1 riastrad * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 1.1 riastrad * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 1.1 riastrad * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 1.1 riastrad * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 1.1 riastrad * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 1.1 riastrad * OTHER DEALINGS IN THE SOFTWARE. 23 1.1 riastrad */ 24 1.1 riastrad 25 1.1 riastrad #ifndef CIK_REGS_H 26 1.1 riastrad #define CIK_REGS_H 27 1.1 riastrad 28 1.1 riastrad /* if PTR32, these are the bases for scratch and lds */ 29 1.1 riastrad #define PRIVATE_BASE(x) ((x) << 0) /* scratch */ 30 1.1 riastrad #define SHARED_BASE(x) ((x) << 16) /* LDS */ 31 1.1 riastrad #define PTR32 (1 << 0) 32 1.1 riastrad #define ALIGNMENT_MODE(x) ((x) << 2) 33 1.1 riastrad #define SH_MEM_ALIGNMENT_MODE_UNALIGNED 3 34 1.1 riastrad #define DEFAULT_MTYPE(x) ((x) << 4) 35 1.1 riastrad #define APE1_MTYPE(x) ((x) << 7) 36 1.1 riastrad 37 1.1 riastrad /* valid for both DEFAULT_MTYPE and APE1_MTYPE */ 38 1.3 riastrad #define MTYPE_CACHED_NV 0 39 1.3 riastrad #define MTYPE_CACHED 1 40 1.1 riastrad #define MTYPE_NONCACHED 3 41 1.1 riastrad 42 1.1 riastrad #define DEFAULT_CP_HQD_PERSISTENT_STATE (0x33U << 8) 43 1.1 riastrad #define PRELOAD_REQ (1 << 0) 44 1.1 riastrad 45 1.1 riastrad #define MQD_CONTROL_PRIV_STATE_EN (1U << 8) 46 1.1 riastrad 47 1.1 riastrad #define DEFAULT_MIN_IB_AVAIL_SIZE (3U << 20) 48 1.1 riastrad 49 1.1 riastrad #define IB_ATC_EN (1U << 23) 50 1.1 riastrad 51 1.1 riastrad #define QUANTUM_EN 1U 52 1.1 riastrad #define QUANTUM_SCALE_1MS (1U << 4) 53 1.1 riastrad #define QUANTUM_DURATION(x) ((x) << 8) 54 1.1 riastrad 55 1.1 riastrad #define RPTR_BLOCK_SIZE(x) ((x) << 8) 56 1.1 riastrad #define MIN_AVAIL_SIZE(x) ((x) << 20) 57 1.1 riastrad #define DEFAULT_RPTR_BLOCK_SIZE RPTR_BLOCK_SIZE(5) 58 1.1 riastrad #define DEFAULT_MIN_AVAIL_SIZE MIN_AVAIL_SIZE(3) 59 1.1 riastrad 60 1.1 riastrad #define PQ_ATC_EN (1 << 23) 61 1.1 riastrad #define NO_UPDATE_RPTR (1 << 27) 62 1.1 riastrad 63 1.1 riastrad #define DOORBELL_OFFSET(x) ((x) << 2) 64 1.1 riastrad #define DOORBELL_EN (1 << 30) 65 1.1 riastrad 66 1.1 riastrad #define PRIV_STATE (1 << 30) 67 1.1 riastrad #define KMD_QUEUE (1 << 31) 68 1.1 riastrad 69 1.1 riastrad #define AQL_ENABLE 1 70 1.1 riastrad 71 1.1 riastrad #define GRBM_GFX_INDEX 0x30800 72 1.1 riastrad 73 1.1 riastrad #endif 74