On Sat, Oct 19, 2024 at 12:45:46AM +0530, Taniya Das wrote: > Add support for the video clock controller for video clients to > be able to request for the clocks on QCS615 platform. > > Signed-off-by: Taniya Das <quic_tdas@xxxxxxxxxxx> > --- > drivers/clk/qcom/Kconfig | 8 + > drivers/clk/qcom/Makefile | 1 + > drivers/clk/qcom/videocc-qcs615.c | 332 ++++++++++++++++++++++++++++++++++++++ > 3 files changed, 341 insertions(+) > > diff --git a/drivers/clk/qcom/Kconfig b/drivers/clk/qcom/Kconfig > index ed610310699696f92b4a5938635e7b2ab757358c..7ef2037b3b0dd01fec0c6be8b6030ebaab182117 100644 > --- a/drivers/clk/qcom/Kconfig > +++ b/drivers/clk/qcom/Kconfig > @@ -494,6 +494,14 @@ config QCS_GPUCC_615 > Say Y if you want to support graphics controller devices and > functionality such as 3D graphics. > > +config QCS_VIDEOCC_615 > + tristate "QCS615 Video Clock Controller" > + select QCS_GCC_615 > + help > + Support for the video clock controller on QCS615 devices. > + Say Y if you want to support video devices and functionality such as > + video encode and decode. > + > config SC_CAMCC_7180 > tristate "SC7180 Camera Clock Controller" > depends on ARM64 || COMPILE_TEST > diff --git a/drivers/clk/qcom/Makefile b/drivers/clk/qcom/Makefile > index a45b6fa28c1d04fd42dcde6e6f22378baa7c8e60..b024e75e49435a3d2f449bbdb9c2cef8e7958eca 100644 > --- a/drivers/clk/qcom/Makefile > +++ b/drivers/clk/qcom/Makefile > @@ -73,6 +73,7 @@ obj-$(CONFIG_QCS_DISPCC_615) += dispcc-qcs615.o > obj-$(CONFIG_QCS_CAMCC_615) += camcc-qcs615.o > obj-$(CONFIG_QCS_GCC_404) += gcc-qcs404.o > obj-$(CONFIG_QCS_GPUCC_615) += gpucc-qcs615.o > +obj-$(CONFIG_QCS_VIDEOCC_615) += videocc-qcs615.o > obj-$(CONFIG_QCS_Q6SSTOP_404) += q6sstop-qcs404.o > obj-$(CONFIG_QCS_TURING_404) += turingcc-qcs404.o > obj-$(CONFIG_QDU_ECPRICC_1000) += ecpricc-qdu1000.o > diff --git a/drivers/clk/qcom/videocc-qcs615.c b/drivers/clk/qcom/videocc-qcs615.c > new file mode 100644 > index 0000000000000000000000000000000000000000..cebe1ab591f38ce5cbb527c12b1e997b88d6502d > --- /dev/null > +++ b/drivers/clk/qcom/videocc-qcs615.c > @@ -0,0 +1,332 @@ > +// SPDX-License-Identifier: GPL-2.0-only > +/* > + * Copyright (c) 2024, Qualcomm Innovation Center, Inc. All rights reserved. > + */ > + > +#include <linux/clk-provider.h> > +#include <linux/module.h> > +#include <linux/mod_devicetable.h> > +#include <linux/of.h> > +#include <linux/platform_device.h> > +#include <linux/regmap.h> > + > +#include <dt-bindings/clock/qcom,qcs615-videocc.h> > + > +#include "clk-alpha-pll.h" > +#include "clk-branch.h" > +#include "clk-pll.h" > +#include "clk-rcg.h" > +#include "clk-regmap.h" > +#include "clk-regmap-divider.h" > +#include "clk-regmap-mux.h" > +#include "common.h" > +#include "gdsc.h" > +#include "reset.h" > + > +enum { > + DT_BI_TCXO, > + DT_SLEEP_CLK, > +}; > + > +enum { > + P_BI_TCXO, > + P_SLEEP_CLK, > + P_VIDEO_PLL0_OUT_AUX, > + P_VIDEO_PLL0_OUT_AUX2, > + P_VIDEO_PLL0_OUT_MAIN, > +}; > + > +static const struct pll_vco video_cc_pll0_vco[] = { > + { 500000000, 1000000000, 2 }, > +}; > + > +/* 600MHz configuration */ > +static struct alpha_pll_config video_pll0_config = { > + .l = 0x1F, lowercase the hex, please. LGTM otherwise. > + .alpha_hi = 0x40, > + .alpha = 0x00, > + .alpha_en_mask = BIT(24), > + .vco_val = 0x2 << 20, > + .vco_mask = 0x3 << 20, > + .main_output_mask = BIT(0), > + .config_ctl_val = 0x4001055b, > + .test_ctl_hi_val = 0x1, > + .test_ctl_hi_mask = 0x1, > +}; > + -- With best wishes Dmitry