source: svn/newcon3bcm2_21bu/nexus/modules/display/7552/src/nexus_display_extensions.h

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

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

  • Property svn:executable set to *
File size: 4.6 KB
Line 
1/***************************************************************************
2 *     (c)2007-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: nexus_display_extensions.h $
39 * $brcm_Revision: 9 $
40 * $brcm_Date: 7/20/11 4:49p $
41 *
42 * Module Description:
43 *
44 * Revision History:
45 *
46 * $brcm_Log: /nexus/modules/display/7400/src/nexus_display_extensions.h $
47 *
48 * 9   7/20/11 4:49p akam
49 * SWDTV-8031: Re-organizise Nexus display extension folders.
50 *
51 * 8   5/4/11 2:56p mbatchel
52 * SWDTV-6916: Top level header cleanup for nexus tuning extension.
53 *
54 * 7   1/14/11 6:39p mbatchel
55 * SW35230-2675: Add Display extension header for RTC.
56 *
57 * 6   11/18/10 6:10a petlee
58 * SW35230-2089: Add new tuning file for PDP Random Positional Dither
59 *  (RPD)
60 *
61 * 5   9/30/10 10:15a mbatchel
62 * SW35230-1452: Add VDEC tuning API.
63 *
64 * 4   9/22/10 2:21p petlee
65 * SW35230-1313: Add Display extension for Interpolation
66 *
67 * 3   12/9/09 10:44a erickson
68 * SW3556-851: added extension hook
69 *
70 * 2   10/2/08 5:09p erickson
71 * PR46300: added test feature 1 extension
72 *
73 * 1   8/21/08 3:02p erickson
74 * PR45959: add sample extension
75 *
76 **************************************************************************/
77#ifndef NEXUS_DISPLAY_EXTENSIONS_H__
78#define NEXUS_DISPLAY_EXTENSIONS_H__
79
80/* this is included by nexus_display_module.h so that the thunk layer has access to
81the entire public API for the Display module, including extensions */
82
83/* add your extension here */
84#if NEXUS_DISPLAY_EXTENSION_SAMPLE
85#include "nexus_sample_ext.h"
86#endif
87
88#if NEXUS_VIDEO_TEST_FEATURE1
89/* this is a real extension for 3548/3556 internal test */
90#include "nexus_video_test_feature1.h"
91#endif
92
93#if NEXUS_CUSTOM_VIDEO_ADJUST_EXTENSION
94#include "nexus_custom_video_adjust_extension.h"
95#endif
96
97#if NEXUS_DISPLAY_EXTENSION_INTERPOLATION
98#include "nexus_interpolation_ext.h"
99#endif
100
101#if NEXUS_DISPLAY_EXTENSION_TUNING_SHIM
102#include "nexus_display_tuning_shim.h"
103#endif
104
105/* Include Nexus PQ customization module:
106 * NEXUS_DISPLAY_EXTENSION_PQ_CUSTOMIZATION gets defined if the shell has the
107 * custom PQ path exported, e.g.,
108 *
109 * export NEXUS_DISPLAY_CUSTOM_PQ_EXTENSION_INC=./extensions/display/35230/display_custompq_ext.inc
110 */
111#if NEXUS_DISPLAY_EXTENSION_PQ_CUSTOMIZATION
112#include "nexus_custompq_ext.h"
113#endif
114
115#if NEXUS_DISPLAY_EXTENSION_TOP
116#include "nexus_display_extension_top.h"
117#endif
118
119#endif
120
Note: See TracBrowser for help on using the repository browser.