On 07/08/2026 9:48 am, Diederik de Haas wrote:
Hi Jiaxing,
On Thu Aug 6, 2026 at 8:34 AM CEST, Jiaxing Hu wrote:
The RK3576 has two cores of the same RKNN block and a few platform
differences:
- the CBUF (convolution buffer) has its own clock domain, so the core
needs six clocks rather than four;
- the BIU reset moved into the power domain, leaving one reset here;
- the NPU spans two power domains, and a device with more than one is
skipped by the driver-core single-domain auto-attach, so the list has
to be attached explicitly;
- the DPU completion interrupt is armed exactly as on RK3588 but never
reaches the GIC. The completion is visible in INTERRUPT_RAW_STATUS,
I don't know if it's relevant, so just a data point:
- RK3588 has Cortex A-76 + A-55, which have an External GICv4
- RK3576 has Cortex A-72 + A-53, which have an External GICv3
Nope, RK3588 has GIC-600, which is very much v3 still. I guess RK3576
probably has GIC-500 like RK3399 given the CPUs, but that shouldn't make
any meaningful difference here.
If the interrupt never fires at all then possibly the signal depends on
some additional clock or power domain in order to propagate, or it's
just described incorrectly; or if other interrupt sources within the
NPU/IOMMU do still work then maybe there's some additional masking
control that's been overlooked, or perhaps it it just terminally broken.
(And FWIW I'm also inclined to agree with the other comments that
refactoring existing code to make room for new stuff, then actually
adding the new stuff, should probably be two separate steps if it's not
completely trivial)
Thanks,
Robin.