Merge tag 'trace-printf-v6.13' of git://git.kernel.org/pub/scm/linux/kernel/git/trace...
[drm/drm-misc.git] / drivers / clk / qcom / clk-regmap-phy-mux.h
blob614dd384695caf8e6e80e9bd055d3a64b9af955e
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 /*
3 * Copyright (c) 2022, Linaro Ltd.
4 */
6 #ifndef __QCOM_CLK_REGMAP_PHY_MUX_H__
7 #define __QCOM_CLK_REGMAP_PHY_MUX_H__
9 #include "clk-regmap.h"
12 * A clock implementation for PHY pipe and symbols clock muxes.
14 * If the clock is running off the from-PHY source, report it as enabled.
15 * Report it as disabled otherwise (if it uses reference source).
17 * This way the PHY will disable the pipe clock before turning off the GDSC,
18 * which in turn would lead to disabling corresponding pipe_clk_src (and thus
19 * it being parked to a safe, reference clock source). And vice versa, after
20 * enabling the GDSC the PHY will enable the pipe clock, which would cause
21 * pipe_clk_src to be switched from a safe source to the working one.
23 * For some platforms this should be used for the UFS symbol_clk_src clocks
24 * too.
26 struct clk_regmap_phy_mux {
27 u32 reg;
28 struct clk_regmap clkr;
31 extern const struct clk_ops clk_regmap_phy_mux_ops;
33 #endif