brintos

brintos / linux-shallow public Read only

0
0
Text · 8.8 KiB · a8ca7ec Raw
321 lines · c
1/* SPDX-License-Identifier: GPL-2.0 OR MIT */2/*3 * Copyright 2014-2022 Advanced Micro Devices, Inc.4 *5 * Permission is hereby granted, free of charge, to any person obtaining a6 * copy of this software and associated documentation files (the "Software"),7 * to deal in the Software without restriction, including without limitation8 * the rights to use, copy, modify, merge, publish, distribute, sublicense,9 * and/or sell copies of the Software, and to permit persons to whom the10 * Software is furnished to do so, subject to the following conditions:11 *12 * The above copyright notice and this permission notice shall be included in13 * all copies or substantial portions of the Software.14 *15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL18 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR19 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,20 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR21 * OTHER DEALINGS IN THE SOFTWARE.22 */23 24#ifndef KFD_CRAT_H_INCLUDED25#define KFD_CRAT_H_INCLUDED26 27#include <linux/types.h>28 29#pragma pack(1)30 31/*32 * 4CC signature value for the CRAT ACPI table33 */34 35#define CRAT_SIGNATURE	"CRAT"36 37/*38 * Component Resource Association Table (CRAT)39 */40 41#define CRAT_OEMID_LENGTH	642#define CRAT_OEMTABLEID_LENGTH	843#define CRAT_RESERVED_LENGTH	644 45/* Compute Unit flags */46#define COMPUTE_UNIT_CPU	(1 << 0)  /* Create Virtual CRAT for CPU */47#define COMPUTE_UNIT_GPU	(1 << 1)  /* Create Virtual CRAT for GPU */48 49struct crat_header {50	uint32_t	signature;51	uint32_t	length;52	uint8_t		revision;53	uint8_t		checksum;54	uint8_t		oem_id[CRAT_OEMID_LENGTH];55	uint8_t		oem_table_id[CRAT_OEMTABLEID_LENGTH];56	uint32_t	oem_revision;57	uint32_t	creator_id;58	uint32_t	creator_revision;59	uint32_t	total_entries;60	uint16_t	num_domains;61	uint8_t		reserved[CRAT_RESERVED_LENGTH];62};63 64/*65 * The header structure is immediately followed by total_entries of the66 * data definitions67 */68 69/*70 * The currently defined subtype entries in the CRAT71 */72#define CRAT_SUBTYPE_COMPUTEUNIT_AFFINITY	073#define CRAT_SUBTYPE_MEMORY_AFFINITY		174#define CRAT_SUBTYPE_CACHE_AFFINITY		275#define CRAT_SUBTYPE_TLB_AFFINITY		376#define CRAT_SUBTYPE_CCOMPUTE_AFFINITY		477#define CRAT_SUBTYPE_IOLINK_AFFINITY		578#define CRAT_SUBTYPE_MAX			679 80/*81 * Do not change the value of CRAT_SIBLINGMAP_SIZE from 3282 * as it breaks the ABI.83 */84#define CRAT_SIBLINGMAP_SIZE	3285 86/*87 * ComputeUnit Affinity structure and definitions88 */89#define CRAT_CU_FLAGS_ENABLED		0x0000000190#define CRAT_CU_FLAGS_HOT_PLUGGABLE	0x0000000291#define CRAT_CU_FLAGS_CPU_PRESENT	0x0000000492#define CRAT_CU_FLAGS_GPU_PRESENT	0x0000000893#define CRAT_CU_FLAGS_IOMMU_PRESENT	0x0000001094#define CRAT_CU_FLAGS_RESERVED		0xffffffe095 96#define CRAT_COMPUTEUNIT_RESERVED_LENGTH 497 98struct crat_subtype_computeunit {99	uint8_t		type;100	uint8_t		length;101	uint16_t	reserved;102	uint32_t	flags;103	uint32_t	proximity_domain;104	uint32_t	processor_id_low;105	uint16_t	num_cpu_cores;106	uint16_t	num_simd_cores;107	uint16_t	max_waves_simd;108	uint16_t	io_count;109	uint16_t	hsa_capability;110	uint16_t	lds_size_in_kb;111	uint8_t		wave_front_size;112	uint8_t		num_banks;113	uint16_t	micro_engine_id;114	uint8_t		array_count;115	uint8_t		num_cu_per_array;116	uint8_t		num_simd_per_cu;117	uint8_t		max_slots_scatch_cu;118	uint8_t		reserved2[CRAT_COMPUTEUNIT_RESERVED_LENGTH];119};120 121/*122 * HSA Memory Affinity structure and definitions123 */124#define CRAT_MEM_FLAGS_ENABLED		0x00000001125#define CRAT_MEM_FLAGS_HOT_PLUGGABLE	0x00000002126#define CRAT_MEM_FLAGS_NON_VOLATILE	0x00000004127#define CRAT_MEM_FLAGS_RESERVED		0xfffffff8128 129#define CRAT_MEMORY_RESERVED_LENGTH 8130 131struct crat_subtype_memory {132	uint8_t		type;133	uint8_t		length;134	uint16_t	reserved;135	uint32_t	flags;136	uint32_t	proximity_domain;137	uint32_t	base_addr_low;138	uint32_t	base_addr_high;139	uint32_t	length_low;140	uint32_t	length_high;141	uint32_t	width;142	uint8_t		visibility_type; /* for virtual (dGPU) CRAT */143	uint8_t		reserved2[CRAT_MEMORY_RESERVED_LENGTH - 1];144};145 146/*147 * HSA Cache Affinity structure and definitions148 */149#define CRAT_CACHE_FLAGS_ENABLED	0x00000001150#define CRAT_CACHE_FLAGS_DATA_CACHE	0x00000002151#define CRAT_CACHE_FLAGS_INST_CACHE	0x00000004152#define CRAT_CACHE_FLAGS_CPU_CACHE	0x00000008153#define CRAT_CACHE_FLAGS_SIMD_CACHE	0x00000010154#define CRAT_CACHE_FLAGS_RESERVED	0xffffffe0155 156#define CRAT_CACHE_RESERVED_LENGTH 8157 158struct crat_subtype_cache {159	uint8_t		type;160	uint8_t		length;161	uint16_t	reserved;162	uint32_t	flags;163	uint32_t	processor_id_low;164	uint8_t		sibling_map[CRAT_SIBLINGMAP_SIZE];165	uint32_t	cache_size;166	uint8_t		cache_level;167	uint8_t		lines_per_tag;168	uint16_t	cache_line_size;169	uint8_t		associativity;170	uint8_t		cache_properties;171	uint16_t	cache_latency;172	uint8_t		reserved2[CRAT_CACHE_RESERVED_LENGTH];173};174 175/*176 * HSA TLB Affinity structure and definitions177 */178#define CRAT_TLB_FLAGS_ENABLED	0x00000001179#define CRAT_TLB_FLAGS_DATA_TLB	0x00000002180#define CRAT_TLB_FLAGS_INST_TLB	0x00000004181#define CRAT_TLB_FLAGS_CPU_TLB	0x00000008182#define CRAT_TLB_FLAGS_SIMD_TLB	0x00000010183#define CRAT_TLB_FLAGS_RESERVED	0xffffffe0184 185#define CRAT_TLB_RESERVED_LENGTH 4186 187struct crat_subtype_tlb {188	uint8_t		type;189	uint8_t		length;190	uint16_t	reserved;191	uint32_t	flags;192	uint32_t	processor_id_low;193	uint8_t		sibling_map[CRAT_SIBLINGMAP_SIZE];194	uint32_t	tlb_level;195	uint8_t		data_tlb_associativity_2mb;196	uint8_t		data_tlb_size_2mb;197	uint8_t		instruction_tlb_associativity_2mb;198	uint8_t		instruction_tlb_size_2mb;199	uint8_t		data_tlb_associativity_4k;200	uint8_t		data_tlb_size_4k;201	uint8_t		instruction_tlb_associativity_4k;202	uint8_t		instruction_tlb_size_4k;203	uint8_t		data_tlb_associativity_1gb;204	uint8_t		data_tlb_size_1gb;205	uint8_t		instruction_tlb_associativity_1gb;206	uint8_t		instruction_tlb_size_1gb;207	uint8_t		reserved2[CRAT_TLB_RESERVED_LENGTH];208};209 210/*211 * HSA CCompute/APU Affinity structure and definitions212 */213#define CRAT_CCOMPUTE_FLAGS_ENABLED	0x00000001214#define CRAT_CCOMPUTE_FLAGS_RESERVED	0xfffffffe215 216#define CRAT_CCOMPUTE_RESERVED_LENGTH 16217 218struct crat_subtype_ccompute {219	uint8_t		type;220	uint8_t		length;221	uint16_t	reserved;222	uint32_t	flags;223	uint32_t	processor_id_low;224	uint8_t		sibling_map[CRAT_SIBLINGMAP_SIZE];225	uint32_t	apu_size;226	uint8_t		reserved2[CRAT_CCOMPUTE_RESERVED_LENGTH];227};228 229/*230 * HSA IO Link Affinity structure and definitions231 */232#define CRAT_IOLINK_FLAGS_ENABLED		(1 << 0)233#define CRAT_IOLINK_FLAGS_NON_COHERENT		(1 << 1)234#define CRAT_IOLINK_FLAGS_NO_ATOMICS_32_BIT	(1 << 2)235#define CRAT_IOLINK_FLAGS_NO_ATOMICS_64_BIT	(1 << 3)236#define CRAT_IOLINK_FLAGS_NO_PEER_TO_PEER_DMA	(1 << 4)237#define CRAT_IOLINK_FLAGS_BI_DIRECTIONAL	(1 << 31)238#define CRAT_IOLINK_FLAGS_RESERVED_MASK		0x7fffffe0239 240/*241 * IO interface types242 */243#define CRAT_IOLINK_TYPE_UNDEFINED	0244#define CRAT_IOLINK_TYPE_HYPERTRANSPORT	1245#define CRAT_IOLINK_TYPE_PCIEXPRESS	2246#define CRAT_IOLINK_TYPE_AMBA		3247#define CRAT_IOLINK_TYPE_MIPI		4248#define CRAT_IOLINK_TYPE_QPI_1_1	5249#define CRAT_IOLINK_TYPE_RESERVED1	6250#define CRAT_IOLINK_TYPE_RESERVED2	7251#define CRAT_IOLINK_TYPE_RAPID_IO	8252#define CRAT_IOLINK_TYPE_INFINIBAND	9253#define CRAT_IOLINK_TYPE_RESERVED3	10254#define CRAT_IOLINK_TYPE_XGMI		11255#define CRAT_IOLINK_TYPE_XGOP		12256#define CRAT_IOLINK_TYPE_GZ		13257#define CRAT_IOLINK_TYPE_ETHERNET_RDMA	14258#define CRAT_IOLINK_TYPE_RDMA_OTHER	15259#define CRAT_IOLINK_TYPE_OTHER		16260#define CRAT_IOLINK_TYPE_MAX		255261 262#define CRAT_IOLINK_RESERVED_LENGTH	24263 264struct crat_subtype_iolink {265	uint8_t		type;266	uint8_t		length;267	uint16_t	reserved;268	uint32_t	flags;269	uint32_t	proximity_domain_from;270	uint32_t	proximity_domain_to;271	uint8_t		io_interface_type;272	uint8_t		version_major;273	uint16_t	version_minor;274	uint32_t	minimum_latency;275	uint32_t	maximum_latency;276	uint32_t	minimum_bandwidth_mbs;277	uint32_t	maximum_bandwidth_mbs;278	uint32_t	recommended_transfer_size;279	uint8_t		reserved2[CRAT_IOLINK_RESERVED_LENGTH - 1];280	uint8_t		weight_xgmi;281};282 283/*284 * HSA generic sub-type header285 */286 287#define CRAT_SUBTYPE_FLAGS_ENABLED 0x00000001288 289struct crat_subtype_generic {290	uint8_t		type;291	uint8_t		length;292	uint16_t	reserved;293	uint32_t	flags;294};295 296#pragma pack()297 298struct kfd_node;299 300/* Static table to describe GPU Cache information */301struct kfd_gpu_cache_info {302	uint32_t	cache_size;303	uint32_t	cache_level;304	uint32_t	cache_line_size;305	uint32_t	flags;306	/* Indicates how many Compute Units share this cache307	 * within a SA. Value = 1 indicates the cache is not shared308	 */309	uint32_t	num_cu_shared;310};311int kfd_get_gpu_cache_info(struct kfd_node *kdev, struct kfd_gpu_cache_info **pcache_info);312 313void kfd_destroy_crat_image(void *crat_image);314int kfd_parse_crat_table(void *crat_image, struct list_head *device_list,315			 uint32_t proximity_domain);316int kfd_create_crat_image_virtual(void **crat_image, size_t *size,317				  int flags, struct kfd_node *kdev,318				  uint32_t proximity_domain);319 320#endif /* KFD_CRAT_H_INCLUDED */321