mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-15 03:37:06 +00:00
de82209079
Signed-off-by: Janne Grunau <j@jannau.net>
16 lines
533 B
Python
16 lines
533 B
Python
# SPDX-License-Identifier: MIT
|
|
|
|
from m1n1.trace.gpio import GPIOTracer
|
|
|
|
#trace_device("/arm-io/gpio", True)
|
|
|
|
# trace gpio interrups, useful to follow the cascaded interrupts
|
|
aic_phandle = getattr(hv.adt["/arm-io/aic"], "AAPL,phandle")
|
|
node = hv.adt["/arm-io/gpio"]
|
|
if getattr(node, "interrupt-parent") == aic_phandle:
|
|
for irq in getattr(node, "interrupts"):
|
|
hv.trace_irq(node.name, irq, 1, hv.IRQTRACE_IRQ)
|
|
|
|
GPIOTracer = GPIOTracer._reloadcls()
|
|
gpio_tracer = GPIOTracer(hv, "/arm-io/gpio", verbose=0)
|
|
gpio_tracer.start()
|