2 * Copyright (C) 2013 Red Hat
3 * Author: Rob Clark <robdclark@gmail.com>
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 as published by
7 * the Free Software Foundation.
9 * This program is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
14 * You should have received a copy of the GNU General Public License along with
15 * this program. If not, see <http://www.gnu.org/licenses/>.
21 struct drm_bridge base
;
26 unsigned long int pixclock
;
28 #define to_hdmi_bridge(x) container_of(x, struct hdmi_bridge, base)
30 static void hdmi_bridge_destroy(struct drm_bridge
*bridge
)
32 struct hdmi_bridge
*hdmi_bridge
= to_hdmi_bridge(bridge
);
33 hdmi_unreference(hdmi_bridge
->hdmi
);
34 drm_bridge_cleanup(bridge
);
38 static void power_on(struct drm_bridge
*bridge
)
40 struct drm_device
*dev
= bridge
->dev
;
41 struct hdmi_bridge
*hdmi_bridge
= to_hdmi_bridge(bridge
);
42 struct hdmi
*hdmi
= hdmi_bridge
->hdmi
;
43 const struct hdmi_platform_config
*config
= hdmi
->config
;
46 for (i
= 0; i
< config
->pwr_reg_cnt
; i
++) {
47 ret
= regulator_enable(hdmi
->pwr_regs
[i
]);
49 dev_err(dev
->dev
, "failed to enable pwr regulator: %s (%d)\n",
50 config
->pwr_reg_names
[i
], ret
);
54 if (config
->pwr_clk_cnt
> 0) {
55 DBG("pixclock: %lu", hdmi_bridge
->pixclock
);
56 ret
= clk_set_rate(hdmi
->pwr_clks
[0], hdmi_bridge
->pixclock
);
58 dev_err(dev
->dev
, "failed to set pixel clk: %s (%d)\n",
59 config
->pwr_clk_names
[0], ret
);
63 for (i
= 0; i
< config
->pwr_clk_cnt
; i
++) {
64 ret
= clk_prepare_enable(hdmi
->pwr_clks
[i
]);
66 dev_err(dev
->dev
, "failed to enable pwr clk: %s (%d)\n",
67 config
->pwr_clk_names
[i
], ret
);
72 static void power_off(struct drm_bridge
*bridge
)
74 struct drm_device
*dev
= bridge
->dev
;
75 struct hdmi_bridge
*hdmi_bridge
= to_hdmi_bridge(bridge
);
76 struct hdmi
*hdmi
= hdmi_bridge
->hdmi
;
77 const struct hdmi_platform_config
*config
= hdmi
->config
;
80 /* TODO do we need to wait for final vblank somewhere before
85 for (i
= 0; i
< config
->pwr_clk_cnt
; i
++)
86 clk_disable_unprepare(hdmi
->pwr_clks
[i
]);
88 for (i
= 0; i
< config
->pwr_reg_cnt
; i
++) {
89 ret
= regulator_disable(hdmi
->pwr_regs
[i
]);
91 dev_err(dev
->dev
, "failed to disable pwr regulator: %s (%d)\n",
92 config
->pwr_reg_names
[i
], ret
);
97 static void hdmi_bridge_pre_enable(struct drm_bridge
*bridge
)
99 struct hdmi_bridge
*hdmi_bridge
= to_hdmi_bridge(bridge
);
100 struct hdmi
*hdmi
= hdmi_bridge
->hdmi
;
101 struct hdmi_phy
*phy
= hdmi
->phy
;
105 if (!hdmi_bridge
->power_on
) {
107 hdmi_bridge
->power_on
= true;
110 phy
->funcs
->powerup(phy
, hdmi_bridge
->pixclock
);
111 hdmi_set_mode(hdmi
, true);
114 static void hdmi_bridge_enable(struct drm_bridge
*bridge
)
118 static void hdmi_bridge_disable(struct drm_bridge
*bridge
)
122 static void hdmi_bridge_post_disable(struct drm_bridge
*bridge
)
124 struct hdmi_bridge
*hdmi_bridge
= to_hdmi_bridge(bridge
);
125 struct hdmi
*hdmi
= hdmi_bridge
->hdmi
;
126 struct hdmi_phy
*phy
= hdmi
->phy
;
129 hdmi_set_mode(hdmi
, false);
130 phy
->funcs
->powerdown(phy
);
132 if (hdmi_bridge
->power_on
) {
134 hdmi_bridge
->power_on
= false;
138 static void hdmi_bridge_mode_set(struct drm_bridge
*bridge
,
139 struct drm_display_mode
*mode
,
140 struct drm_display_mode
*adjusted_mode
)
142 struct hdmi_bridge
*hdmi_bridge
= to_hdmi_bridge(bridge
);
143 struct hdmi
*hdmi
= hdmi_bridge
->hdmi
;
144 int hstart
, hend
, vstart
, vend
;
147 mode
= adjusted_mode
;
149 hdmi_bridge
->pixclock
= mode
->clock
* 1000;
151 hdmi
->hdmi_mode
= drm_match_cea_mode(mode
) > 1;
153 hstart
= mode
->htotal
- mode
->hsync_start
;
154 hend
= mode
->htotal
- mode
->hsync_start
+ mode
->hdisplay
;
156 vstart
= mode
->vtotal
- mode
->vsync_start
- 1;
157 vend
= mode
->vtotal
- mode
->vsync_start
+ mode
->vdisplay
- 1;
159 DBG("htotal=%d, vtotal=%d, hstart=%d, hend=%d, vstart=%d, vend=%d",
160 mode
->htotal
, mode
->vtotal
, hstart
, hend
, vstart
, vend
);
162 hdmi_write(hdmi
, REG_HDMI_TOTAL
,
163 HDMI_TOTAL_H_TOTAL(mode
->htotal
- 1) |
164 HDMI_TOTAL_V_TOTAL(mode
->vtotal
- 1));
166 hdmi_write(hdmi
, REG_HDMI_ACTIVE_HSYNC
,
167 HDMI_ACTIVE_HSYNC_START(hstart
) |
168 HDMI_ACTIVE_HSYNC_END(hend
));
169 hdmi_write(hdmi
, REG_HDMI_ACTIVE_VSYNC
,
170 HDMI_ACTIVE_VSYNC_START(vstart
) |
171 HDMI_ACTIVE_VSYNC_END(vend
));
173 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
) {
174 hdmi_write(hdmi
, REG_HDMI_VSYNC_TOTAL_F2
,
175 HDMI_VSYNC_TOTAL_F2_V_TOTAL(mode
->vtotal
));
176 hdmi_write(hdmi
, REG_HDMI_VSYNC_ACTIVE_F2
,
177 HDMI_VSYNC_ACTIVE_F2_START(vstart
+ 1) |
178 HDMI_VSYNC_ACTIVE_F2_END(vend
+ 1));
180 hdmi_write(hdmi
, REG_HDMI_VSYNC_TOTAL_F2
,
181 HDMI_VSYNC_TOTAL_F2_V_TOTAL(0));
182 hdmi_write(hdmi
, REG_HDMI_VSYNC_ACTIVE_F2
,
183 HDMI_VSYNC_ACTIVE_F2_START(0) |
184 HDMI_VSYNC_ACTIVE_F2_END(0));
188 if (mode
->flags
& DRM_MODE_FLAG_NHSYNC
)
189 frame_ctrl
|= HDMI_FRAME_CTRL_HSYNC_LOW
;
190 if (mode
->flags
& DRM_MODE_FLAG_NVSYNC
)
191 frame_ctrl
|= HDMI_FRAME_CTRL_VSYNC_LOW
;
192 if (mode
->flags
& DRM_MODE_FLAG_INTERLACE
)
193 frame_ctrl
|= HDMI_FRAME_CTRL_INTERLACED_EN
;
194 DBG("frame_ctrl=%08x", frame_ctrl
);
195 hdmi_write(hdmi
, REG_HDMI_FRAME_CTRL
, frame_ctrl
);
197 // TODO until we have audio, this might be safest:
199 hdmi_write(hdmi
, REG_HDMI_GC
, HDMI_GC_MUTE
);
202 static const struct drm_bridge_funcs hdmi_bridge_funcs
= {
203 .pre_enable
= hdmi_bridge_pre_enable
,
204 .enable
= hdmi_bridge_enable
,
205 .disable
= hdmi_bridge_disable
,
206 .post_disable
= hdmi_bridge_post_disable
,
207 .mode_set
= hdmi_bridge_mode_set
,
208 .destroy
= hdmi_bridge_destroy
,
212 /* initialize bridge */
213 struct drm_bridge
*hdmi_bridge_init(struct hdmi
*hdmi
)
215 struct drm_bridge
*bridge
= NULL
;
216 struct hdmi_bridge
*hdmi_bridge
;
219 hdmi_bridge
= kzalloc(sizeof(*hdmi_bridge
), GFP_KERNEL
);
225 hdmi_bridge
->hdmi
= hdmi_reference(hdmi
);
227 bridge
= &hdmi_bridge
->base
;
229 drm_bridge_init(hdmi
->dev
, bridge
, &hdmi_bridge_funcs
);
235 hdmi_bridge_destroy(bridge
);