| # Kconfig - Synopsys DesignWare Ethernet driver configuration options |
| # Copyright (c) 2016 Intel Corporation |
| # SPDX-License-Identifier: Apache-2.0 |
| prompt "Synopsys DesignWare Ethernet driver" |
| depends on NET_L2_ETHERNET |
| Enable Synopsys DesignWare Ethernet driver. |
| bool "Synopsys DesignWare Ethernet port 0" |
| prompt "Port 0 Interrupts via" |
| default ETH_DW_0_IRQ_SHARED |
| config ETH_DW_0_IRQ_DIRECT |
| bool "Direct Hardware Interrupt" |
| When interrupts fire, the driver's ISR function is being called directly. |
| config ETH_DW_0_IRQ_SHARED |
| When interrupts fire, the shared IRQ driver is notified. Then the shared IRQ |
| driver dispatches the interrupt to other drivers. |
| config ETH_DW_0_IRQ_SHARED_NAME |
| string "Device name for Shared IRQ" |
| depends on ETH_DW_0 && ETH_DW_0_IRQ_SHARED |
| Specify the device name for the shared IRQ driver. It is used to register |
| this driver with the shared IRQ driver, so interrupts can be dispatched |
| int "Controller interrupt priority" |
| depends on ETH_DW_0 && ETH_DW_0_IRQ_DIRECT |