mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-02-17 06:08:28 +00:00
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()
|