2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2002-11-03 00:38:21 +00:00
|
|
|
/*
|
2004-10-09 23:25:58 +00:00
|
|
|
* MPC823 and PXA LCD Controller
|
2002-11-03 00:38:21 +00:00
|
|
|
*
|
|
|
|
* Modeled after video interface by Paolo Scaffardi
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* (C) Copyright 2001
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _LCD_H_
|
|
|
|
#define _LCD_H_
|
2014-12-08 15:14:45 +00:00
|
|
|
#include <lcd_console.h>
|
2015-02-03 11:32:29 +00:00
|
|
|
#if defined(CONFIG_CMD_BMP) || defined(CONFIG_SPLASH_SCREEN)
|
|
|
|
#include <bmp_layout.h>
|
|
|
|
#include <asm/byteorder.h>
|
|
|
|
#endif
|
2002-11-03 00:38:21 +00:00
|
|
|
|
2016-01-19 02:52:16 +00:00
|
|
|
int bmp_display(ulong addr, int x, int y);
|
|
|
|
struct bmp_image *gunzip_bmp(unsigned long addr, unsigned long *lenp,
|
|
|
|
void **alloc_addr);
|
|
|
|
|
|
|
|
#ifndef CONFIG_DM_VIDEO
|
|
|
|
|
2003-06-03 23:54:09 +00:00
|
|
|
extern char lcd_is_enabled;
|
2004-10-09 23:25:58 +00:00
|
|
|
extern int lcd_line_length;
|
2009-07-19 15:52:27 +00:00
|
|
|
extern struct vidinfo panel_info;
|
|
|
|
|
2013-01-12 12:07:56 +00:00
|
|
|
void lcd_ctrl_init(void *lcdbase);
|
|
|
|
void lcd_enable(void);
|
|
|
|
void lcd_setcolreg(ushort regno, ushort red, ushort green, ushort blue);
|
2019-08-01 15:46:38 +00:00
|
|
|
ulong lcd_setmem(ulong addr);
|
2009-07-19 15:52:27 +00:00
|
|
|
|
2012-10-30 13:40:18 +00:00
|
|
|
/**
|
|
|
|
* Set whether we need to flush the dcache when changing the LCD image. This
|
|
|
|
* defaults to off.
|
|
|
|
*
|
|
|
|
* @param flush non-zero to flush cache after update, 0 to skip
|
|
|
|
*/
|
|
|
|
void lcd_set_flush_dcache(int flush);
|
|
|
|
|
2017-06-07 15:33:09 +00:00
|
|
|
#if defined(CONFIG_CPU_PXA25X) || defined(CONFIG_CPU_PXA27X) || \
|
2011-11-26 06:20:07 +00:00
|
|
|
defined CONFIG_CPU_MONAHANS
|
2015-02-03 11:32:20 +00:00
|
|
|
#include <pxa_lcd.h>
|
2012-05-25 00:59:58 +00:00
|
|
|
#elif defined(CONFIG_ATMEL_LCD) || defined(CONFIG_ATMEL_HLCD)
|
2015-02-03 11:32:20 +00:00
|
|
|
#include <atmel_lcd.h>
|
2012-04-05 19:36:15 +00:00
|
|
|
#elif defined(CONFIG_EXYNOS_FB)
|
2015-02-03 11:32:20 +00:00
|
|
|
#include <exynos_lcd.h>
|
2009-02-06 09:37:53 +00:00
|
|
|
#else
|
|
|
|
typedef struct vidinfo {
|
|
|
|
ushort vl_col; /* Number of columns (i.e. 160) */
|
|
|
|
ushort vl_row; /* Number of rows (i.e. 100) */
|
2015-03-27 07:01:38 +00:00
|
|
|
ushort vl_rot; /* Rotation of Display (0, 1, 2, 3) */
|
2009-02-06 09:37:53 +00:00
|
|
|
u_char vl_bpix; /* Bits per pixel, 0 = 1 */
|
|
|
|
ushort *cmap; /* Pointer to the colormap */
|
|
|
|
void *priv; /* Pointer to driver-specific data */
|
|
|
|
} vidinfo_t;
|
2015-02-03 11:32:21 +00:00
|
|
|
|
|
|
|
static __maybe_unused ushort *configuration_get_cmap(void)
|
|
|
|
{
|
|
|
|
return panel_info.cmap;
|
|
|
|
}
|
2015-02-03 11:32:20 +00:00
|
|
|
#endif
|
2004-10-09 23:25:58 +00:00
|
|
|
|
2015-02-03 11:32:21 +00:00
|
|
|
ushort *configuration_get_cmap(void);
|
|
|
|
|
2009-07-21 12:09:45 +00:00
|
|
|
extern vidinfo_t panel_info;
|
|
|
|
|
2015-02-03 11:32:29 +00:00
|
|
|
void lcd_putc(const char c);
|
|
|
|
void lcd_puts(const char *s);
|
|
|
|
void lcd_printf(const char *fmt, ...);
|
|
|
|
void lcd_clear(void);
|
|
|
|
int lcd_display_bitmap(ulong bmp_image, int x, int y);
|
2002-11-03 00:38:21 +00:00
|
|
|
|
2012-09-28 15:11:13 +00:00
|
|
|
/**
|
|
|
|
* Get the width of the LCD in pixels
|
|
|
|
*
|
|
|
|
* @return width of LCD in pixels
|
|
|
|
*/
|
|
|
|
int lcd_get_pixel_width(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the height of the LCD in pixels
|
|
|
|
*
|
|
|
|
* @return height of LCD in pixels
|
|
|
|
*/
|
|
|
|
int lcd_get_pixel_height(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the number of text lines/rows on the LCD
|
|
|
|
*
|
|
|
|
* @return number of rows
|
|
|
|
*/
|
|
|
|
int lcd_get_screen_rows(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the number of text columns on the LCD
|
|
|
|
*
|
|
|
|
* @return number of columns
|
|
|
|
*/
|
|
|
|
int lcd_get_screen_columns(void);
|
|
|
|
|
2014-12-08 15:14:43 +00:00
|
|
|
/**
|
|
|
|
* Get the background color of the LCD
|
|
|
|
*
|
|
|
|
* @return background color value
|
|
|
|
*/
|
|
|
|
int lcd_getbgcolor(void);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the foreground color of the LCD
|
|
|
|
*
|
|
|
|
* @return foreground color value
|
|
|
|
*/
|
|
|
|
int lcd_getfgcolor(void);
|
|
|
|
|
2012-09-28 15:11:13 +00:00
|
|
|
/**
|
|
|
|
* Set the position of the text cursor
|
|
|
|
*
|
|
|
|
* @param col Column to place cursor (0 = left side)
|
|
|
|
* @param row Row to place cursor (0 = top line)
|
|
|
|
*/
|
|
|
|
void lcd_position_cursor(unsigned col, unsigned row);
|
|
|
|
|
2008-09-01 14:21:22 +00:00
|
|
|
/* Allow boards to customize the information displayed */
|
|
|
|
void lcd_show_board_info(void);
|
2004-10-09 23:25:58 +00:00
|
|
|
|
2012-10-17 13:24:54 +00:00
|
|
|
/* Return the size of the LCD frame buffer, and the line length */
|
|
|
|
int lcd_get_size(int *line_length);
|
|
|
|
|
2014-02-27 20:26:19 +00:00
|
|
|
/* Update the LCD / flush the cache */
|
|
|
|
void lcd_sync(void);
|
|
|
|
|
2004-10-09 23:25:58 +00:00
|
|
|
/*
|
|
|
|
* Information about displays we are using. This is for configuring
|
|
|
|
* the LCD controller and memory allocation. Someone has to know what
|
|
|
|
* is connected, as we can't autodetect anything.
|
|
|
|
*/
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_HIGH 0 /* Pins are active high */
|
2013-01-12 12:07:56 +00:00
|
|
|
#define CONFIG_SYS_LOW 1 /* Pins are active low */
|
2004-10-09 23:25:58 +00:00
|
|
|
|
|
|
|
#define LCD_MONOCHROME 0
|
|
|
|
#define LCD_COLOR2 1
|
|
|
|
#define LCD_COLOR4 2
|
|
|
|
#define LCD_COLOR8 3
|
|
|
|
#define LCD_COLOR16 4
|
2014-03-07 17:55:40 +00:00
|
|
|
#define LCD_COLOR32 5
|
2015-02-03 11:32:29 +00:00
|
|
|
|
2005-07-04 00:03:16 +00:00
|
|
|
#if defined(CONFIG_LCD_INFO_BELOW_LOGO)
|
2015-02-03 11:32:29 +00:00
|
|
|
#define LCD_INFO_X 0
|
|
|
|
#define LCD_INFO_Y (BMP_LOGO_HEIGHT + VIDEO_FONT_HEIGHT)
|
2004-10-09 23:25:58 +00:00
|
|
|
#elif defined(CONFIG_LCD_LOGO)
|
2015-02-03 11:32:29 +00:00
|
|
|
#define LCD_INFO_X (BMP_LOGO_WIDTH + 4 * VIDEO_FONT_WIDTH)
|
|
|
|
#define LCD_INFO_Y VIDEO_FONT_HEIGHT
|
2004-10-09 23:25:58 +00:00
|
|
|
#else
|
2015-02-03 11:32:29 +00:00
|
|
|
#define LCD_INFO_X VIDEO_FONT_WIDTH
|
|
|
|
#define LCD_INFO_Y VIDEO_FONT_HEIGHT
|
2004-10-09 23:25:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Default to 8bpp if bit depth not specified */
|
|
|
|
#ifndef LCD_BPP
|
2015-02-03 11:32:29 +00:00
|
|
|
#define LCD_BPP LCD_COLOR8
|
2004-10-09 23:25:58 +00:00
|
|
|
#endif
|
2015-02-03 11:32:29 +00:00
|
|
|
|
2004-10-09 23:25:58 +00:00
|
|
|
#ifndef LCD_DF
|
2015-02-03 11:32:29 +00:00
|
|
|
#define LCD_DF 1
|
2004-10-09 23:25:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Calculate nr. of bits per pixel and nr. of colors */
|
|
|
|
#define NBITS(bit_code) (1 << (bit_code))
|
|
|
|
#define NCOLORS(bit_code) (1 << NBITS(bit_code))
|
|
|
|
|
2014-12-08 15:14:38 +00:00
|
|
|
#if LCD_BPP == LCD_COLOR8
|
2004-10-09 23:25:58 +00:00
|
|
|
# define CONSOLE_COLOR_BLACK 0
|
|
|
|
# define CONSOLE_COLOR_RED 1
|
|
|
|
# define CONSOLE_COLOR_GREEN 2
|
|
|
|
# define CONSOLE_COLOR_YELLOW 3
|
|
|
|
# define CONSOLE_COLOR_BLUE 4
|
|
|
|
# define CONSOLE_COLOR_MAGENTA 5
|
|
|
|
# define CONSOLE_COLOR_CYAN 6
|
|
|
|
# define CONSOLE_COLOR_GREY 14
|
2015-02-03 11:32:29 +00:00
|
|
|
# define CONSOLE_COLOR_WHITE 15 /* Must remain last / highest */
|
2014-03-07 17:55:40 +00:00
|
|
|
#elif LCD_BPP == LCD_COLOR32
|
2015-02-03 11:32:29 +00:00
|
|
|
#define CONSOLE_COLOR_RED 0x00ff0000
|
|
|
|
#define CONSOLE_COLOR_GREEN 0x0000ff00
|
|
|
|
#define CONSOLE_COLOR_YELLOW 0x00ffff00
|
|
|
|
#define CONSOLE_COLOR_BLUE 0x000000ff
|
|
|
|
#define CONSOLE_COLOR_MAGENTA 0x00ff00ff
|
|
|
|
#define CONSOLE_COLOR_CYAN 0x0000ffff
|
|
|
|
#define CONSOLE_COLOR_GREY 0x00aaaaaa
|
|
|
|
#define CONSOLE_COLOR_BLACK 0x00000000
|
|
|
|
#define CONSOLE_COLOR_WHITE 0x00ffffff /* Must remain last / highest */
|
|
|
|
#define NBYTES(bit_code) (NBITS(bit_code) >> 3)
|
|
|
|
#else /* 16bpp color definitions */
|
2016-01-21 12:06:32 +00:00
|
|
|
# define CONSOLE_COLOR_BLACK 0x0000
|
|
|
|
# define CONSOLE_COLOR_RED 0xF800
|
|
|
|
# define CONSOLE_COLOR_GREEN 0x07E0
|
|
|
|
# define CONSOLE_COLOR_YELLOW 0xFFE0
|
|
|
|
# define CONSOLE_COLOR_BLUE 0x001F
|
|
|
|
# define CONSOLE_COLOR_MAGENTA 0xF81F
|
|
|
|
# define CONSOLE_COLOR_CYAN 0x07FF
|
|
|
|
# define CONSOLE_COLOR_GREY 0xC618
|
|
|
|
# define CONSOLE_COLOR_WHITE 0xffff /* Must remain last / highest */
|
2004-10-09 23:25:58 +00:00
|
|
|
#endif /* color definitions */
|
|
|
|
|
2015-03-27 07:01:38 +00:00
|
|
|
#if LCD_BPP == LCD_COLOR16
|
|
|
|
#define fbptr_t ushort
|
|
|
|
#elif LCD_BPP == LCD_COLOR32
|
|
|
|
#define fbptr_t u32
|
|
|
|
#else
|
|
|
|
#define fbptr_t uchar
|
|
|
|
#endif
|
|
|
|
|
2004-10-09 23:25:58 +00:00
|
|
|
#ifndef PAGE_SIZE
|
2015-02-03 11:32:29 +00:00
|
|
|
#define PAGE_SIZE 4096
|
2004-10-09 23:25:58 +00:00
|
|
|
#endif
|
|
|
|
|
2016-01-19 02:52:16 +00:00
|
|
|
#endif /* !CONFIG_DM_VIDEO */
|
|
|
|
|
2004-10-09 23:25:58 +00:00
|
|
|
#endif /* _LCD_H_ */
|