1 /* SPDX-License-Identifier: GPL-2.0 */ 2 /* 3 * Copyright 2022,2024 NXP 4 */ 5 6 #ifndef __PHY_HDMI_H_ 7 #define __PHY_HDMI_H_ 8 9 /** 10 * struct phy_configure_opts_hdmi - HDMI configuration set 11 * @tmds_char_rate: HDMI TMDS Character Rate in Hertz. 12 * @bpc: Bits per color channel. 13 * 14 * This structure is used to represent the configuration state of a HDMI phy. 15 */ 16 struct phy_configure_opts_hdmi { 17 unsigned long long tmds_char_rate; 18 unsigned int bpc; 19 }; 20 21 #endif /* __PHY_HDMI_H_ */ 22