| 1 | ############################################################ |
|---|
| 2 | # Copyright (c) 2003-2008, 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: bcm97403.inc $ |
|---|
| 11 | # $brcm_Revision: 7 $ |
|---|
| 12 | # $brcm_Date: 4/25/08 2:30p $ |
|---|
| 13 | # |
|---|
| 14 | # Module Description: |
|---|
| 15 | # |
|---|
| 16 | # Revision History: |
|---|
| 17 | # |
|---|
| 18 | ############################################################ |
|---|
| 19 | |
|---|
| 20 | # RAVE unified ITB support. |
|---|
| 21 | CFLAGS += -DUNIFIED_ITB_SUPPORT |
|---|
| 22 | |
|---|
| 23 | ## 3510/3520 is broken for 97403 platform |
|---|
| 24 | # |
|---|
| 25 | # 3510/3520 VSB support has to be a compile-time option |
|---|
| 26 | # because the API's are similar. We default to |
|---|
| 27 | # 3520, but you can define the following in order |
|---|
| 28 | # to get 3510 support. |
|---|
| 29 | # |
|---|
| 30 | ifeq ($(VSB3510_SUPPORT),y) |
|---|
| 31 | include ${ROCKFORD}/modules/3510.inc |
|---|
| 32 | include ${ROCKFORD}/modules/3510/vsb.inc |
|---|
| 33 | R_OBJ += ${ROCKFORD}/bsp/bcm97403/common/bcm3510ap |
|---|
| 34 | CFLAGS += -DVSB_CHIP=3510 |
|---|
| 35 | SRCS += bsettop_tuner_3510.c |
|---|
| 36 | else |
|---|
| 37 | include ${ROCKFORD}/modules/3520.inc |
|---|
| 38 | include ${ROCKFORD}/modules/3520/vsb.inc |
|---|
| 39 | R_OBJ += ${ROCKFORD}/bsp/bcm97403/common/bcm3520ap_a1 |
|---|
| 40 | R_OBJ += ${ROCKFORD}/bsp/bcm97403/common/bcm3520ap_b0 |
|---|
| 41 | SRCS += bsettop_tuner_3520.c |
|---|
| 42 | endif |
|---|
| 43 | |
|---|
| 44 | # default 97403 to 4500, but allow it to be turned off |
|---|
| 45 | ifeq ($(SDS4500_SUPPORT),) |
|---|
| 46 | SDS4500_SUPPORT=y |
|---|
| 47 | endif |
|---|
| 48 | |
|---|
| 49 | ifeq ($(SDS4500_SUPPORT),y) |
|---|
| 50 | R_OBJ += ${ROCKFORD}/bsp/bcm97403/common/bcm4500ap |
|---|
| 51 | include ${ROCKFORD}/modules/4500.inc |
|---|
| 52 | include ${ROCKFORD}/modules/4500/sds.inc |
|---|
| 53 | SRCS += bsettop_tuner_4500.c |
|---|
| 54 | CFLAGS += -DSDS_CHIP=4500 |
|---|
| 55 | endif |
|---|
| 56 | |
|---|
| 57 | # default 97405 to 4501, but allow it to be turned off |
|---|
| 58 | ifeq ($(AST4501_SUPPORT),) |
|---|
| 59 | AST4501_SUPPORT=y |
|---|
| 60 | BAST_CHIP+= 4501 |
|---|
| 61 | endif |
|---|
| 62 | |
|---|
| 63 | # add 4506 support |
|---|
| 64 | ifeq ($(AST4506_SUPPORT),) |
|---|
| 65 | AST4506_SUPPORT=y |
|---|
| 66 | BAST_CHIP+= 4506 |
|---|
| 67 | endif |
|---|
| 68 | |
|---|
| 69 | ifeq ($(AST4501_SUPPORT),y) |
|---|
| 70 | include ${MAGNUM}/portinginterface/ast/bast.inc |
|---|
| 71 | SRCS += bsettop_tuner_4501.c |
|---|
| 72 | CFLAGS += -DAST_CHIP=450x |
|---|
| 73 | endif |
|---|
| 74 | |
|---|
| 75 | |
|---|
| 76 | ifeq ($(AST4506_SUPPORT),y) |
|---|
| 77 | SRCS += bsettop_tuner_4506.c |
|---|
| 78 | ifeq ($(AST4501_SUPPORT),) |
|---|
| 79 | include ${MAGNUM}/portinginterface/ast/bast.inc |
|---|
| 80 | CFLAGS += -DAST_CHIP=450x |
|---|
| 81 | endif |
|---|
| 82 | endif |
|---|
| 83 | |
|---|
| 84 | ifeq ($(ASTM_SUPPORT),y) |
|---|
| 85 | include ${MAGNUM}/syslib/astmlib/bastmlib.inc |
|---|
| 86 | CFLAGS += -DBASTM_SUPPORT |
|---|
| 87 | endif |
|---|
| 88 | |
|---|
| 89 | ifeq (${SYSTEM},linux) |
|---|
| 90 | # Needs a special version of a kernel, don't enable by default |
|---|
| 91 | #B_HAS_PLAYPUMP_IP ?= y |
|---|
| 92 | endif |
|---|
| 93 | ifeq (${B_HAS_PLAYPUMP_IP},y) |
|---|
| 94 | CFLAGS += -DB_HAS_PLAYPUMP_IP |
|---|
| 95 | CFLAGS += ${BNETIF_DMA_CFLAGS} |
|---|
| 96 | endif |
|---|
| 97 | |
|---|
| 98 | include ${ROCKFORD}/modules/uhf.inc |
|---|
| 99 | |
|---|
| 100 | B_HAS_SMARTCARD=y |
|---|
| 101 | B_HAS_PCM=y |
|---|
| 102 | HDMI_TX_SUPPORT=y |
|---|
| 103 | |
|---|
| 104 | |
|---|