/* * Copyright (c) 2015, Linaro Limited * Copyright (c) 2014, The Linux Foundation. All rights reserved. * * This software is licensed under the terms of the GNU General Public * License version 2, as published by the Free Software Foundation, and * may be copied, distributed, and modified under those terms. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. */ #ifndef __QCOM_CLK_REGMAP_MUX_DIV_H__ #define __QCOM_CLK_REGMAP_MUX_DIV_H__ #include #include "clk-regmap.h" #include "clk-rcg.h" /** * struct mux_div_clk - combined mux/divider clock * @reg_offset: offset of the mux/divider register * @hid_width: number of bits in half integer divider * @hid_shift: lowest bit of hid value field * @src_width: number of bits in source select * @src_shift: lowest bit of source select field * @div: the divider configuration value * @src_sel: the mux index which will be used if the clock is enabled * @safe_src: value for safe source * @safe_freq: When switching rates from A to B, the mux div clock will * instead switch from A -> safe_freq -> B. This allows the * mux_div clock to change rates while enabled, even if this * behavior is not supported by the parent clocks. * If changing the rate of parent A also causes the rate of * parent B to change, then safe_freq must be defined. * safe_freq is expected to have a source clock which is always * on and runs at only one rate. * @parent_map: pointer to parent_map struct * @clkr: handle between common and hardware-specific interfaces */ struct clk_regmap_mux_div { u32 reg_offset; u32 hid_width; u32 hid_shift; u32 src_width; u32 src_shift; u32 div; u32 src_sel; u32 safe_src; unsigned long safe_freq; const struct parent_map *parent_map; struct clk_regmap clkr; }; #define to_clk_regmap_mux_div(_hw) \ container_of(to_clk_regmap(_hw), struct clk_regmap_mux_div, clkr) extern const struct clk_ops clk_regmap_mux_div_ops; #endif