[Intel-gfx] [PATCH v2 4/5] drm/i915/guc: Add GuC CT specific debug print wrappers

Michal Wajdeczko michal.wajdeczko at intel.com
Thu Dec 1 11:56:40 UTC 2022



On 01.12.2022 01:41, John Harrison wrote:
> On 11/23/2022 12:45, Michal Wajdeczko wrote:
>> On 23.11.2022 02:25, John Harrison wrote:
>>> On 11/22/2022 09:54, Michal Wajdeczko wrote:
>>>> On 18.11.2022 02:58, John.C.Harrison at Intel.com wrote:
>>>>> From: John Harrison <John.C.Harrison at Intel.com>
>>>>>
>>>>> Re-work the existing GuC CT printers and extend as required to match
>>>>> the new wrapping scheme.
>>>>>
>>>>> Signed-off-by: John Harrison <John.C.Harrison at Intel.com>
>>>>> ---
>>>>>    drivers/gpu/drm/i915/gt/uc/intel_guc_ct.c | 222
>>>>> +++++++++++-----------
>>>>>    1 file changed, 113 insertions(+), 109 deletions(-)
>>>>>
>>>>> diff --git a/drivers/gpu/drm/i915/gt/uc/intel_guc_ct.c
>>>>> b/drivers/gpu/drm/i915/gt/uc/intel_guc_ct.c
>>>>> index 2b22065e87bf9..9d404fb377637 100644
>>>>> --- a/drivers/gpu/drm/i915/gt/uc/intel_guc_ct.c
>>>>> +++ b/drivers/gpu/drm/i915/gt/uc/intel_guc_ct.c
>>>>> @@ -18,31 +18,49 @@ static inline struct intel_guc *ct_to_guc(struct
>>>>> intel_guc_ct *ct)
>>>>>        return container_of(ct, struct intel_guc, ct);
>>>>>    }
>>>>>    -static inline struct intel_gt *ct_to_gt(struct intel_guc_ct *ct)
>>>>> -{
>>>>> -    return guc_to_gt(ct_to_guc(ct));
>>>>> -}
>>>>> -
>>>>>    static inline struct drm_i915_private *ct_to_i915(struct
>>>>> intel_guc_ct *ct)
>>>>>    {
>>>>> -    return ct_to_gt(ct)->i915;
>>>>> -}
>>>>> +    struct intel_guc *guc = ct_to_guc(ct);
>>>>> +    struct intel_gt *gt = guc_to_gt(guc);
>>>>>    -static inline struct drm_device *ct_to_drm(struct intel_guc_ct
>>>>> *ct)
>>>>> -{
>>>>> -    return &ct_to_i915(ct)->drm;
>>>>> +    return gt->i915;
>>>>>    }
>>>>>    -#define CT_ERROR(_ct, _fmt, ...) \
>>>>> -    drm_err(ct_to_drm(_ct), "CT: " _fmt, ##__VA_ARGS__)
>>>>> +#define ct_err(_ct, _fmt, ...) \
>>>>> +    guc_err(ct_to_guc(_ct), "CT " _fmt, ##__VA_ARGS__)
>>>>> +
>>>>> +#define ct_warn(_ct, _fmt, ...) \
>>>>> +    guc_warn(ct_to_guc(_ct), "CT " _fmt, ##__VA_ARGS__)
>>>>> +
>>>>> +#define ct_notice(_ct, _fmt, ...) \
>>>>> +    guc_notice(ct_to_guc(_ct), "CT " _fmt, ##__VA_ARGS__)
>>>>> +
>>>>> +#define ct_info(_ct, _fmt, ...) \
>>>>> +    guc_info(ct_to_guc(_ct), "CT " _fmt, ##__VA_ARGS__)
>>>>> +
>>>>>    #ifdef CONFIG_DRM_I915_DEBUG_GUC
>>>>> -#define CT_DEBUG(_ct, _fmt, ...) \
>>>>> -    drm_dbg(ct_to_drm(_ct), "CT: " _fmt, ##__VA_ARGS__)
>>>>> +#define ct_dbg(_ct, _fmt, ...) \
>>>>> +    guc_dbg(ct_to_guc(_ct), "CT " _fmt, ##__VA_ARGS__)
>>>>>    #else
>>>>> -#define CT_DEBUG(...)    do { } while (0)
>>>>> +#define ct_dbg(...)    do { } while (0)
>>>>>    #endif
>>>>> -#define CT_PROBE_ERROR(_ct, _fmt, ...) \
>>>>> -    i915_probe_error(ct_to_i915(ct), "CT: " _fmt, ##__VA_ARGS__)
>>>>> +
>>>>> +#define ct_probe_error(_ct, _fmt, ...) \
>>>>> +    do { \
>>>>> +        if (i915_error_injected()) \
>>>>> +            ct_dbg(_ct, _fmt, ##__VA_ARGS__); \
>>>>> +        else \
>>>>> +            ct_err(_ct, _fmt, ##__VA_ARGS__); \
>>>>> +    } while (0)
>>>> guc_probe_error ?
>>>>
>>>>> +
>>>>> +#define ct_WARN_ON(_ct, _condition) \
>>>>> +    ct_WARN(_ct, _condition, "%s", "ct_WARN_ON("
>>>>> __stringify(_condition) ")")
>>>>> +
>>>>> +#define ct_WARN(_ct, _condition, _fmt, ...) \
>>>>> +    guc_WARN(ct_to_guc(_ct), _condition, "CT " _fmt, ##__VA_ARGS__)
>>>>> +
>>>>> +#define ct_WARN_ONCE(_ct, _condition, _fmt, ...) \
>>>>> +    guc_WARN_ONCE(ct_to_guc(_ct), _condition, "CT " _fmt,
>>>>> ##__VA_ARGS__)
>>>>>      /**
>>>>>     * DOC: CTB Blob
>>>>> @@ -170,7 +188,7 @@ static int ct_control_enable(struct intel_guc_ct
>>>>> *ct, bool enable)
>>>>>        err = guc_action_control_ctb(ct_to_guc(ct), enable ?
>>>>>                         GUC_CTB_CONTROL_ENABLE :
>>>>> GUC_CTB_CONTROL_DISABLE);
>>>>>        if (unlikely(err))
>>>>> -        CT_PROBE_ERROR(ct, "Failed to control/%s CTB (%pe)\n",
>>>>> +        ct_probe_error(ct, "Failed to control/%s CTB (%pe)\n",
>>>>>                       str_enable_disable(enable), ERR_PTR(err));
>>>> btw, shouldn't we change all messages to start with lowercase ?
>>>>
>>>> was:
>>>>      "CT0: Failed to control/%s CTB (%pe)"
>>>> is:
>>>>      "GT0: GuC CT Failed to control/%s CTB (%pe)"
>>>>
>>>> unless we keep colon (as suggested by Tvrtko) as then:
>>>>
>>>>      "GT0: GuC CT: Failed to control/%s CTB (%pe)"
>>> Blanket added the colon makes it messy when a string actually wants to
>>> start with the prefix. The rule I've been using is lower case word when
>>> the prefix was part of the string, upper case word when the prefix is
>> Hmm, I'm not sure that we should attempt to have such a flexible rule as
>> we shouldn't rely too much on actual format of the prefix as it could be
>> changed any time.  All we should know about final log message is that it
>> _will_ properly identify the "GT" or "GuC" that this log is related to.
>>
>> So I would suggest to be just consistent and probably always start with
>> upper case, as that seems to be mostly used in kernel error logs, and
>> just make sure that any prefix will honor that (by including colon, or
>> braces), so this will always work like:
>>
>> "[drm] *ERROR* GT0: Failed to foo (-EIO)"
>> "[drm] *ERROR* GT0: GUC: Failed to foo (-EIO)"
>> "[drm] *ERROR* GT0: GUC: CT: Failed to foo (-EIO)"
>>
>> or
>>
>> "[drm] *ERROR* GT0: Failed to foo (-EIO)"
>> "[drm] *ERROR* GT0: [GUC] Failed to foo (-EIO)"
>> "[drm] *ERROR* GT0: [GUC] CT: Failed to foo (-EIO)"
>>
>> and even for:
>>
>> "[drm] *ERROR* GT(root) Failed to foo (-EIO)"
>> "[drm] *ERROR* GuC(media) Failed to foo (-EIO)"
>> "[drm] *ERROR* GT0 [GuC:CT] Failed to foo (-EIO)"
> All of which are hideous/complex/verbose/inconsistent. 'GT0: GUC: CT:'?
> Really? Or 'GT0: [GUC] CT:'? Why the random mix of separators? And how
> would you implement '[GUC:CT]' without having a CT definition that is
> entirely self contained and does chain on to the GuC level version?

you missed the point, as those were just examples of different possible
prefixes that one could define, to show that actual message shall not
make any assumption how such prefix will look like or how it will end
(like with or w/o colon, with "GuC" or "GT" tag or whatever)

> 
> This is pointless bikeshedding. If you want to re-write every single
> debug print (yet again) and invent much more complicated macro

the opposite, I want clear understanding how messages should be written
to *avoid* rewriting them if (for some reason) we decide to change or
update the prefix in the future

> definitions then feel free to take over the patch set. If not can we
> just approve the v3 version and move on to doing some actual work?

if everyone is happy that there is inconsistency in use between gt_xxx
messages where we shall be using messages starting with upper case
(since prefix ends with colon) and guc/ct_xxx messages where we shall be
using lower case message (since there is a known prefix without colon,
either "GuC" or "CT") then I'll be also fine, but for now that bothers
me a little, hence asking for clarifications/agreement

and while for dbg level messages it doesn't matter, I assume we should
be consistent for err/warn/info messages (as those will eventually show
up to the end user) so let maintainers decide here what is expectation here

> 
> John.
> 
> 
>>
>>
>>> just being added as a prefix. I originally just had the prefix as raw
>>> with no trailing space, so the individual print could decide to add a
>>> colon, a space, or whatever as appropriate. But that just makes for
>>> messy code with some files having every string look like ": Stuff
>>> happened" and other files have every string look like " failed to ...".
>>> The current version seems to be the most readable from the point of view
>>> of writing the code and of reading the dmesg results.
>>>
>>> And to be clear, the 'CT0' you have in your 'was' example only exists in
>>> the internal tree. It never made it to upstream. It is also just plain
>>> wrong. Each GT has two CTs - send and receive. So having 'CT1' meaning
>>> some random CT on GT1 (as opposed to the read channel on GT0, for
>>> example) was very confusing.
>> I don't think I was wrong, it might be you confusing CT with CTB.
>>
>> Note that we only support _single_ CT (Command Transport) and this
>> single CT includes _pair_ of CTBs (Command Transport Buffers).
>>
>> And logs/macros are CT oriented, not CTB.
> The GuC spec does not make any distinction. In fact, there is no CT in

but "CT" concept is already there, we do have intel_guc_ct, right?

https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/i915/gt/uc/intel_guc_ct.h#L22

https://elixir.bootlin.com/linux/latest/source/drivers/gpu/drm/i915/gt/uc/intel_guc_ct.h#L56

> the spec. There is just CTB. So at best it is ambiguous as to what CT0 /
> CT1 refers to.
> 
>>
>> Regarding those my internal changes that were printing "CT%u": they were
>> added exactly for the same reason as your series: to know which GT
>> traffic we are tracing.  And were done locally on CT level only as there
>> was no helpers that would automatically append "GT%u" prefix - helpers
>> that you're defining right now ;)
>>
>> Michal
>>
>>> John.
>>>
>>>
>>>> Michal
>>>>
>>>>>          return err;
>>>>> @@ -201,7 +219,7 @@ static int ct_register_buffer(struct intel_guc_ct
>>>>> *ct, bool send,
>>>>>                       size);
>>>>>        if (unlikely(err))
>>>>>    failed:
>>>>> -        CT_PROBE_ERROR(ct, "Failed to register %s buffer (%pe)\n",
>>>>> +        ct_probe_error(ct, "Failed to register %s buffer (%pe)\n",
>>>>>                       send ? "SEND" : "RECV", ERR_PTR(err));
>>>>>          return err;
>>>>> @@ -235,21 +253,21 @@ int intel_guc_ct_init(struct intel_guc_ct *ct)
>>>>>        blob_size = 2 * CTB_DESC_SIZE + CTB_H2G_BUFFER_SIZE +
>>>>> CTB_G2H_BUFFER_SIZE;
>>>>>        err = intel_guc_allocate_and_map_vma(guc, blob_size, &ct->vma,
>>>>> &blob);
>>>>>        if (unlikely(err)) {
>>>>> -        CT_PROBE_ERROR(ct, "Failed to allocate %u for CTB data
>>>>> (%pe)\n",
>>>>> +        ct_probe_error(ct, "Failed to allocate %u for CTB data
>>>>> (%pe)\n",
>>>>>                       blob_size, ERR_PTR(err));
>>>>>            return err;
>>>>>        }
>>>>>    -    CT_DEBUG(ct, "base=%#x size=%u\n", intel_guc_ggtt_offset(guc,
>>>>> ct->vma), blob_size);
>>>>> +    ct_dbg(ct, "base=%#x size=%u\n", intel_guc_ggtt_offset(guc,
>>>>> ct->vma), blob_size);
>>>>>          /* store pointers to desc and cmds for send ctb */
>>>>>        desc = blob;
>>>>>        cmds = blob + 2 * CTB_DESC_SIZE;
>>>>>        cmds_size = CTB_H2G_BUFFER_SIZE;
>>>>>        resv_space = 0;
>>>>> -    CT_DEBUG(ct, "%s desc %#tx cmds %#tx size %u/%u\n", "send",
>>>>> -         ptrdiff(desc, blob), ptrdiff(cmds, blob), cmds_size,
>>>>> -         resv_space);
>>>>> +    ct_dbg(ct, "%s desc %#tx cmds %#tx size %u/%u\n", "send",
>>>>> +           ptrdiff(desc, blob), ptrdiff(cmds, blob), cmds_size,
>>>>> +           resv_space);
>>>>>          guc_ct_buffer_init(&ct->ctbs.send, desc, cmds, cmds_size,
>>>>> resv_space);
>>>>>    @@ -258,9 +276,9 @@ int intel_guc_ct_init(struct intel_guc_ct *ct)
>>>>>        cmds = blob + 2 * CTB_DESC_SIZE + CTB_H2G_BUFFER_SIZE;
>>>>>        cmds_size = CTB_G2H_BUFFER_SIZE;
>>>>>        resv_space = G2H_ROOM_BUFFER_SIZE;
>>>>> -    CT_DEBUG(ct, "%s desc %#tx cmds %#tx size %u/%u\n", "recv",
>>>>> -         ptrdiff(desc, blob), ptrdiff(cmds, blob), cmds_size,
>>>>> -         resv_space);
>>>>> +    ct_dbg(ct, "%s desc %#tx cmds %#tx size %u/%u\n", "recv",
>>>>> +           ptrdiff(desc, blob), ptrdiff(cmds, blob), cmds_size,
>>>>> +           resv_space);
>>>>>          guc_ct_buffer_init(&ct->ctbs.recv, desc, cmds, cmds_size,
>>>>> resv_space);
>>>>>    @@ -338,7 +356,7 @@ int intel_guc_ct_enable(struct intel_guc_ct
>>>>> *ct)
>>>>>        return 0;
>>>>>      err_out:
>>>>> -    CT_PROBE_ERROR(ct, "Failed to enable CTB (%pe)\n", ERR_PTR(err));
>>>>> +    ct_probe_error(ct, "Failed to enable CTB (%pe)\n", ERR_PTR(err));
>>>>>        return err;
>>>>>    }
>>>>>    @@ -387,14 +405,12 @@ static int ct_write(struct intel_guc_ct *ct,
>>>>>      #ifdef CONFIG_DRM_I915_DEBUG_GUC
>>>>>        if (unlikely(tail != READ_ONCE(desc->tail))) {
>>>>> -        CT_ERROR(ct, "Tail was modified %u != %u\n",
>>>>> -             desc->tail, tail);
>>>>> +        ct_err(ct, "Tail was modified %u != %u\n", desc->tail, tail);
>>>>>            desc->status |= GUC_CTB_STATUS_MISMATCH;
>>>>>            goto corrupted;
>>>>>        }
>>>>>        if (unlikely(READ_ONCE(desc->head) >= size)) {
>>>>> -        CT_ERROR(ct, "Invalid head offset %u >= %u)\n",
>>>>> -             desc->head, size);
>>>>> +        ct_err(ct, "Invalid head offset %u >= %u)\n", desc->head,
>>>>> size);
>>>>>            desc->status |= GUC_CTB_STATUS_OVERFLOW;
>>>>>            goto corrupted;
>>>>>        }
>>>>> @@ -415,8 +431,8 @@ static int ct_write(struct intel_guc_ct *ct,
>>>>>            FIELD_PREP(GUC_HXG_EVENT_MSG_0_ACTION |
>>>>>                   GUC_HXG_EVENT_MSG_0_DATA0, action[0]);
>>>>>    -    CT_DEBUG(ct, "writing (tail %u) %*ph %*ph %*ph\n",
>>>>> -         tail, 4, &header, 4, &hxg, 4 * (len - 1), &action[1]);
>>>>> +    ct_dbg(ct, "writing (tail %u) %*ph %*ph %*ph\n",
>>>>> +           tail, 4, &header, 4, &hxg, 4 * (len - 1), &action[1]);
>>>>>          cmds[tail] = header;
>>>>>        tail = (tail + 1) % size;
>>>>> @@ -447,8 +463,8 @@ static int ct_write(struct intel_guc_ct *ct,
>>>>>        return 0;
>>>>>      corrupted:
>>>>> -    CT_ERROR(ct, "Corrupted descriptor head=%u tail=%u status=%#x\n",
>>>>> -         desc->head, desc->tail, desc->status);
>>>>> +    ct_err(ct, "Corrupted descriptor on write head=%u tail=%u
>>>>> status=%#x\n",
>>>>> +           desc->head, desc->tail, desc->status);
>>>>>        ctb->broken = true;
>>>>>        return -EPIPE;
>>>>>    }
>>>>> @@ -507,17 +523,14 @@ static inline bool ct_deadlocked(struct
>>>>> intel_guc_ct *ct)
>>>>>            struct guc_ct_buffer_desc *send = ct->ctbs.send.desc;
>>>>>            struct guc_ct_buffer_desc *recv = ct->ctbs.send.desc;
>>>>>    -        CT_ERROR(ct, "Communication stalled for %lld ms, desc
>>>>> status=%#x,%#x\n",
>>>>> -             ktime_ms_delta(ktime_get(), ct->stall_time),
>>>>> -             send->status, recv->status);
>>>>> -        CT_ERROR(ct, "H2G Space: %u (Bytes)\n",
>>>>> -             atomic_read(&ct->ctbs.send.space) * 4);
>>>>> -        CT_ERROR(ct, "Head: %u (Dwords)\n",
>>>>> ct->ctbs.send.desc->head);
>>>>> -        CT_ERROR(ct, "Tail: %u (Dwords)\n",
>>>>> ct->ctbs.send.desc->tail);
>>>>> -        CT_ERROR(ct, "G2H Space: %u (Bytes)\n",
>>>>> -             atomic_read(&ct->ctbs.recv.space) * 4);
>>>>> -        CT_ERROR(ct, "Head: %u\n (Dwords)",
>>>>> ct->ctbs.recv.desc->head);
>>>>> -        CT_ERROR(ct, "Tail: %u\n (Dwords)",
>>>>> ct->ctbs.recv.desc->tail);
>>>>> +        ct_err(ct, "Communication stalled for %lld ms, desc
>>>>> status=%#x,%#x\n",
>>>>> +               ktime_ms_delta(ktime_get(), ct->stall_time),
>>>>> send->status, recv->status);
>>>>> +        ct_err(ct, "H2G Space: %u (Bytes)\n",
>>>>> atomic_read(&ct->ctbs.send.space) * 4);
>>>>> +        ct_err(ct, "Head: %u (Dwords)\n", ct->ctbs.send.desc->head);
>>>>> +        ct_err(ct, "Tail: %u (Dwords)\n", ct->ctbs.send.desc->tail);
>>>>> +        ct_err(ct, "G2H Space: %u (Bytes)\n",
>>>>> atomic_read(&ct->ctbs.recv.space) * 4);
>>>>> +        ct_err(ct, "Head: %u\n (Dwords)", ct->ctbs.recv.desc->head);
>>>>> +        ct_err(ct, "Tail: %u\n (Dwords)", ct->ctbs.recv.desc->tail);
>>>>>              ct->ctbs.send.broken = true;
>>>>>        }
>>>>> @@ -563,8 +576,7 @@ static inline bool h2g_has_room(struct
>>>>> intel_guc_ct *ct, u32 len_dw)
>>>>>          head = READ_ONCE(desc->head);
>>>>>        if (unlikely(head > ctb->size)) {
>>>>> -        CT_ERROR(ct, "Invalid head offset %u >= %u)\n",
>>>>> -             head, ctb->size);
>>>>> +        ct_err(ct, "Invalid head offset %u >= %u)\n", head,
>>>>> ctb->size);
>>>>>            desc->status |= GUC_CTB_STATUS_OVERFLOW;
>>>>>            ctb->broken = true;
>>>>>            return false;
>>>>> @@ -715,17 +727,17 @@ static int ct_send(struct intel_guc_ct *ct,
>>>>>                /* wait_for_ct_request_update returns -ENODEV on
>>>>> reset/suspend in progress.
>>>>>                 * In this case, output is debug rather than error info
>>>>>                 */
>>>>> -            CT_DEBUG(ct, "Request %#x (fence %u) cancelled as CTB is
>>>>> disabled\n",
>>>>> -                 action[0], request.fence);
>>>>> +            ct_dbg(ct, "Request %#x (fence %u) cancelled as CTB is
>>>>> disabled\n",
>>>>> +                   action[0], request.fence);
>>>>>            else
>>>>> -            CT_ERROR(ct, "No response for request %#x (fence %u)\n",
>>>>> -                 action[0], request.fence);
>>>>> +            ct_err(ct, "No response for request %#x (fence %u)\n",
>>>>> +                   action[0], request.fence);
>>>>>            goto unlink;
>>>>>        }
>>>>>          if (FIELD_GET(GUC_HXG_MSG_0_TYPE, *status) ==
>>>>> GUC_HXG_TYPE_NO_RESPONSE_RETRY) {
>>>>> -        CT_DEBUG(ct, "retrying request %#x (%u)\n", *action,
>>>>> -             FIELD_GET(GUC_HXG_RETRY_MSG_0_REASON, *status));
>>>>> +        ct_dbg(ct, "retrying request %#x (%u)\n", *action,
>>>>> +               FIELD_GET(GUC_HXG_RETRY_MSG_0_REASON, *status));
>>>>>            send_again = true;
>>>>>            goto unlink;
>>>>>        }
>>>>> @@ -737,12 +749,12 @@ static int ct_send(struct intel_guc_ct *ct,
>>>>>          if (response_buf) {
>>>>>            /* There shall be no data in the status */
>>>>> -        WARN_ON(FIELD_GET(GUC_HXG_RESPONSE_MSG_0_DATA0,
>>>>> request.status));
>>>>> +        ct_WARN_ON(ct, FIELD_GET(GUC_HXG_RESPONSE_MSG_0_DATA0,
>>>>> request.status));
>>>>>            /* Return actual response len */
>>>>>            err = request.response_len;
>>>>>        } else {
>>>>>            /* There shall be no response payload */
>>>>> -        WARN_ON(request.response_len);
>>>>> +        ct_WARN_ON(ct, request.response_len);
>>>>>            /* Return data decoded from the status dword */
>>>>>            err = FIELD_GET(GUC_HXG_RESPONSE_MSG_0_DATA0, *status);
>>>>>        }
>>>>> @@ -771,7 +783,7 @@ int intel_guc_ct_send(struct intel_guc_ct *ct,
>>>>> const u32 *action, u32 len,
>>>>>            struct intel_guc *guc = ct_to_guc(ct);
>>>>>            struct intel_uc *uc = container_of(guc, struct intel_uc,
>>>>> guc);
>>>>>    -        WARN(!uc->reset_in_progress, "Unexpected send:
>>>>> action=%#x\n", *action);
>>>>> +        ct_WARN(ct, !uc->reset_in_progress, "Unexpected send:
>>>>> action=%#x\n", *action);
>>>>>            return -ENODEV;
>>>>>        }
>>>>>    @@ -784,11 +796,11 @@ int intel_guc_ct_send(struct intel_guc_ct
>>>>> *ct, const u32 *action, u32 len,
>>>>>        ret = ct_send(ct, action, len, response_buf, response_buf_size,
>>>>> &status);
>>>>>        if (unlikely(ret < 0)) {
>>>>>            if (ret != -ENODEV)
>>>>> -            CT_ERROR(ct, "Sending action %#x failed (%pe)
>>>>> status=%#X\n",
>>>>> -                 action[0], ERR_PTR(ret), status);
>>>>> +            ct_err(ct, "sending action %#x failed (%pe)
>>>>> status=%#X\n",
>>>>> +                   action[0], ERR_PTR(ret), status);
>>>>>        } else if (unlikely(ret)) {
>>>>> -        CT_DEBUG(ct, "send action %#x returned %d (%#x)\n",
>>>>> -             action[0], ret, ret);
>>>>> +        ct_dbg(ct, "send action %#x returned %d (%#x)\n",
>>>>> +               action[0], ret, ret);
>>>>>        }
>>>>>          return ret;
>>>>> @@ -838,7 +850,7 @@ static int ct_read(struct intel_guc_ct *ct,
>>>>> struct ct_incoming_msg **msg)
>>>>>                 * contexts/engines being reset. But should never
>>>>> happen as
>>>>>                 * no contexts should be active when CLIENT_RESET is
>>>>> sent.
>>>>>                 */
>>>>> -            CT_ERROR(ct, "Unexpected G2H after GuC has stopped!\n");
>>>>> +            ct_err(ct, "Unexpected G2H after GuC has stopped!\n");
>>>>>                status &= ~GUC_CTB_STATUS_UNUSED;
>>>>>            }
>>>>>    @@ -850,15 +862,13 @@ static int ct_read(struct intel_guc_ct *ct,
>>>>> struct ct_incoming_msg **msg)
>>>>>      #ifdef CONFIG_DRM_I915_DEBUG_GUC
>>>>>        if (unlikely(head != READ_ONCE(desc->head))) {
>>>>> -        CT_ERROR(ct, "Head was modified %u != %u\n",
>>>>> -             desc->head, head);
>>>>> +        ct_err(ct, "Head was modified %u != %u\n", desc->head, head);
>>>>>            desc->status |= GUC_CTB_STATUS_MISMATCH;
>>>>>            goto corrupted;
>>>>>        }
>>>>>    #endif
>>>>>        if (unlikely(tail >= size)) {
>>>>> -        CT_ERROR(ct, "Invalid tail offset %u >= %u)\n",
>>>>> -             tail, size);
>>>>> +        ct_err(ct, "Invalid tail offset %u >= %u)\n", tail, size);
>>>>>            desc->status |= GUC_CTB_STATUS_OVERFLOW;
>>>>>            goto corrupted;
>>>>>        }
>>>>> @@ -873,7 +883,7 @@ static int ct_read(struct intel_guc_ct *ct,
>>>>> struct ct_incoming_msg **msg)
>>>>>        /* beware of buffer wrap case */
>>>>>        if (unlikely(available < 0))
>>>>>            available += size;
>>>>> -    CT_DEBUG(ct, "available %d (%u:%u:%u)\n", available, head, tail,
>>>>> size);
>>>>> +    ct_dbg(ct, "read available %d (%u:%u:%u)\n", available, head,
>>>>> tail, size);
>>>>>        GEM_BUG_ON(available < 0);
>>>>>          header = cmds[head];
>>>>> @@ -882,24 +892,24 @@ static int ct_read(struct intel_guc_ct *ct,
>>>>> struct ct_incoming_msg **msg)
>>>>>        /* message len with header */
>>>>>        len = FIELD_GET(GUC_CTB_MSG_0_NUM_DWORDS, header) +
>>>>> GUC_CTB_MSG_MIN_LEN;
>>>>>        if (unlikely(len > (u32)available)) {
>>>>> -        CT_ERROR(ct, "Incomplete message %*ph %*ph %*ph\n",
>>>>> -             4, &header,
>>>>> -             4 * (head + available - 1 > size ?
>>>>> -                  size - head : available - 1), &cmds[head],
>>>>> -             4 * (head + available - 1 > size ?
>>>>> -                  available - 1 - size + head : 0), &cmds[0]);
>>>>> +        ct_err(ct, "Incomplete message %*ph %*ph %*ph\n",
>>>>> +               4, &header,
>>>>> +               4 * (head + available - 1 > size ?
>>>>> +                size - head : available - 1), &cmds[head],
>>>>> +               4 * (head + available - 1 > size ?
>>>>> +                available - 1 - size + head : 0), &cmds[0]);
>>>>>            desc->status |= GUC_CTB_STATUS_UNDERFLOW;
>>>>>            goto corrupted;
>>>>>        }
>>>>>          *msg = ct_alloc_msg(len);
>>>>>        if (!*msg) {
>>>>> -        CT_ERROR(ct, "No memory for message %*ph %*ph %*ph\n",
>>>>> -             4, &header,
>>>>> -             4 * (head + available - 1 > size ?
>>>>> -                  size - head : available - 1), &cmds[head],
>>>>> -             4 * (head + available - 1 > size ?
>>>>> -                  available - 1 - size + head : 0), &cmds[0]);
>>>>> +        ct_err(ct, "No memory for message %*ph %*ph %*ph\n",
>>>>> +               4, &header,
>>>>> +               4 * (head + available - 1 > size ?
>>>>> +                size - head : available - 1), &cmds[head],
>>>>> +               4 * (head + available - 1 > size ?
>>>>> +                available - 1 - size + head : 0), &cmds[0]);
>>>>>            return available;
>>>>>        }
>>>>>    @@ -909,7 +919,7 @@ static int ct_read(struct intel_guc_ct *ct,
>>>>> struct ct_incoming_msg **msg)
>>>>>            (*msg)->msg[i] = cmds[head];
>>>>>            head = (head + 1) % size;
>>>>>        }
>>>>> -    CT_DEBUG(ct, "received %*ph\n", 4 * len, (*msg)->msg);
>>>>> +    ct_dbg(ct, "received %*ph\n", 4 * len, (*msg)->msg);
>>>>>          /* update local copies */
>>>>>        ctb->head = head;
>>>>> @@ -920,8 +930,8 @@ static int ct_read(struct intel_guc_ct *ct,
>>>>> struct ct_incoming_msg **msg)
>>>>>        return available - len;
>>>>>      corrupted:
>>>>> -    CT_ERROR(ct, "Corrupted descriptor head=%u tail=%u status=%#x\n",
>>>>> -         desc->head, desc->tail, desc->status);
>>>>> +    ct_err(ct, "Corrupted descriptor on read head=%u tail=%u
>>>>> status=%#x\n",
>>>>> +           desc->head, desc->tail, desc->status);
>>>>>        ctb->broken = true;
>>>>>        return -EPIPE;
>>>>>    }
>>>>> @@ -944,18 +954,17 @@ static int ct_handle_response(struct
>>>>> intel_guc_ct *ct, struct ct_incoming_msg *r
>>>>>               FIELD_GET(GUC_HXG_MSG_0_TYPE, hxg[0]) !=
>>>>> GUC_HXG_TYPE_NO_RESPONSE_RETRY &&
>>>>>               FIELD_GET(GUC_HXG_MSG_0_TYPE, hxg[0]) !=
>>>>> GUC_HXG_TYPE_RESPONSE_FAILURE);
>>>>>    -    CT_DEBUG(ct, "response fence %u status %#x\n", fence, hxg[0]);
>>>>> +    ct_dbg(ct, "response fence %u status %#x\n", fence, hxg[0]);
>>>>>          spin_lock_irqsave(&ct->requests.lock, flags);
>>>>>        list_for_each_entry(req, &ct->requests.pending, link) {
>>>>>            if (unlikely(fence != req->fence)) {
>>>>> -            CT_DEBUG(ct, "request %u awaits response\n",
>>>>> -                 req->fence);
>>>>> +            ct_dbg(ct, "request %u awaits response\n", req->fence);
>>>>>                continue;
>>>>>            }
>>>>>            if (unlikely(datalen > req->response_len)) {
>>>>> -            CT_ERROR(ct, "Response %u too long (datalen %u > %u)\n",
>>>>> -                 req->fence, datalen, req->response_len);
>>>>> +            ct_err(ct, "response %u too long (datalen %u > %u)\n",
>>>>> +                   req->fence, datalen, req->response_len);
>>>>>                datalen = min(datalen, req->response_len);
>>>>>                err = -EMSGSIZE;
>>>>>            }
>>>>> @@ -967,12 +976,11 @@ static int ct_handle_response(struct
>>>>> intel_guc_ct *ct, struct ct_incoming_msg *r
>>>>>            break;
>>>>>        }
>>>>>        if (!found) {
>>>>> -        CT_ERROR(ct, "Unsolicited response (fence %u)\n", fence);
>>>>> -        CT_ERROR(ct, "Could not find fence=%u, last_fence=%u\n",
>>>>> fence,
>>>>> -             ct->requests.last_fence);
>>>>> +        ct_err(ct, "Unsolicited response (fence %u)\n", fence);
>>>>> +        ct_err(ct, "Could not find fence=%u, last_fence=%u\n", fence,
>>>>> +               ct->requests.last_fence);
>>>>>            list_for_each_entry(req, &ct->requests.pending, link)
>>>>> -            CT_ERROR(ct, "request %u awaits response\n",
>>>>> -                 req->fence);
>>>>> +            ct_err(ct, "request %u awaits response\n", req->fence);
>>>>>            err = -ENOKEY;
>>>>>        }
>>>>>        spin_unlock_irqrestore(&ct->requests.lock, flags);
>>>>> @@ -998,7 +1006,7 @@ static int ct_process_request(struct
>>>>> intel_guc_ct *ct, struct ct_incoming_msg *r
>>>>>        action = FIELD_GET(GUC_HXG_EVENT_MSG_0_ACTION, hxg[0]);
>>>>>        len = hxg_len - GUC_HXG_MSG_MIN_LEN;
>>>>>    -    CT_DEBUG(ct, "request %x %*ph\n", action, 4 * len, payload);
>>>>> +    ct_dbg(ct, "request %x %*ph\n", action, 4 * len, payload);
>>>>>          switch (action) {
>>>>>        case INTEL_GUC_ACTION_DEFAULT:
>>>>> @@ -1016,9 +1024,6 @@ static int ct_process_request(struct
>>>>> intel_guc_ct *ct, struct ct_incoming_msg *r
>>>>>            break;
>>>>>        case INTEL_GUC_ACTION_STATE_CAPTURE_NOTIFICATION:
>>>>>            ret = intel_guc_error_capture_process_msg(guc, payload,
>>>>> len);
>>>>> -        if (unlikely(ret))
>>>>> -            CT_ERROR(ct, "error capture notification failed %x
>>>>> %*ph\n",
>>>>> -                 action, 4 * len, payload);
>>>>>            break;
>>>>>        case INTEL_GUC_ACTION_ENGINE_FAILURE_NOTIFICATION:
>>>>>            ret = intel_guc_engine_failure_process_msg(guc, payload,
>>>>> len);
>>>>> @@ -1028,11 +1033,11 @@ static int ct_process_request(struct
>>>>> intel_guc_ct *ct, struct ct_incoming_msg *r
>>>>>            ret = 0;
>>>>>            break;
>>>>>        case INTEL_GUC_ACTION_NOTIFY_CRASH_DUMP_POSTED:
>>>>> -        CT_ERROR(ct, "Received GuC crash dump notification!\n");
>>>>> +        guc_err(guc, "notification: Crash dump!\n");
>>>>>            ret = 0;
>>>>>            break;
>>>>>        case INTEL_GUC_ACTION_NOTIFY_EXCEPTION:
>>>>> -        CT_ERROR(ct, "Received GuC exception notification!\n");
>>>>> +        guc_err(guc, "notification: Exception!\n");
>>>>>            ret = 0;
>>>>>            break;
>>>>>        default:
>>>>> @@ -1041,8 +1046,7 @@ static int ct_process_request(struct
>>>>> intel_guc_ct *ct, struct ct_incoming_msg *r
>>>>>        }
>>>>>          if (unlikely(ret)) {
>>>>> -        CT_ERROR(ct, "Failed to process request %04x (%pe)\n",
>>>>> -             action, ERR_PTR(ret));
>>>>> +        ct_err(ct, "Failed to process request %04x (%pe)\n", action,
>>>>> ERR_PTR(ret));
>>>>>            return ret;
>>>>>        }
>>>>>    @@ -1070,8 +1074,8 @@ static bool
>>>>> ct_process_incoming_requests(struct intel_guc_ct *ct)
>>>>>          err = ct_process_request(ct, request);
>>>>>        if (unlikely(err)) {
>>>>> -        CT_ERROR(ct, "Failed to process CT message (%pe) %*ph\n",
>>>>> -             ERR_PTR(err), 4 * request->size, request->msg);
>>>>> +        ct_err(ct, "Failed to process message (%pe) %*ph\n",
>>>>> +               ERR_PTR(err), 4 * request->size, request->msg);
>>>>>            ct_free_msg(request);
>>>>>        }
>>>>>    @@ -1149,8 +1153,8 @@ static int ct_handle_hxg(struct intel_guc_ct
>>>>> *ct, struct ct_incoming_msg *msg)
>>>>>          if (unlikely(err)) {
>>>>>    failed:
>>>>> -        CT_ERROR(ct, "Failed to handle HXG message (%pe) %*ph\n",
>>>>> -             ERR_PTR(err), 4 * GUC_HXG_MSG_MIN_LEN, hxg);
>>>>> +        ct_err(ct, "Failed to handle HXG message (%pe) %*ph\n",
>>>>> +               ERR_PTR(err), 4 * GUC_HXG_MSG_MIN_LEN, hxg);
>>>>>        }
>>>>>        return err;
>>>>>    }
>>>>> @@ -1166,8 +1170,8 @@ static void ct_handle_msg(struct intel_guc_ct
>>>>> *ct, struct ct_incoming_msg *msg)
>>>>>            err = -EOPNOTSUPP;
>>>>>          if (unlikely(err)) {
>>>>> -        CT_ERROR(ct, "Failed to process CT message (%pe) %*ph\n",
>>>>> -             ERR_PTR(err), 4 * msg->size, msg->msg);
>>>>> +        ct_err(ct, "Failed to handle message (%pe) %*ph\n",
>>>>> +               ERR_PTR(err), 4 * msg->size, msg->msg);
>>>>>            ct_free_msg(msg);
>>>>>        }
>>>>>    }
>>>>> @@ -1198,7 +1202,7 @@ static void ct_try_receive_message(struct
>>>>> intel_guc_ct *ct)
>>>>>    {
>>>>>        int ret;
>>>>>    -    if (GEM_WARN_ON(!ct->enabled))
>>>>> +    if (ct_WARN_ON(ct, !ct->enabled))
>>>>>            return;
>>>>>          ret = ct_receive(ct);
>>>>> @@ -1220,7 +1224,7 @@ static void ct_receive_tasklet_func(struct
>>>>> tasklet_struct *t)
>>>>>    void intel_guc_ct_event_handler(struct intel_guc_ct *ct)
>>>>>    {
>>>>>        if (unlikely(!ct->enabled)) {
>>>>> -        WARN(1, "Unexpected GuC event received while CT
>>>>> disabled!\n");
>>>>> +        ct_warn(ct, "Unexpected event received while disabled!\n");
>>>>>            return;
>>>>>        }
>>>>>    
> 


More information about the dri-devel mailing list