From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gloria.sntech.de (gloria.sntech.de [185.11.138.130]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 8863022A1D4 for ; Tue, 10 Mar 2026 08:40:19 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=185.11.138.130 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773132023; cv=none; b=VRFsO5pkw1Fls88ykZhlD1pQdo7ycAHdkqjRCTCoc79EpThkcXFX/txuEB1vOyhpu2Q8JsCiCsqX48ge21TcKSqQYU9uBgC0tvFcKB03Eh7qj5HMr7pVMNHAGeYhQHkginB6vPfogicIeyu1TS0xQNG8pRsTzoZSTiiveVSVHT8= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1773132023; c=relaxed/simple; bh=yI1UHILPTNXaKeOvDKeeej23Oy+HFd7sGSSVV/DcHrc=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version:Content-Type; b=rWYO/WzstthUrvo3e/3sqDmIu2EKcKiy7AqpC3uD70vyPfG5lEMPR8lJVIFJNFCb0T7f4/BQ80+6ECsC1wt/HiWZ2IEsFhNLMDUvtzHSz4sxovR++CgxAgvFOfEo1+4S9EEvjouDgpv+9/iminubBO7WtA+lSyI6amZZgVnzKVw= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=sntech.de; spf=pass smtp.mailfrom=sntech.de; dkim=pass (2048-bit key) header.d=sntech.de header.i=@sntech.de header.b=w3BBJU2i; arc=none smtp.client-ip=185.11.138.130 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=sntech.de Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=sntech.de Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=sntech.de header.i=@sntech.de header.b="w3BBJU2i" DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=sntech.de; s=gloria202408; h=Content-Type:Content-Transfer-Encoding:MIME-Version: References:In-Reply-To:Message-ID:Date:Subject:Cc:To:From:Reply-To; bh=yI1UHILPTNXaKeOvDKeeej23Oy+HFd7sGSSVV/DcHrc=; b=w3BBJU2iM2VbTf9jd7UXZ0Jz5Y Y4zMHvJ6Dzc/U9LzqiLk3GgJnuY4xavhw/+J5zgSNaQ12NRf40a+NEWxumUC1yq98ID3U7BXctXYB UKbmb9PLwcLZhAVAJalnFeDBPEFpkUJakfdLI33OFgiFo+cpFKaodBURYVazxEP2oJJm7AytmJFZg uuX/P013NkkGt/A54Vzis9s7tiPuqeHXaF+kJC7GZuAhLducqOtA99QPIwWIzT5RfiKsAtJSYYLzZ +BElBwlHkjgsJeh//fvIhkj3UGZhjC7nUjL0jVIDp4jYs/yLVtMZnLiH2uiRxSFb1KK363Q27Egc0 tbjd3+8w==; From: Heiko Stuebner To: Vinod Koul , Shawn Lin Cc: linux-rockchip@lists.infradead.org, linux-phy@lists.infradead.org, Neil Armstrong , linux-kernel@vger.kernel.org, Shawn Lin Subject: Re: [PATCH v2] phy: rockchip: naneng-combphy: Consolidate SSC configuration Date: Tue, 10 Mar 2026 09:40:11 +0100 Message-ID: <2899531.BEx9A2HvPv@phil> In-Reply-To: <1772696450-139583-1-git-send-email-shawn.lin@rock-chips.com> References: <1772696450-139583-1-git-send-email-shawn.lin@rock-chips.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" Am Donnerstag, 5. M=C3=A4rz 2026, 08:40:50 Mitteleurop=C3=A4ische Normalzei= t schrieb Shawn Lin: > The PCIe SSC configuration for the RK3588 and RK3576 SoCs required > additional tuning which is missing. When adding these same SSC > configurations for both of these two SoCs, as well as upcoming > platforms, it's obvious the SSC setup code was largely duplicated > across the platform-specific configuration functions. This becomes > harder to maintain as more platforms are added. >=20 > So extract the common SSC logic into a shared helper function, > rk_combphy_common_cfg_ssc(). This cleans up the per-platform drivers > and centralizes the standard configuration as possible. >=20 > Signed-off-by: Shawn Lin Reviewed-by: Heiko Stuebner