Hi all,
在DSP低功耗操作方面有以下疑问:
1、关于某个核的关闭 在文档中描述了操作流程:
使能PDC 将PDCCMD寄存器MEGPD置1 > 使能想要唤醒该核的中断 > 执行IDLE指令
在实际使用时。我用核0给核1发IPC,在核1处于IDLE状态下并不能被唤醒:在CCS中显示时钟处于running状态(在中断服务程序中设置了 断点) 以下是核1的相关操作
if(1 == coreID)
{
PDC = (uint32_t *)0x01810000;
*PDC = *PDC || 0X00010000;//set MEGPD to 1
intcInit();
registerInterrupt(); //register the Host interrupt with the event
asm(" IDLE"); //power down the core
} 请各位专家帮忙看看那块出现问题?
2、关于VID接口调节 内核电压 时序在 6672手册 120页 可以找到 但是具体怎么通过VID接口在控制内核电压的变化?
比如想在执行某些算法时提高内核电压、某些时候降低...
手册中提到的Power Management for KeyStone Devicesapplication report能否提供?
thanks