diff options
author | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-01-26 06:34:55 +0000 |
---|---|---|
committer | Uwe Stuehler <uwe@cvs.openbsd.org> | 2005-01-26 06:34:55 +0000 |
commit | 8d5992f42a303bf7855b57d7aa3a24fba59ffeee (patch) | |
tree | cf9833405207add16097ea76404d2dc202411a68 /sys/arch/zaurus/conf | |
parent | bdcf45340fd9d4ef44a2ace40aae2f9d2a636631 (diff) |
New device for the dedicated SSP unit, automatic battery charging, and
reporting the remaining battery life to apmd(8).
ok drahn@
Diffstat (limited to 'sys/arch/zaurus/conf')
-rw-r--r-- | sys/arch/zaurus/conf/GENERIC | 5 | ||||
-rw-r--r-- | sys/arch/zaurus/conf/RAMDISK | 5 | ||||
-rw-r--r-- | sys/arch/zaurus/conf/files.zaurus | 9 |
3 files changed, 15 insertions, 4 deletions
diff --git a/sys/arch/zaurus/conf/GENERIC b/sys/arch/zaurus/conf/GENERIC index 092ded82753..08ac78e8395 100644 --- a/sys/arch/zaurus/conf/GENERIC +++ b/sys/arch/zaurus/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.23 2005/01/25 21:16:57 drahn Exp $ +# $OpenBSD: GENERIC,v 1.24 2005/01/26 06:34:53 uwe Exp $ # # GENERIC machine description file # @@ -182,6 +182,9 @@ ukphy* at mii? # "unknown" PHYs lcd0 at pxaip? wsdisplay* at lcd? console ? +# Dedicated SSP unit for ADC, touch screen, and backlight +zssp0 at pxaip? + # APM emulation apm0 at pxaip? diff --git a/sys/arch/zaurus/conf/RAMDISK b/sys/arch/zaurus/conf/RAMDISK index 00335981668..9ddf56b7633 100644 --- a/sys/arch/zaurus/conf/RAMDISK +++ b/sys/arch/zaurus/conf/RAMDISK @@ -1,4 +1,4 @@ -# $OpenBSD: RAMDISK,v 1.17 2005/01/20 23:34:36 uwe Exp $ +# $OpenBSD: RAMDISK,v 1.18 2005/01/26 06:34:53 uwe Exp $ # # GENERIC machine description file # @@ -162,6 +162,9 @@ ukphy* at mii? # "unknown" PHYs lcd0 at pxaip? wsdisplay* at lcd? console ? +# Dedicated SSP unit for ADC, touch screen, and backlight +zssp0 at pxaip? + # APM emulation apm0 at pxaip? diff --git a/sys/arch/zaurus/conf/files.zaurus b/sys/arch/zaurus/conf/files.zaurus index defaaf6e15b..ea706f82b13 100644 --- a/sys/arch/zaurus/conf/files.zaurus +++ b/sys/arch/zaurus/conf/files.zaurus @@ -1,4 +1,4 @@ -# $OpenBSD: files.zaurus,v 1.13 2005/01/20 23:34:36 uwe Exp $ +# $OpenBSD: files.zaurus,v 1.14 2005/01/26 06:34:53 uwe Exp $ # # First try for arm-specific configuration info # @@ -38,9 +38,14 @@ device scoop attach scoop at pxaip with scoop_pxaip file arch/zaurus/dev/zaurus_scoop.c scoop +# Dedicated SSP unit for ADC, touch screen, and backlight +device zssp +attach zssp at pxaip +file arch/zaurus/dev/zaurus_ssp.c zssp + # Power manager and APM emulation attach apm at pxaip with apm_pxaip -file arch/zaurus/zaurus/zaurus_apm.c apm_pxaip +file arch/zaurus/dev/zaurus_apm.c apm_pxaip # # Machine-independent ATA drivers |