123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- /*******************************************************************************
- * @file kmf_share_data.c
- * @brief This file discripe the kmf/bootrom share data default value.
- * @note Copyright (c) 2013 sunmedia Inc.
- * All rights reserved.
- * @date 2014/01/15
- ********************************************************************************/
- #include "drv_kmf_interface.h"
- #include "subcustomer_setting.h"
- /*
- static BootRomShareData_t gKmfShareData =
- {
- 0, // UINT8 LcdBackLight;
- 0, // UINT8 DisableKeypad;
- 2, // UINT8 PowerRestore; 0x62:auto power on, others: not support
- 0, // UINT8 SourceSelection;
- 0, // UINT32 TVCannel;
- 0, // UINT8 CecTvAutoPwrOn;
- #ifdef CONFIG_DEBUG_UART_MODE_EN
- 0, // UINT8 UartATxBreak;
- #else
- 0x63,
- #endif
- {0, }, // UINT8 Reserved[2];
- {0, }, // BootAlarm_t BootAlarm;
- {0, }, // Backlight_t LcdBacklightValue;
- DEFAULT_POWER_SHOW_LOGO, // UINT8 HideBootLogo; 0x62: hide Logo, others: show Logo
- 0, // UINT8 LVDSEnable;
- {0, }, // UINT32 LVDSFormat[9];
- 0, // UINT8 PwmFreq;
- 0, // UINT8 DramSSCmode;
- 0, // UINT8 LVDSSSCmode;
- };*/
- static BootRomShareData_t gKmfShareData =
- {
- #ifndef CONFIG_DEBUG_UART_MODE_EN
- .UartATxBreak = 0x63,
- #endif
- .u8AgingMode = DEFAULT_AC_DELAY_SECONDS,
- .PowerRestore = DEFAULT_AC_AUTO_POWERON_STATUS,
- .LcdBacklightValue = {DEFAULT_LCD_BACKLIGHT_VALUE,100},
- .HideBootLogo = DEFAULT_POWER_SHOW_LOGO, // UINT8 HideBootLogo; 0x62: hide Logo, others: show Logo
- #ifdef CONFIG_SUPPORT_SECOND_LOGO
- .HideBootSecondLogo = DEFAULT_POWER_SHOW_LOGO, // UINT8 HideBootSecondLogo; 0x62: hide Logo, others: show Logo
- #endif
- .DramSSCmode = DEFAULT_DRAMSSC_MODE,
- .LVDSSSCmode = DEFAULT_LVDSSSC_MODE,
- .DramSSC_188 = DEFAULT_DramSSC_188,
- .DramSSC_1a8 = DEFAULT_DramSSC_1a8,
- .DramSSC_Magic_Number = DEFAULT_DramSSC_Magic_Number,
- .TotalPanelSets = CONFIG_PANEL_NUM,
- .PanelIdx = 0,
- .ReadPanelInvert = 0,
- .PanelInvert = 0,
- };
|