From nobody Fri Apr 3 16:03:02 2026 Received: from rtits2.realtek.com.tw (rtits2.realtek.com [211.75.126.72]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id D8308388E60; Tue, 24 Mar 2026 02:56:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=211.75.126.72 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774321014; cv=none; b=fW8hI+EMMVyoOsah0qYNtsKyhNxMEIOEIcKmAtWdyBxlQtB8qptFMGNEqbscXZDeRcfAOLXxLcH4DDVOqUa1uJxR6yKpPwHHAEjMtnrFpGAZRV9f3dSd1SH2Csl49r6u16h5zuob17hn6yqrUt2vbLFG2NSxeLwErD04mjPqvto= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774321014; c=relaxed/simple; bh=zw3I/ysTFZR1t5rKGdRVbgGUHy3SssAY6bdJ3aSZaTI=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=SKGikfvzqQt7ekHjdWSCn6ycb6le6TjeiJItxY85aRm5O1F1nFlCUBp3yUIQtK6uKsYElsRfn04ipAg+4Axkji6kkk0yMevVvhv0wD2zyFcQVuzp2AZq/md1Rb0ZsiGWtrW5sOGWColOU4Dhbz6fdj8mWcFSBNSpO1RURXhkEiE= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=realtek.com; spf=pass smtp.mailfrom=realtek.com; dkim=pass (2048-bit key) header.d=realtek.com header.i=@realtek.com header.b=vsq8jyEo; arc=none smtp.client-ip=211.75.126.72 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=realtek.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=realtek.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=realtek.com header.i=@realtek.com header.b="vsq8jyEo" X-SpamFilter-By: ArmorX SpamTrap 5.80 with qID 62O2rYodD278466, This message is accepted by code: ctloc85258 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=realtek.com; s=dkim; t=1774320814; bh=r0AMtvl1NZg5dclnV6GKlxIVEe2T4U6uQwC3on8Pox0=; h=From:To:CC:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Transfer-Encoding:Content-Type; b=vsq8jyEoCTjPxxqTMT6iaILhGsFHClcVCuoxHh7zJPJjs7AN4kF4N9qnASJZAGUSJ ZXywBqAZoxrpqNbdMJ50XOInKNCrshotFJmXXhG3k8d4kH7eKESDwgxoj8KCweWhsH u+0si4+aeCcSJ0o44ABFDnfolzgvpjGt4dSmG7u+N5H6LXEP8zI3VG+XrCBYvS2JEy xAqSlhx6YhQKSVlubBXVj7HcCCA8Echh66g9X7EVoaGOLT4Z7HnOKuaW2tQi165V3W qdfKa9LAH/2C5Z/K4AQBinl58AOIWo8GREKfHxI5qgl2qrVp5NJ/egoIl792NoLry8 HIBS36/UFEZ9Q== Received: from mail.realtek.com (rtkexhmbs02.realtek.com.tw[172.21.6.41]) by rtits2.realtek.com.tw (8.15.2/3.21/5.94) with ESMTPS id 62O2rYodD278466 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=OK); Tue, 24 Mar 2026 10:53:34 +0800 Received: from RTKEXHMBS06.realtek.com.tw (10.21.1.56) by RTKEXHMBS02.realtek.com.tw (172.21.6.41) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1748.10; Tue, 24 Mar 2026 10:53:34 +0800 Received: from cn1dhc-k02 (172.21.252.101) by RTKEXHMBS06.realtek.com.tw (10.21.1.56) with Microsoft SMTP Server id 15.2.1748.10 via Frontend Transport; Tue, 24 Mar 2026 10:53:34 +0800 From: Yu-Chun Lin To: , , , , , , , , CC: , , , , , , , , Subject: [PATCH v5 07/10] clk: realtek: Add support for mux clock Date: Tue, 24 Mar 2026 10:53:28 +0800 Message-ID: <20260324025332.3416977-8-eleanor.lin@realtek.com> X-Mailer: git-send-email 2.50.1 In-Reply-To: <20260324025332.3416977-1-eleanor.lin@realtek.com> References: <20260324025332.3416977-1-eleanor.lin@realtek.com> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" From: Cheng-Yu Lee Add a simple regmap-based clk_ops implementation for Realtek mux clocks. The implementation supports parent selection and rate determination through regmap-backed register access. Signed-off-by: Cheng-Yu Lee Co-developed-by: Yu-Chun Lin Signed-off-by: Yu-Chun Lin --- Changes in v5: - None. --- drivers/clk/realtek/Makefile | 1 + drivers/clk/realtek/clk-regmap-mux.c | 46 ++++++++++++++++++++++++++++ drivers/clk/realtek/clk-regmap-mux.h | 43 ++++++++++++++++++++++++++ 3 files changed, 90 insertions(+) create mode 100644 drivers/clk/realtek/clk-regmap-mux.c create mode 100644 drivers/clk/realtek/clk-regmap-mux.h diff --git a/drivers/clk/realtek/Makefile b/drivers/clk/realtek/Makefile index 74375f8127ac..f90dc57fcfdb 100644 --- a/drivers/clk/realtek/Makefile +++ b/drivers/clk/realtek/Makefile @@ -5,4 +5,5 @@ clk-rtk-y +=3D common.o =20 clk-rtk-y +=3D clk-pll.o clk-rtk-y +=3D clk-regmap-gate.o +clk-rtk-y +=3D clk-regmap-mux.o clk-rtk-y +=3D freq_table.o diff --git a/drivers/clk/realtek/clk-regmap-mux.c b/drivers/clk/realtek/clk= -regmap-mux.c new file mode 100644 index 000000000000..d1612de2e2bc --- /dev/null +++ b/drivers/clk/realtek/clk-regmap-mux.c @@ -0,0 +1,46 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * Copyright (C) 2017 Realtek Semiconductor Corporation + * Author: Cheng-Yu Lee + */ + +#include "clk-regmap-mux.h" + +static u8 clk_regmap_mux_get_parent(struct clk_hw *hw) +{ + struct clk_regmap_mux *clkm =3D to_clk_regmap_mux(hw); + int num_parents =3D clk_hw_get_num_parents(hw); + u32 val; + int ret; + + ret =3D regmap_read(clkm->clkr.regmap, clkm->mux_ofs, &val); + if (ret) + return 0; + + val =3D val >> clkm->shift & clkm->mask; + + if (val >=3D num_parents) + return 0; + + return val; +} + +static int clk_regmap_mux_set_parent(struct clk_hw *hw, u8 index) +{ + struct clk_regmap_mux *clkm =3D to_clk_regmap_mux(hw); + + return regmap_update_bits(clkm->clkr.regmap, clkm->mux_ofs, + clkm->mask << clkm->shift, index << clkm->shift); +} + +const struct clk_ops rtk_clk_regmap_mux_ops =3D { + .set_parent =3D clk_regmap_mux_set_parent, + .get_parent =3D clk_regmap_mux_get_parent, + .determine_rate =3D __clk_mux_determine_rate, +}; +EXPORT_SYMBOL_GPL(rtk_clk_regmap_mux_ops); + +const struct clk_ops rtk_clk_regmap_mux_ro_ops =3D { + .get_parent =3D clk_regmap_mux_get_parent, +}; +EXPORT_SYMBOL_GPL(rtk_clk_regmap_mux_ro_ops); diff --git a/drivers/clk/realtek/clk-regmap-mux.h b/drivers/clk/realtek/clk= -regmap-mux.h new file mode 100644 index 000000000000..cf7ab6a0604c --- /dev/null +++ b/drivers/clk/realtek/clk-regmap-mux.h @@ -0,0 +1,43 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Copyright (C) 2017 Realtek Semiconductor Corporation + * Author: Cheng-Yu Lee + */ + +#ifndef __CLK_REALTEK_CLK_REGMAP_MUX_H +#define __CLK_REALTEK_CLK_REGMAP_MUX_H + +#include "common.h" + +struct clk_regmap_mux { + struct clk_regmap clkr; + int mux_ofs; + unsigned int mask; + unsigned int shift; +}; + +#define __clk_regmap_mux_hw(_p) __clk_regmap_hw(&(_p)->clkr) + +#define __CLK_REGMAP_MUX(_name, _parents, _ops, _flags, _ofs, _sft, _mask)= \ + struct clk_regmap_mux _name =3D { \ + .clkr.hw.init =3D \ + CLK_HW_INIT_PARENTS(#_name, _parents, _ops, _flags), \ + .mux_ofs =3D _ofs, \ + .shift =3D _sft, \ + .mask =3D _mask, \ + } + +#define CLK_REGMAP_MUX(_name, _parents, _flags, _ofs, _sft, _mask) = \ + __CLK_REGMAP_MUX(_name, _parents, &rtk_clk_regmap_mux_ops, _flags, _ofs, \ + _sft, _mask) + +static inline struct clk_regmap_mux *to_clk_regmap_mux(struct clk_hw *hw) +{ + struct clk_regmap *clkr =3D to_clk_regmap(hw); + + return container_of(clkr, struct clk_regmap_mux, clkr); +} + +extern const struct clk_ops rtk_clk_regmap_mux_ops; + +#endif /* __CLK_REALTEK_CLK_REGMAP_MUX_H */ --=20 2.34.1