diff options
author | marius <marius@FreeBSD.org> | 2005-03-19 01:04:48 +0000 |
---|---|---|
committer | marius <marius@FreeBSD.org> | 2005-03-19 01:04:48 +0000 |
commit | d09e0745dc1e16ab273c083997d78e65afaad4d8 (patch) | |
tree | ca7aac48810246434d12aae2135215d105eeb65f /sys/sparc64/conf | |
parent | a00235b7fa0c3e0bdc0a074cc96e9f9053c7d93e (diff) | |
download | FreeBSD-src-d09e0745dc1e16ab273c083997d78e65afaad4d8.zip FreeBSD-src-d09e0745dc1e16ab273c083997d78e65afaad4d8.tar.gz |
Add a driver for the 'clock-board' device (the clock board is an
inevitable component in Sun Exx00 machines and provides serial ports,
NVRAM and TOD amongst others which are handled by uart(4) and eeprom(4)
respectively). This driver currently only prints out information about
the chassis on attach and allows to blink the 'Cycling' LED (which is
duplicated on the front panel) of the clock board just like fhc(4) does
for the other boards. The device name for the LED is /dev/led/clockboard.
Obtained from: OpenBSD
Tested by: joerg
Diffstat (limited to 'sys/sparc64/conf')
-rw-r--r-- | sys/sparc64/conf/GENERIC | 1 | ||||
-rw-r--r-- | sys/sparc64/conf/NOTES | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/sys/sparc64/conf/GENERIC b/sys/sparc64/conf/GENERIC index 42224bb..1e642e4 100644 --- a/sys/sparc64/conf/GENERIC +++ b/sys/sparc64/conf/GENERIC @@ -127,6 +127,7 @@ device ses # SCSI Environmental Services (and SAF-TE) # Builtin hardware device auxio # auxiliary I/O device +device clkbrd # Clock Board (blinkenlight on Sun Exx00) device genclock # Generic clock interface device eeprom # eeprom (really a front-end for the MK48Txx) device mk48txx # Mostek MK48Txx clocks diff --git a/sys/sparc64/conf/NOTES b/sys/sparc64/conf/NOTES index 44d2925..45f789f 100644 --- a/sys/sparc64/conf/NOTES +++ b/sys/sparc64/conf/NOTES @@ -50,6 +50,7 @@ device mc146818 # Motorola MC146818 and compatible clocks # device auxio # auxiliary I/O device +device clkbrd # Clock Board (blinkenlight on Sun Exx00) device creator # Creator, Creator3D and Elite3D graphics cards device ofw_console # Open Firmware console device |