mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2026-03-08 18:26:12 +01:00
The HDMI 2.1 specification introduced the Fixed Rate Link (FRL) mode, aiming to replace the older Transition-Minimized Differential Signaling (TMDS) mode used in previous HDMI versions to support much higher bandwidths (up to 48 Gbps) for modern video and audio formats. FRL has been designed to support ultra high resolution formats at high refresh rates like 8K@60Hz or 4K@120Hz, and eliminates the need for dynamic bandwidth adjustments, which reduces latency. It operates with 3 or 4 lanes at different link rates: 3Gbps, 6Gbps, 8Gbps, 10Gbps or 12Gbps. Add support for configuring the FRL mode for HDMI PHYs. Signed-off-by: Cristian Ciocaltea <cristian.ciocaltea@collabora.com> Link: https://patch.msgid.link/20260113-phy-hdptx-frl-v6-1-8d5f97419c0b@collabora.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
37 lines
726 B
C
37 lines
726 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright 2022,2024 NXP
|
|
*/
|
|
|
|
#ifndef __PHY_HDMI_H_
|
|
#define __PHY_HDMI_H_
|
|
|
|
#include <linux/types.h>
|
|
|
|
enum phy_hdmi_mode {
|
|
PHY_HDMI_MODE_TMDS,
|
|
PHY_HDMI_MODE_FRL,
|
|
};
|
|
|
|
/**
|
|
* struct phy_configure_opts_hdmi - HDMI configuration set
|
|
* @bpc: Bits per color channel.
|
|
* @tmds_char_rate: HDMI TMDS Character Rate in Hertz.
|
|
* @frl.rate_per_lane: HDMI FRL Rate per Lane in Gbps.
|
|
* @frl.lanes: HDMI FRL lanes count.
|
|
*
|
|
* This structure is used to represent the configuration state of a HDMI phy.
|
|
*/
|
|
struct phy_configure_opts_hdmi {
|
|
unsigned int bpc;
|
|
union {
|
|
unsigned long long tmds_char_rate;
|
|
struct {
|
|
u8 rate_per_lane;
|
|
u8 lanes;
|
|
} frl;
|
|
};
|
|
};
|
|
|
|
#endif /* __PHY_HDMI_H_ */
|