diff options
author | 2020-04-29 19:30:58 +0000 | |
---|---|---|
committer | 2020-04-29 19:30:58 +0000 | |
commit | 6b11603a2abad06b22e24ec6cf610ab8035106a9 (patch) | |
tree | afd83cd6868dffd71265559e4ff95da76e3d87b3 | |
parent | Enable the trickle charger after setting the control register. (diff) | |
download | wireguard-openbsd-6b11603a2abad06b22e24ec6cf610ab8035106a9.tar.xz wireguard-openbsd-6b11603a2abad06b22e24ec6cf610ab8035106a9.zip |
Enable a bunch of drivers needed for full Raspberry Pi 2/3 support.
-rw-r--r-- | sys/arch/armv7/conf/GENERIC | 22 | ||||
-rw-r--r-- | sys/arch/armv7/conf/RAMDISK | 10 |
2 files changed, 28 insertions, 4 deletions
diff --git a/sys/arch/armv7/conf/GENERIC b/sys/arch/armv7/conf/GENERIC index bec98090e42..7a1708f0f00 100644 --- a/sys/arch/armv7/conf/GENERIC +++ b/sys/arch/armv7/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.130 2020/04/27 20:40:15 kettenis Exp $ +# $OpenBSD: GENERIC,v 1.131 2020/04/29 19:30:58 kettenis Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -167,10 +167,20 @@ exrtc* at fdt? exuart* at fdt? # Raspberry Pi 2/3 +bcmaux* at fdt? early 1 +bcmbsc* at fdt? +iic* at bcmbsc? bcmclock* at fdt? early 1 +bcmdmac* at fdt? early 1 bcmdog* at fdt? +bcmgpio* at fdt? early 1 +gpio* at bcmgpio? bcmintc* at fdt? early 1 bcmmbox* at fdt? early 1 +bcmrng* at fdt? +bcmsdhost* at fdt? +sdmmc* at bcmsdhost? +bcmtemp* at fdt? dwctwo* at fdt? usb* at dwctwo? @@ -201,11 +211,17 @@ iic* at rkiic? rktemp* at fdt? dwdog* at fdt? +# I2C devices +abcrtc* at iic? # Abracon x80x RTC axppmic* at iic? # axp209 pmic crosec* at iic? wskbd* at crosec? mux 1 -pcfrtc* at iic? -pcxrtc* at iic? +dsxrtc* at iic? # DS3231 RTC +islrtc* at iic? # ISL1208 RTC +maxrtc* at iic? # DS1307 RTC +mcprtc* at iic? # MCP794XX RTC +pcfrtc* at iic? # PCF8523 RTC +pcxrtc* at iic? # PCF8563 RTC rkpmic* at iic? # RK808 PMIC tpspmic* at iic? pcagpio* at iic? diff --git a/sys/arch/armv7/conf/RAMDISK b/sys/arch/armv7/conf/RAMDISK index e306a0f5c92..8c9af0946ed 100644 --- a/sys/arch/armv7/conf/RAMDISK +++ b/sys/arch/armv7/conf/RAMDISK @@ -1,4 +1,4 @@ -# $OpenBSD: RAMDISK,v 1.117 2020/04/27 20:40:15 kettenis Exp $ +# $OpenBSD: RAMDISK,v 1.118 2020/04/29 19:30:58 kettenis Exp $ machine armv7 arm @@ -154,10 +154,18 @@ exrtc* at fdt? exuart* at fdt? # Raspberry Pi 2/3 +bcmaux* at fdt? early 1 +bcmbsc* at fdt? +iic* at bcmbsc? bcmclock* at fdt? early 1 bcmdog* at fdt? +bcmdmac* at fdt? early 1 +bcmgpio* at fdt? early 1 bcmintc* at fdt? early 1 bcmmbox* at fdt? early 1 +bcmrng* at fdt? +bcmsdhost* at fdt? +sdmmc* at bcmsdhost? dwctwo* at fdt? usb* at dwctwo? |