-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[media] v4l: s5p-tv: add drivers for HDMI on Samsung S5P platform
Add drivers for HDMI outputs on Samsung platforms from S5P family. Drivers are using: - v4l2 framework - runtime PM Signed-off-by: Tomasz Stanislawski <t.stanislaws@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Reviewed-by: Marek Szyprowski <m.szyprowski@samsung.com> Reviewed-by: Sylwester Nawrocki <s.nawrocki@samsung.com> Reviewed-by: Hans Verkuil <hverkuil@xs4all.nl> Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
- Loading branch information
Tomasz Stanislawski
authored and
Mauro Carvalho Chehab
committed
Jul 27, 2011
1 parent
5930ab2
commit a52074e
Showing
7 changed files
with
1,436 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
# drivers/media/video/s5p-tv/Kconfig | ||
# | ||
# Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. | ||
# http://www.samsung.com/ | ||
# Tomasz Stanislawski <t.stanislaws@samsung.com> | ||
# | ||
# Licensed under GPL | ||
|
||
config VIDEO_SAMSUNG_S5P_TV | ||
bool "Samsung TV driver for S5P platform (experimental)" | ||
depends on PLAT_S5P | ||
depends on EXPERIMENTAL | ||
default n | ||
---help--- | ||
Say Y here to enable selecting the TV output devices for | ||
Samsung S5P platform. | ||
|
||
if VIDEO_SAMSUNG_S5P_TV | ||
|
||
config VIDEO_SAMSUNG_S5P_HDMI | ||
tristate "Samsung HDMI Driver" | ||
depends on VIDEO_V4L2 | ||
depends on VIDEO_SAMSUNG_S5P_TV | ||
select VIDEO_SAMSUNG_S5P_HDMIPHY | ||
help | ||
Say Y here if you want support for the HDMI output | ||
interface in S5P Samsung SoC. The driver can be compiled | ||
as module. It is an auxiliary driver, that exposes a V4L2 | ||
subdev for use by other drivers. This driver requires | ||
hdmiphy driver to work correctly. | ||
|
||
config VIDEO_SAMSUNG_S5P_HDMI_DEBUG | ||
bool "Enable debug for HDMI Driver" | ||
depends on VIDEO_SAMSUNG_S5P_HDMI | ||
default n | ||
help | ||
Enables debugging for HDMI driver. | ||
|
||
config VIDEO_SAMSUNG_S5P_HDMIPHY | ||
tristate "Samsung HDMIPHY Driver" | ||
depends on VIDEO_DEV && VIDEO_V4L2 && I2C | ||
depends on VIDEO_SAMSUNG_S5P_TV | ||
help | ||
Say Y here if you want support for the physical HDMI | ||
interface in S5P Samsung SoC. The driver can be compiled | ||
as module. It is an I2C driver, that exposes a V4L2 | ||
subdev for use by other drivers. | ||
|
||
endif # VIDEO_SAMSUNG_S5P_TV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# drivers/media/video/samsung/tvout/Makefile | ||
# | ||
# Copyright (c) 2010-2011 Samsung Electronics Co., Ltd. | ||
# http://www.samsung.com/ | ||
# Tomasz Stanislawski <t.stanislaws@samsung.com> | ||
# | ||
# Licensed under GPL | ||
|
||
obj-$(CONFIG_VIDEO_SAMSUNG_S5P_HDMIPHY) += s5p-hdmiphy.o | ||
s5p-hdmiphy-y += hdmiphy_drv.o | ||
obj-$(CONFIG_VIDEO_SAMSUNG_S5P_HDMI) += s5p-hdmi.o | ||
s5p-hdmi-y += hdmi_drv.o | ||
|
Oops, something went wrong.