Tool/software: TI-RTOS
Hi
I want to use MMC2 instance for my test,I have use TI pinmux tools to configure MMCSD2 and do manually update the pinmux_data.c file.
on Board_pinmuxConfig function ,I add:
if(S_PASS == status)
{
status = PINMUXModuleConfig(CHIPDB_MOD_ID_MMCSD, 2U, NULL);
}
and in Board_moduleClockInit founction,I add
if(S_PASS == status)
{
status = PRCMModuleEnable(CHIPDB_MOD_ID_MMCSD, 2U, 0U);
}
but in fouction
int32_t PRCMModuleEnable(chipdbModuleID_t moduleId, uint32_t instNum,uint32_t isBlockingCall)
there is no instNum 2 for mmc2.only 0 and 1 for mmc0 and mmc1.
AMM3352 don't support MMC2?
if no,how can I enable PRCMModule for mmc 2?
my PKD version is pdk_am335x_1_0_13.
thansk!