blob: b38ac8270d767ef1aba92a1a5e4327f1b0747924 [file] [log] [blame]
Arvin Farahmand419b1032021-05-02 20:49:04 -04001# MDIO configuration options
2
3# Copyright (c) 2021 IP-Logix Inc.
4# SPDX-License-Identifier: Apache-2.0
5
6#
7# MDIO options
8#
9menuconfig MDIO
10 bool "MDIO Drivers"
11 help
12 Enable MDIO Driver Configuration
13
14if MDIO
15
Arvin Farahmand2bec7582021-05-02 20:59:07 -040016config MDIO_SHELL
17 bool "Enable MDIO Shell"
18 default y
19 depends on SHELL
20 help
21 Enable MDIO Shell.
22
23 The MDIO shell currently supports scanning and device
24 read/write.
25
Arvin Farahmand419b1032021-05-02 20:49:04 -040026# Include these first so that any properties (e.g. defaults) below can be
27# overridden (by defining symbols in multiple locations)
Arvin Farahmandc4cb45e2021-05-02 20:58:22 -040028source "drivers/mdio/Kconfig.sam"
Arvin Farahmand419b1032021-05-02 20:49:04 -040029
30config MDIO_INIT_PRIORITY
31 int "Init priority"
32 default 60
33 help
34 MDIO device driver initialization priority.
35
36
37module = MDIO
38module-str = mdio
39source "subsys/logging/Kconfig.template.log_config"
40
41endif # MDIO