mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-14 19:27:06 +00:00
cb6d1f58a2
A tracer for the ASC coprocessor mailbox interface. Signed-off-by: Hector Martin <marcan@marcan.st>
11 lines
294 B
Python
11 lines
294 B
Python
# SPDX-License-Identifier: MIT
|
|
|
|
trace_device("/arm-io/sgx", False)
|
|
trace_device("/arm-io/pmp", False)
|
|
trace_device("/arm-io/gfx-asc", False)
|
|
|
|
from m1n1.trace.asc import ASCTracer
|
|
|
|
ASCTracer = ASCTracer._reloadcls()
|
|
gfx_tracer = ASCTracer(hv, "/arm-io/gfx-asc", verbose=True)
|
|
gfx_tracer.start()
|