Searched refs:postdiv (Results 1 - 3 of 3) sorted by relevance

/freebsd-11-stable/sys/mips/atheros/
H A Dqca953x_chip.c76 uint32_t pll, out_div, ref_div, nint, frac, clk_ctrl, postdiv; local
116 postdiv = (clk_ctrl >> QCA953X_PLL_CLK_CTRL_CPU_POST_DIV_SHIFT) &
122 cpu_rate = cpu_pll / (postdiv + 1);
124 cpu_rate = ddr_pll / (postdiv + 1);
126 postdiv = (clk_ctrl >> QCA953X_PLL_CLK_CTRL_DDR_POST_DIV_SHIFT) &
132 ddr_rate = ddr_pll / (postdiv + 1);
134 ddr_rate = cpu_pll / (postdiv + 1);
136 postdiv = (clk_ctrl >> QCA953X_PLL_CLK_CTRL_AHB_POST_DIV_SHIFT) &
142 ahb_rate = ddr_pll / (postdiv + 1);
144 ahb_rate = cpu_pll / (postdiv
[all...]
H A Dqca955x_chip.c77 uint32_t pll, out_div, ref_div, nint, frac, clk_ctrl, postdiv; local
117 postdiv = (clk_ctrl >> QCA955X_PLL_CLK_CTRL_CPU_POST_DIV_SHIFT) &
123 cpu_rate = ddr_pll / (postdiv + 1);
125 cpu_rate = cpu_pll / (postdiv + 1);
127 postdiv = (clk_ctrl >> QCA955X_PLL_CLK_CTRL_DDR_POST_DIV_SHIFT) &
133 ddr_rate = cpu_pll / (postdiv + 1);
135 ddr_rate = ddr_pll / (postdiv + 1);
137 postdiv = (clk_ctrl >> QCA955X_PLL_CLK_CTRL_AHB_POST_DIV_SHIFT) &
143 ahb_rate = ddr_pll / (postdiv + 1);
145 ahb_rate = cpu_pll / (postdiv
[all...]
H A Dar934x_chip.c92 uint32_t pll, out_div, ref_div, nint, nfrac, frac, clk_ctrl, postdiv; local
159 postdiv = (clk_ctrl >> AR934X_PLL_CPU_DDR_CLK_CTRL_CPU_POST_DIV_SHIFT) &
165 u_ar71xx_cpu_freq = cpu_pll / (postdiv + 1);
167 u_ar71xx_cpu_freq = ddr_pll / (postdiv + 1);
169 postdiv = (clk_ctrl >> AR934X_PLL_CPU_DDR_CLK_CTRL_DDR_POST_DIV_SHIFT) &
175 u_ar71xx_ddr_freq = ddr_pll / (postdiv + 1);
177 u_ar71xx_ddr_freq = cpu_pll / (postdiv + 1);
179 postdiv = (clk_ctrl >> AR934X_PLL_CPU_DDR_CLK_CTRL_AHB_POST_DIV_SHIFT) &
185 u_ar71xx_ahb_freq = ddr_pll / (postdiv + 1);
187 u_ar71xx_ahb_freq = cpu_pll / (postdiv
[all...]

Completed in 114 milliseconds