| 1 | ############################################################################# |
|---|
| 2 | # |
|---|
| 3 | # Copyright (c) 2005-2011, Broadcom Corporation. |
|---|
| 4 | # All rights reserved. |
|---|
| 5 | # Confidential Property of Broadcom Corporation. |
|---|
| 6 | # |
|---|
| 7 | # THIS SOFTWARE MAY ONLY BE USED SUBJECT TO AN EXECUTED SOFTWARE LICENSE |
|---|
| 8 | # AGREEMENT BETWEEN THE USER AND BROADCOM. YOU HAVE NO RIGHT TO USE OR |
|---|
| 9 | # EXPLOIT THIS MATERIAL EXCEPT SUBJECT TO THE TERMS OF SUCH AN AGREEMENT. |
|---|
| 10 | # |
|---|
| 11 | # $brcm_Workfile: bvdb.inc $ |
|---|
| 12 | # $brcm_Revision: Hydra_Software_Devel/8 $ |
|---|
| 13 | # $brcm_Date: 3/17/11 7:24p $ |
|---|
| 14 | # |
|---|
| 15 | # File Description: |
|---|
| 16 | # |
|---|
| 17 | # Revision History: |
|---|
| 18 | # |
|---|
| 19 | # $brcm_Log: /magnum/commonutils/vdb/bvdb.inc $ |
|---|
| 20 | # |
|---|
| 21 | # Hydra_Software_Devel/8 3/17/11 7:24p jerrylim |
|---|
| 22 | # SWDTV-5980: Added 35233 VDB |
|---|
| 23 | # |
|---|
| 24 | # Hydra_Software_Devel/7 1/13/11 6:23p jerrylim |
|---|
| 25 | # SW35230-2674: Provide a way to use 120Hz display with an RTS config |
|---|
| 26 | # with 60Hz display support |
|---|
| 27 | # |
|---|
| 28 | # Hydra_Software_Devel/6 11/17/10 1:59p jerrylim |
|---|
| 29 | # SW35125-22: Added 35125 VDB |
|---|
| 30 | # |
|---|
| 31 | # Hydra_Software_Devel/5 6/29/10 5:55p jerrylim |
|---|
| 32 | # SW35230-297: Fixed build error in 3549 to include the missing file |
|---|
| 33 | # |
|---|
| 34 | # Hydra_Software_Devel/4 6/29/10 11:24a jerrylim |
|---|
| 35 | # SW35230-297: cleaned up old design. Corrected VDB dump |
|---|
| 36 | # |
|---|
| 37 | # Hydra_Software_Devel/3 1/21/10 3:18p jerrylim |
|---|
| 38 | # SW3548-2726: changed define from MAGNUM_CFLGAS to BVDB_DEFINES because |
|---|
| 39 | # MAGNUM_CFLAGS cannot be locally incrementally set (It worked because I |
|---|
| 40 | # was using a differnent build) |
|---|
| 41 | # |
|---|
| 42 | # Hydra_Software_Devel/2 1/21/10 9:45a jerrylim |
|---|
| 43 | # SW3548-2726: Changed compile option. Need to do export |
|---|
| 44 | # BVDB_3D_SUPPORT=y to include 3D support in BVDB instead of changing |
|---|
| 45 | # <bvdb_config.c> because <bvdb_config.c> can be overwritten anytime and |
|---|
| 46 | # it's not a good idea to change <bvdb_config.c> to include 3D support |
|---|
| 47 | # in the build |
|---|
| 48 | # |
|---|
| 49 | # Hydra_Software_Devel/1 6/20/08 10:42a jessem |
|---|
| 50 | # PR 43759: Initial version. |
|---|
| 51 | # |
|---|
| 52 | ############################################################################# |
|---|
| 53 | # Define this module |
|---|
| 54 | MAGNUM_MODULES += BVDB |
|---|
| 55 | |
|---|
| 56 | ifeq ($(BVDB_3D_SUPPORT), y) |
|---|
| 57 | BVDB_DEFINES += BVDB_3D_SUPPORT |
|---|
| 58 | endif |
|---|
| 59 | |
|---|
| 60 | ifeq ($(BVDB_120HZ_SUPPORT), y) |
|---|
| 61 | BVDB_DEFINES += BVDB_P_PDP_120HZ_SUPPORT |
|---|
| 62 | endif |
|---|
| 63 | |
|---|
| 64 | BVDB_INCLUDES += $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER) |
|---|
| 65 | |
|---|
| 66 | ifeq ($(findstring $(BCHP_CHIP), 935121 935125 935230 35233), $(BCHP_CHIP)) |
|---|
| 67 | BVDB_SOURCES += \ |
|---|
| 68 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb.c \ |
|---|
| 69 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb_priv.c \ |
|---|
| 70 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb_rts_priv.c \ |
|---|
| 71 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb_config.c |
|---|
| 72 | else |
|---|
| 73 | BVDB_SOURCES += \ |
|---|
| 74 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb.c \ |
|---|
| 75 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb_priv.c \ |
|---|
| 76 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb_rts_priv.c \ |
|---|
| 77 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb_viddispmode_priv.c \ |
|---|
| 78 | $(MAGNUM)/commonutils/vdb/$(BCHP_CHIP)/$(BCHP_VER)/bvdb_config.c |
|---|
| 79 | endif |
|---|
| 80 | |
|---|