video: samsung: Drop old LCD code

This relies on the old LCD implementation which is to be removed. Drop it.

Signed-off-by: Simon Glass <sjg@chromium.org>
This commit is contained in:
Simon Glass 2022-10-16 15:54:35 -06:00 committed by Anatolij Gustschin
parent 6b9a829d27
commit 365e52dd25
8 changed files with 0 additions and 32 deletions

View File

@ -11,7 +11,6 @@
#include <linux/list.h>
#include <linux/fb.h>
#include <lcd.h>
#define PANEL_NAME_SIZE (32)

View File

@ -26,7 +26,6 @@
#include <asm/arch/pinmux.h>
#include <asm/arch/power.h>
#include <asm/arch/system.h>
#include <lcd.h>
#include <i2c.h>
#include <mmc.h>
#include <stdio_dev.h>

View File

@ -7,7 +7,6 @@
#include <common.h>
#include <command.h>
#include <env.h>
#include <lcd.h>
#include <libtizen.h>
#include <asm/global_data.h>
#include <linux/delay.h>

View File

@ -8,7 +8,6 @@
#include <common.h>
#include <env.h>
#include <lcd.h>
#include <log.h>
#include <asm/io.h>
#include <asm/gpio.h>

View File

@ -6,7 +6,6 @@
*/
#include <common.h>
#include <lcd.h>
#include <log.h>
#include <asm/gpio.h>
#include <asm/arch/pinmux.h>
@ -282,24 +281,3 @@ int g_dnl_board_usb_cable_connected(void)
#endif
}
#endif
/*
* LCD
*/
#ifdef CONFIG_LCD
int mipi_power(void)
{
#if !CONFIG_IS_ENABLED(DM_I2C) /* TODO(maintainer): Convert to driver model */
struct pmic *p = pmic_get("MAX77686_PMIC");
/* LDO8 VMIPI_1.0V_AP */
max77686_set_ldo_mode(p, 8, OPMODE_ON);
/* LDO10 VMIPI_1.8V_AP */
max77686_set_ldo_mode(p, 10, OPMODE_ON);
#endif
return 0;
}
#endif /* LCD */

View File

@ -9,7 +9,6 @@
#include <env.h>
#include <log.h>
#include <spi.h>
#include <lcd.h>
#include <asm/global_data.h>
#include <asm/io.h>
#include <asm/gpio.h>

View File

@ -7,7 +7,6 @@
*/
#include <common.h>
#include <lcd.h>
#include <log.h>
#include <linux/delay.h>
#include <linux/err.h>

View File

@ -9,8 +9,4 @@
#define HD_RESOLUTION 0
#ifdef CONFIG_LCD
void get_tizen_logo_info(vidinfo_t *vid);
#endif
#endif /* _LIBTIZEN_H_ */