diff options
author | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-07-30 08:14:46 +0000 |
---|---|---|
committer | Patrick Wildt <patrick@cvs.openbsd.org> | 2018-07-30 08:14:46 +0000 |
commit | beb4447c9aea630cdb9da5988f66108016bf1000 (patch) | |
tree | 2c55cbb45083480cd62e43870851a19a61d66ef9 /sys/arch/armv7 | |
parent | c544a5e4b14b29b5e4e9c4e1cb7586431b24b519 (diff) |
Add ssdfb(4), a driver for the SSD1309 controller that drives an
128x64 OLED display. With the typical 8x16 font we get 4 rows with
16 characters each on it. The controller can be driven using I2C,
3-wire and 4-wire SPI. This commit includes support for the 4-wire
protocol.
ok deraadt@
Diffstat (limited to 'sys/arch/armv7')
-rw-r--r-- | sys/arch/armv7/conf/GENERIC | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/armv7/conf/GENERIC b/sys/arch/armv7/conf/GENERIC index 6f43b436c54..e697def5b8c 100644 --- a/sys/arch/armv7/conf/GENERIC +++ b/sys/arch/armv7/conf/GENERIC @@ -1,4 +1,4 @@ -# $OpenBSD: GENERIC,v 1.114 2018/07/26 10:59:07 patrick Exp $ +# $OpenBSD: GENERIC,v 1.115 2018/07/30 08:14:45 patrick Exp $ # # For further information on compiling OpenBSD kernels, see the config(8) # man page. @@ -60,6 +60,8 @@ imxehci* at fdt? # EHCI usb* at imxehci? imxrtc* at fdt? # SNVS RTC imxspi* at fdt? +ssdfb* at spi? +wsdisplay* at ssdfb? # OMAP3xxx/OMAP4xxx SoC omap0 at mainbus? |