Other Parts Discussed in Thread: OMAPL138
I'm trying to read and write the UPP control registers from the ARM side with a Linux Device Driver but I'm unable to do so. I was read and write the SYSCFG0, GPIO, and SPI control registers just fine but for some reason I'm unable to do so with the UPP. Even when reading the first register (UPPID), 0x01E16000, I read back a zero.
device->upp = ioremap(0x01E16000, SZ_4k);
printk(KERN_NOTICE "upp: %x \n, __raw_readl(device->upp));
Are the UPP's registers different than the other control registers (SPI, GPIO, SYSCFG)? Is there something that I should do prior to attempting to read?
Note: I have been able to write and read the UPP control registers from the DSP side. The memory map table in the OMAPL138 data sheet specifies that the UPP registers are memory mapped to both ARM and DSP.