Message ID | 20240324-x1e80100-phy-edp-compatible-refactor-v5-1-a0db5f3150bc@linaro.org |
---|---|
State | Accepted |
Commit | 368d67dab4cc4a3ffd39fbd062b2f5796cdbb37b |
Headers | show |
Series | phy: qcom: edp: Allow eDP/DP configuring via set_mode op | expand |
On Sun, 24 Mar 2024 at 20:50, Abel Vesa <abel.vesa@linaro.org> wrote: > > In some cases, a DP PHY needs to be configured to work in eDP mode. > So add submodes for both DP and eDP so they can be used by the > controllers for specifying the mode the PHY should be configured in. > > Signed-off-by: Abel Vesa <abel.vesa@linaro.org> > --- > include/linux/phy/phy-dp.h | 3 +++ > 1 file changed, 3 insertions(+) Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> Vinod, we'd need an immutable branch or a tag for this patch, so that we can merge DP changes during this cycle
On 24-03-24, 23:26, Dmitry Baryshkov wrote: > On Sun, 24 Mar 2024 at 20:50, Abel Vesa <abel.vesa@linaro.org> wrote: > > > > In some cases, a DP PHY needs to be configured to work in eDP mode. > > So add submodes for both DP and eDP so they can be used by the > > controllers for specifying the mode the PHY should be configured in. > > > > Signed-off-by: Abel Vesa <abel.vesa@linaro.org> > > --- > > include/linux/phy/phy-dp.h | 3 +++ > > 1 file changed, 3 insertions(+) > > Reviewed-by: Dmitry Baryshkov <dmitry.baryshkov@linaro.org> > > Vinod, we'd need an immutable branch or a tag for this patch, so that > we can merge DP changes during this cycle The following changes since commit 4cece764965020c22cff7665b18a012006359095: Linux 6.9-rc1 (2024-03-24 14:10:05 -0700) are available in the Git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/phy/linux-phy.git tags/phy_dp_modes_6.10 for you to fetch changes up to 6078b8ce070cad3f9a8ecfce65d0f6d595494f02: phy: qcom: edp: Add set_mode op for configuring eDP/DP submode (2024-03-29 00:30:16 +0530) ---------------------------------------------------------------- phy_dp_modes_6.10 This contains the dp submode definition and associated qcom driver change ---------------------------------------------------------------- Abel Vesa (2): phy: Add Embedded DisplayPort and DisplayPort submodes phy: qcom: edp: Add set_mode op for configuring eDP/DP submode drivers/phy/qualcomm/phy-qcom-edp.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++-------------------- include/linux/phy/phy-dp.h | 3 +++ 2 files changed, 59 insertions(+), 20 deletions(-)
diff --git a/include/linux/phy/phy-dp.h b/include/linux/phy/phy-dp.h index 18cad23642cd..9cce5766bc0b 100644 --- a/include/linux/phy/phy-dp.h +++ b/include/linux/phy/phy-dp.h @@ -8,6 +8,9 @@ #include <linux/types.h> +#define PHY_SUBMODE_DP 0 +#define PHY_SUBMODE_EDP 1 + /** * struct phy_configure_opts_dp - DisplayPort PHY configuration set *
In some cases, a DP PHY needs to be configured to work in eDP mode. So add submodes for both DP and eDP so they can be used by the controllers for specifying the mode the PHY should be configured in. Signed-off-by: Abel Vesa <abel.vesa@linaro.org> --- include/linux/phy/phy-dp.h | 3 +++ 1 file changed, 3 insertions(+)