diff options
author | Benjamin Gaignard <benjamin.gaignard@linaro.org> | 2014-07-30 19:24:55 +0200 |
---|---|---|
committer | Benjamin Gaignard <benjamin.gaignard@linaro.org> | 2014-07-30 19:24:55 +0200 |
commit | 5402626c83a2f19da14859e2bab231a53e16ee74 (patch) | |
tree | ffd999a514e86e8d9cd03d6bf9ee313abc9fe7a1 /drivers/gpu/drm/sti/Makefile | |
parent | 9ed68fa74e34c1bc36b76f1c4abf4dd4744ecce9 (diff) |
drm: sti: add HDMI driver
Add driver for HDMI output.
HDMI PHY registers are mixed into HDMI device registers
and their is only one IRQ for all this hardware block.
That is why PHYs aren't using phy framework but only a
thin hdmi_phy_ops structure with start and stop functions.
HDMI driver is mapped on drm_bridge and drm_connector structures.
Signed-off-by: Benjamin Gaignard <benjamin.gaignard@linaro.org>
Reviewed-by: Rob Clark <robdclark@gmail.com>
Diffstat (limited to 'drivers/gpu/drm/sti/Makefile')
-rw-r--r-- | drivers/gpu/drm/sti/Makefile | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/drivers/gpu/drm/sti/Makefile b/drivers/gpu/drm/sti/Makefile index 1534d4c43e6..12e1a07492f 100644 --- a/drivers/gpu/drm/sti/Makefile +++ b/drivers/gpu/drm/sti/Makefile @@ -1,3 +1,8 @@ +stihdmi-y := sti_hdmi.o \ + sti_hdmi_tx3g0c55phy.o \ + sti_hdmi_tx3g4c28phy.o \ + obj-$(CONFIG_DRM_STI) = \ sti_vtg.o \ - sti_vtac.o
\ No newline at end of file + sti_vtac.o \ + stihdmi.o
\ No newline at end of file |