universal: add LCD download menu support
Signed-off-by: Przemyslaw Marczak <p.marczak@samsung.com> Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
This commit is contained in:
parent
f64236a907
commit
82b0a05561
|
@ -22,6 +22,7 @@
|
||||||
#include <usb/s3c_udc.h>
|
#include <usb/s3c_udc.h>
|
||||||
#include <asm/arch/cpu.h>
|
#include <asm/arch/cpu.h>
|
||||||
#include <power/max8998_pmic.h>
|
#include <power/max8998_pmic.h>
|
||||||
|
#include <samsung/misc.h>
|
||||||
|
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
|
|
||||||
|
@ -515,6 +516,10 @@ int board_init(void)
|
||||||
#ifdef CONFIG_MISC_INIT_R
|
#ifdef CONFIG_MISC_INIT_R
|
||||||
int misc_init_r(void)
|
int misc_init_r(void)
|
||||||
{
|
{
|
||||||
|
#ifdef CONFIG_LCD_MENU
|
||||||
|
keys_init();
|
||||||
|
check_boot_mode();
|
||||||
|
#endif
|
||||||
#ifdef CONFIG_CMD_BMP
|
#ifdef CONFIG_CMD_BMP
|
||||||
if (panel_info.logo_on)
|
if (panel_info.logo_on)
|
||||||
draw_logo();
|
draw_logo();
|
||||||
|
|
|
@ -274,6 +274,28 @@ int universal_spi_read(void);
|
||||||
|
|
||||||
#define CONFIG_MISC_INIT_R
|
#define CONFIG_MISC_INIT_R
|
||||||
|
|
||||||
|
/* Download menu - Samsung common */
|
||||||
|
#define CONFIG_LCD_MENU
|
||||||
|
#define CONFIG_LCD_MENU_BOARD
|
||||||
|
|
||||||
|
/* Download menu - definitions for check keys */
|
||||||
|
#ifndef __ASSEMBLY__
|
||||||
|
#include <power/max8998_pmic.h>
|
||||||
|
|
||||||
|
#define KEY_PWR_PMIC_NAME "MAX8998_PMIC"
|
||||||
|
#define KEY_PWR_STATUS_REG MAX8998_REG_STATUS1
|
||||||
|
#define KEY_PWR_STATUS_MASK (1 << 7)
|
||||||
|
#define KEY_PWR_INTERRUPT_REG MAX8998_REG_IRQ1
|
||||||
|
#define KEY_PWR_INTERRUPT_MASK (1 << 7)
|
||||||
|
|
||||||
|
#define KEY_VOL_UP_GPIO exynos4_gpio_get(2, x2, 0)
|
||||||
|
#define KEY_VOL_DOWN_GPIO exynos4_gpio_get(2, x2, 1)
|
||||||
|
#endif /* __ASSEMBLY__ */
|
||||||
|
|
||||||
|
/* LCD console */
|
||||||
|
#define LCD_BPP LCD_COLOR16
|
||||||
|
#define CONFIG_SYS_WHITE_ON_BLACK
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* LCD Settings
|
* LCD Settings
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in New Issue