From: Jianxun Zhang Date: Fri, 11 Nov 2022 20:34:46 +0000 (-0800) Subject: intel/common: Add a new struct to describe AUX mapping format X-Git-Tag: upstream/23.3.3~15784 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=d0520430aa8f5db68e49c74613b6b2c0e0716d2c;p=platform%2Fupstream%2Fmesa.git intel/common: Add a new struct to describe AUX mapping format The new struct and some helper functions are for further refactoring. Reworks: * Jordan: Refactor code around aux format array Signed-off-by: Jianxun Zhang Reviewed-by: Jordan Justen Part-of: --- diff --git a/src/intel/common/intel_aux_map.c b/src/intel/common/intel_aux_map.c index cc82016..1b162e3 100644 --- a/src/intel/common/intel_aux_map.c +++ b/src/intel/common/intel_aux_map.c @@ -26,6 +26,9 @@ * ends up providing information about the auxiliary surface data, including * the address where the auxiliary data resides. * + * The below sections depict address splitting and formats of table entries of + * TGL platform. These may vary on other platforms. + * * The 48-bit VMA (GPU) address of the main surface is split to do the address * lookup: * @@ -111,6 +114,47 @@ enum intel_aux_map_format { INTEL_AUX_MAP_LAST, }; +/** + * An incomplete description of AUX mapping formats + * + * Theoretically, many things can be different, depending on hardware + * design like level of page tables, address splitting, format bits + * etc. We only manage the known delta to simplify the implementation + * this time. + */ +struct aux_format_info { + /** + * Granularity of main surface in compression. It must be power of 2. + */ + uint64_t main_page_size; + /** + * The ratio of main surface to an AUX entry. + */ + uint64_t main_to_aux_ratio; + /** + * Page size of level 1 page table. It must be power of 2. + */ + uint64_t l1_page_size; + /** + * Mask of index bits of level 1 page table in address splitting. + */ + uint64_t l1_index_mask; + /** + * Offset of index bits of level 1 page table in address splitting. + */ + uint64_t l1_index_offset; +}; + +static const struct aux_format_info aux_formats[] = { + [INTEL_AUX_MAP_GFX12_64KB] = { + .main_page_size = 64 * 1024, + .main_to_aux_ratio = 256, + .l1_page_size = 8 * 1024, + .l1_index_mask = 0xff, + .l1_index_offset = 16, + }, +}; + struct aux_map_buffer { struct list_head link; struct intel_buffer *buffer; @@ -126,8 +170,49 @@ struct intel_aux_map_context { uint64_t *level3_map; uint32_t tail_offset, tail_remaining; uint32_t state_num; + const struct aux_format_info *format; }; +static inline uint64_t +get_page_mask(const uint64_t page_size) +{ + return page_size - 1; +} + +static inline uint64_t +get_meta_page_size(const struct aux_format_info *info) +{ + return info->main_page_size / info->main_to_aux_ratio; +} + +static inline uint64_t +get_index(const uint64_t main_address, + const uint64_t index_mask, const uint64_t index_offset) +{ + return (main_address >> index_offset) & index_mask; +} + +uint64_t +intel_aux_get_meta_address_mask(struct intel_aux_map_context *ctx) +{ + return ~get_page_mask(get_meta_page_size(ctx->format)) << 16 >> 16; +} + +uint64_t +intel_aux_get_main_to_aux_ratio(struct intel_aux_map_context *ctx) +{ + return ctx->format->main_to_aux_ratio; +} + +static const struct aux_format_info * +get_format(enum intel_aux_map_format format) +{ + + assert(format < INTEL_AUX_MAP_LAST); + assert(ARRAY_SIZE(aux_formats) == INTEL_AUX_MAP_LAST); + return &aux_formats[format]; +} + static bool add_buffer(struct intel_aux_map_context *ctx) { diff --git a/src/intel/common/intel_aux_map.h b/src/intel/common/intel_aux_map.h index 4884bc8..1d9eb28 100644 --- a/src/intel/common/intel_aux_map.h +++ b/src/intel/common/intel_aux_map.h @@ -72,6 +72,20 @@ intel_aux_map_get_state_num(struct intel_aux_map_context *ctx); uint32_t intel_aux_map_get_num_buffers(struct intel_aux_map_context *ctx); +/** + * Returns the mask of meta data address in L1 entry + * + * The mask value is effected by page size of meta data specific to a platform. + */ +uint64_t +intel_aux_get_meta_address_mask(struct intel_aux_map_context *ctx); + +/** + * Returns the ratio between the granularity of main surface and AUX data + */ +uint64_t +intel_aux_get_main_to_aux_ratio(struct intel_aux_map_context *ctx); + /** Fill an array of exec_object2 with aux-map buffer handles * * The intel_aux_map_get_num_buffers call should be made, then the driver can