source: svn/newcon3bcm2_21bu/nexus/base/base.inc

Last change on this file was 76, checked in by megakiss, 10 years ago

1W 대기전력을 만족시키기 위하여 POWEROFF시 튜너를 Standby 상태로 함

  • Property svn:executable set to *
File size: 5.9 KB
Line 
1############################################################
2#     (c)2003-2011 Broadcom Corporation
3#
4#  This program is the proprietary software of Broadcom Corporation and/or its licensors,
5#  and may only be used, duplicated, modified or distributed pursuant to the terms and
6#  conditions of a separate, written license agreement executed between you and Broadcom
7#  (an "Authorized License").  Except as set forth in an Authorized License, Broadcom grants
8#  no license (express or implied), right to use, or waiver of any kind with respect to the
9#  Software, and Broadcom expressly reserves all rights in and to the Software and all
10#  intellectual property rights therein.  IF YOU HAVE NO AUTHORIZED LICENSE, THEN YOU
11#  HAVE NO RIGHT TO USE THIS SOFTWARE IN ANY WAY, AND SHOULD IMMEDIATELY
12#  NOTIFY BROADCOM AND DISCONTINUE ALL USE OF THE SOFTWARE.
13#
14#  Except as expressly set forth in the Authorized License,
15#
16#  1.     This program, including its structure, sequence and organization, constitutes the valuable trade
17#  secrets of Broadcom, and you shall use all reasonable efforts to protect the confidentiality thereof,
18#  and to use this information only in connection with your use of Broadcom integrated circuit products.
19#
20#  2.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
21#  AND WITH ALL FAULTS AND BROADCOM MAKES NO PROMISES, REPRESENTATIONS OR
22#  WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO
23#  THE SOFTWARE.  BROADCOM SPECIFICALLY DISCLAIMS ANY AND ALL IMPLIED WARRANTIES
24#  OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE,
25#  LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION
26#  OR CORRESPONDENCE TO DESCRIPTION. YOU ASSUME THE ENTIRE RISK ARISING OUT OF
27#  USE OR PERFORMANCE OF THE SOFTWARE.
28#
29#  3.     TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT SHALL BROADCOM OR ITS
30#  LICENSORS BE LIABLE FOR (i) CONSEQUENTIAL, INCIDENTAL, SPECIAL, INDIRECT, OR
31#  EXEMPLARY DAMAGES WHATSOEVER ARISING OUT OF OR IN ANY WAY RELATING TO YOUR
32#  USE OF OR INABILITY TO USE THE SOFTWARE EVEN IF BROADCOM HAS BEEN ADVISED OF
33#  THE POSSIBILITY OF SUCH DAMAGES; OR (ii) ANY AMOUNT IN EXCESS OF THE AMOUNT
34#  ACTUALLY PAID FOR THE SOFTWARE ITSELF OR U.S. $1, WHICHEVER IS GREATER. THESE
35#  LIMITATIONS SHALL APPLY NOTWITHSTANDING ANY FAILURE OF ESSENTIAL PURPOSE OF
36#  ANY LIMITED REMEDY.
37#
38# $brcm_Workfile: base.inc $
39# $brcm_Revision: 10 $
40# $brcm_Date: 5/3/11 5:07p $
41#
42# Module Description:
43#
44# Revision History:
45#
46# Created: 08/28/2007 by Jon Garrett
47#
48# $brcm_Log: /nexus/base/base.inc $
49#
50# 10   5/3/11 5:07p erickson
51# SW7420-1819: repartition so NFE is a standard feature
52#
53# 9   1/19/11 11:11a erickson
54# SW7420-1123: usermode server doesn't use external scheduler
55#
56# 8   12/28/10 1:47p erickson
57# SWDEPRECATED-2425: bstd.h requires chp and reg in normal builds
58#
59# 7   12/7/10 5:47p erickson
60# SW7420-1148: refactor kernel mode proxy for process isolation
61#
62# 6   10/21/10 4:50p mphillip
63# SW7125-670: Remove 3D define from base.inc
64#
65# 5   9/29/10 9:33a erickson
66# SW7420-1123: add linux usermode IPC
67#
68# 4   9/16/09 1:41p erickson
69# SW7400-2511: add B_REFSW_ or NEXUS_ namespace to build variables
70#
71# 3   11/4/08 3:59p mphillip
72# PR47441: Add a 3D proxy-mode define to modify graphics3d's behavior in
73#  proxy mode
74#
75# 2   6/5/08 2:19p vsilyaev
76# PR 42318: Rearranged scheduller to share the same context in user and
77#  kernel mode, this allows to serve callback from kernel to user with
78#  single transition kernel<->user
79#
80# 1   1/18/08 2:12p jgarrett
81# PR 38808: Merging to main branch
82#
83# Nexus_Devel/11   1/16/08 3:37p vsilyaev
84# PR 38682: Don't execute KNI/DBG initialization in the linuxkernel
85#
86# Nexus_Devel/10   10/23/07 4:16p vsilyaev
87# PR 36199: Added memory mapper sub-module
88#
89# Nexus_Devel/9   10/10/07 4:19p vsilyaev
90# PR 35824: Added NEXUS_Time type
91#
92# Nexus_Devel/8   9/13/07 5:20p vsilyaev
93# PR 34419: Use plugins for OS
94#
95# Nexus_Devel/7   9/13/07 2:45p vsilyaev
96# PR 34419: Updated for new directory layout
97#
98# Nexus_Devel/6   9/11/07 5:08p jgarrett
99# PR 34416: Removing IO line
100#
101# Nexus_Devel/5   9/6/07 1:04p vsilyaev
102# PR 34419: Added core module
103#
104# Nexus_Devel/4   9/5/07 3:03p vsilyaev
105# PR 34419: Added core files
106#
107# Nexus_Devel/3   9/4/07 11:40a jgarrett
108# PR 34416: Moving lib/utils to private includes
109#
110# Nexus_Devel/2   8/31/07 4:15p jgarrett
111# PR 34416: Adding baseline build system
112#
113############################################################
114
115#
116# Conditional Options for this Makefile
117#
118
119######################
120# Define this module #
121######################
122NEXUS_MODULES += BASE
123
124##################
125# Module Options #
126##################
127
128###################
129# Module Includes #
130###################
131NEXUS_BASE_PUBLIC_INCLUDES = $(NEXUS_TOP)/base/include $(NEXUS_TOP)/base/include/$(B_REFSW_OS)
132NEXUS_BASE_PRIVATE_INCLUDES = \
133    $(MAGNUM)/../BSEAV/lib/utils \
134    $(NEXUS_TOP)/base/src/$(B_REFSW_OS) \
135    $(NEXUS_TOP)/base/src
136
137##################
138# Module Sources #
139##################
140NEXUS_BASE_SOURCES = \
141    $(NEXUS_TOP)/base/src/nexus_base.c \
142    $(NEXUS_TOP)/base/src/nexus_base_mmap.c \
143    $(NEXUS_TOP)/base/src/nexus_base_scheduler.c \
144    $(NEXUS_TOP)/base/src/$(B_REFSW_OS)/nexus_base_os.c
145
146
147##################
148# Module Defines #
149##################
150NEXUS_BASE_DEFINES :=  NEXUS_BASE_OS_$(B_REFSW_OS)=1
151ifeq ($(NEXUS_MODE),proxy)
152NEXUS_BASE_DEFINES += NEXUS_BASE_MODE_PROXY=1
153endif
154ifeq ($(B_REFSW_OS),bare)
155NEXUS_BASE_DEFINES += NEXUS_BASE_MODE_PROXY=1
156endif
157
158#######################
159# Module Dependencies #
160#######################
161# Base has no module dependencies
162NEXUS_BASE_DEPENDENCIES :=
163
164##################
165# Magnum Modules #
166##################
167NEXUS_BASE_MAGNUM_MODULES = \
168    $(MAGNUM)/basemodules/chp/bchp.inc \
169    $(MAGNUM)/basemodules/dbg/bdbg.inc \
170    $(MAGNUM)/basemodules/err/berr.inc \
171    $(MAGNUM)/basemodules/kni/bkni.inc \
172    $(MAGNUM)/basemodules/std/bstd.inc \
173    $(MAGNUM)/commonutils/lst/blst.inc \
174    $(MAGNUM)/basemodules/reg/breg.inc
175
Note: See TracBrowser for help on using the repository browser.