diff options
author | Jon Mayo <jmayo@nvidia.com> | 2011-01-03 20:26:25 -0500 |
---|---|---|
committer | Dan Willemsen <dwillemsen@nvidia.com> | 2015-03-18 15:00:55 -0400 |
commit | 1b4afec39cd51d3cc1ec1f2114990b28a9691e73 (patch) | |
tree | 369d282af253ae8473fc2be997ec31e39cbd69d9 /drivers/video/tegra/dc/Makefile | |
parent | d506a60cb865c840362ca5a79af46fecd56656af (diff) |
[ARM] tegra: hdmi nvhdcp driver
Device /dev/nvhdcpX is used to manage NVHDCP on framebuffer /dev/fbX.
These devices are created on hdmi driver initialition when it is
attached to dc. Currently only one nvhdcp device may be created. An ioctl
interface is in video/nvhdcp.h
Check for repeaters and store repeater info. userspace application
queries this status to authenticate the connection. When authentication
fails, auto-renegotiate every 1.75 seconds. Give up after 5 failed attempts,
reset after hotplug or policy change.
use TEGRA_DC_OUT_NVHDCP_POLICY_ON_DEMAND in tegra_dc_out.flags in board
panel configuration to select a different default policy at probe. Currently
only TEGRA_DC_OUT_NVHDCP_POLICY_ALWAYS_ON is supported.
Change-Id: I0db66fc86096b98d2604544061721d291523de75
Reviewed-by: Jon Mayo <jmayo@nvidia.com>
Tested-by: Jon Mayo <jmayo@nvidia.com>
Reviewed-by: Phillip Smith <psmith@nvidia.com>
Reviewed-by: Yu-Huan Hsu <yhsu@nvidia.com>
Signed-off-by: Erik Gilling <konkers@android.com>
Rebase-Id: Rd173656814cd1e5bc9fe2c4560772f491deea311
Diffstat (limited to 'drivers/video/tegra/dc/Makefile')
-rw-r--r-- | drivers/video/tegra/dc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/tegra/dc/Makefile b/drivers/video/tegra/dc/Makefile index eb39d5d28..4567eba8c 100644 --- a/drivers/video/tegra/dc/Makefile +++ b/drivers/video/tegra/dc/Makefile | |||
@@ -1,4 +1,5 @@ | |||
1 | obj-y += dc.o | 1 | obj-y += dc.o |
2 | obj-y += rgb.o | 2 | obj-y += rgb.o |
3 | obj-y += hdmi.o | 3 | obj-y += hdmi.o |
4 | obj-y += edid.o \ No newline at end of file | 4 | obj-y += nvhdcp.o |
5 | obj-y += edid.o | ||