This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
I am trying to send IPC interrupt between ARM Cortex A-15 processors in TCI66AK2H12 board and OS is SYS/BIOS.
I've cerated an hw interrupt with the configuration below.
Hwi_Params_init(&hwiParams);
hwiParams.triggerSensitivity = 0x03;
hwiParams.eventId = CSL_ARM_GIC_IPC_GR9;
Hwi_create((37), myIpcIsrFunc, &hwiParams, NULL);
this configuration creates an interrupt with eventId 5 which is ARM CORE 1 IPC event ID.
In order to trig IPCGR9 register, I used below code. Kicker have to be unlocked before writing to IPCGR9, because IPCGRx register is in the BOOTCFG area.
CSL_BootCfgUnlockKicker();
*(unsigned int *)(0x02620264)=(0xFF<<4)|0x1;
CSL_BootCfgLockKicker();
But interrupt is not working. myIpcIsrFunc does't called. I don't know where the problem is. Hw interrupt creation or triggering the interrupt.
Thanks
Hi muhammet,
Could you please confirm your DSP part number?
TCI66xx devices are supported directly through Local Field Applications Engineers (FAEs.) These devices are not supported on the E2E forum. Please contact your local FAE for support of these devices. If you are not sure who your local FAE is, then please contact your local technical sales representative and they will be able to put you in contact with your local FAE.
Thanks.
Muhammet,
For KeyStone II (MCSDK 3), look at the two include files csl_cpIntc.h and csl_cpIntCAux.h to see all the API that are needed.
Find an examples in the release MCSDK_3_01_12\pdk_keystone2_3_00_01_12\packages\ti\drv
There are examples that use interrupts from peripherals.
Read the following wiki page,You can find the code snippet of an example of creating an HWI instance.
http://processors.wiki.ti.com/index.php/Configuring_Interrupts_on_Keystone_Devices
Please mention the device number instead of EVM / Board.