/* * Configure the PLL/PRCM for necessary peripherals */ void pll_init(int mpupll_M) { mpu_pll_config(mpupll_M); core_pll_config(); per_pll_config(); ddr_pll_config(); /* Enable the required interconnect clocks */ interface_clocks_enable(); /* Enable power domain transition */ power_domain_transition_enable(); /* Enable the required peripherals */ per_clocks_enable(); }
/* * Configure the PLL/PRCM for necessary peripherals */ void pll_init() { mpu_pll_config(); core_pll_config(); per_pll_config(); /* Enable the required interconnect clocks */ enable_interface_clocks(); /* Power domain wake up transition */ power_domain_wkup_transition(); /* Enable the required peripherals */ enable_per_clocks(); }