mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-19 03:08:31 +00:00
93ad66ced3
this function is shared by several boards and thus can be factorized Signed-off-by: Eric Bénard <eric@eukrea.com> Acked-by: Eric Nelson <eric.nelson@boundarydevices.com> Acked-by: Stefano Babic <sbabic@denx.de>
55 lines
1.2 KiB
C
55 lines
1.2 KiB
C
/*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#include <common.h>
|
|
#include <asm/errno.h>
|
|
#include <asm/imx-common/video.h>
|
|
|
|
extern struct display_info_t const displays[];
|
|
extern size_t display_count;
|
|
|
|
int board_video_skip(void)
|
|
{
|
|
int i;
|
|
int ret;
|
|
char const *panel = getenv("panel");
|
|
if (!panel) {
|
|
for (i = 0; i < display_count; i++) {
|
|
struct display_info_t const *dev = displays+i;
|
|
if (dev->detect && dev->detect(dev)) {
|
|
panel = dev->mode.name;
|
|
printf("auto-detected panel %s\n", panel);
|
|
break;
|
|
}
|
|
}
|
|
if (!panel) {
|
|
panel = displays[0].mode.name;
|
|
printf("No panel detected: default to %s\n", panel);
|
|
i = 0;
|
|
}
|
|
} else {
|
|
for (i = 0; i < display_count; i++) {
|
|
if (!strcmp(panel, displays[i].mode.name))
|
|
break;
|
|
}
|
|
}
|
|
if (i < display_count) {
|
|
ret = ipuv3_fb_init(&displays[i].mode, 0,
|
|
displays[i].pixfmt);
|
|
if (!ret) {
|
|
displays[i].enable(displays+i);
|
|
printf("Display: %s (%ux%u)\n",
|
|
displays[i].mode.name,
|
|
displays[i].mode.xres,
|
|
displays[i].mode.yres);
|
|
} else
|
|
printf("LCD %s cannot be configured: %d\n",
|
|
displays[i].mode.name, ret);
|
|
} else {
|
|
printf("unsupported panel %s\n", panel);
|
|
return -EINVAL;
|
|
}
|
|
|
|
return 0;
|
|
}
|