summaryrefslogtreecommitdiff
path: root/nuttx/drivers/net
diff options
context:
space:
mode:
authorpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-13 14:27:44 +0000
committerpatacongo <patacongo@42af7a65-404d-4744-a932-0658087f49c3>2012-04-13 14:27:44 +0000
commit39d5b50acfe2e80d151169bf39defd8836352fbc (patch)
tree7ce0182627d159e85327377b15872ee5947ab487 /nuttx/drivers/net
parent9f46571a0abc4f66c5a26859ed93b885587c8c6b (diff)
downloadpx4-nuttx-39d5b50acfe2e80d151169bf39defd8836352fbc.tar.gz
px4-nuttx-39d5b50acfe2e80d151169bf39defd8836352fbc.tar.bz2
px4-nuttx-39d5b50acfe2e80d151169bf39defd8836352fbc.zip
Kconfig update
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@4599 42af7a65-404d-4744-a932-0658087f49c3
Diffstat (limited to 'nuttx/drivers/net')
-rw-r--r--nuttx/drivers/net/Kconfig71
1 files changed, 71 insertions, 0 deletions
diff --git a/nuttx/drivers/net/Kconfig b/nuttx/drivers/net/Kconfig
index ae2bf3130..988b96c94 100644
--- a/nuttx/drivers/net/Kconfig
+++ b/nuttx/drivers/net/Kconfig
@@ -2,3 +2,74 @@
# For a description of the syntax of this configuration file,
# see misc/tools/kconfig-language.txt.
#
+config NET_DM90x0
+ bool "Davicom dm9000/dm9010 support"
+ default n
+ ---help---
+ References: Davicom data sheets (DM9000-DS-F03-041906.pdf,
+ DM9010-DS-F01-103006.pdf) and looking at lots of other DM90x0
+ drivers.
+
+config NET_CS89x0
+ bool "CS89x0 support"
+ default n
+ depends on EXPERIMENTAL
+ ---help---
+ Under construction -- do not use
+
+config ENC28J60
+ bool "Microchip ENC28J60 support"
+ default n
+ select SPI
+ ---help---
+ References:
+ ENC28J60 Data Sheet, Stand-Alone Ethernet Controller with SPI Interface,
+ DS39662C, 2008 Microchip Technology Inc.
+if ENC28J60
+config ENC28J60_NINTERFACES
+ int "Number of physical ENC28J60"
+ default 1
+ range 1,1
+ ---help---
+ Specifies the number of physical ENC28J60
+ devices that will be supported.
+
+config ENC28J60_SPIMODE
+ int "SPI mode"
+ default 2
+ ---help---
+ Controls the SPI mode
+
+config ENC28J60_FREQUENCY
+ int "SPI frequency"
+ default 20000000
+ ---help---
+ Define to use a different bus frequency
+
+config ENC28J60_STATS
+ bool "Network statistics support"
+ default n
+ ---help---
+ Collect network statistics
+
+config ENC28J60_HALFDUPPLEX
+ bool "Enable half dupplex"
+ default n
+ ---help---
+ Default is full duplex
+endif
+
+config NET_E1000
+ bool "E1000 support"
+ default n
+
+config NET_SLIP
+ bool "SLIP (serial line) support"
+ default n
+ ---help---
+ Reference: RFC 1055
+
+config NET_VNET
+ bool "VNET support"
+ default n
+