This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Clock to gpmc in OMAP3530

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