Working on an OMAP4430... I've configured the DSP L2 MMU (described in section 20 of the TRM) with a static TLB of "whitelisted" memory ranges I want it to be able to access and enabled interrupts for multi-hit and TLB miss. I'd like to catch events like a null pointer dereference on the DSP (NULL is not included in my whitelist).
What's the correct way to implement this? I've tried using the mapping what I believe is the correct event to an interrupt using the Hwi module without success. I've also tried using the Exception module to catch it. In both cases my ISR doesn't seem to be getting triggered. Could use an example of this done right so I know I'm looking for the correct event & setting up the ISR correctly.