Sat May 23 13:48:08 2020 UTC ()
GC toaster drivers


(jmcneill)
diff -r1.175 -r1.176 src/sys/dev/isa/files.isa
diff -r1.13 -r0 src/sys/dev/isa/toaster.c
diff -r1.11 -r0 src/sys/dev/isa/toasterlcd.c

cvs diff -r1.175 -r1.176 src/sys/dev/isa/files.isa (expand / switch to unified diff)

--- src/sys/dev/isa/files.isa 2020/01/19 20:00:35 1.175
+++ src/sys/dev/isa/files.isa 2020/05/23 13:48:08 1.176
@@ -1,14 +1,14 @@ @@ -1,14 +1,14 @@
1# $NetBSD: files.isa,v 1.175 2020/01/19 20:00:35 thorpej Exp $ 1# $NetBSD: files.isa,v 1.176 2020/05/23 13:48:08 jmcneill Exp $
2# 2#
3# Config file and device description for machine-independent ISA code. 3# Config file and device description for machine-independent ISA code.
4# Included by ports that need it. Requires that the SCSI files be 4# Included by ports that need it. Requires that the SCSI files be
5# defined first. 5# defined first.
6 6
7# ports should specify appropriate major numbers for the following 7# ports should specify appropriate major numbers for the following
8# devices: 8# devices:
9# mcd, wd, wt 9# mcd, wd, wt
10 10
11device isa {[port = -1], [size = 0], 11device isa {[port = -1], [size = 0],
12 [iomem = -1], [iosiz = 0], 12 [iomem = -1], [iosiz = 0],
13 [irq = -1], [drq = -1], [drq2 = -1]} 13 [irq = -1], [drq = -1], [drq2 = -1]}
14attach isa at isabus 14attach isa at isabus
@@ -477,34 +477,26 @@ file dev/isa/joy_isa.c joy_isa @@ -477,34 +477,26 @@ file dev/isa/joy_isa.c joy_isa
477# NSC PC87366 Super IO / monitor chip 477# NSC PC87366 Super IO / monitor chip
478device nsclpcsio: sysmon_envsys, gpiobus 478device nsclpcsio: sysmon_envsys, gpiobus
479attach nsclpcsio at isa with nsclpcsio_isa 479attach nsclpcsio at isa with nsclpcsio_isa
480file dev/isa/nsclpcsio_isa.c nsclpcsio_isa 480file dev/isa/nsclpcsio_isa.c nsclpcsio_isa
481 481
482# USB Controller 482# USB Controller
483attach slhci at isa with slhci_isa 483attach slhci at isa with slhci_isa
484file dev/isa/slhci_isa.c slhci_isa 484file dev/isa/slhci_isa.c slhci_isa
485 485
486device tsdio {} 486device tsdio {}
487attach tsdio at isa 487attach tsdio at isa
488file dev/isa/tsdio.c tsdio 488file dev/isa/tsdio.c tsdio
489 489
490device toasterlcd: hd44780, wsemuldisplaydev 
491attach toasterlcd at tsdio 
492file dev/isa/toasterlcd.c toasterlcd 
493 
494device toaster 
495attach toaster at tsdio 
496file dev/isa/toaster.c toaster 
497 
498# Trusted Platform Module 490# Trusted Platform Module
499attach tpm at isa with tpm_isa 491attach tpm at isa with tpm_isa
500file dev/isa/tpm_isa.c tpm_isa needs-flag 492file dev/isa/tpm_isa.c tpm_isa needs-flag
501 493
502# Soekris GPIO & LEDs driver 494# Soekris GPIO & LEDs driver
503device soekrisgpio: gpiobus 495device soekrisgpio: gpiobus
504attach soekrisgpio at isa 496attach soekrisgpio at isa
505file dev/isa/soekrisgpio.c soekrisgpio 497file dev/isa/soekrisgpio.c soekrisgpio
506 498
507# NCT5104D GPIO 499# NCT5104D GPIO
508device nct: gpiobus 500device nct: gpiobus
509attach nct at isa 501attach nct at isa
510file dev/isa/nct.c nct 502file dev/isa/nct.c nct

File Deleted: src/sys/dev/isa/Attic/toaster.c

File Deleted: src/sys/dev/isa/Attic/toasterlcd.c