2019-11-01 13:45:29 +01:00
|
|
|
# Intel(R) PRO/1000 Gigabit Ethernet driver configuration options
|
2018-07-31 11:44:34 +02:00
|
|
|
|
2019-12-22 12:33:44 +01:00
|
|
|
# Copyright (c) 2018-2019 Intel Corporation
|
2018-07-31 11:44:34 +02:00
|
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
|
|
menuconfig ETH_E1000
|
2019-02-26 21:12:10 +01:00
|
|
|
bool "Intel(R) PRO/1000 Gigabit Ethernet driver"
|
2022-08-09 17:46:31 +02:00
|
|
|
default y
|
|
|
|
depends on DT_HAS_INTEL_E1000_ENABLED
|
2019-04-19 00:47:36 +02:00
|
|
|
depends on PCIE
|
2018-07-31 11:44:34 +02:00
|
|
|
help
|
|
|
|
Enable Intel(R) PRO/1000 Gigabit Ethernet driver.
|
2018-10-16 13:27:21 +02:00
|
|
|
|
2021-09-15 10:44:04 +02:00
|
|
|
if ETH_E1000
|
|
|
|
|
2018-10-16 13:27:21 +02:00
|
|
|
config ETH_NIC_MODEL
|
|
|
|
string
|
|
|
|
default "e1000"
|
|
|
|
help
|
|
|
|
Tells what Qemu network model to use. This value is given as
|
|
|
|
a parameter to -nic qemu command line option.
|
2019-12-22 12:33:44 +01:00
|
|
|
|
|
|
|
config ETH_E1000_VERBOSE_DEBUG
|
2022-03-09 12:05:12 +01:00
|
|
|
bool "Hexdump of the received and sent frames"
|
2019-12-22 12:33:44 +01:00
|
|
|
help
|
|
|
|
Enabling this will turn on the hexdump of the received and sent
|
|
|
|
frames. Do not leave on for production.
|
2020-05-15 14:29:51 +02:00
|
|
|
|
|
|
|
config ETH_E1000_PTP_CLOCK
|
2022-03-09 12:05:12 +01:00
|
|
|
bool "PTP clock driver support [EXPERIMENTAL]"
|
2020-05-15 14:29:51 +02:00
|
|
|
depends on PTP_CLOCK
|
2021-10-15 14:23:18 +02:00
|
|
|
select EXPERIMENTAL
|
2020-05-15 14:29:51 +02:00
|
|
|
default y
|
|
|
|
help
|
|
|
|
Enable PTP clock support. This is still a dummy that is only used
|
|
|
|
for debugging and currently does not do any real PTP activities.
|
|
|
|
|
|
|
|
config ETH_E1000_PTP_CLOCK_SRC_HZ
|
|
|
|
int "Frequency of the clock source for the PTP timer"
|
|
|
|
default 50000000
|
|
|
|
depends on ETH_E1000_PTP_CLOCK
|
|
|
|
help
|
|
|
|
Set the frequency in Hz sourced to the PTP timer.
|
|
|
|
If the value is set properly, the timer will be accurate.
|
2021-09-15 10:44:04 +02:00
|
|
|
|
|
|
|
endif # ETH_E1000
|