Hello,
I'm looking for a way to disable easyly the dsp from ARM side.
Looking http://www.ti.com/lit/ug/sprufk5a/sprufk5a.pdf and technical reference guide.
I was thinking of using PSC for that purpose:
reading PSC:
md.l 0x01C10A30 -> 0x1D03 (PSC0ModuleControl15)
I try to put into disable state;
mw.l 1C10A30 0x82
and then activate the next state:
mw.l 1C1120 1 (PowerDomainTransitionCommandRegister(PTCMD))
But there is no effect.
In fact writing to 0x01C10A30 make no effect.
I'm under u-boot.
Is this the good way to do?
OR the only way is to follow "9.2.5 C674xMegamodulePower-Down" or "9.3 Power-DownControllerCommandRegister(PDCCMD)"?
If yes do you have a kind of example to make such code running from ARM at u-boot level?
Regards.