nsclpcsio_isa.c revision 1.11 1 1.11 jmcneill /* $NetBSD: nsclpcsio_isa.c,v 1.11 2005/09/27 02:56:27 jmcneill Exp $ */
2 1.1 drochner
3 1.1 drochner /*
4 1.1 drochner * Copyright (c) 2002
5 1.1 drochner * Matthias Drochner. All rights reserved.
6 1.1 drochner *
7 1.1 drochner * Redistribution and use in source and binary forms, with or without
8 1.1 drochner * modification, are permitted provided that the following conditions
9 1.1 drochner * are met:
10 1.1 drochner * 1. Redistributions of source code must retain the above copyright
11 1.1 drochner * notice, this list of conditions, and the following disclaimer.
12 1.1 drochner * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 drochner * notice, this list of conditions and the following disclaimer in the
14 1.1 drochner * documentation and/or other materials provided with the distribution.
15 1.1 drochner *
16 1.1 drochner * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 1.1 drochner * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 1.1 drochner * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 1.1 drochner * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 1.1 drochner * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 1.1 drochner * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 1.1 drochner * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 1.1 drochner * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 1.1 drochner * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 1.1 drochner * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 1.1 drochner * SUCH DAMAGE.
27 1.1 drochner */
28 1.1 drochner
29 1.1 drochner #include <sys/cdefs.h>
30 1.11 jmcneill __KERNEL_RCSID(0, "$NetBSD: nsclpcsio_isa.c,v 1.11 2005/09/27 02:56:27 jmcneill Exp $");
31 1.1 drochner
32 1.1 drochner #include <sys/param.h>
33 1.1 drochner #include <sys/systm.h>
34 1.1 drochner #include <sys/device.h>
35 1.11 jmcneill #include <sys/lock.h>
36 1.11 jmcneill #include <sys/gpio.h>
37 1.1 drochner #include <machine/bus.h>
38 1.1 drochner
39 1.1 drochner #include <dev/isa/isareg.h>
40 1.1 drochner #include <dev/isa/isavar.h>
41 1.11 jmcneill #include <dev/gpio/gpiovar.h>
42 1.1 drochner #include <dev/sysmon/sysmonvar.h>
43 1.1 drochner
44 1.7 perry static int nsclpcsio_isa_match(struct device *, struct cfdata *, void *);
45 1.7 perry static void nsclpcsio_isa_attach(struct device *, struct device *, void *);
46 1.1 drochner
47 1.11 jmcneill #define GPIO_NPINS 29
48 1.11 jmcneill #define SIO_GPIO_CONF_OUTPUTEN (1 << 0)
49 1.11 jmcneill #define SIO_GPIO_CONF_PUSHPULL (1 << 1)
50 1.11 jmcneill #define SIO_GPIO_CONF_PULLUP (1 << 2)
51 1.11 jmcneill
52 1.1 drochner struct nsclpcsio_softc {
53 1.1 drochner struct device sc_dev;
54 1.11 jmcneill bus_space_tag_t sc_iot, sc_gpio_iot, sc_tms_iot;
55 1.11 jmcneill bus_space_handle_t sc_ioh, sc_gpio_ioh, sc_tms_ioh;
56 1.1 drochner
57 1.1 drochner struct envsys_tre_data sc_data[3];
58 1.1 drochner struct envsys_basic_info sc_info[3];
59 1.1 drochner struct sysmon_envsys sc_sysmon;
60 1.11 jmcneill struct simplelock sc_lock;
61 1.11 jmcneill
62 1.11 jmcneill /* GPIO */
63 1.11 jmcneill struct gpio_chipset_tag sc_gpio_gc;
64 1.11 jmcneill struct gpio_pin sc_gpio_pins[GPIO_NPINS];
65 1.1 drochner };
66 1.1 drochner
67 1.11 jmcneill #define GPIO_READ(sc, reg) \
68 1.11 jmcneill bus_space_read_1((sc)->sc_gpio_iot, \
69 1.11 jmcneill (sc)->sc_gpio_ioh, (reg))
70 1.11 jmcneill #define GPIO_WRITE(sc, reg, val) \
71 1.11 jmcneill bus_space_write_1((sc)->sc_gpio_iot, \
72 1.11 jmcneill (sc)->sc_gpio_ioh, (reg), (val))
73 1.11 jmcneill
74 1.5 drochner CFATTACH_DECL(nsclpcsio_isa, sizeof(struct nsclpcsio_softc),
75 1.4 thorpej nsclpcsio_isa_match, nsclpcsio_isa_attach, NULL, NULL);
76 1.1 drochner
77 1.1 drochner static const struct envsys_range tms_ranges[] = {
78 1.1 drochner { 0, 2, ENVSYS_STEMP },
79 1.1 drochner };
80 1.1 drochner
81 1.1 drochner static u_int8_t nsread(bus_space_tag_t, bus_space_handle_t, int);
82 1.1 drochner static void nswrite(bus_space_tag_t, bus_space_handle_t, int, u_int8_t);
83 1.1 drochner static int nscheck(bus_space_tag_t, int);
84 1.1 drochner
85 1.1 drochner static void tms_update(struct nsclpcsio_softc *, int);
86 1.1 drochner static int tms_gtredata(struct sysmon_envsys *, struct envsys_tre_data *);
87 1.1 drochner static int tms_streinfo(struct sysmon_envsys *, struct envsys_basic_info *);
88 1.1 drochner
89 1.11 jmcneill static void nsclpcsio_gpio_init(struct nsclpcsio_softc *);
90 1.11 jmcneill static void nsclpcsio_gpio_pin_select(struct nsclpcsio_softc *, int);
91 1.11 jmcneill static void nsclpcsio_gpio_pin_write(void *, int, int);
92 1.11 jmcneill static int nsclpcsio_gpio_pin_read(void *, int);
93 1.11 jmcneill static void nsclpcsio_gpio_pin_ctl(void *, int, int);
94 1.11 jmcneill
95 1.1 drochner static u_int8_t
96 1.1 drochner nsread(iot, ioh, idx)
97 1.1 drochner bus_space_tag_t iot;
98 1.1 drochner bus_space_handle_t ioh;
99 1.1 drochner int idx;
100 1.1 drochner {
101 1.1 drochner
102 1.1 drochner bus_space_write_1(iot, ioh, 0, idx);
103 1.1 drochner return (bus_space_read_1(iot, ioh, 1));
104 1.1 drochner }
105 1.1 drochner
106 1.1 drochner static void
107 1.1 drochner nswrite(iot, ioh, idx, data)
108 1.1 drochner bus_space_tag_t iot;
109 1.1 drochner bus_space_handle_t ioh;
110 1.1 drochner int idx;
111 1.1 drochner u_int8_t data;
112 1.1 drochner {
113 1.1 drochner
114 1.1 drochner bus_space_write_1(iot, ioh, 0, idx);
115 1.1 drochner bus_space_write_1(iot, ioh, 1, data);
116 1.1 drochner }
117 1.1 drochner
118 1.1 drochner static int
119 1.1 drochner nscheck(iot, base)
120 1.1 drochner bus_space_tag_t iot;
121 1.1 drochner int base;
122 1.1 drochner {
123 1.1 drochner bus_space_handle_t ioh;
124 1.1 drochner int rv = 0;
125 1.1 drochner
126 1.1 drochner if (bus_space_map(iot, base, 2, 0, &ioh))
127 1.1 drochner return (0);
128 1.1 drochner
129 1.1 drochner /* XXX this is for PC87366 only for now */
130 1.1 drochner if (nsread(iot, ioh, 0x20) == 0xe9)
131 1.1 drochner rv = 1;
132 1.1 drochner
133 1.1 drochner bus_space_unmap(iot, ioh, 2);
134 1.1 drochner return (rv);
135 1.1 drochner }
136 1.1 drochner
137 1.1 drochner static int
138 1.1 drochner nsclpcsio_isa_match(parent, match, aux)
139 1.1 drochner struct device *parent;
140 1.1 drochner struct cfdata *match;
141 1.1 drochner void *aux;
142 1.1 drochner {
143 1.1 drochner struct isa_attach_args *ia = aux;
144 1.1 drochner int iobase;
145 1.1 drochner
146 1.1 drochner if (ISA_DIRECT_CONFIG(ia))
147 1.1 drochner return (0);
148 1.1 drochner
149 1.6 drochner if (ia->ia_nio > 0 && ia->ia_io[0].ir_addr != ISA_UNKNOWN_PORT) {
150 1.1 drochner /* XXX check for legal iobase ??? */
151 1.1 drochner if (nscheck(ia->ia_iot, ia->ia_io[0].ir_addr)) {
152 1.1 drochner iobase = ia->ia_io[0].ir_addr;
153 1.1 drochner goto found;
154 1.1 drochner }
155 1.5 drochner return (0);
156 1.1 drochner }
157 1.1 drochner
158 1.1 drochner /* PC87366 has two possible locations depending on wiring */
159 1.1 drochner if (nscheck(ia->ia_iot, 0x2e)) {
160 1.1 drochner iobase = 0x2e;
161 1.1 drochner goto found;
162 1.1 drochner }
163 1.1 drochner if (nscheck(ia->ia_iot, 0x4e)) {
164 1.1 drochner iobase = 0x4e;
165 1.1 drochner goto found;
166 1.1 drochner }
167 1.1 drochner return (0);
168 1.1 drochner
169 1.1 drochner found:
170 1.1 drochner ia->ia_nio = 1;
171 1.1 drochner ia->ia_io[0].ir_addr = iobase;
172 1.1 drochner ia->ia_io[0].ir_size = 2;
173 1.1 drochner ia->ia_niomem = 0;
174 1.1 drochner ia->ia_nirq = 0;
175 1.1 drochner ia->ia_ndrq = 0;
176 1.1 drochner return (1);
177 1.1 drochner }
178 1.1 drochner
179 1.1 drochner static void
180 1.1 drochner nsclpcsio_isa_attach(parent, self, aux)
181 1.1 drochner struct device *parent, *self;
182 1.1 drochner void *aux;
183 1.1 drochner {
184 1.1 drochner struct nsclpcsio_softc *sc = (void *)self;
185 1.1 drochner struct isa_attach_args *ia = aux;
186 1.11 jmcneill struct gpiobus_attach_args gba;
187 1.1 drochner bus_space_tag_t iot;
188 1.1 drochner bus_space_handle_t ioh;
189 1.1 drochner u_int8_t val;
190 1.11 jmcneill int tms_iobase, gpio_iobase = 0;
191 1.1 drochner int i;
192 1.1 drochner
193 1.1 drochner sc->sc_iot = iot = ia->ia_iot;
194 1.1 drochner if (bus_space_map(ia->ia_iot, ia->ia_io[0].ir_addr, 2, 0, &ioh)) {
195 1.1 drochner printf(": can't map i/o space\n");
196 1.1 drochner return;
197 1.1 drochner }
198 1.1 drochner sc->sc_ioh = ioh;
199 1.1 drochner printf(": NSC PC87366 rev. %d\n", nsread(iot, ioh, 0x27));
200 1.1 drochner
201 1.11 jmcneill simple_lock_init(&sc->sc_lock);
202 1.11 jmcneill
203 1.11 jmcneill nswrite(iot, ioh, 0x07, 0x07); /* select gpio */
204 1.11 jmcneill
205 1.11 jmcneill val = nsread(iot, ioh, 0x30); /* control register */
206 1.11 jmcneill if (!(val & 1)) {
207 1.11 jmcneill printf("%s: GPIO disabled\n", sc->sc_dev.dv_xname);
208 1.11 jmcneill } else {
209 1.11 jmcneill gpio_iobase = (nsread(iot, ioh, 0x60) << 8) |
210 1.11 jmcneill nsread(iot, ioh, 0x61);
211 1.11 jmcneill sc->sc_gpio_iot = iot;
212 1.11 jmcneill if (bus_space_map(iot, gpio_iobase, 0x2c, 0,
213 1.11 jmcneill &sc->sc_gpio_ioh)) {
214 1.11 jmcneill printf("%s: can't map GPIO i/o space\n",
215 1.11 jmcneill sc->sc_dev.dv_xname);
216 1.11 jmcneill return;
217 1.11 jmcneill }
218 1.11 jmcneill printf("%s: GPIO at 0x%x\n", sc->sc_dev.dv_xname, gpio_iobase);
219 1.11 jmcneill
220 1.11 jmcneill nsclpcsio_gpio_init(sc);
221 1.11 jmcneill }
222 1.11 jmcneill
223 1.1 drochner nswrite(iot, ioh, 0x07, 0x0e); /* select tms */
224 1.1 drochner
225 1.1 drochner val = nsread(iot, ioh, 0x30); /* control register */
226 1.1 drochner if (!(val & 1)) {
227 1.1 drochner printf("%s: TMS disabled\n", sc->sc_dev.dv_xname);
228 1.1 drochner return;
229 1.1 drochner }
230 1.1 drochner
231 1.1 drochner tms_iobase = (nsread(iot, ioh, 0x60) << 8) | nsread(iot, ioh, 0x61);
232 1.1 drochner sc->sc_tms_iot = iot;
233 1.1 drochner if (bus_space_map(iot, tms_iobase, 16, 0, &sc->sc_tms_ioh)) {
234 1.1 drochner printf("%s: can't map TMS i/o space\n", sc->sc_dev.dv_xname);
235 1.1 drochner return;
236 1.1 drochner }
237 1.1 drochner printf("%s: TMS at 0x%x\n", sc->sc_dev.dv_xname, tms_iobase);
238 1.1 drochner
239 1.1 drochner if (bus_space_read_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x08) & 1) {
240 1.1 drochner printf("%s: TMS in standby mode\n", sc->sc_dev.dv_xname);
241 1.10 drochner
242 1.9 drochner /* Wake up the TMS and enable all temperature sensors. */
243 1.9 drochner bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x08, 0x00);
244 1.9 drochner bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x09, 0x00);
245 1.9 drochner bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x0a, 0x01);
246 1.9 drochner bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x09, 0x01);
247 1.9 drochner bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x0a, 0x01);
248 1.9 drochner bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x09, 0x02);
249 1.9 drochner bus_space_write_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x0a, 0x01);
250 1.10 drochner
251 1.10 drochner if (!(bus_space_read_1(sc->sc_tms_iot, sc->sc_tms_ioh, 0x08)
252 1.10 drochner & 1)) {
253 1.9 drochner printf("%s: TMS awoken\n", sc->sc_dev.dv_xname);
254 1.9 drochner } else {
255 1.9 drochner return;
256 1.9 drochner }
257 1.1 drochner }
258 1.1 drochner
259 1.1 drochner /* Initialize sensor meta data */
260 1.1 drochner for (i = 0; i < 3; i++) {
261 1.1 drochner sc->sc_data[i].sensor = sc->sc_info[i].sensor = i;
262 1.1 drochner sc->sc_data[i].units = sc->sc_info[i].units = ENVSYS_STEMP;
263 1.1 drochner }
264 1.1 drochner strcpy(sc->sc_info[0].desc, "TSENS1");
265 1.1 drochner strcpy(sc->sc_info[1].desc, "TSENS2");
266 1.1 drochner strcpy(sc->sc_info[2].desc, "TNSC");
267 1.1 drochner
268 1.1 drochner /* Get initial set of sensor values. */
269 1.1 drochner for (i = 0; i < 3; i++)
270 1.1 drochner tms_update(sc, i);
271 1.1 drochner
272 1.1 drochner /*
273 1.1 drochner * Hook into the System Monitor.
274 1.1 drochner */
275 1.1 drochner sc->sc_sysmon.sme_ranges = tms_ranges;
276 1.1 drochner sc->sc_sysmon.sme_sensor_info = sc->sc_info;
277 1.1 drochner sc->sc_sysmon.sme_sensor_data = sc->sc_data;
278 1.1 drochner sc->sc_sysmon.sme_cookie = sc;
279 1.1 drochner
280 1.1 drochner sc->sc_sysmon.sme_gtredata = tms_gtredata;
281 1.1 drochner sc->sc_sysmon.sme_streinfo = tms_streinfo;
282 1.1 drochner
283 1.1 drochner sc->sc_sysmon.sme_nsensors = 3;
284 1.1 drochner sc->sc_sysmon.sme_envsys_version = 1000;
285 1.1 drochner
286 1.1 drochner if (sysmon_envsys_register(&sc->sc_sysmon))
287 1.1 drochner printf("%s: unable to register with sysmon\n",
288 1.1 drochner sc->sc_dev.dv_xname);
289 1.11 jmcneill
290 1.11 jmcneill /* attach GPIO framework */
291 1.11 jmcneill if (gpio_iobase != 0) {
292 1.11 jmcneill gba.gba_name = "gpio";
293 1.11 jmcneill gba.gba_gc = &sc->sc_gpio_gc;
294 1.11 jmcneill gba.gba_pins = sc->sc_gpio_pins;
295 1.11 jmcneill gba.gba_npins = GPIO_NPINS;
296 1.11 jmcneill config_found(&sc->sc_dev, &gba, NULL);
297 1.11 jmcneill }
298 1.11 jmcneill
299 1.11 jmcneill return;
300 1.1 drochner }
301 1.1 drochner
302 1.1 drochner static void
303 1.1 drochner tms_update(sc, chan)
304 1.1 drochner struct nsclpcsio_softc *sc;
305 1.1 drochner int chan;
306 1.1 drochner {
307 1.1 drochner bus_space_tag_t iot = sc->sc_tms_iot;
308 1.1 drochner bus_space_handle_t ioh = sc->sc_tms_ioh;
309 1.1 drochner u_int8_t status;
310 1.1 drochner int8_t temp, ctemp; /* signed!! */
311 1.1 drochner
312 1.11 jmcneill simple_lock(&sc->sc_lock);
313 1.11 jmcneill
314 1.11 jmcneill nswrite(iot, ioh, 0x07, 0x0e); /* select tms */
315 1.11 jmcneill
316 1.1 drochner bus_space_write_1(iot, ioh, 0x09, chan); /* select */
317 1.1 drochner
318 1.1 drochner status = bus_space_read_1(iot, ioh, 0x0a); /* config/status */
319 1.1 drochner if (status & 0x01) {
320 1.1 drochner /* enabled */
321 1.1 drochner sc->sc_info[chan].validflags = ENVSYS_FVALID;
322 1.1 drochner }else {
323 1.1 drochner sc->sc_info[chan].validflags = 0;
324 1.11 jmcneill simple_unlock(&sc->sc_lock);
325 1.1 drochner return;
326 1.1 drochner }
327 1.1 drochner
328 1.1 drochner /*
329 1.1 drochner * If the channel is enabled, it is considered valid.
330 1.1 drochner * An "open circuit" might be temporary.
331 1.1 drochner */
332 1.1 drochner sc->sc_data[chan].validflags = ENVSYS_FVALID;
333 1.1 drochner if (status & 0x40) {
334 1.1 drochner /*
335 1.1 drochner * open circuit
336 1.1 drochner * XXX should have a warning for it
337 1.1 drochner */
338 1.1 drochner sc->sc_data[chan].warnflags = ENVSYS_WARN_OK; /* XXX */
339 1.11 jmcneill simple_unlock(&sc->sc_lock);
340 1.1 drochner return;
341 1.1 drochner }
342 1.1 drochner
343 1.1 drochner /* get current temperature in signed degree celsius */
344 1.1 drochner temp = bus_space_read_1(iot, ioh, 0x0b);
345 1.1 drochner sc->sc_data[chan].cur.data_us = (int)temp * 1000000 + 273150000;
346 1.1 drochner sc->sc_data[chan].validflags |= ENVSYS_FCURVALID;
347 1.1 drochner
348 1.1 drochner if (status & 0x0e) { /* any temperature warning? */
349 1.1 drochner /*
350 1.1 drochner * XXX the chip documentation is a bit fuzzy - it doesn't state
351 1.1 drochner * that the hardware OTS output depends on the "overtemp"
352 1.1 drochner * warning bit.
353 1.1 drochner * It seems the output gets cleared if the warning bit is reset.
354 1.1 drochner * This sucks.
355 1.1 drochner * The hardware might do something useful with output pins, eg
356 1.1 drochner * throttling the CPU, so we must do the comparision in
357 1.1 drochner * software, and only reset the bits if the reason is gone.
358 1.1 drochner */
359 1.1 drochner if (status & 0x02) { /* low limit */
360 1.1 drochner sc->sc_data[chan].warnflags = ENVSYS_WARN_UNDER;
361 1.1 drochner /* read low limit */
362 1.1 drochner ctemp = bus_space_read_1(iot, ioh, 0x0d);
363 1.1 drochner if (temp <= ctemp) /* still valid, don't reset */
364 1.1 drochner status &= ~0x02;
365 1.1 drochner }
366 1.1 drochner if (status & 0x04) { /* high limit */
367 1.1 drochner sc->sc_data[chan].warnflags = ENVSYS_WARN_OVER;
368 1.1 drochner /* read high limit */
369 1.1 drochner ctemp = bus_space_read_1(iot, ioh, 0x0c);
370 1.1 drochner if (temp >= ctemp) /* still valid, don't reset */
371 1.1 drochner status &= ~0x04;
372 1.1 drochner }
373 1.1 drochner if (status & 0x08) { /* overtemperature */
374 1.1 drochner sc->sc_data[chan].warnflags = ENVSYS_WARN_CRITOVER;
375 1.1 drochner /* read overtemperature limit */
376 1.1 drochner ctemp = bus_space_read_1(iot, ioh, 0x0e);
377 1.1 drochner if (temp >= ctemp) /* still valid, don't reset */
378 1.1 drochner status &= ~0x08;
379 1.1 drochner }
380 1.1 drochner
381 1.1 drochner /* clear outdated warnings */
382 1.1 drochner if (status & 0x0e)
383 1.1 drochner bus_space_write_1(iot, ioh, 0x0a, status);
384 1.1 drochner }
385 1.11 jmcneill
386 1.11 jmcneill simple_unlock(&sc->sc_lock);
387 1.11 jmcneill
388 1.11 jmcneill return;
389 1.1 drochner }
390 1.1 drochner
391 1.1 drochner static int
392 1.1 drochner tms_gtredata(sme, data)
393 1.1 drochner struct sysmon_envsys *sme;
394 1.1 drochner struct envsys_tre_data *data;
395 1.1 drochner {
396 1.1 drochner struct nsclpcsio_softc *sc = sme->sme_cookie;
397 1.1 drochner
398 1.1 drochner tms_update(sc, data->sensor);
399 1.1 drochner
400 1.1 drochner *data = sc->sc_data[data->sensor];
401 1.1 drochner return (0);
402 1.1 drochner }
403 1.1 drochner
404 1.1 drochner static int
405 1.1 drochner tms_streinfo(sme, info)
406 1.1 drochner struct sysmon_envsys *sme;
407 1.1 drochner struct envsys_basic_info *info;
408 1.1 drochner {
409 1.1 drochner #if 0
410 1.1 drochner struct nsclpcsio_softc *sc = sme->sme_cookie;
411 1.1 drochner #endif
412 1.1 drochner /* XXX Not implemented */
413 1.1 drochner info->validflags = 0;
414 1.8 perry
415 1.1 drochner return (0);
416 1.1 drochner }
417 1.11 jmcneill
418 1.11 jmcneill static void
419 1.11 jmcneill nsclpcsio_gpio_pin_select(struct nsclpcsio_softc *sc, int pin)
420 1.11 jmcneill {
421 1.11 jmcneill u_int8_t v;
422 1.11 jmcneill bus_space_tag_t iot = sc->sc_iot;
423 1.11 jmcneill bus_space_handle_t ioh = sc->sc_ioh;
424 1.11 jmcneill
425 1.11 jmcneill v = ((pin / 8) << 4) | (pin % 8);
426 1.11 jmcneill
427 1.11 jmcneill nswrite(iot, ioh, 0x07, 0x07); /* select gpio */
428 1.11 jmcneill nswrite(iot, ioh, 0xf0, v);
429 1.11 jmcneill
430 1.11 jmcneill return;
431 1.11 jmcneill }
432 1.11 jmcneill
433 1.11 jmcneill static void
434 1.11 jmcneill nsclpcsio_gpio_init(struct nsclpcsio_softc *sc)
435 1.11 jmcneill {
436 1.11 jmcneill int i;
437 1.11 jmcneill
438 1.11 jmcneill for (i = 0; i < GPIO_NPINS; i++) {
439 1.11 jmcneill sc->sc_gpio_pins[i].pin_num = i;
440 1.11 jmcneill sc->sc_gpio_pins[i].pin_caps = GPIO_PIN_INPUT |
441 1.11 jmcneill GPIO_PIN_OUTPUT | GPIO_PIN_OPENDRAIN |
442 1.11 jmcneill GPIO_PIN_PUSHPULL | GPIO_PIN_TRISTATE |
443 1.11 jmcneill GPIO_PIN_PULLUP;
444 1.11 jmcneill /* safe defaults */
445 1.11 jmcneill sc->sc_gpio_pins[i].pin_flags = GPIO_PIN_TRISTATE;
446 1.11 jmcneill sc->sc_gpio_pins[i].pin_state = GPIO_PIN_LOW;
447 1.11 jmcneill nsclpcsio_gpio_pin_ctl(sc, i, sc->sc_gpio_pins[i].pin_flags);
448 1.11 jmcneill nsclpcsio_gpio_pin_write(sc, i, sc->sc_gpio_pins[i].pin_state);
449 1.11 jmcneill }
450 1.11 jmcneill
451 1.11 jmcneill /* create controller tag */
452 1.11 jmcneill sc->sc_gpio_gc.gp_cookie = sc;
453 1.11 jmcneill sc->sc_gpio_gc.gp_pin_read = nsclpcsio_gpio_pin_read;
454 1.11 jmcneill sc->sc_gpio_gc.gp_pin_write = nsclpcsio_gpio_pin_write;
455 1.11 jmcneill sc->sc_gpio_gc.gp_pin_ctl = nsclpcsio_gpio_pin_ctl;
456 1.11 jmcneill }
457 1.11 jmcneill
458 1.11 jmcneill static int
459 1.11 jmcneill nsclpcsio_gpio_pin_read(void *aux, int pin)
460 1.11 jmcneill {
461 1.11 jmcneill struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
462 1.11 jmcneill int port, shift, reg;
463 1.11 jmcneill u_int8_t v;
464 1.11 jmcneill
465 1.11 jmcneill reg = 0x00;
466 1.11 jmcneill port = pin / 8;
467 1.11 jmcneill shift = pin % 8;
468 1.11 jmcneill
469 1.11 jmcneill switch (port) {
470 1.11 jmcneill case 0: reg = 0x00; break;
471 1.11 jmcneill case 1: reg = 0x04; break;
472 1.11 jmcneill case 2: reg = 0x08; break;
473 1.11 jmcneill case 3: reg = 0x0a; break;
474 1.11 jmcneill }
475 1.11 jmcneill
476 1.11 jmcneill v = GPIO_READ(sc, reg);
477 1.11 jmcneill
478 1.11 jmcneill return ((v >> shift) & 0x1);
479 1.11 jmcneill }
480 1.11 jmcneill
481 1.11 jmcneill static void
482 1.11 jmcneill nsclpcsio_gpio_pin_write(void *aux, int pin, int v)
483 1.11 jmcneill {
484 1.11 jmcneill struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
485 1.11 jmcneill int port, shift, reg;
486 1.11 jmcneill u_int8_t d;
487 1.11 jmcneill
488 1.11 jmcneill port = pin / 8;
489 1.11 jmcneill shift = pin % 8;
490 1.11 jmcneill
491 1.11 jmcneill switch (port) {
492 1.11 jmcneill case 0: reg = 0x00; break;
493 1.11 jmcneill case 1: reg = 0x04; break;
494 1.11 jmcneill case 2: reg = 0x08; break;
495 1.11 jmcneill case 3: reg = 0x0a; break;
496 1.11 jmcneill default: reg = 0x00; break; /* shouldn't happen */
497 1.11 jmcneill }
498 1.11 jmcneill
499 1.11 jmcneill d = GPIO_READ(sc, reg);
500 1.11 jmcneill if (v == 0)
501 1.11 jmcneill d &= ~(1 << shift);
502 1.11 jmcneill else if (v == 1)
503 1.11 jmcneill d |= (1 << shift);
504 1.11 jmcneill GPIO_WRITE(sc, reg, d);
505 1.11 jmcneill
506 1.11 jmcneill return;
507 1.11 jmcneill }
508 1.11 jmcneill
509 1.11 jmcneill void
510 1.11 jmcneill nsclpcsio_gpio_pin_ctl(void *aux, int pin, int flags)
511 1.11 jmcneill {
512 1.11 jmcneill struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
513 1.11 jmcneill u_int8_t conf;
514 1.11 jmcneill
515 1.11 jmcneill simple_lock(&sc->sc_lock);
516 1.11 jmcneill
517 1.11 jmcneill nswrite(sc->sc_iot, sc->sc_ioh, 0x07, 0x07); /* select gpio */
518 1.11 jmcneill nsclpcsio_gpio_pin_select(sc, pin);
519 1.11 jmcneill conf = nsread(sc->sc_iot, sc->sc_ioh, 0xf1);
520 1.11 jmcneill
521 1.11 jmcneill conf &= ~(SIO_GPIO_CONF_OUTPUTEN | SIO_GPIO_CONF_PUSHPULL |
522 1.11 jmcneill SIO_GPIO_CONF_PULLUP);
523 1.11 jmcneill if ((flags & GPIO_PIN_TRISTATE) == 0)
524 1.11 jmcneill conf |= SIO_GPIO_CONF_OUTPUTEN;
525 1.11 jmcneill if (flags & GPIO_PIN_PUSHPULL)
526 1.11 jmcneill conf |= SIO_GPIO_CONF_PUSHPULL;
527 1.11 jmcneill if (flags & GPIO_PIN_PULLUP)
528 1.11 jmcneill conf |= SIO_GPIO_CONF_PULLUP;
529 1.11 jmcneill
530 1.11 jmcneill nswrite(sc->sc_iot, sc->sc_ioh, 0xf1, conf);
531 1.11 jmcneill
532 1.11 jmcneill simple_unlock(&sc->sc_lock);
533 1.11 jmcneill
534 1.11 jmcneill return;
535 1.11 jmcneill }
536