1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright (C) 2013-2018 Hannes Schmelzer <oe5hpm@oevsv.at> -
4 * B&R Industrial Automation GmbH - http://www.br-automation.com
10 #if !CONFIG_IS_ENABLED(DM_VIDEO)
12 #define HSVS_CONTROL BIT(25) /*
13 * 0 = lcd_lp and lcd_fp are driven on
14 * opposite edges of pixel clock than
16 * 1 = lcd_lp and lcd_fp are driven
17 * according to bit 24 Note that this
18 * bit MUST be set to '0' for Passive
19 * Matrix displays the edge timing is
22 #define HSVS_RISEFALL BIT(24) /*
23 * 0 = lcd_lp and lcd_fp are driven on
24 * the rising edge of pixel clock (bit
25 * 25 must be set to 1)
26 * 1 = lcd_lp and lcd_fp are driven on
27 * the falling edge of pixel clock (bit
28 * 25 must be set to 1)
30 #define DE_INVERT BIT(23) /*
31 * 0 = DE is low-active
32 * 1 = DE is high-active
34 #define PXCLK_INVERT BIT(22) /*
35 * 0 = pix-clk is high-active
36 * 1 = pic-clk is low-active
38 #define HSYNC_INVERT BIT(21) /*
39 * 0 = HSYNC is active high
40 * 1 = HSYNC is avtive low
42 #define VSYNC_INVERT BIT(20) /*
43 * 0 = VSYNC is active high
44 * 1 = VSYNC is active low
47 struct am335x_lcdpanel {
48 unsigned int hactive; /* Horizontal active area */
49 unsigned int vactive; /* Vertical active area */
50 unsigned int bpp; /* bits per pixel */
51 unsigned int hfp; /* Horizontal front porch */
52 unsigned int hbp; /* Horizontal back porch */
53 unsigned int hsw; /* Horizontal Sync Pulse Width */
54 unsigned int vfp; /* Vertical front porch */
55 unsigned int vbp; /* Vertical back porch */
56 unsigned int vsw; /* Vertical Sync Pulse Width */
57 unsigned int pxl_clk; /* Pixel clock */
58 unsigned int pol; /* polarity of sync, clock signals */
59 unsigned int pup_delay; /*
60 * time in ms after power on to
61 * initialization of lcd-controller
64 unsigned int pon_delay; /*
65 * time in ms after initialization of
66 * lcd-controller (pic stabilization)
68 void (*panel_power_ctrl)(int); /* fp for power on/off display */
71 int am335xfb_init(struct am335x_lcdpanel *panel);
73 #endif /* CONFIG_DM_VIDEO */
75 #endif /* AM335X_FB_H */