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