]> git.ipfire.org Git - thirdparty/u-boot.git/blame - include/atmel_lcd.h
imx: imxrt1050-evk: Add support for SPI flash booting
[thirdparty/u-boot.git] / include / atmel_lcd.h
CommitLineData
83d290c5 1/* SPDX-License-Identifier: GPL-2.0+ */
baaa7dd7
NK
2/*
3 * atmel_lcd.h - Atmel LCD Controller structures
4 *
5 * (C) Copyright 2001
6 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
baaa7dd7
NK
7 */
8
9#ifndef _ATMEL_LCD_H_
10#define _ATMEL_LCD_H_
11
1e8ce11a
TR
12#include <linux/types.h>
13
9dc89a05 14/**
8a8d24bd 15 * struct atmel_lcd_plat - platform data for Atmel LCDs with driver model
9dc89a05
SG
16 *
17 * @timing_index: Index of LCD timing to use in device tree node
18 */
8a8d24bd 19struct atmel_lcd_plat {
9dc89a05
SG
20 int timing_index;
21};
22
baaa7dd7
NK
23typedef struct vidinfo {
24 ushort vl_col; /* Number of columns (i.e. 640) */
25 ushort vl_row; /* Number of rows (i.e. 480) */
604c7d4a
HP
26 ushort vl_rot; /* Rotation of Display (0, 1, 2, 3) */
27 u_long vl_clk; /* pixel clock in ps */
baaa7dd7
NK
28
29 /* LCD configuration register */
30 u_long vl_sync; /* Horizontal / vertical sync */
31 u_long vl_bpix; /* Bits per pixel, 0 = 1, 1 = 2, 2 = 4, 3 = 8, 4 = 16 */
32 u_long vl_tft; /* 0 = passive, 1 = TFT */
33 u_long vl_cont_pol_low; /* contrast polarity is low */
34 u_long vl_clk_pol; /* clock polarity */
35
36 /* Horizontal control register. */
37 u_long vl_hsync_len; /* Length of horizontal sync */
38 u_long vl_left_margin; /* Time from sync to picture */
39 u_long vl_right_margin; /* Time from picture to sync */
40
41 /* Vertical control register. */
42 u_long vl_vsync_len; /* Length of vertical sync */
43 u_long vl_upper_margin; /* Time from sync to picture */
44 u_long vl_lower_margin; /* Time from picture to sync */
45
46 u_long mmio; /* Memory mapped registers */
d330e04d
WY
47
48 u_int logo_width;
49 u_int logo_height;
50 int logo_x_offset;
51 int logo_y_offset;
52 u_long logo_addr;
baaa7dd7
NK
53} vidinfo_t;
54
d330e04d
WY
55void atmel_logo_info(vidinfo_t *info);
56void microchip_logo_info(vidinfo_t *info);
57
baaa7dd7 58#endif