ac74d8b652
Replace the existing Apache 2.0 boilerplate header with an SPDX tag throughout the zephyr code tree. This patch was generated via a script run over the master branch. Also updated doc/porting/application.rst that had a dependency on line numbers in a literal include. Manually updated subsys/logging/sys_log.c that had a malformed header in the original file. Also cleanup several cases that already had a SPDX tag and we either got a duplicate or missed updating. Jira: ZEP-1457 Change-Id: I6131a1d4ee0e58f5b938300c2d2fc77d2e69572c Signed-off-by: David B. Kinder <david.b.kinder@intel.com> Signed-off-by: Kumar Gala <kumar.gala@linaro.org>
108 lines
2.3 KiB
Plaintext
108 lines
2.3 KiB
Plaintext
# Kconfig - ETH_ENC28J60 Ethernet driver configuration options
|
|
|
|
#
|
|
# Copyright (c) 2015 Intel Corporation
|
|
#
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
|
|
menuconfig ETH_ENC28J60
|
|
bool "ENC28J60C Ethernet Controller"
|
|
depends on NET_L2_ETHERNET
|
|
depends on SPI
|
|
default n
|
|
help
|
|
ENC28J60C Stand-Alone Ethernet Controller
|
|
with SPI Interface
|
|
|
|
config ETH_ENC28J60_RX_THREAD_STACK_SIZE
|
|
int "Stack size for internal incoming packet handler"
|
|
depends on ETH_ENC28J60
|
|
default 800
|
|
help
|
|
Size of the stack used for internal thread which is ran for
|
|
incoming packet processing.
|
|
|
|
config ETH_ENC28J60_RX_THREAD_PRIO
|
|
int "Priority for internal incoming packet handler"
|
|
depends on ETH_ENC28J60
|
|
default 2
|
|
help
|
|
Priority level for internal thread which is ran for incoming
|
|
packet processing.
|
|
|
|
config ETH_ENC28J60_0
|
|
bool "ENC28J60C Ethernet port 0"
|
|
depends on ETH_ENC28J60
|
|
default n
|
|
help
|
|
Include port 0 driver
|
|
|
|
if ETH_ENC28J60 && ETH_ENC28J60_0
|
|
config ETH_ENC28J60_0_NAME
|
|
string "Driver's name"
|
|
default "ETH_0"
|
|
|
|
config ETH_EN28J60_0_FULL_DUPLEX
|
|
bool "ENC28J60 full duplex"
|
|
default y
|
|
help
|
|
Enable Full Duplex. Device is configured half duplex
|
|
when disabled.
|
|
|
|
config ETH_ENC28J60_0_GPIO_PORT_NAME
|
|
string "GPIO controller port name"
|
|
default "GPIO_0"
|
|
help
|
|
GPIO port name through which ENC28J60C interruption is received.
|
|
|
|
config ETH_ENC28J60_0_GPIO_PIN
|
|
int "ENC28J60C INT GPIO PIN"
|
|
default 24
|
|
help
|
|
GPIO pin number used to conect INT
|
|
|
|
config ETH_ENC28J60_0_SPI_PORT_NAME
|
|
string "SPI master controller port name"
|
|
default "SPI_0"
|
|
help
|
|
Master SPI port name through which ENC28J60C chip is accessed.
|
|
|
|
config ETH_ENC28J60_0_SLAVE
|
|
hex "ETH_ENC28J60 SPI slave select pin"
|
|
default 1
|
|
help
|
|
ENC28J60C chip select pin.
|
|
|
|
config ETH_ENC28J60_0_SPI_BUS_FREQ
|
|
int "ENC28J60C SPI bus speed in Hz"
|
|
default 128
|
|
help
|
|
This is the maximum supported SPI bus frequency.
|
|
|
|
config ETH_ENC28J60_0_MAC3
|
|
hex "MAC Address Byte 3"
|
|
default 0
|
|
help
|
|
MACADDR<0:23> are Microchip's OUI.
|
|
This is the byte 3 of the MAC address.
|
|
MACADDR<31:24>
|
|
|
|
config ETH_ENC28J60_0_MAC4
|
|
hex "MAC Address Byte 4"
|
|
default 0
|
|
help
|
|
MACADDR<0:23> are Microchip's OUI.
|
|
This is the byte 4 of the MAC address.
|
|
MACADDR<40:32>
|
|
|
|
config ETH_ENC28J60_0_MAC5
|
|
hex "MAC Address Byte 5"
|
|
default 0
|
|
help
|
|
MACADDR<0:23> are Microchip's OUI.
|
|
This is the byte 5 of the MAC address.
|
|
MACADDR<48:41>
|
|
|
|
endif #ETH_ENC28J60 && ETH_ENC28J60_0
|