kmf_share_data.c 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*******************************************************************************
  2. * @file kmf_share_data.c
  3. * @brief This file discripe the kmf/bootrom share data default value.
  4. * @note Copyright (c) 2013 sunmedia Inc.
  5. * All rights reserved.
  6. * @date 2014/01/15
  7. ********************************************************************************/
  8. #include "drv_kmf_interface.h"
  9. #include "subcustomer_setting.h"
  10. /*
  11. static BootRomShareData_t gKmfShareData =
  12. {
  13. 0, // UINT8 LcdBackLight;
  14. 0, // UINT8 DisableKeypad;
  15. 2, // UINT8 PowerRestore; 0x62:auto power on, others: not support
  16. 0, // UINT8 SourceSelection;
  17. 0, // UINT32 TVCannel;
  18. 0, // UINT8 CecTvAutoPwrOn;
  19. #ifdef CONFIG_DEBUG_UART_MODE_EN
  20. 0, // UINT8 UartATxBreak;
  21. #else
  22. 0x63,
  23. #endif
  24. {0, }, // UINT8 Reserved[2];
  25. {0, }, // BootAlarm_t BootAlarm;
  26. {0, }, // Backlight_t LcdBacklightValue;
  27. DEFAULT_POWER_SHOW_LOGO, // UINT8 HideBootLogo; 0x62: hide Logo, others: show Logo
  28. 0, // UINT8 LVDSEnable;
  29. {0, }, // UINT32 LVDSFormat[9];
  30. 0, // UINT8 PwmFreq;
  31. 0, // UINT8 DramSSCmode;
  32. 0, // UINT8 LVDSSSCmode;
  33. };*/
  34. static BootRomShareData_t gKmfShareData =
  35. {
  36. #ifndef CONFIG_DEBUG_UART_MODE_EN
  37. .UartATxBreak = 0x63,
  38. #endif
  39. .u8AgingMode = DEFAULT_AC_DELAY_SECONDS,
  40. .PowerRestore = DEFAULT_AC_AUTO_POWERON_STATUS,
  41. .LcdBacklightValue = {DEFAULT_LCD_BACKLIGHT_VALUE,100},
  42. .HideBootLogo = DEFAULT_POWER_SHOW_LOGO, // UINT8 HideBootLogo; 0x62: hide Logo, others: show Logo
  43. #ifdef CONFIG_SUPPORT_SECOND_LOGO
  44. .HideBootSecondLogo = DEFAULT_POWER_SHOW_LOGO, // UINT8 HideBootSecondLogo; 0x62: hide Logo, others: show Logo
  45. #endif
  46. .DramSSCmode = DEFAULT_DRAMSSC_MODE,
  47. .LVDSSSCmode = DEFAULT_LVDSSSC_MODE,
  48. .DramSSC_188 = DEFAULT_DramSSC_188,
  49. .DramSSC_1a8 = DEFAULT_DramSSC_1a8,
  50. .DramSSC_Magic_Number = DEFAULT_DramSSC_Magic_Number,
  51. .TotalPanelSets = CONFIG_PANEL_NUM,
  52. .PanelIdx = 0,
  53. .ReadPanelInvert = 0,
  54. .PanelInvert = 0,
  55. };