nsclpcsio_isa.c revision 1.28.14.1 1 /* $NetBSD: nsclpcsio_isa.c,v 1.28.14.1 2011/06/23 14:20:01 cherry Exp $ */
2
3 /*
4 * Copyright (c) 2002
5 * Matthias Drochner. All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions, and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 */
28
29 /*
30 * National Semiconductor PC87366 LPC Super I/O driver.
31 * Supported logical devices: GPIO, TMS, VLM.
32 */
33
34 #include <sys/cdefs.h>
35 __KERNEL_RCSID(0, "$NetBSD: nsclpcsio_isa.c,v 1.28.14.1 2011/06/23 14:20:01 cherry Exp $");
36
37 #include <sys/param.h>
38 #include <sys/systm.h>
39 #include <sys/device.h>
40 #include <sys/mutex.h>
41 #include <sys/gpio.h>
42 #include <sys/bus.h>
43
44 /* Don't use gpio for now in the module */
45 #ifdef _MODULE
46 #undef NGPIO
47 #endif
48
49 #include <dev/isa/isareg.h>
50 #include <dev/isa/isavar.h>
51
52 #ifndef _MODULE
53 #include "gpio.h"
54 #endif
55 #if NGPIO > 0
56 #include <dev/gpio/gpiovar.h>
57 #endif
58 #include <dev/sysmon/sysmonvar.h>
59
60 #define SIO_REG_SID 0x20 /* Super I/O ID */
61 #define SIO_SID_PC87366 0xE9 /* PC87366 is identified by 0xE9.*/
62
63 #define SIO_REG_SRID 0x27 /* Super I/O Revision */
64
65 #define SIO_REG_LDN 0x07 /* Logical Device Number */
66 #define SIO_LDN_FDC 0x00 /* Floppy Disk Controller (FDC) */
67 #define SIO_LDN_PP 0x01 /* Parallel Port (PP) */
68 #define SIO_LDN_SP2 0x02 /* Serial Port 2 with IR (SP2) */
69 #define SIO_LDN_SP1 0x03 /* Serial Port 1 (SP1) */
70 #define SIO_LDN_SWC 0x04 /* System Wake-Up Control (SWC) */
71 #define SIO_LDN_KBCM 0x05 /* Mouse Controller (KBC) */
72 #define SIO_LDN_KBCK 0x06 /* Keyboard Controller (KBC) */
73 #define SIO_LDN_GPIO 0x07 /* General-Purpose I/O (GPIO) Ports */
74 #define SIO_LDN_ACB 0x08 /* ACCESS.bus Interface (ACB) */
75 #define SIO_LDN_FSCM 0x09 /* Fan Speed Control and Monitor (FSCM) */
76 #define SIO_LDN_WDT 0x0A /* WATCHDOG Timer (WDT) */
77 #define SIO_LDN_GMP 0x0B /* Game Port (GMP) */
78 #define SIO_LDN_MIDI 0x0C /* Musical Instrument Digital Interface */
79 #define SIO_LDN_VLM 0x0D /* Voltage Level Monitor (VLM) */
80 #define SIO_LDN_TMS 0x0E /* Temperature Sensor (TMS) */
81
82 #define SIO_REG_ACTIVE 0x30 /* Logical Device Activate Register */
83 #define SIO_ACTIVE_EN 0x01 /* enabled */
84
85 #define SIO_REG_IO_MSB 0x60 /* I/O Port Base, bits 15-8 */
86 #define SIO_REG_IO_LSB 0x61 /* I/O Port Base, bits 7-0 */
87
88 #define SIO_LDNUM 15 /* total number of logical devices */
89
90 /* Supported logical devices description */
91 static const struct {
92 const char *ld_name;
93 int ld_num;
94 int ld_iosize;
95 } sio_ld[] = {
96 { "GPIO", SIO_LDN_GPIO, 16 },
97 { "VLM", SIO_LDN_VLM, 16 },
98 { "TMS", SIO_LDN_TMS, 16 }
99 };
100
101 /* GPIO */
102 #define SIO_GPIO_PINSEL 0xf0
103 #define SIO_GPIO_PINCFG 0xf1
104 #define SIO_GPIO_PINEV 0xf2
105
106 #define SIO_GPIO_CONF_OUTPUTEN (1 << 0)
107 #define SIO_GPIO_CONF_PUSHPULL (1 << 1)
108 #define SIO_GPIO_CONF_PULLUP (1 << 2)
109
110 #define SIO_GPDO0 0x00
111 #define SIO_GPDI0 0x01
112 #define SIO_GPEVEN0 0x02
113 #define SIO_GPEVST0 0x03
114 #define SIO_GPDO1 0x04
115 #define SIO_GPDI1 0x05
116 #define SIO_GPEVEN1 0x06
117 #define SIO_GPEVST1 0x07
118 #define SIO_GPDO2 0x08
119 #define SIO_GPDI2 0x09
120 #define SIO_GPDO3 0x0a
121 #define SIO_GPDI3 0x0b
122
123 #define SIO_GPIO_NPINS 29
124
125 /* TMS */
126 #define SIO_TEVSTS 0x00 /* Temperature Event Status */
127 #define SIO_TEVSMI 0x02 /* Temperature Event to SMI */
128 #define SIO_TEVIRQ 0x04 /* Temperature Event to IRQ */
129 #define SIO_TMSCFG 0x08 /* TMS Configuration */
130 #define SIO_TMSBS 0x09 /* TMS Bank Select */
131 #define SIO_TCHCFST 0x0a /* Temperature Channel Config and Status */
132 #define SIO_RDCHT 0x0b /* Read Channel Temperature */
133 #define SIO_CHTH 0x0c /* Channel Temperature High Limit */
134 #define SIO_CHTL 0x0d /* Channel Temperature Low Limit */
135 #define SIO_CHOTL 0x0e /* Channel Overtemperature Limit */
136
137 /* VLM */
138 #define SIO_VEVSTS0 0x00 /* Voltage Event Status 0 */
139 #define SIO_VEVSTS1 0x01 /* Voltage Event Status 1 */
140 #define SIO_VEVSMI0 0x02 /* Voltage Event to SMI 0 */
141 #define SIO_VEVSMI1 0x03 /* Voltage Event to SMI 1 */
142 #define SIO_VEVIRQ0 0x04 /* Voltage Event to IRQ 0 */
143 #define SIO_VEVIRQ1 0x05 /* Voltage Event to IRQ 1 */
144 #define SIO_VID 0x06 /* Voltage ID */
145 #define SIO_VCNVR 0x07 /* Voltage Conversion Rate */
146 #define SIO_VLMCFG 0x08 /* VLM Configuration */
147 #define SIO_VLMBS 0x09 /* VLM Bank Select */
148 #define SIO_VCHCFST 0x0a /* Voltage Channel Config and Status */
149 #define SIO_RDCHV 0x0b /* Read Channel Voltage */
150 #define SIO_CHVH 0x0c /* Channel Voltage High Limit */
151 #define SIO_CHVL 0x0d /* Channel Voltage Low Limit */
152 #define SIO_OTSL 0x0e /* Overtemperature Shutdown Limit */
153
154 #define SIO_REG_SIOCF1 0x21
155 #define SIO_REG_SIOCF2 0x22
156 #define SIO_REG_SIOCF3 0x23
157 #define SIO_REG_SIOCF4 0x24
158 #define SIO_REG_SIOCF5 0x25
159 #define SIO_REG_SIOCF8 0x28
160 #define SIO_REG_SIOCFA 0x2a
161 #define SIO_REG_SIOCFB 0x2b
162 #define SIO_REG_SIOCFC 0x2c
163 #define SIO_REG_SIOCFD 0x2d
164
165 #define SIO_VLM_OFF 3
166 #define SIO_NUM_SENSORS (SIO_VLM_OFF + 14)
167 #define SIO_VREF 1235 /* 1000.0 * VREF */
168
169 struct nsclpcsio_softc {
170 device_t sc_dev;
171
172 bus_space_tag_t sc_iot;
173 bus_space_handle_t sc_ioh;
174
175 bus_space_handle_t sc_ld_ioh[SIO_LDNUM];
176 int sc_ld_en[SIO_LDNUM];
177
178 /* TMS and VLM */
179 struct sysmon_envsys *sc_sme;
180 envsys_data_t sc_sensor[SIO_NUM_SENSORS];
181
182 kmutex_t sc_lock;
183 #if NGPIO > 0
184 /* GPIO */
185 struct gpio_chipset_tag sc_gpio_gc;
186 struct gpio_pin sc_gpio_pins[SIO_GPIO_NPINS];
187 #endif
188 };
189
190 #define GPIO_READ(sc, reg) \
191 bus_space_read_1((sc)->sc_iot, \
192 (sc)->sc_ld_ioh[SIO_LDN_GPIO], (reg))
193 #define GPIO_WRITE(sc, reg, val) \
194 bus_space_write_1((sc)->sc_iot, \
195 (sc)->sc_ld_ioh[SIO_LDN_GPIO], (reg), (val))
196 #define TMS_WRITE(sc, reg, val) \
197 bus_space_write_1((sc)->sc_iot, \
198 (sc)->sc_ld_ioh[SIO_LDN_TMS], (reg), (val))
199 #define TMS_READ(sc, reg) \
200 bus_space_read_1((sc)->sc_iot, \
201 (sc)->sc_ld_ioh[SIO_LDN_TMS], (reg))
202 #define VLM_WRITE(sc, reg, val) \
203 bus_space_write_1((sc)->sc_iot, \
204 (sc)->sc_ld_ioh[SIO_LDN_VLM], (reg), (val))
205 #define VLM_READ(sc, reg) \
206 bus_space_read_1((sc)->sc_iot, \
207 (sc)->sc_ld_ioh[SIO_LDN_VLM], (reg))
208
209 static int nsclpcsio_isa_match(device_t, cfdata_t, void *);
210 static void nsclpcsio_isa_attach(device_t, device_t, void *);
211 static int nsclpcsio_isa_detach(device_t, int);
212
213 CFATTACH_DECL_NEW(nsclpcsio_isa, sizeof(struct nsclpcsio_softc),
214 nsclpcsio_isa_match, nsclpcsio_isa_attach, nsclpcsio_isa_detach, NULL);
215
216 static uint8_t nsread(bus_space_tag_t, bus_space_handle_t, int);
217 static void nswrite(bus_space_tag_t, bus_space_handle_t, int, uint8_t);
218 static int nscheck(bus_space_tag_t, int);
219
220 static void nsclpcsio_tms_init(struct nsclpcsio_softc *);
221 static void nsclpcsio_vlm_init(struct nsclpcsio_softc *);
222 static void nsclpcsio_refresh(struct sysmon_envsys *, envsys_data_t *);
223
224 #if NGPIO > 0
225 static void nsclpcsio_gpio_init(struct nsclpcsio_softc *);
226 static void nsclpcsio_gpio_pin_select(struct nsclpcsio_softc *, int);
227 static void nsclpcsio_gpio_pin_write(void *, int, int);
228 static int nsclpcsio_gpio_pin_read(void *, int);
229 static void nsclpcsio_gpio_pin_ctl(void *, int, int);
230 #endif
231
232 static uint8_t
233 nsread(bus_space_tag_t iot, bus_space_handle_t ioh, int idx)
234 {
235 bus_space_write_1(iot, ioh, 0, idx);
236 return bus_space_read_1(iot, ioh, 1);
237 }
238
239 static void
240 nswrite(bus_space_tag_t iot, bus_space_handle_t ioh, int idx, uint8_t data)
241 {
242 bus_space_write_1(iot, ioh, 0, idx);
243 bus_space_write_1(iot, ioh, 1, data);
244 }
245
246 static int
247 nscheck(bus_space_tag_t iot, int base)
248 {
249 bus_space_handle_t ioh;
250 int rv = 0;
251
252 if (bus_space_map(iot, base, 2, 0, &ioh))
253 return 0;
254
255 /* XXX this is for PC87366 only for now */
256 if (nsread(iot, ioh, SIO_REG_SID) == SIO_SID_PC87366)
257 rv = 1;
258
259 bus_space_unmap(iot, ioh, 2);
260 return rv;
261 }
262
263 static int
264 nsclpcsio_isa_match(device_t parent, cfdata_t match, void *aux)
265 {
266 struct isa_attach_args *ia = aux;
267 int iobase;
268
269 if (ISA_DIRECT_CONFIG(ia))
270 return 0;
271
272 if (ia->ia_nio > 0 && ia->ia_io[0].ir_addr != ISA_UNKNOWN_PORT) {
273 /* XXX check for legal iobase ??? */
274 if (nscheck(ia->ia_iot, ia->ia_io[0].ir_addr)) {
275 iobase = ia->ia_io[0].ir_addr;
276 goto found;
277 }
278 return 0;
279 }
280
281 /* PC87366 has two possible locations depending on wiring */
282 if (nscheck(ia->ia_iot, 0x2e)) {
283 iobase = 0x2e;
284 goto found;
285 }
286 if (nscheck(ia->ia_iot, 0x4e)) {
287 iobase = 0x4e;
288 goto found;
289 }
290
291 return 0;
292
293 found:
294 ia->ia_nio = 1;
295 ia->ia_io[0].ir_addr = iobase;
296 ia->ia_io[0].ir_size = 2;
297 ia->ia_niomem = 0;
298 ia->ia_nirq = 0;
299 ia->ia_ndrq = 0;
300
301 return 1;
302 }
303
304 static struct sysmon_envsys *
305 nsclpcsio_envsys_init(struct nsclpcsio_softc *sc)
306 {
307 int i;
308 struct sysmon_envsys *sme;
309
310 sme = sysmon_envsys_create();
311 for (i = 0; i < SIO_NUM_SENSORS; i++) {
312 sc->sc_sensor[i].state = ENVSYS_SINVALID;
313 if (sysmon_envsys_sensor_attach(sme, &sc->sc_sensor[i]) != 0) {
314 aprint_error_dev(sc->sc_dev,
315 "could not attach sensor %d", i);
316 goto err;
317 }
318 }
319
320 /*
321 * Hook into the System Monitor.
322 */
323 sme->sme_name = device_xname(sc->sc_dev);
324 sme->sme_cookie = sc;
325 sme->sme_refresh = nsclpcsio_refresh;
326
327 if ((i = sysmon_envsys_register(sme)) != 0) {
328 aprint_error_dev(sc->sc_dev,
329 "unable to register with sysmon (%d)\n", i);
330 goto err;
331 }
332 return sme;
333 err:
334 sysmon_envsys_destroy(sme);
335 return NULL;
336 }
337
338 static void
339 nsclpcsio_isa_attach(device_t parent, device_t self, void *aux)
340 {
341 struct nsclpcsio_softc *sc = device_private(self);
342 struct isa_attach_args *ia = aux;
343 #if NGPIO > 0
344 struct gpiobus_attach_args gba;
345 #endif
346 int i, iobase;
347
348 mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NONE);
349
350 sc->sc_dev = self;
351 sc->sc_iot = ia->ia_iot;
352 iobase = ia->ia_io[0].ir_addr;
353
354 if (bus_space_map(ia->ia_iot, iobase, 2, 0, &sc->sc_ioh)) {
355 aprint_error(": can't map i/o space\n");
356 return;
357 }
358
359 aprint_normal(": NSC PC87366 rev. 0x%d ",
360 nsread(sc->sc_iot, sc->sc_ioh, SIO_REG_SRID));
361
362 /* Configure all supported logical devices */
363 for (i = 0; i < __arraycount(sio_ld); i++) {
364 sc->sc_ld_en[sio_ld[i].ld_num] = 0;
365
366 /* Select the device and check if it's activated */
367 nswrite(sc->sc_iot, sc->sc_ioh, SIO_REG_LDN, sio_ld[i].ld_num);
368 if ((nsread(sc->sc_iot, sc->sc_ioh,
369 SIO_REG_ACTIVE) & SIO_ACTIVE_EN) == 0)
370 continue;
371
372 /* Map I/O space if necessary */
373 if (sio_ld[i].ld_iosize != 0) {
374 iobase = (nsread(sc->sc_iot, sc->sc_ioh,
375 SIO_REG_IO_MSB) << 8);
376 iobase |= nsread(sc->sc_iot, sc->sc_ioh,
377 SIO_REG_IO_LSB);
378 if (bus_space_map(sc->sc_iot, iobase,
379 sio_ld[i].ld_iosize, 0,
380 &sc->sc_ld_ioh[sio_ld[i].ld_num]))
381 continue;
382 }
383
384 sc->sc_ld_en[sio_ld[i].ld_num] = 1;
385 aprint_normal("%s ", sio_ld[i].ld_name);
386 }
387
388 aprint_normal("\n");
389
390 #if NGPIO > 0
391 nsclpcsio_gpio_init(sc);
392 #endif
393 nsclpcsio_tms_init(sc);
394 nsclpcsio_vlm_init(sc);
395 sc->sc_sme = nsclpcsio_envsys_init(sc);
396
397 #if NGPIO > 0
398 /* attach GPIO framework */
399 if (sc->sc_ld_en[SIO_LDN_GPIO]) {
400 gba.gba_gc = &sc->sc_gpio_gc;
401 gba.gba_pins = sc->sc_gpio_pins;
402 gba.gba_npins = SIO_GPIO_NPINS;
403 config_found_ia(self, "gpiobus", &gba, NULL);
404 }
405 #endif
406 }
407
408 static int
409 nsclpcsio_isa_detach(device_t self, int flags)
410 {
411 int i, rc;
412 struct nsclpcsio_softc *sc = device_private(self);
413
414 if ((rc = config_detach_children(self, flags)) != 0)
415 return rc;
416
417 if (sc->sc_sme != NULL)
418 sysmon_envsys_unregister(sc->sc_sme);
419 mutex_destroy(&sc->sc_lock);
420
421 for (i = 0; i < __arraycount(sio_ld); i++) {
422 if (sc->sc_ld_en[sio_ld[i].ld_num] &&
423 sio_ld[i].ld_iosize != 0) {
424 bus_space_unmap(sc->sc_iot,
425 sc->sc_ld_ioh[sio_ld[i].ld_num],
426 sio_ld[i].ld_iosize);
427 }
428 }
429
430 bus_space_unmap(sc->sc_iot, sc->sc_ioh, 2);
431
432 return 0;
433 }
434
435 static void
436 nsclpcsio_tms_init(struct nsclpcsio_softc *sc)
437 {
438 int i;
439
440 /* Initialisation, PC87366.pdf, page 208 */
441 TMS_WRITE(sc, 0x08, 0x00);
442 TMS_WRITE(sc, 0x09, 0x0f);
443 TMS_WRITE(sc, 0x0a, 0x08);
444 TMS_WRITE(sc, 0x0b, 0x04);
445 TMS_WRITE(sc, 0x0c, 0x35);
446 TMS_WRITE(sc, 0x0d, 0x05);
447 TMS_WRITE(sc, 0x0e, 0x05);
448
449 TMS_WRITE(sc, SIO_TMSCFG, 0x00);
450
451 for (i = 0; i < SIO_VLM_OFF; i++) {
452 TMS_WRITE(sc, SIO_TMSBS, i);
453 TMS_WRITE(sc, SIO_TCHCFST, 0x01);
454 sc->sc_sensor[i].units = ENVSYS_STEMP;
455 }
456
457 #define COPYDESCR(x, y) \
458 do { \
459 (void)strlcpy((x), (y), sizeof(x)); \
460 } while (/* CONSTCOND */ 0)
461
462 COPYDESCR(sc->sc_sensor[0].desc, "TSENS1");
463 COPYDESCR(sc->sc_sensor[1].desc, "TSENS2");
464 COPYDESCR(sc->sc_sensor[2].desc, "TNSC");
465 }
466
467 static void
468 nsclpcsio_vlm_init(struct nsclpcsio_softc *sc)
469 {
470 int i;
471 char tmp[16];
472 envsys_data_t *sensor = &sc->sc_sensor[SIO_VLM_OFF];
473
474 for (i = 0; i < SIO_NUM_SENSORS - SIO_VLM_OFF; i++) {
475 VLM_WRITE(sc, SIO_VLMBS, i);
476 VLM_WRITE(sc, SIO_VCHCFST, 0x01);
477 sensor[i].units = ENVSYS_SVOLTS_DC;
478 }
479
480 for (i = 0; i < 7; i++) {
481 (void)snprintf(tmp, sizeof(tmp), "VSENS%d", i);
482 COPYDESCR(sensor[i].desc, tmp);
483 }
484
485 COPYDESCR(sensor[7 ].desc, "VSB");
486 COPYDESCR(sensor[8 ].desc, "VDD");
487 COPYDESCR(sensor[9 ].desc, "VBAT");
488 COPYDESCR(sensor[10].desc, "AVDD");
489 COPYDESCR(sensor[11].desc, "TS1");
490 COPYDESCR(sensor[12].desc, "TS2");
491 COPYDESCR(sensor[13].desc, "TS3");
492 }
493
494
495 static void
496 nsclpcsio_refresh(struct sysmon_envsys *sme, envsys_data_t *edata)
497 {
498 struct nsclpcsio_softc *sc = sme->sme_cookie;
499 uint8_t status, data;
500 int8_t sdata = 0;
501 int scale, rfact;
502
503 scale = rfact = 0;
504 status = data = 0;
505
506 mutex_enter(&sc->sc_lock);
507 /* TMS */
508 if (edata->sensor < SIO_VLM_OFF && sc->sc_ld_en[SIO_LDN_TMS]) {
509 TMS_WRITE(sc, SIO_TMSBS, edata->sensor);
510 status = TMS_READ(sc, SIO_TCHCFST);
511 if (!(status & 0x01))
512 edata->state = ENVSYS_SINVALID;
513
514 sdata = TMS_READ(sc, SIO_RDCHT);
515 edata->value_cur = sdata * 1000000 + 273150000;
516 edata->state = ENVSYS_SVALID;
517 /* VLM */
518 } else if (edata->sensor >= SIO_VLM_OFF &&
519 edata->sensor < SIO_NUM_SENSORS &&
520 sc->sc_ld_en[SIO_LDN_VLM]) {
521 VLM_WRITE(sc, SIO_VLMBS, edata->sensor - SIO_VLM_OFF);
522 status = VLM_READ(sc, SIO_VCHCFST);
523 if (!(status & 0x01)) {
524 edata->state = ENVSYS_SINVALID;
525 } else {
526 data = VLM_READ(sc, SIO_RDCHV);
527 scale = 1;
528 switch (edata->sensor - SIO_VLM_OFF) {
529 case 7:
530 case 8:
531 case 10:
532 scale = 2;
533 break;
534 }
535 /* Vi = (2.450.05)*VREF *RDCHVi / 256 */
536 rfact = 10 * scale * ((245 * SIO_VREF) >> 8);
537 edata->value_cur = data * rfact;
538 edata->state = ENVSYS_SVALID;
539 }
540 }
541 mutex_exit(&sc->sc_lock);
542 }
543
544 #if NGPIO > 0
545 static void
546 nsclpcsio_gpio_pin_select(struct nsclpcsio_softc *sc, int pin)
547 {
548 uint8_t v;
549
550 v = ((pin / 8) << 4) | (pin % 8);
551
552 nswrite(sc->sc_iot, sc->sc_ioh, SIO_REG_LDN, SIO_LDN_GPIO);
553 nswrite(sc->sc_iot, sc->sc_ioh, SIO_GPIO_PINSEL, v);
554 }
555
556 static void
557 nsclpcsio_gpio_init(struct nsclpcsio_softc *sc)
558 {
559 int i;
560
561 for (i = 0; i < SIO_GPIO_NPINS; i++) {
562 sc->sc_gpio_pins[i].pin_num = i;
563 sc->sc_gpio_pins[i].pin_caps = GPIO_PIN_INPUT |
564 GPIO_PIN_OUTPUT | GPIO_PIN_OPENDRAIN |
565 GPIO_PIN_PUSHPULL | GPIO_PIN_TRISTATE |
566 GPIO_PIN_PULLUP;
567 /* safe defaults */
568 sc->sc_gpio_pins[i].pin_flags = GPIO_PIN_TRISTATE;
569 sc->sc_gpio_pins[i].pin_state = GPIO_PIN_LOW;
570 nsclpcsio_gpio_pin_ctl(sc, i, sc->sc_gpio_pins[i].pin_flags);
571 nsclpcsio_gpio_pin_write(sc, i, sc->sc_gpio_pins[i].pin_state);
572 }
573
574 /* create controller tag */
575 sc->sc_gpio_gc.gp_cookie = sc;
576 sc->sc_gpio_gc.gp_pin_read = nsclpcsio_gpio_pin_read;
577 sc->sc_gpio_gc.gp_pin_write = nsclpcsio_gpio_pin_write;
578 sc->sc_gpio_gc.gp_pin_ctl = nsclpcsio_gpio_pin_ctl;
579 }
580
581 static int
582 nsclpcsio_gpio_pin_read(void *aux, int pin)
583 {
584 struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
585 int port, shift, reg;
586 uint8_t v;
587
588 port = pin / 8;
589 shift = pin % 8;
590
591 switch (port) {
592 case 0:
593 reg = SIO_GPDI0;
594 break;
595 case 1:
596 reg = SIO_GPDI1;
597 break;
598 case 2:
599 reg = SIO_GPDI2;
600 break;
601 case 3:
602 reg = SIO_GPDI3;
603 break;
604 default:
605 reg = SIO_GPDI0;
606 break;
607 }
608
609 v = GPIO_READ(sc, reg);
610
611 return ((v >> shift) & 0x1);
612 }
613
614 static void
615 nsclpcsio_gpio_pin_write(void *aux, int pin, int v)
616 {
617 struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
618 int port, shift, reg;
619 uint8_t d;
620
621 port = pin / 8;
622 shift = pin % 8;
623
624 switch (port) {
625 case 0:
626 reg = SIO_GPDO0;
627 break;
628 case 1:
629 reg = SIO_GPDO1;
630 break;
631 case 2:
632 reg = SIO_GPDO2;
633 break;
634 case 3:
635 reg = SIO_GPDO3;
636 break;
637 default:
638 reg = SIO_GPDO0;
639 break; /* shouldn't happen */
640 }
641
642 d = GPIO_READ(sc, reg);
643 if (v == 0)
644 d &= ~(1 << shift);
645 else if (v == 1)
646 d |= (1 << shift);
647 GPIO_WRITE(sc, reg, d);
648 }
649
650 void
651 nsclpcsio_gpio_pin_ctl(void *aux, int pin, int flags)
652 {
653 struct nsclpcsio_softc *sc = (struct nsclpcsio_softc *)aux;
654 uint8_t conf;
655
656 mutex_enter(&sc->sc_lock);
657
658 nswrite(sc->sc_iot, sc->sc_ioh, SIO_REG_LDN, SIO_LDN_GPIO);
659 nsclpcsio_gpio_pin_select(sc, pin);
660 conf = nsread(sc->sc_iot, sc->sc_ioh, SIO_GPIO_PINCFG);
661
662 conf &= ~(SIO_GPIO_CONF_OUTPUTEN | SIO_GPIO_CONF_PUSHPULL |
663 SIO_GPIO_CONF_PULLUP);
664 if ((flags & GPIO_PIN_TRISTATE) == 0)
665 conf |= SIO_GPIO_CONF_OUTPUTEN;
666 if (flags & GPIO_PIN_PUSHPULL)
667 conf |= SIO_GPIO_CONF_PUSHPULL;
668 if (flags & GPIO_PIN_PULLUP)
669 conf |= SIO_GPIO_CONF_PULLUP;
670
671 nswrite(sc->sc_iot, sc->sc_ioh, SIO_GPIO_PINCFG, conf);
672
673 mutex_exit(&sc->sc_lock);
674 }
675 #endif /* NGPIO */
676