Arvin Farahmand | 419b103 | 2021-05-02 20:49:04 -0400 | [diff] [blame] | 1 | # MDIO configuration options |
| 2 | |
| 3 | # Copyright (c) 2021 IP-Logix Inc. |
| 4 | # SPDX-License-Identifier: Apache-2.0 |
| 5 | |
| 6 | # |
| 7 | # MDIO options |
| 8 | # |
| 9 | menuconfig MDIO |
| 10 | bool "MDIO Drivers" |
| 11 | help |
| 12 | Enable MDIO Driver Configuration |
| 13 | |
| 14 | if MDIO |
| 15 | |
Arvin Farahmand | 2bec758 | 2021-05-02 20:59:07 -0400 | [diff] [blame] | 16 | config 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 Farahmand | 419b103 | 2021-05-02 20:49:04 -0400 | [diff] [blame] | 26 | # Include these first so that any properties (e.g. defaults) below can be |
| 27 | # overridden (by defining symbols in multiple locations) |
Arvin Farahmand | c4cb45e | 2021-05-02 20:58:22 -0400 | [diff] [blame] | 28 | source "drivers/mdio/Kconfig.sam" |
Arvin Farahmand | 419b103 | 2021-05-02 20:49:04 -0400 | [diff] [blame] | 29 | |
| 30 | config MDIO_INIT_PRIORITY |
| 31 | int "Init priority" |
| 32 | default 60 |
| 33 | help |
| 34 | MDIO device driver initialization priority. |
| 35 | |
| 36 | |
| 37 | module = MDIO |
| 38 | module-str = mdio |
| 39 | source "subsys/logging/Kconfig.template.log_config" |
| 40 | |
| 41 | endif # MDIO |