source: svn/newcon3bcm2_21bu/magnum/portinginterface/hdm/bhdm.inc @ 44

Last change on this file since 44 was 44, checked in by megakiss, 11 years ago

광주방송 OTC 주파수 369Mhz로 변경

  • Property svn:executable set to *
File size: 2.9 KB
Line 
1############################################################
2#     Copyright (c) 2003-2012, Broadcom Corporation
3#     All Rights Reserved
4#     Confidential Property of Broadcom Corporation
5#
6#  THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE
7#  AGREEMENT  BETWEEN THE USER AND BROADCOM.  YOU HAVE NO RIGHT TO USE OR
8#  EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT.
9#
10# $brcm_Workfile: bhdm.inc $
11# $brcm_Revision: Hydra_Software_Devel/9 $
12# $brcm_Date: 3/9/12 2:41p $
13#
14# Module Description:
15#
16# Revision History:
17#
18# Created: 01/09/2007 by Jon Garrett
19#
20# $brcm_Log: Q:/projects/7425/latest/magnum/portinginterface/hdm/bhdm.inc $
21#
22# Hydra_Software_Devel/9   3/9/12 2:41p rgreen
23# SW7425-2515: Remove support for bhdm_cec files.  See cec pi
24#
25# Hydra_Software_Devel/8   12/12/11 3:05p rgreen
26# SW7125-1165: Merge changes
27#
28# Hydra_Software_Devel/SW7125-1165/1   12/8/11 1:41p mward
29# SW7125-1165: Replace findstring with filter to do exact word match.
30#
31# Hydra_Software_Devel/7   6/17/11 1:43p vle
32# SW7405-5358, SW7405-5312: Separate 3D support from EDID parser to allow
33# easier back port
34#
35# Hydra_Software_Devel/6   2/23/10 1:12a vle
36# SW7420-579: Refactor HDMI PI code
37#
38# Hydra_Software_Devel/5   5/6/08 10:19a rgreen
39# PR38947,PR39463: fix comment for enabling LVDS/DVO support; should be
40# enabled for all RXs
41#
42# Hydra_Software_Devel/4   4/28/08 6:02p vle
43# PR42271: Move HDMI CEC implementations to bhdm_cec_priv to allow ease
44# of code sharing between HDMI transmitter and receiver platforms.
45#
46# Hydra_Software_Devel/3   3/5/08 10:46a rgreen
47# PR38946,PR39503: Add HDM Support for 3548 and 3556
48#
49# Hydra_Software_Devel/2   6/7/07 12:21p vle
50# PR 31917: Fix condition on checking CEC support.
51#
52# Hydra_Software_Devel/1   1/11/07 2:39p jgarrett
53# PR27004: Adding new .inc files
54#
55############################################################
56
57#
58# Conditional Options for this Makefile
59#
60# BHDM_CEC_SUPPORT - If defined, this will include CEC support.
61#
62
63# Define this module
64MAGNUM_MODULES += BHDM
65
66# Module Includes
67BHDM_INCLUDES += $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)
68
69# Module Sources
70BHDM_SOURCES += $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm.c
71
72# Chip-specific options
73ifneq ($(filter $(BCHP_CHIP), 3560 3563 3548 3556),)
74# Enable DVO for all Rx chips
75        BHDM_DVO_ENABLE_SUPPORT=y
76else
77BHDM_SOURCES += \
78        $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_edid.c \
79        $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_hdcp.c \
80        $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_packet.c \
81        $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_priv.c
82endif
83
84#3D Support
85ifndef (BHDM_3D_SUPPORT)
86BHDM_3D_SUPPORT=y
87endif
88
89ifeq ($(BHDM_3D_SUPPORT), y)
90BHDM_SOURCES += $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_edid_3d.c
91BHDM_DEFINES += BHDM_3D_SUPPORT
92endif
93
94# DVO Support
95ifeq ($(BHDM_DVO_ENABLE_SUPPORT),y)
96BHDM_SOURCES += $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_dvo.c
97BHDM_DEFINES += BHDM_ENABLE_DVO
98endif
99
Note: See TracBrowser for help on using the repository browser.