| 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: bcm97325.inc $ |
|---|
| 11 | # $brcm_Revision: 12 $ |
|---|
| 12 | # $brcm_Date: 2/7/08 6:11p $ |
|---|
| 13 | # |
|---|
| 14 | # Module Description: |
|---|
| 15 | # |
|---|
| 16 | # Revision History: |
|---|
| 17 | # |
|---|
| 18 | # $brcm_Log: /BSEAV/api/build/magnum/bcm97325.inc $ |
|---|
| 19 | # |
|---|
| 20 | # 12 2/7/08 6:11p jrubio |
|---|
| 21 | # PR39415: add 7325 |
|---|
| 22 | # |
|---|
| 23 | # 11 12/27/07 11:31a agin |
|---|
| 24 | # PR37869: Eliminate references to 4500. |
|---|
| 25 | # |
|---|
| 26 | # 10 12/5/07 2:02p agin |
|---|
| 27 | # PR37869: Integrate SDS into 97325 reference software. |
|---|
| 28 | # |
|---|
| 29 | # 9 12/4/07 5:31p jrubio |
|---|
| 30 | # PR35015: added new rap options |
|---|
| 31 | # |
|---|
| 32 | # 8 11/21/07 11:32a jrubio |
|---|
| 33 | # PR35015: added some more changes |
|---|
| 34 | # |
|---|
| 35 | # 7 11/6/07 11:05a jrubio |
|---|
| 36 | # PR35015: adding sds back in |
|---|
| 37 | # |
|---|
| 38 | # 6 11/2/07 11:48a jrubio |
|---|
| 39 | # PR35015: disable UIT, and sds5 |
|---|
| 40 | # |
|---|
| 41 | # 5 11/1/07 10:18a jrubio |
|---|
| 42 | # PR35015: remove sds |
|---|
| 43 | # |
|---|
| 44 | # 4 10/29/07 3:51p jrubio |
|---|
| 45 | # PR35015: add ast and sds tuner to 7325 |
|---|
| 46 | # |
|---|
| 47 | # 3 10/25/07 10:49p jrubio |
|---|
| 48 | # PR35015: took aout support for all tuner cards |
|---|
| 49 | # |
|---|
| 50 | # 2 10/3/07 4:36p jrubio |
|---|
| 51 | # PR35015: making some changes |
|---|
| 52 | # |
|---|
| 53 | # |
|---|
| 54 | # |
|---|
| 55 | ############################################################ |
|---|
| 56 | |
|---|
| 57 | #By default use the raptor fw which supports ddp,ac3 plus. |
|---|
| 58 | |
|---|
| 59 | #By default disable Ac3+ support |
|---|
| 60 | ifneq ($(subst Y,y,${RAP_DDP_SUPPORT}),y) |
|---|
| 61 | CFLAGS += -DB_RAP_NO_AC3PLUS_SUPPORT |
|---|
| 62 | endif |
|---|
| 63 | |
|---|
| 64 | #By default disable Ac3 support |
|---|
| 65 | ifneq ($(subst Y,y,${RAP_AC3_SUPPORT}),y) |
|---|
| 66 | CFLAGS += -DB_RAP_NO_AC3_SUPPORT |
|---|
| 67 | endif |
|---|
| 68 | |
|---|
| 69 | |
|---|
| 70 | #By default disable WMA support |
|---|
| 71 | ifneq ($(subst Y,y,${RAP_WMA_SUPPORT}),y) |
|---|
| 72 | CFLAGS += -DB_RAP_NO_WMA_SUPPORT |
|---|
| 73 | endif |
|---|
| 74 | |
|---|
| 75 | include ${ROCKFORD}/modules/tnr.inc |
|---|
| 76 | |
|---|
| 77 | |
|---|
| 78 | # RAVE unified ITB support. (default on) |
|---|
| 79 | ifneq ($(subst N,n,${UNIFIED_ITB_SUPPORT}),n) |
|---|
| 80 | CFLAGS += -DUNIFIED_ITB_SUPPORT |
|---|
| 81 | UNIFIED_ITB_SUPPORT := y |
|---|
| 82 | endif |
|---|
| 83 | |
|---|
| 84 | # default 97405 to 4501, but allow it to be turned off |
|---|
| 85 | ifeq ($(AST4501_SUPPORT),) |
|---|
| 86 | AST4501_SUPPORT=y |
|---|
| 87 | BAST_CHIP+= 4501 |
|---|
| 88 | endif |
|---|
| 89 | |
|---|
| 90 | # add 4506 support |
|---|
| 91 | ifeq ($(AST4506_SUPPORT),) |
|---|
| 92 | AST4506_SUPPORT=y |
|---|
| 93 | BAST_CHIP+= 4506 |
|---|
| 94 | endif |
|---|
| 95 | |
|---|
| 96 | # add 7325 support |
|---|
| 97 | ifeq ($(AST7325_SUPPORT),) |
|---|
| 98 | AST7325_SUPPORT=y |
|---|
| 99 | BAST_CHIP+= 7325 |
|---|
| 100 | endif |
|---|
| 101 | |
|---|
| 102 | ifeq ($(AST4501_SUPPORT),y) |
|---|
| 103 | include ${MAGNUM}/portinginterface/ast/bast.inc |
|---|
| 104 | SRCS += bsettop_tuner_4501.c |
|---|
| 105 | CFLAGS += -DAST_CHIP=450x |
|---|
| 106 | endif |
|---|
| 107 | |
|---|
| 108 | |
|---|
| 109 | ifeq ($(AST4506_SUPPORT),y) |
|---|
| 110 | SRCS += bsettop_tuner_4506.c |
|---|
| 111 | ifeq ($(AST4501_SUPPORT),) |
|---|
| 112 | include ${MAGNUM}/portinginterface/ast/bast.inc |
|---|
| 113 | CFLAGS += -DAST_CHIP=450x |
|---|
| 114 | endif |
|---|
| 115 | endif |
|---|
| 116 | |
|---|
| 117 | ifeq ($(AST7325_SUPPORT),y) |
|---|
| 118 | SRCS += bsettop_tuner_73xx.c |
|---|
| 119 | endif |
|---|
| 120 | |
|---|
| 121 | ifeq (${SYSTEM},linux) |
|---|
| 122 | # Needs a special version of a kernel, don't enable by default |
|---|
| 123 | #B_HAS_PLAYPUMP_IP ?= y |
|---|
| 124 | endif |
|---|
| 125 | ifeq (${B_HAS_PLAYPUMP_IP},y) |
|---|
| 126 | CFLAGS += -DB_HAS_PLAYPUMP_IP |
|---|
| 127 | CFLAGS += ${BNETIF_DMA_CFLAGS} |
|---|
| 128 | endif |
|---|
| 129 | |
|---|
| 130 | include ${ROCKFORD}/modules/uhf.inc |
|---|
| 131 | |
|---|
| 132 | B_HAS_SMARTCARD=y |
|---|
| 133 | HDMI_TX_SUPPORT=y |
|---|
| 134 | B_HAS_PCM=y |
|---|
| 135 | CFLAGS += -DB_HAS_PCM=y |
|---|
| 136 | |
|---|