source: svn/trunk/newcon3bcm2_21bu/BSEAV/api/build/magnum/bcm97325.inc @ 8

Last change on this file since 8 was 2, checked in by jglee, 11 years ago

first commit

  • Property svn:executable set to *
File size: 2.9 KB
Line 
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
60ifneq ($(subst Y,y,${RAP_DDP_SUPPORT}),y)
61CFLAGS += -DB_RAP_NO_AC3PLUS_SUPPORT
62endif
63
64#By default disable Ac3 support
65ifneq ($(subst Y,y,${RAP_AC3_SUPPORT}),y)
66CFLAGS += -DB_RAP_NO_AC3_SUPPORT
67endif
68
69
70#By default disable WMA support
71ifneq ($(subst Y,y,${RAP_WMA_SUPPORT}),y)
72CFLAGS += -DB_RAP_NO_WMA_SUPPORT
73endif
74
75include  ${ROCKFORD}/modules/tnr.inc
76
77
78# RAVE unified ITB support. (default on)
79ifneq ($(subst N,n,${UNIFIED_ITB_SUPPORT}),n)
80CFLAGS += -DUNIFIED_ITB_SUPPORT
81UNIFIED_ITB_SUPPORT := y
82endif
83
84# default 97405 to 4501, but allow it to be turned off
85ifeq ($(AST4501_SUPPORT),)
86AST4501_SUPPORT=y
87BAST_CHIP+= 4501
88endif
89
90# add 4506 support
91ifeq ($(AST4506_SUPPORT),)
92AST4506_SUPPORT=y
93BAST_CHIP+= 4506
94endif
95
96# add 7325 support
97ifeq ($(AST7325_SUPPORT),)
98AST7325_SUPPORT=y
99BAST_CHIP+= 7325
100endif
101
102ifeq ($(AST4501_SUPPORT),y)
103include  ${MAGNUM}/portinginterface/ast/bast.inc
104SRCS += bsettop_tuner_4501.c
105CFLAGS += -DAST_CHIP=450x
106endif
107
108
109ifeq ($(AST4506_SUPPORT),y)
110SRCS += bsettop_tuner_4506.c
111ifeq ($(AST4501_SUPPORT),)
112include  ${MAGNUM}/portinginterface/ast/bast.inc
113CFLAGS += -DAST_CHIP=450x
114endif
115endif
116
117ifeq ($(AST7325_SUPPORT),y)
118SRCS += bsettop_tuner_73xx.c
119endif
120
121ifeq (${SYSTEM},linux)
122# Needs a special version of a kernel, don't enable by default
123#B_HAS_PLAYPUMP_IP ?= y
124endif
125ifeq (${B_HAS_PLAYPUMP_IP},y)
126CFLAGS += -DB_HAS_PLAYPUMP_IP
127CFLAGS += ${BNETIF_DMA_CFLAGS}
128endif
129
130include  ${ROCKFORD}/modules/uhf.inc
131
132B_HAS_SMARTCARD=y
133HDMI_TX_SUPPORT=y
134B_HAS_PCM=y
135CFLAGS += -DB_HAS_PCM=y
136
Note: See TracBrowser for help on using the repository browser.