| /* |
| * Copyright (C) 2016 Freescale Semiconductor, Inc. |
| * Copyright 2017 NXP |
| * |
| * The code contained herein is licensed under the GNU General Public |
| * License. You may obtain a copy of the GNU General Public License |
| * Version 2 or later at the following locations: |
| * |
| * http://www.opensource.org/licenses/gpl-license.html |
| * http://www.gnu.org/copyleft/gpl.html |
| */ |
| #include <linux/errno.h> |
| #include <linux/slab.h> |
| #include <linux/clk-provider.h> |
| #include <linux/clk.h> |
| #include <linux/err.h> |
| |
| #include "clk.h" |
| |
| #define PCG_PCS_SHIFT 24 |
| #define PCG_PCS_MASK 0x7 |
| #define PCG_CGC_SHIFT 30 |
| #define PCG_FRAC_SHIFT 3 |
| #define PCG_FRAC_WIDTH 1 |
| #define PCG_FRAC_MASK BIT(3) |
| #define PCG_PCD_SHIFT 0 |
| #define PCG_PCD_WIDTH 3 |
| #define PCG_PCD_MASK 0x7 |
| |
| #define PCG_PREDIV_SHIFT 16 |
| #define PCG_PREDIV_WIDTH 3 |
| #define PCG_PREDIV_MAX 8 |
| |
| #define PCG_DIV_SHIFT 0 |
| #define PCG_DIV_WIDTH 6 |
| #define PCG_DIV_MAX 64 |
| |
| #define clk_div_mask(width) ((1 << (width)) - 1) |
| |
| struct clk *imx7ulp_clk_composite(const char *name, const char **parent_names, |
| int num_parents, bool mux_present, |
| bool rate_present, bool gate_present, |
| void __iomem *reg) |
| { |
| struct clk_hw *mux_hw = NULL, *fd_hw = NULL, *gate_hw = NULL; |
| struct clk_fractional_divider *fd = NULL; |
| struct clk_gate *gate = NULL; |
| struct clk_mux *mux = NULL; |
| struct clk *clk; |
| |
| if (mux_present) { |
| mux = kzalloc(sizeof(*mux), GFP_KERNEL); |
| if (!mux) |
| return ERR_PTR(-ENOMEM); |
| mux_hw = &mux->hw; |
| mux->reg = reg; |
| mux->shift = PCG_PCS_SHIFT; |
| mux->mask = PCG_PCS_MASK; |
| } |
| |
| if (rate_present) { |
| fd = kzalloc(sizeof(*fd), GFP_KERNEL); |
| if (!fd) { |
| kfree(mux); |
| return ERR_PTR(-ENOMEM); |
| } |
| fd_hw = &fd->hw; |
| fd->reg = reg; |
| fd->mshift = PCG_FRAC_SHIFT; |
| fd->mwidth = PCG_FRAC_WIDTH; |
| fd->mmask = PCG_FRAC_MASK; |
| fd->nshift = PCG_PCD_SHIFT; |
| fd->nwidth = PCG_PCD_WIDTH; |
| fd->nmask = PCG_PCD_MASK; |
| fd->flags = CLK_FRAC_DIVIDER_ZERO_BASED; |
| } |
| |
| if (gate_present) { |
| gate = kzalloc(sizeof(*gate), GFP_KERNEL); |
| if (!gate) { |
| kfree(mux); |
| kfree(fd); |
| return ERR_PTR(-ENOMEM); |
| } |
| gate_hw = &gate->hw; |
| gate->reg = reg; |
| gate->bit_idx = PCG_CGC_SHIFT; |
| } |
| |
| clk = clk_register_composite(NULL, name, parent_names, num_parents, |
| mux_hw, &clk_mux_ops, fd_hw, |
| &clk_fractional_divider_ops, gate_hw, |
| &clk_gate_ops, CLK_SET_RATE_GATE | |
| CLK_SET_PARENT_GATE); |
| if (IS_ERR(clk)) { |
| kfree(mux); |
| kfree(fd); |
| kfree(gate); |
| } |
| |
| return clk; |
| } |
| |