xref: /rk3399_rockchip-uboot/include/lcd.h (revision fe8c2806cdba70479e351299881a395dc2be7785)
1*fe8c2806Swdenk /*
2*fe8c2806Swdenk  * MPC823 LCD Controller
3*fe8c2806Swdenk  *
4*fe8c2806Swdenk  * Modeled after video interface by Paolo Scaffardi
5*fe8c2806Swdenk  *
6*fe8c2806Swdenk  *
7*fe8c2806Swdenk  * (C) Copyright 2001
8*fe8c2806Swdenk  * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
9*fe8c2806Swdenk  *
10*fe8c2806Swdenk  * See file CREDITS for list of people who contributed to this
11*fe8c2806Swdenk  * project.
12*fe8c2806Swdenk  *
13*fe8c2806Swdenk  * This program is free software; you can redistribute it and/or
14*fe8c2806Swdenk  * modify it under the terms of the GNU General Public License as
15*fe8c2806Swdenk  * published by the Free Software Foundation; either version 2 of
16*fe8c2806Swdenk  * the License, or (at your option) any later version.
17*fe8c2806Swdenk  *
18*fe8c2806Swdenk  * This program is distributed in the hope that it will be useful,
19*fe8c2806Swdenk  * but WITHOUT ANY WARRANTY; without even the implied warranty of
20*fe8c2806Swdenk  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
21*fe8c2806Swdenk  * GNU General Public License for more details.
22*fe8c2806Swdenk  *
23*fe8c2806Swdenk  * You should have received a copy of the GNU General Public License
24*fe8c2806Swdenk  * along with this program; if not, write to the Free Software
25*fe8c2806Swdenk  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
26*fe8c2806Swdenk  * MA 02111-1307 USA
27*fe8c2806Swdenk  */
28*fe8c2806Swdenk 
29*fe8c2806Swdenk #ifndef _LCD_H_
30*fe8c2806Swdenk #define _LCD_H_
31*fe8c2806Swdenk 
32*fe8c2806Swdenk /* Video functions */
33*fe8c2806Swdenk 
34*fe8c2806Swdenk int	lcd_init	(void *lcdbase);
35*fe8c2806Swdenk void	lcd_putc	(const char c);
36*fe8c2806Swdenk void	lcd_puts	(const char *s);
37*fe8c2806Swdenk void	lcd_printf	(const char *fmt, ...);
38*fe8c2806Swdenk 
39*fe8c2806Swdenk #endif
40