diff options
author | Mark Kettenis <kettenis@cvs.openbsd.org> | 2017-07-23 19:26:04 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@cvs.openbsd.org> | 2017-07-23 19:26:04 +0000 |
commit | b16763e8426f8e7c392dfe236b4910a3d79eac03 (patch) | |
tree | 3886600b57ccc417f4c4846e963c4caea2024e84 /sys/arch/armv7 | |
parent | 7f5f770dcb6b8b75129680fc85b3d1c7797b1e38 (diff) |
Add sxitwi(4), a driver for the (i2c compatible) two-wire bus found on
several Allwinner SoCs. From Artturi Alm, based on code from NetBSD.
Also add axppmic(4), a driver for the AXP209 i2c PMIC, which provides
power down support. Written by Artturi Alm.
Diffstat (limited to 'sys/arch/armv7')
-rw-r--r-- | sys/arch/armv7/conf/GENERIC | 5 | ||||
-rw-r--r-- | sys/arch/armv7/conf/RAMDISK | 5 |
2 files changed, 8 insertions, 2 deletions
diff --git a/sys/arch/armv7/conf/GENERIC b/sys/arch/armv7/conf/GENERIC index af71a6c4835..8b10acdb114 100644 --- a/sys/arch/armv7/conf/GENERIC +++ b/sys/arch/armv7/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.83 2017/05/21 17:44:52 kettenis Exp $ +# $OpenBSD: GENERIC,v 1.84 2017/07/23 19:26:03 kettenis Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -99,6 +99,8 @@ ehci* at fdt? # EHCI (shim) usb* at ehci? #flags 0x1 #ohci* at sunxi? #usb* at ohci? +sxitwi* at fdt? # Two-Wire Serial Interface +iic* at sxitwi? # I2C bus # ARM Versatile Express sysreg* at fdt? @@ -148,6 +150,7 @@ mvxhci* at fdt? usb* at mvxhci? mvahci* at fdt? +axppmic* at iic? # axp209 pmic crosec* at iic? wskbd* at crosec? mux 1 pcfrtc* at iic? diff --git a/sys/arch/armv7/conf/RAMDISK b/sys/arch/armv7/conf/RAMDISK index 56e64893df6..59a5709cf72 100644 --- a/sys/arch/armv7/conf/RAMDISK +++ b/sys/arch/armv7/conf/RAMDISK @@ -1,4 +1,4 @@ -# $OpenBSD: RAMDISK,v 1.79 2017/07/05 14:58:59 visa Exp $ +# $OpenBSD: RAMDISK,v 1.80 2017/07/23 19:26:03 kettenis Exp $ machine armv7 arm @@ -99,6 +99,8 @@ ehci* at fdt? # EHCI (shim) usb* at ehci? #flags 0x1 #ohci* at sunxi? #usb* at ohci? +sxitwi* at fdt? # Two-Wire Serial Interface +iic* at sxitwi? # I2C bus # ARM Versatile Express sysreg* at fdt? @@ -145,6 +147,7 @@ mvxhci* at fdt? usb* at mvxhci? mvahci* at fdt? +axppmic* at iic? # axp209 pmic crosec* at iic? wskbd* at crosec? mux 1 pcfrtc* at iic? |