| // SPDX-License-Identifier: GPL-2.0+ |
| * Copyright (c) 2011 The Chromium OS Authors. |
| #include <video_font.h> /* Get font width and height */ |
| /* lcd.h needs BMP_LOGO_HEIGHT to calculate CONSOLE_ROWS */ |
| #if defined(CONFIG_LCD_LOGO) && !defined(CONFIG_LCD_INFO_BELOW_LOGO) |
| /* TODO(clchiou): add support of video device */ |
| int display_get_info(int type, struct display_info *di) |
| debug("%s: unsupport display device type: %d\n", |
| di->pixel_width = panel_info.vl_col; |
| di->pixel_height = panel_info.vl_row; |
| di->screen_rows = lcd_get_screen_rows(); |
| di->screen_cols = lcd_get_screen_columns(); |
| int display_draw_bitmap(ulong bitmap, int x, int y) |
| return lcd_display_bitmap(bitmap, x, y); |