2 * Copyright (C) STMicroelectronics SA 2014
3 * Author: Vincent Abriou <vincent.abriou@st.com> for STMicroelectronics.
4 * License terms: GNU General Public License (GPL), version 2
10 #include <linux/hdmi.h>
11 #include <linux/platform_device.h>
15 #define HDMI_STA 0x0010
16 #define HDMI_STA_DLL_LCK BIT(5)
17 #define HDMI_STA_HOT_PLUG BIT(4)
22 bool (*start
)(struct sti_hdmi
*hdmi
);
23 void (*stop
)(struct sti_hdmi
*hdmi
);
26 struct hdmi_audio_params
{
28 unsigned int sample_width
;
29 unsigned int sample_rate
;
30 struct hdmi_audio_infoframe cea
;
33 /* values for the framing mode property */
39 static const struct drm_prop_enum_list hdmi_mode_names
[] = {
40 { HDMI_MODE_HDMI
, "hdmi" },
41 { HDMI_MODE_DVI
, "dvi" },
44 #define DEFAULT_HDMI_MODE HDMI_MODE_HDMI
46 static const struct drm_prop_enum_list colorspace_mode_names
[] = {
47 { HDMI_COLORSPACE_RGB
, "rgb" },
48 { HDMI_COLORSPACE_YUV422
, "yuv422" },
49 { HDMI_COLORSPACE_YUV444
, "yuv444" },
52 #define DEFAULT_COLORSPACE_MODE HDMI_COLORSPACE_RGB
58 * @drm_dev: pointer to drm device
59 * @mode: current display mode selected
60 * @regs: hdmi register
61 * @syscfg: syscfg register for pll rejection configuration
62 * @clk_pix: hdmi pixel clock
63 * @clk_tmds: hdmi tmds clock
64 * @clk_phy: hdmi phy clock
65 * @clk_audio: hdmi audio clock
66 * @irq: hdmi interrupt number
67 * @irq_status: interrupt status register
68 * @phy_ops: phy start/stop operations
69 * @enabled: true if hdmi is enabled else false
70 * @hpd: hot plug detect status
71 * @wait_event: wait event
72 * @event_received: wait event status
73 * @reset: reset control of the hdmi phy
74 * @ddc_adapt: i2c ddc adapter
75 * @colorspace: current colorspace selected
76 * @hdmi_mode: select framing for HDMI or DVI
77 * @audio_pdev: ASoC hdmi-codec platform device
78 * @audio: hdmi audio parameters.
79 * @drm_connector: hdmi connector
83 struct drm_device
*drm_dev
;
84 struct drm_display_mode mode
;
90 struct clk
*clk_audio
;
93 struct hdmi_phy_ops
*phy_ops
;
96 wait_queue_head_t wait_event
;
98 struct reset_control
*reset
;
99 struct i2c_adapter
*ddc_adapt
;
100 enum hdmi_colorspace colorspace
;
101 enum sti_hdmi_modes hdmi_mode
;
102 struct platform_device
*audio_pdev
;
103 struct hdmi_audio_params audio
;
104 struct drm_connector
*drm_connector
;
107 u32
hdmi_read(struct sti_hdmi
*hdmi
, int offset
);
108 void hdmi_write(struct sti_hdmi
*hdmi
, u32 val
, int offset
);
111 * hdmi phy config structure
113 * A pointer to an array of these structures is passed to a TMDS (HDMI) output
114 * via the control interface to provide board and SoC specific
115 * configurations of the HDMI PHY. Each entry in the array specifies a hardware
116 * specific configuration for a given TMDS clock frequency range.
118 * @min_tmds_freq: Lower bound of TMDS clock frequency this entry applies to
119 * @max_tmds_freq: Upper bound of TMDS clock frequency this entry applies to
120 * @config: SoC specific register configuration
122 struct hdmi_phy_config
{