-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathKconfig
57 lines (50 loc) · 1.63 KB
/
Kconfig
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
#
# Renesas device configuration
#
menuconfig AVB_STREAMING
bool "AVB Streaming"
depends on RAVB
default y
help
This option enable following features.
- Renesas Ethernet AVB Streaming APIs.
- Renesas Ethernet AVB Streaming APIs debug extention.
- Renesas Ethernet AVB extended statistics.
if AVB_STREAMING
config RAVB_STREAMING
tristate "Ethernet AVB Streaming API support"
depends on RAVB
default m
help
Renesas Ethernet AVB device driver.
Say 'Y' or 'M' to enable Ethernet AVB Streaming APIs.
This driver supports the following SoCs:
- R8A7795.
config RAVB_STREAMING_FTRACE_DESC
bool "Enable descriptor tracing in AVB Streaming API"
depends on RAVB_STREAMING && FUNCTION_TRACER
default n
help
Debug extension in the Ethernet AVB Streaming APIs.
Say 'Y' to enable the descriptor tracing, and driver
output the descriptor information to kernel tracer.
Say 'N', only basic trace information is enable.
config RAVB_STREAMING_FTRACE_LOCK
bool "Enable lock tracing in AVB Streaming API"
depends on RAVB_STREAMING && FUNCTION_TRACER
default n
help
Debug extension in the Ethernet AVB Streaming APIs.
Say 'Y' to enable the lock tracing, and driver
output the lock state to kernel tracer.
Say 'N', only basic trace information is enable.
config RAVB_EXT_STATS
tristate "Enable extended statistics"
depends on RAVB_STREAMING
default m
help
Enable the extended statistics in the Renesas Ethernet AVB
device driver. This is useful for show statistics in one list.
/proc/avb/network shows the network statistics.
/proc/avb/hw shows the hardware information of Ethernet AVB.
endif #AVB_STREAMING