mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
trats2: 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
00e64ab647
commit
f64236a907
3 changed files with 27 additions and 1 deletions
|
@ -28,6 +28,7 @@
|
|||
#include <usb.h>
|
||||
#include <usb/s3c_udc.h>
|
||||
#include <usb_mass_storage.h>
|
||||
#include <samsung/misc.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
||||
|
@ -615,6 +616,10 @@ void init_panel_info(vidinfo_t *vid)
|
|||
#ifdef CONFIG_MISC_INIT_R
|
||||
int misc_init_r(void)
|
||||
{
|
||||
#ifdef CONFIG_LCD_MENU
|
||||
keys_init();
|
||||
check_boot_mode();
|
||||
#endif
|
||||
#ifdef CONFIG_CMD_BMP
|
||||
if (panel_info.logo_on)
|
||||
draw_logo();
|
||||
|
|
|
@ -322,6 +322,28 @@ int get_soft_i2c_sda_pin(void);
|
|||
|
||||
#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/max77686_pmic.h>
|
||||
|
||||
#define KEY_PWR_PMIC_NAME "MAX77686_PMIC"
|
||||
#define KEY_PWR_STATUS_REG MAX77686_REG_PMIC_STATUS1
|
||||
#define KEY_PWR_STATUS_MASK (1 << 0)
|
||||
#define KEY_PWR_INTERRUPT_REG MAX77686_REG_PMIC_INT1
|
||||
#define KEY_PWR_INTERRUPT_MASK (1 << 1)
|
||||
|
||||
#define KEY_VOL_UP_GPIO exynos4x12_gpio_get(2, x2, 2)
|
||||
#define KEY_VOL_DOWN_GPIO exynos4x12_gpio_get(2, x3, 3)
|
||||
#endif /* __ASSEMBLY__ */
|
||||
|
||||
/* LCD console */
|
||||
#define LCD_BPP LCD_COLOR16
|
||||
#define CONFIG_SYS_WHITE_ON_BLACK
|
||||
|
||||
/* LCD */
|
||||
#define CONFIG_EXYNOS_FB
|
||||
#define CONFIG_LCD
|
||||
|
|
|
@ -8,7 +8,6 @@
|
|||
#ifndef __CORE_PMIC_H_
|
||||
#define __CORE_PMIC_H_
|
||||
|
||||
#include <common.h>
|
||||
#include <linux/list.h>
|
||||
#include <i2c.h>
|
||||
#include <power/power_chrg.h>
|
||||
|
|
Loading…
Reference in a new issue