[Intel-gfx] [PATCH v7 01/13] drm/i915/guc: Update GuC ADS size for error capture lists
Teres Alexis, Alan Previn
alan.previn.teres.alexis at intel.com
Sat Feb 26 20:22:48 UTC 2022
On 2/26/2022 1:55 AM, Alan Previn wrote:
> -static void guc_capture_list_init(struct intel_guc *guc)
> +static int
> +guc_capture_prep_lists(struct intel_guc *guc)
> {
...
> - /* FIXME: Populate a proper capture list */
> + /* first, set aside the first page for a capture_list with zero descriptors */
> + total_size = PAGE_SIZE;
> + if (!iosys_map_is_null(&guc->ads_map)) {
> + file = shmem_create_from_data("guc-err-cap", null_header, sizeof(null_header));
Alan: CI caught a bug - above line was triggering memory allocation
i completely forgot ... will fix to match the other ADS err-capture lists
in this function - i.e. intel_guc_capture will allocate on first boot
and cache it.
> + if (!IS_ERR(file)) {
> + shmem_read_to_iosys_map(file, 0, &guc->ads_map,
> + ggtt, sizeof(null_header));
> + fput(file);
> + } else {
> + drm_dbg(&i915->drm, "GuC-capture: failed shmem for nulllist = 0x%016lx",
> + PTR_ERR(file));
> + }
> + null_ggtt = ggtt;
> + ggtt += PAGE_SIZE;
> + }
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.freedesktop.org/archives/intel-gfx/attachments/20220226/f44dd9f9/attachment.htm>
More information about the Intel-gfx
mailing list