svn commit: r270103 - head/sys/arm/conf

Warner Losh imp at FreeBSD.org
Sun Aug 17 16:53:10 UTC 2014


Author: imp
Date: Sun Aug 17 16:53:10 2014
New Revision: 270103
URL: http://svnweb.freebsd.org/changeset/base/270103

Log:
  Convert the HL201 config file to use FDT.

Modified:
  head/sys/arm/conf/HL201

Modified: head/sys/arm/conf/HL201
==============================================================================
--- head/sys/arm/conf/HL201	Sun Aug 17 16:40:29 2014	(r270102)
+++ head/sys/arm/conf/HL201	Sun Aug 17 16:53:10 2014	(r270103)
@@ -23,8 +23,6 @@ ident		HL201
 
 include "../at91/std.hl201"
 
-#To statically compile in device wiring instead of /boot/device.hints
-hints		"HL201.hints"
 makeoptions	MODULES_OVERRIDE=""
 
 makeoptions	DEBUG=-g		# Build kernel with gdb(1) debug symbols
@@ -76,8 +74,14 @@ device		loop
 device		ether
 device		uart
 device		ate
+device		at91_wdt
 device		mii
-#device		lxtphy
+device		lxtphy
+
+# I2C
+device		at91_twi	# Atmel AT91 Two-wire Interface
+device		iic		# I2C generic I/O device driver
+device		iicbus		# I2C bus system
 
 # Debugging for use in -current
 #options 	INVARIANTS		# Enable calls of extra sanity checking
@@ -105,7 +109,7 @@ device		miibus
 #device		cue			# CATC USB Ethernet
 #device		kue			# Kawasaki LSI USB Ethernet
 #device		rue			# RealTek RTL8150 USB Ethernet
-device		udav			# Davicom DM9601E USB
+#device		udav			# Davicom DM9601E USB
 # USB Wireless
 #device		rum			# Ralink Technology RT2501USB wireless NICs
 #device		uath			# Atheros AR5523 wireless NICs
@@ -127,10 +131,16 @@ options 	ROOTDEVNAME=\"ufs:da0s1a\"
 # NAND Flash - my board as 128MB Samsung part, YMMV.
 device		nand			# NAND interface on CS3
 
+# SPI: Data Flash
+device		at91_spi		# SPI:
+device		spibus
+device		at45d			# at45db642 and maybe others
+
+
 # Coming soon, but not yet
-#options 	FDT
-#options 	FDT_DTB_STATIC
-#makeoptions	FDT_DTS_FILE=hl201.dts
+options 	FDT
+options 	FDT_DTB_STATIC
+makeoptions	FDT_DTS_FILE=hl201.dts
 
 options 	EARLY_PRINTF
 options  	SOCDEV_PA=0xfc000000


More information about the svn-src-all mailing list