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