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