mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-30 10:26:42 +07:00
drm/nv50-/kms: add some evo tracing ability for debugging
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
6af5289e85
commit
2b1930c3f3
@ -440,8 +440,21 @@ evo_kick(u32 *push, void *evoc)
|
||||
mutex_unlock(&dmac->lock);
|
||||
}
|
||||
|
||||
#if 1
|
||||
#define evo_mthd(p,m,s) *((p)++) = (((s) << 18) | (m))
|
||||
#define evo_data(p,d) *((p)++) = (d)
|
||||
#else
|
||||
#define evo_mthd(p,m,s) do { \
|
||||
const u32 _m = (m), _s = (s); \
|
||||
printk(KERN_ERR "%04x %d %s\n", _m, _s, __func__); \
|
||||
*((p)++) = ((_s << 18) | _m); \
|
||||
} while(0)
|
||||
#define evo_data(p,d) do { \
|
||||
const u32 _d = (d); \
|
||||
printk(KERN_ERR "\t%08x\n", _d); \
|
||||
*((p)++) = _d; \
|
||||
} while(0)
|
||||
#endif
|
||||
|
||||
static bool
|
||||
evo_sync_wait(void *data)
|
||||
|
Loading…
Reference in New Issue
Block a user