Files
lcdproc/server/drivers/t6963.h
T

114 lines
3.6 KiB
C
Raw Normal View History

2011-01-03 10:51:50 +00:00
/*-
2011-01-21 06:59:37 +00:00
* Base driver module for Toshiba T6963 based LCD displays.
*
2011-01-03 10:51:50 +00:00
* Parts of this file are based on the kernel driver by
* Alexander Frink <Alexander.Frink@Uni-Mainz.DE>
*
2011-01-21 06:59:37 +00:00
* Copyright (c) 2001 Manuel Stahl <mythos@xmythos.de>
* 2011 Markus Dolze
*
* This file is released under the GNU General Public License. Refer to the
* COPYING file distributed with this package.
*/
#ifndef T6963_H
#define T6963_H
2002-02-11 15:21:25 +00:00
#define DEFAULT_CELL_WIDTH 6
#define DEFAULT_CELL_HEIGHT 8
#define DEFAULT_SIZE "20x6"
#define DEFAULT_PORT 0x378
2011-01-21 06:59:37 +00:00
#define T6963_MAX_WIDTH 40 /* These value are for 240x128 */
#define T6963_MAX_HEIGHT 16
2011-01-21 06:59:37 +00:00
/* RAM layout base addresses (for 8 KB RAM) */
#define TEXT_BASE 0x0000 /* 1K, fine for 40x16 */
#define GRAPHIC_BASE 0x0400 /* 5K, fine for 240x128 */
#define CHARGEN_BASE 0x1800 /* 2K, required for 256 CC */
2011-01-03 10:51:50 +00:00
/* 'Registers setting' commands */
#define SET_CURSOR_POINTER 0x21
#define SET_OFFSET_REGISTER 0x22
#define SET_ADDRESS_POINTER 0x24
2011-01-03 10:51:50 +00:00
/* 'Set control word' commands */
#define SET_TEXT_HOME_ADDRESS 0x40
#define SET_TEXT_AREA 0x41
#define SET_GRAPHIC_HOME_ADDRESS 0x42
#define SET_GRAPHIC_AREA 0x43
2011-01-03 10:51:50 +00:00
/* 'Mode set' command and options*/
#define SET_MODE 0x80
#define OR_MODE 0x00
#define EXOR_MODE 0x01
#define AND_MODE 0x03
#define ATTRIBUTE_MODE 0x04
#define INTERNAL_CG 0x00
#define EXTERNAL_CG 0x08
2011-01-03 10:51:50 +00:00
/* 'Display mode' command and options */
#define SET_DISPLAY_MODE 0x90
#define BLINK_ON 0x01
#define CURSOR_ON 0x02
#define TEXT_ON 0x04
#define GRAPHIC_ON 0x08
2011-01-03 10:51:50 +00:00
/* 'Cursor pattern select' command */
#define SET_CURSOR_PATTERN 0xa0
2011-01-03 10:51:50 +00:00
/* 'Data read/write' commands */
#define DATA_WRITE_INC 0xc0
#define DATA_READ_INC 0xc1
#define DATA_WRITE_DEC 0xc2
#define DATA_READ_DEC 0xc3
#define DATA_WRITE 0xc4
#define DATA_READ 0xc5
2011-01-03 10:51:50 +00:00
/* 'Data auto read/write' commands */
#define AUTO_WRITE 0xb0
#define AUTO_READ 0xb1
2011-01-21 06:59:37 +00:00
#define AUTO_RESET 0xb2
2011-01-21 06:59:37 +00:00
/* 'Status read' anwer codes */
#define STA0 0x01
#define STA1 0x02
#define STA3 0x08
2011-01-03 10:51:50 +00:00
/* Macros to make port usage more readable */
2006-04-10 21:42:33 +00:00
#define T6963_DATA_PORT(p) (p)
#define T6963_STATUS_PORT(p) ((p)+1)
#define T6963_CONTROL_PORT(p) ((p)+2)
2011-01-03 10:51:50 +00:00
/* Data types */
typedef unsigned short u16;
typedef unsigned char u8;
2011-01-03 10:51:50 +00:00
/* API functions */
MODULE_EXPORT int t6963_init (Driver *drvthis);
2001-12-30 00:15:25 +00:00
MODULE_EXPORT void t6963_close (Driver *drvthis);
MODULE_EXPORT int t6963_width (Driver *drvthis);
MODULE_EXPORT int t6963_height (Driver *drvthis);
MODULE_EXPORT void t6963_clear (Driver *drvthis);
MODULE_EXPORT void t6963_flush (Driver *drvthis);
2007-04-02 21:29:53 +00:00
MODULE_EXPORT void t6963_string (Driver *drvthis, int x, int y, const char string[]);
2001-12-30 00:15:25 +00:00
MODULE_EXPORT void t6963_chr (Driver *drvthis, int x, int y, char c);
2002-02-11 15:21:25 +00:00
MODULE_EXPORT void t6963_vbar (Driver *drvthis, int x, int y, int len, int promille, int options);
MODULE_EXPORT void t6963_hbar (Driver *drvthis, int x, int y, int len, int promille, int options);
2001-12-30 00:15:25 +00:00
MODULE_EXPORT void t6963_num (Driver *drvthis, int x, int num);
2002-05-23 18:03:36 +00:00
MODULE_EXPORT int t6963_icon (Driver *drvthis, int x, int y, int icon);
2001-12-30 00:15:25 +00:00
MODULE_EXPORT void t6963_set_char (Driver *drvthis, int n, char *dat);
2011-01-03 10:51:50 +00:00
/* Internal functions */
2011-01-21 06:59:37 +00:00
static void t6963_graphic_clear(Driver *drvthis);
static void t6963_set_nchar(Driver *drvthis, int n, unsigned char *dat, int num);
static inline int t6963_low_dsp_ready(Driver *drvthis, u8 sta);
static void t6963_low_data(Driver *drvthis, u8 byte);
static void t6963_low_auto_write(Driver *drvthis, u8 byte);
static void t6963_low_command(Driver *drvthis, u8 byte);
static void t6963_low_command_byte(Driver *drvthis, u8 cmd, u8 byte);
static void t6963_low_command_word(Driver *drvthis, u8 cmd, u16 word);
static inline void t6963_low_send(Driver * drvthis, u8 type, u8 byte);
#endif