hi all,
when I read the document and the source codes of DM8127, I 'm confused setting instructions. For example:
In the document of DM8127, Memory map:
0x4814_0000 0x4815_FFFF 0x0814_0000 0x0815_FFFF 128KB Control Module Peripheral Registers (C674x DSP Restricted to only exposed peripherals)
But in the codes of linux_prcm_ipcam.
#define CTRL_MODULE_BASE_ADDR 0x48140000
/* I2c2 configuration Function 6*/
WR_MEM_32((CTRL_MODULE_BASE_ADDR + 0x0924), 0x60020); /* i2c2_scl_mux0 */
WR_MEM_32((CTRL_MODULE_BASE_ADDR + 0x0928), 0x60020); /* i2c2_sda_mux0 */
And I cannot find any information about the 0x48140924, and cannot find the relationship between the I2C2 registers and above Memory map.
Can you give me somes advice?