Lines Matching refs:socfpga_clk
178 struct socfpga_gate_clk *socfpga_clk; in socfpga_gate_init() local
185 socfpga_clk = kzalloc(sizeof(*socfpga_clk), GFP_KERNEL); in socfpga_gate_init()
186 if (WARN_ON(!socfpga_clk)) in socfpga_gate_init()
198 socfpga_clk->hw.reg = clk_mgr_base_addr + clk_gate[0]; in socfpga_gate_init()
199 socfpga_clk->hw.bit_idx = clk_gate[1]; in socfpga_gate_init()
207 socfpga_clk->fixed_div = 0; in socfpga_gate_init()
209 socfpga_clk->fixed_div = fixed_div; in socfpga_gate_init()
213 socfpga_clk->div_reg = clk_mgr_base_addr + div_reg[0]; in socfpga_gate_init()
214 socfpga_clk->shift = div_reg[1]; in socfpga_gate_init()
215 socfpga_clk->width = div_reg[2]; in socfpga_gate_init()
217 socfpga_clk->div_reg = NULL; in socfpga_gate_init()
222 socfpga_clk->clk_phase[0] = clk_phase[0]; in socfpga_gate_init()
223 socfpga_clk->clk_phase[1] = clk_phase[1]; in socfpga_gate_init()
239 socfpga_clk->hw.hw.init = &init; in socfpga_gate_init()
241 clk = clk_register(NULL, &socfpga_clk->hw.hw); in socfpga_gate_init()
243 kfree(socfpga_clk); in socfpga_gate_init()