diff options
author | imp <imp@FreeBSD.org> | 2014-01-24 16:56:27 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2014-01-24 16:56:27 +0000 |
commit | bebd1eced1c2bf350e970e9a18e3742b10aa5481 (patch) | |
tree | 6907cada1f9d3abe53ceb61e0cac63a759288472 | |
parent | e97be4e538f370f28824f2245f29cab87a60bc7c (diff) | |
download | FreeBSD-src-bebd1eced1c2bf350e970e9a18e3742b10aa5481.zip FreeBSD-src-bebd1eced1c2bf350e970e9a18e3742b10aa5481.tar.gz |
Add NAND support
Fix comment
This board has 4 wire support
-rw-r--r-- | sys/arm/conf/SAM9G20EK | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/sys/arm/conf/SAM9G20EK b/sys/arm/conf/SAM9G20EK index 9a3921d..d9f0315 100644 --- a/sys/arm/conf/SAM9G20EK +++ b/sys/arm/conf/SAM9G20EK @@ -37,7 +37,8 @@ options FFS #Berkeley Fast Filesystem #options UFS_ACL #Support for access control lists #options UFS_DIRHASH #Improve performance on big directories #options MD_ROOT #MD is a potential root device -#options MD_ROOT_SIZE=4096 # 3MB ram disk +#options MD_ROOT_SIZE=4096 # 4MB ram disk +options NANDFS #NAND file system options NFSCL #New Network Filesystem Client #options NFSD #New Network Filesystem Server #options NFSLOCKD #Network Lock Manager @@ -91,6 +92,9 @@ option AT91_ATE_USE_RMII device at91_twi # TWI: Two Wire Interface (EEPROM) device at91_wdt # WDT: Watchdog timer +# NAND Flash - Reference design has Samsung 256MB but others possible +device nand # NAND interface on CS3 + # NOTE: SPI DataFlash and mci/mmc/mmcsd have hardware # confilict on this card. Use one or the other. # see board_sam9g20ek.c @@ -105,7 +109,7 @@ device at91_mci device mmc device mmcsd option AT91_MCI_SLOT_B -#option AT91_MCI_HAS_4WIRE +option AT91_MCI_HAS_4WIRE # iic device iic @@ -128,14 +132,14 @@ device uhid # "Human Interface Devices" #device udbp # USB Double Bulk Pipe devices # USB Ethernet, requires miibus -device miibus +#device miibus #device aue # ADMtek USB Ethernet #device axe # ASIX Electronics USB Ethernet #device cdce # Generic USB over Ethernet #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 @@ -149,4 +153,3 @@ device udav # Davicom DM9601E USB #device wlan_ccmp # 802.11 CCMP support #device wlan_tkip # 802.11 TKIP support #device wlan_amrr # AMRR transmit rate control algorithm - |