1 /* SPDX-License-Identifier: GPL-2.0-only */
3 * Copyright (c) 2022, Linaro Ltd.
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
26 struct clk_regmap_phy_mux
{
28 struct clk_regmap clkr
;
31 extern const struct clk_ops clk_regmap_phy_mux_ops
;