1 1.11 nat /* $NetBSD: hd44780var.h,v 1.11 2023/08/08 17:31:13 nat Exp $ */ 2 1.1 joff 3 1.1 joff /* 4 1.1 joff * Copyright (c) 2002 Dennis I. Chernoivanov 5 1.1 joff * All rights reserved. 6 1.1 joff * 7 1.1 joff * Redistribution and use in source and binary forms, with or without 8 1.1 joff * modification, are permitted provided that the following conditions 9 1.1 joff * are met: 10 1.1 joff * 1. Redistributions of source code must retain the above copyright 11 1.1 joff * notice, this list of conditions and the following disclaimer. 12 1.1 joff * 2. Redistributions in binary form must reproduce the above copyright 13 1.1 joff * notice, this list of conditions and the following disclaimer in the 14 1.1 joff * documentation and/or other materials provided with the distribution. 15 1.1 joff * 3. The name of the author may not be used to endorse or promote products 16 1.1 joff * derived from this software without specific prior written permission 17 1.1 joff * 18 1.1 joff * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 19 1.1 joff * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 20 1.1 joff * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 21 1.1 joff * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 22 1.1 joff * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 23 1.1 joff * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 24 1.1 joff * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 25 1.1 joff * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 26 1.1 joff * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 27 1.1 joff * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 28 1.1 joff */ 29 1.1 joff 30 1.1 joff #ifndef _DEV_IC_HD44780VAR_H_ 31 1.1 joff #define _DEV_IC_HD44780VAR_H_ 32 1.1 joff 33 1.8 dholland #include <sys/ioccom.h> 34 1.8 dholland 35 1.1 joff /* IOCTL definitions */ 36 1.1 joff #define HLCD_DISPCTL _IOW('h', 1, struct hd44780_dispctl) 37 1.1 joff #define HLCD_RESET _IO('h', 2) 38 1.1 joff #define HLCD_CLEAR _IO('h', 3) 39 1.1 joff #define HLCD_CURSOR_LEFT _IO('h', 4) 40 1.1 joff #define HLCD_CURSOR_RIGHT _IO('h', 5) 41 1.1 joff #define HLCD_GET_CURSOR_POS _IOR('h', 6, struct hd44780_io) 42 1.1 joff #define HLCD_SET_CURSOR_POS _IOW('h', 7, struct hd44780_io) 43 1.1 joff #define HLCD_GETC _IOR('h', 8, struct hd44780_io) 44 1.1 joff #define HLCD_PUTC _IOW('h', 9, struct hd44780_io) 45 1.1 joff #define HLCD_SHIFT_LEFT _IO('h', 10) 46 1.1 joff #define HLCD_SHIFT_RIGHT _IO('h', 11) 47 1.1 joff #define HLCD_HOME _IO('h', 12) 48 1.1 joff #define HLCD_WRITE _IOWR('h', 13, struct hd44780_io) 49 1.1 joff #define HLCD_READ _IOWR('h', 14, struct hd44780_io) 50 1.1 joff #define HLCD_REDRAW _IOW('h', 15, struct hd44780_io) 51 1.1 joff #define HLCD_WRITE_INST _IOW('h', 16, struct hd44780_io) 52 1.1 joff #define HLCD_WRITE_DATA _IOW('h', 17, struct hd44780_io) 53 1.1 joff #define HLCD_GET_INFO _IOR('h', 18, struct hd44780_info) 54 1.7 tsutsui #define HLCD_GET_CHIPNO _IOR('h', 19, uint8_t) 55 1.7 tsutsui #define HLCD_SET_CHIPNO _IOW('h', 20, uint8_t) 56 1.1 joff 57 1.1 joff struct hd44780_dispctl { 58 1.7 tsutsui uint8_t chip; 59 1.7 tsutsui uint8_t display_on:1, 60 1.1 joff blink_on:1, 61 1.1 joff cursor_on:1; 62 1.1 joff }; 63 1.1 joff 64 1.1 joff struct hd44780_io { 65 1.7 tsutsui uint8_t chip; 66 1.7 tsutsui uint8_t dat; 67 1.7 tsutsui uint8_t len; 68 1.7 tsutsui uint8_t buf[HD_MAX_CHARS]; 69 1.1 joff }; 70 1.1 joff 71 1.1 joff struct hd44780_info { 72 1.7 tsutsui uint8_t lines; 73 1.7 tsutsui uint8_t phys_rows; 74 1.7 tsutsui uint8_t virt_rows; 75 1.1 joff 76 1.7 tsutsui uint8_t is_wide:1, 77 1.1 joff is_bigfont:1, 78 1.1 joff kp_present:1; 79 1.1 joff }; 80 1.1 joff 81 1.1 joff #ifdef _KERNEL 82 1.1 joff 83 1.2 joff struct hlcd_screen { 84 1.2 joff int hlcd_curon; 85 1.2 joff int hlcd_curx; 86 1.2 joff int hlcd_cury; 87 1.7 tsutsui uint8_t *image; /* characters of screen */ 88 1.2 joff struct hd44780_chip *hlcd_sc; 89 1.2 joff }; 90 1.2 joff 91 1.1 joff /* HLCD driver structure */ 92 1.1 joff struct hd44780_chip { 93 1.1 joff #define HD_8BIT 0x01 /* 8-bit if set, 4-bit otherwise */ 94 1.1 joff #define HD_MULTILINE 0x02 /* 2 lines if set, 1 otherwise */ 95 1.1 joff #define HD_BIGFONT 0x04 /* 5x10 if set, 5x8 otherwise */ 96 1.1 joff #define HD_KEYPAD 0x08 /* if set, keypad is connected */ 97 1.1 joff #define HD_UP 0x10 /* if set, lcd has been initialized */ 98 1.1 joff #define HD_TIMEDOUT 0x20 /* lcd has recently stopped talking */ 99 1.3 joff #define HD_MULTICHIP 0x40 /* two HD44780 controllers (4-line) */ 100 1.11 nat #define HD_WRITEONLY 0x80 /* write only if set */ 101 1.7 tsutsui uint8_t sc_flags; 102 1.1 joff 103 1.7 tsutsui uint8_t sc_cols; /* visible columns */ 104 1.7 tsutsui uint8_t sc_vcols; /* virtual columns (normally 40) */ 105 1.7 tsutsui uint8_t sc_dev_ok; 106 1.7 tsutsui uint8_t sc_curchip; 107 1.1 joff 108 1.1 joff bus_space_tag_t sc_iot; 109 1.1 joff 110 1.1 joff bus_space_handle_t sc_ioir; /* instruction register */ 111 1.1 joff bus_space_handle_t sc_iodr; /* data register */ 112 1.1 joff 113 1.6 cegger device_t sc_dev; /* Pointer to parent device */ 114 1.2 joff struct hlcd_screen sc_screen; /* currently displayed screen copy */ 115 1.2 joff struct hlcd_screen *sc_curscr; /* active screen */ 116 1.2 joff struct callout redraw; /* wsdisplay refresh/redraw timer */ 117 1.1 joff 118 1.1 joff /* Generic write/read byte entries. */ 119 1.7 tsutsui void (* sc_writereg)(struct hd44780_chip *, uint32_t, uint32_t, 120 1.7 tsutsui uint8_t); 121 1.7 tsutsui uint8_t (* sc_readreg)(struct hd44780_chip *, uint32_t, uint32_t); 122 1.1 joff }; 123 1.1 joff 124 1.3 joff #define hd44780_ir_write(sc, en, dat) \ 125 1.1 joff do { \ 126 1.3 joff hd44780_busy_wait(sc, (en)); \ 127 1.3 joff (sc)->sc_writereg((sc), (en), 0, (dat)); \ 128 1.1 joff } while(0) 129 1.1 joff 130 1.3 joff #define hd44780_ir_read(sc, en) \ 131 1.3 joff (sc)->sc_readreg((sc), (en), 0) 132 1.1 joff 133 1.3 joff #define hd44780_dr_write(sc, en, dat) \ 134 1.3 joff (sc)->sc_writereg((sc), (en), 1, (dat)) 135 1.1 joff 136 1.3 joff #define hd44780_dr_read(sc, en) \ 137 1.3 joff (sc)->sc_readreg((sc), (en), 1) 138 1.1 joff 139 1.1 joff void hd44780_attach_subr(struct hd44780_chip *); 140 1.9 nat void hd44780_detach(struct hd44780_chip *); 141 1.7 tsutsui void hd44780_busy_wait(struct hd44780_chip *, uint32_t); 142 1.1 joff int hd44780_init(struct hd44780_chip *); 143 1.7 tsutsui int hd44780_chipinit(struct hd44780_chip *, uint32_t); 144 1.5 christos int hd44780_ioctl_subr(struct hd44780_chip *, u_long, void *); 145 1.7 tsutsui void hd44780_ddram_redraw(struct hd44780_chip *, uint32_t, struct hd44780_io *); 146 1.1 joff 147 1.1 joff #define HD_DDRAM_READ 0x0 148 1.1 joff #define HD_DDRAM_WRITE 0x1 149 1.7 tsutsui int hd44780_ddram_io(struct hd44780_chip *, uint32_t, struct hd44780_io *, 150 1.7 tsutsui uint8_t); 151 1.1 joff 152 1.1 joff #if defined(HD44780_STD_WIDE) || defined(HD44780_STD_SHORT) 153 1.7 tsutsui void hd44780_writereg(struct hd44780_chip *, uint32_t, uint32_t, uint8_t); 154 1.7 tsutsui uint8_t hd44780_readreg(struct hd44780_chip *, uint32_t, uint32_t); 155 1.1 joff #endif 156 1.1 joff 157 1.1 joff #endif /* _KERNEL */ 158 1.1 joff 159 1.1 joff #endif /* _DEV_IC_HD44780VAR_H_ */ 160