zephyr/subsys/net/l2/ethernet/gptp/Kconfig
Ulf Magnusson 1073882998 subsys: kconfig: Remove 'default n' properties and clean up a bit
Bool symbols implicitly default to 'n'.

A 'default n' can make sense e.g. in a Kconfig.defconfig file, if you
want to override a 'default y' on the base definition of the symbol. It
isn't used like that on any of these symbols though.

Remove some 'default ""' properties on string symbols too.

Also make definitions more consistent by converting some

  config FOO
  	<type>
  	prompt "foo"

definitions to a shorter form:

  config FOO
  	<type> "foo"

This shorthand works for int/hex/string symbols too, not just for bool
symbols.

Signed-off-by: Ulf Magnusson <Ulf.Magnusson@nordicsemi.no>
2018-07-12 23:13:22 -04:00

122 lines
3.7 KiB
Text

#
# Copyright (c) 2018 Intel Corporation.
#
# SPDX-License-Identifier: Apache-2.0
#
menuconfig NET_GPTP
bool "Enable IEEE 802.1AS (gPTP) support [EXPERIMENTAL]"
depends on NET_L2_ETHERNET
select NET_PKT_TIMESTAMP
select PTP_CLOCK
help
Enable gPTP driver that send and receives gPTP packets
and handles network packet timestamps.
if NET_GPTP
config NET_DEBUG_GPTP
bool "Enable Debug Information for gPTP"
depends on NET_LOG
help
Enable logs for the gPTP stack.
config NET_GPTP_NUM_PORTS
int "Number of gPTP ports"
default 1
help
Configures the gPTP stack to work with the given number of ports.
The port concept is the same thing as network interface.
config NET_GPTP_VLAN
bool "Run gPTP over VLAN link"
depends on NET_VLAN
select NET_L2_ETHERNET_MGMT
select NET_MGMT_EVENT
select NET_MGMT_EVENT_INFO
help
This setting allows gPTP to run over VLAN link. Currently only
one port can have VLAN tag set. Note that CONFIG_NET_GPTP_VLAN_TAG
setting must have a proper tag value set, otherwise the gPTP over
VLAN will not work.
config NET_GPTP_VLAN_TAG
int "VLAN tag to use"
default 4095
depends on NET_GPTP_VLAN
help
The VLAN tag to use when sending and receiving gPTP messages.
The default value 4095 (0x0fff) means unspecified tag which is
not a valid value. This means that you need to set the tag to
a valid value.
config NET_GPTP_NEIGHBOR_PROP_DELAY_THR
int "Set neighbor propagation delay threshold (ns)"
default 100000
help
Defines the neighbor propagation delay threshold in nanoseconds.
This is the propagation time threshold, above which a port is not
considered capable of participating in the IEEE 802.1AS protocol.
See IEEE 802.1AS chapter 11.2.12.6 for details.
config NET_GPTP_INIT_LOG_PDELAY_REQ_ITV
int "Set initial pdelay request interval in Log2 base"
default 0
help
Defines the interval at which a Path Delay Request will be sent.
The value is the converted in nanoseconds as follow:
nanoseconds = (10^9) * 2^(16 + value)
config NET_GPTP_INIT_LOG_SYNC_ITV
int "Set initial sync interval in Log2 base"
default -3
help
Defines the interval at which a Sync message will be sent.
The value is the converted in nanoseconds as follow:
nanoseconds = (10^9) * 2^(16 + value)
config NET_GPTP_INIT_LOG_ANNOUNCE_ITV
int "Set initial announce interval in Log2 base"
default 0
help
Defines the interval at which an Announce message will be sent.
The value is the converted in nanoseconds as follow:
nanoseconds = (10^9) * 2^(16 + value)
config NET_GPTP_SYNC_RECEIPT_TIMEOUT
int "Number of sync intervals to wait"
default 6
help
Defines the number of sync intervals to wait without receiving
synchronization information before assuming that the master is no
longer transmitting synchronization information.
config NET_GPTP_ANNOUNCE_RECEIPT_TIMEOUT
int "Number of announce intervals to wait"
default 3
help
Defines the number of announce intervals to wait without receiving
an Announce message before assuming that the master is no longer
transmitting Announce messages.
config NET_GPTP_USE_DEFAULT_CLOCK_UPDATE
bool "Use a default clock update function"
default y
help
Use a default internal function to update port local clock.
config NET_GPTP_PATH_TRACE_ELEMENTS
int "How many path trace elements to track"
default 8
help
This tells the number of time-aware systems that transmits the
Announce message. Each array element takes 8 bytes. If this value
is set to 8, then 8 * 8 = 64 bytes of memory is used.
config NET_GPTP_STATISTICS
bool "Collect gPTP statistics"
help
Enable this if you need to collect gPTP statistics. The statistics
can be seen in net-shell if needed.
endif