############################################################ # Copyright (c) 2003-2012, Broadcom Corporation # All Rights Reserved # Confidential Property of Broadcom Corporation # # THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE # AGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR # EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. # # $brcm_Workfile: bhdm.inc $ # $brcm_Revision: Hydra_Software_Devel/9 $ # $brcm_Date: 3/9/12 2:41p $ # # Module Description: # # Revision History: # # Created: 01/09/2007 by Jon Garrett # # $brcm_Log: Q:/projects/7425/latest/magnum/portinginterface/hdm/bhdm.inc $ # # Hydra_Software_Devel/9 3/9/12 2:41p rgreen # SW7425-2515: Remove support for bhdm_cec files. See cec pi # # Hydra_Software_Devel/8 12/12/11 3:05p rgreen # SW7125-1165: Merge changes # # Hydra_Software_Devel/SW7125-1165/1 12/8/11 1:41p mward # SW7125-1165: Replace findstring with filter to do exact word match. # # Hydra_Software_Devel/7 6/17/11 1:43p vle # SW7405-5358, SW7405-5312: Separate 3D support from EDID parser to allow # easier back port # # Hydra_Software_Devel/6 2/23/10 1:12a vle # SW7420-579: Refactor HDMI PI code # # Hydra_Software_Devel/5 5/6/08 10:19a rgreen # PR38947,PR39463: fix comment for enabling LVDS/DVO support; should be # enabled for all RXs # # Hydra_Software_Devel/4 4/28/08 6:02p vle # PR42271: Move HDMI CEC implementations to bhdm_cec_priv to allow ease # of code sharing between HDMI transmitter and receiver platforms. # # Hydra_Software_Devel/3 3/5/08 10:46a rgreen # PR38946,PR39503: Add HDM Support for 3548 and 3556 # # Hydra_Software_Devel/2 6/7/07 12:21p vle # PR 31917: Fix condition on checking CEC support. # # Hydra_Software_Devel/1 1/11/07 2:39p jgarrett # PR27004: Adding new .inc files # ############################################################ # # Conditional Options for this Makefile # # BHDM_CEC_SUPPORT - If defined, this will include CEC support. # # Define this module MAGNUM_MODULES += BHDM # Module Includes BHDM_INCLUDES += $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP) # Module Sources BHDM_SOURCES += $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm.c # Chip-specific options ifneq ($(filter $(BCHP_CHIP), 3560 3563 3548 3556),) # Enable DVO for all Rx chips BHDM_DVO_ENABLE_SUPPORT=y else BHDM_SOURCES += \ $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_edid.c \ $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_hdcp.c \ $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_packet.c \ $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_priv.c endif #3D Support ifndef (BHDM_3D_SUPPORT) BHDM_3D_SUPPORT=y endif ifeq ($(BHDM_3D_SUPPORT), y) BHDM_SOURCES += $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_edid_3d.c BHDM_DEFINES += BHDM_3D_SUPPORT endif # DVO Support ifeq ($(BHDM_DVO_ENABLE_SUPPORT),y) BHDM_SOURCES += $(MAGNUM)/portinginterface/hdm/$(BCHP_CHIP)/bhdm_dvo.c BHDM_DEFINES += BHDM_ENABLE_DVO endif