Other Parts Discussed in Thread: OMAP3530
Hi
I am using GPMC in OMAP3530 .Here is how I am enabling clock to GPMC
U32 templ;
templ = in_regl(CM_FCLKEN1_CORE);
templ |= 0x00002002;
out_regl(CM_FCLKEN1_CORE,templ);
templ = in_regl(CM_ICLKEN1_CORE);
templ |= 0x00002002;
out_regl(CM_ICLKEN1_CORE,templ);
templ = in_regl(M_CONTROL_PADCONF_GPMC_CLK);
templ |= 0x00180000;
out_regl(M_CONTROL_PADCONF_GPMC_CLK,templ);
Please suggest me if something wrong here as I am not able to see the GPMC registers
BR
Avinash