svn commit: r336214 - head/sys/conf

Ian Lepore ian at FreeBSD.org
Wed Jul 11 22:23:51 UTC 2018


Author: ian
Date: Wed Jul 11 22:23:50 2018
New Revision: 336214
URL: https://svnweb.freebsd.org/changeset/base/336214

Log:
  Add various spi devices to NOTES.  Add some required options for building
  the cqspi and n25q drivers.

Modified:
  head/sys/conf/NOTES
  head/sys/conf/files

Modified: head/sys/conf/NOTES
==============================================================================
--- head/sys/conf/NOTES	Wed Jul 11 21:53:04 2018	(r336213)
+++ head/sys/conf/NOTES	Wed Jul 11 22:23:50 2018	(r336214)
@@ -3045,5 +3045,12 @@ options 	UINPUT_DEBUG	# enable uinput debug msgs
 # Encrypted kernel crash dumps.
 options 	EKCD
 
+# Serial Peripheral Interface (SPI) support.
+device		spibus		# Bus support.
+device		at45d		# DataFlash driver
+device		cqspi		# 
+device		mx25l		# SPIFlash driver
+device		n25q		# 
+device		spigen		# Generic access to SPI devices from userland.
 # Enable legacy /dev/spigenN name aliases for /dev/spigenX.Y devices.
 options 	SPIGEN_LEGACY_CDEVNAME # legacy device names for spigen

Modified: head/sys/conf/files
==============================================================================
--- head/sys/conf/files	Wed Jul 11 21:53:04 2018	(r336213)
+++ head/sys/conf/files	Wed Jul 11 22:23:50 2018	(r336214)
@@ -1785,10 +1785,10 @@ dev/firewire/if_fwip.c		optional fwip
 dev/firewire/sbp.c		optional sbp
 dev/firewire/sbp_targ.c		optional sbp_targ
 dev/flash/at45d.c		optional at45d
-dev/flash/cqspi.c		optional cqspi
+dev/flash/cqspi.c		optional cqspi fdt xdma
 dev/flash/mx25l.c		optional mx25l
-dev/flash/n25q.c		optional n25q
-dev/flash/qspi_if.m		optional cqspi | n25q
+dev/flash/n25q.c		optional n25q fdt
+dev/flash/qspi_if.m		optional cqspi fdt | n25q fdt
 dev/fxp/if_fxp.c		optional fxp
 dev/fxp/inphy.c			optional fxp
 dev/gem/if_gem.c		optional gem


More information about the svn-src-all mailing list