xref: /netbsd/sys/arch/hpcmips/dev/m38813c.c (revision bf9ec67e)
1 /*	$NetBSD: m38813c.c,v 1.6 2002/01/29 18:53:10 uch Exp $ */
2 
3 /*-
4  * Copyright (c) 1999, 2001 The NetBSD Foundation, Inc.
5  * All rights reserved.
6  *
7  * This code is derived from software contributed to The NetBSD Foundation
8  * by UCHIYAMA Yasushi.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. All advertising materials mentioning features or use of this software
19  *    must display the following acknowledgement:
20  *        This product includes software developed by the NetBSD
21  *        Foundation, Inc. and its contributors.
22  * 4. Neither the name of The NetBSD Foundation nor the names of its
23  *    contributors may be used to endorse or promote products derived
24  *    from this software without specific prior written permission.
25  *
26  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
27  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
28  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
29  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
30  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
31  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
32  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
33  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
34  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
35  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
36  * POSSIBILITY OF SUCH DAMAGE.
37  */
38 
39 /*
40  * Device driver for MITUBISHI M38813 controller
41  */
42 
43 #include "opt_use_poll.h"
44 
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/device.h>
48 
49 #include <machine/bus.h>
50 #include <machine/intr.h>
51 
52 #include <dev/hpc/hpckbdvar.h>
53 
54 #include <hpcmips/tx/tx39var.h>
55 #include <hpcmips/tx/txcsbusvar.h>
56 #include <hpcmips/dev/m38813cvar.h>
57 
58 struct m38813c_chip {
59 	bus_space_tag_t		scc_cst;
60 	bus_space_handle_t	scc_csh;
61 	int			scc_enabled;
62 	int t_lastchar;
63 	int t_extended;
64 	int t_extended1;
65 
66 	struct hpckbd_ic_if	scc_if;
67 	struct hpckbd_if	*scc_hpckbd;
68 };
69 
70 struct m38813c_softc {
71 	struct	device		sc_dev;
72 	struct m38813c_chip	*sc_chip;
73 	tx_chipset_tag_t	sc_tc;
74 	void			*sc_ih;
75 };
76 
77 int	m38813c_match(struct device *, struct cfdata *, void *);
78 void	m38813c_attach(struct device *, struct device *, void *);
79 int	m38813c_intr(void *);
80 int	m38813c_poll(void *);
81 void	m38813c_ifsetup(struct m38813c_chip *);
82 int	m38813c_input_establish(void *, struct hpckbd_if *);
83 
84 struct m38813c_chip m38813c_chip;
85 
86 struct cfattach m38813c_ca = {
87 	sizeof(struct m38813c_softc), m38813c_match, m38813c_attach
88 };
89 
90 int
91 m38813c_match(struct device *parent, struct cfdata *cf, void *aux)
92 {
93 
94 	return (1);
95 }
96 
97 void
98 m38813c_attach(struct device *parent, struct device *self, void *aux)
99 {
100 	struct cs_attach_args *ca = aux;
101 	struct m38813c_softc *sc = (void*)self;
102 	struct hpckbd_attach_args haa;
103 
104 	sc->sc_tc = ca->ca_tc;
105 	sc->sc_chip = &m38813c_chip;
106 	sc->sc_chip->scc_cst = ca->ca_csio.cstag;
107 
108 	if (bus_space_map(sc->sc_chip->scc_cst, ca->ca_csio.csbase,
109 	    ca->ca_csio.cssize, 0, &sc->sc_chip->scc_csh)) {
110 		printf(": can't map i/o space\n");
111 	}
112 
113 #ifndef USE_POLL
114 #error options USE_POLL requied.
115 #endif
116 	if (!(sc->sc_ih = tx39_poll_establish(sc->sc_tc, 1,
117 	    IPL_TTY, m38813c_intr,
118 	    sc))) {
119 		printf(": can't establish interrupt\n");
120 	}
121 
122 	printf("\n");
123 
124 	/* setup upper interface */
125 	m38813c_ifsetup(sc->sc_chip);
126 
127 	haa.haa_ic = &sc->sc_chip->scc_if;
128 
129 	config_found(self, &haa, hpckbd_print);
130 }
131 
132 void
133 m38813c_ifsetup(struct m38813c_chip *scc)
134 {
135 
136 	scc->scc_if.hii_ctx		= scc;
137 
138 	scc->scc_if.hii_establish	= m38813c_input_establish;
139 	scc->scc_if.hii_poll		= m38813c_intr;
140 }
141 
142 int
143 m38813c_cnattach(paddr_t addr)
144 {
145 	struct m38813c_chip *scc = &m38813c_chip;
146 
147 	scc->scc_csh = MIPS_PHYS_TO_KSEG1(addr);
148 
149 	m38813c_ifsetup(scc);
150 
151 	hpckbd_cnattach(&scc->scc_if);
152 
153 	return (0);
154 }
155 
156 int
157 m38813c_input_establish(void *ic, struct hpckbd_if *kbdif)
158 {
159 	struct m38813c_chip *scc = ic;
160 
161 	/* save lower interface */
162 	scc->scc_hpckbd = kbdif;
163 
164 	scc->scc_enabled = 1;
165 
166 	return (0);
167 }
168 
169 #define	KBR_EXTENDED0	0xE0	/* extended key sequence */
170 #define	KBR_EXTENDED1	0xE1	/* extended key sequence */
171 
172 int
173 m38813c_intr(void *arg)
174 {
175 	struct m38813c_softc *sc = arg;
176 
177 	return (m38813c_poll(sc->sc_chip));
178 }
179 
180 int
181 m38813c_poll(void *arg)
182 {
183 	struct m38813c_chip *scc = arg;
184 	bus_space_tag_t t = scc->scc_cst;
185 	bus_space_handle_t h = scc->scc_csh;
186 	int datain, type, key;
187 
188 	if (!scc->scc_enabled) {
189 		return (0);
190 	}
191 
192 	datain= bus_space_read_1(t, h, 0);
193 
194 	hpckbd_input_hook(scc->scc_hpckbd);
195 
196 	if (datain == KBR_EXTENDED0) {
197 		scc->t_extended = 1;
198 		return (0);
199 	} else if (datain == KBR_EXTENDED1) {
200 		scc->t_extended1 = 2;
201 		return (0);
202 	}
203 
204  	/* map extended keys to (unused) codes 128-254 */
205 	key = (datain & 0x7f) | (scc->t_extended ? 0x80 : 0);
206 	scc->t_extended = 0;
207 
208 	/*
209 	 * process BREAK key (EXT1 1D 45  EXT1 9D C5):
210 	 * map to (unused) code 7F
211 	 */
212 	if (scc->t_extended1 == 2 && (datain == 0x1d || datain == 0x9d)) {
213 		scc->t_extended1 = 1;
214 		return (0);
215 	} else if (scc->t_extended1 == 1 &&
216 	    (datain == 0x45 || datain == 0xc5)) {
217 		scc->t_extended1 = 0;
218 		key = 0x7f;
219 	} else if (scc->t_extended1 > 0) {
220 		scc->t_extended1 = 0;
221 	}
222 
223 	if (datain & 0x80) {
224 		scc->t_lastchar = 0;
225 		type = 0;
226 	} else {
227 		/* Always ignore typematic keys */
228 		if (key == scc->t_lastchar)
229 			return 0;
230 		scc->t_lastchar = key;
231 		type = 1;
232 	}
233 
234 	hpckbd_input(scc->scc_hpckbd, type, key);
235 
236 	return (0);
237 }
238