blob: d0f6dfe0dcf320f3b3df8c9a1551ff619b0505b4 [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001# SPDX-License-Identifier: GPL-2.0-only
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002#
3# Microchip network device configuration
4#
5
6config NET_VENDOR_MICROCHIP
7 bool "Microchip devices"
8 default y
Olivier Deprez157378f2022-04-04 15:47:50 +02009 help
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000010 If you have a network (Ethernet) card belonging to this class, say Y.
11
12 Note that the answer to this question doesn't directly affect the
13 kernel: saying N will just cause the configurator to skip all
14 the questions about Microchip cards. If you say Y, you will be asked
15 for your specific card in the following questions.
16
17if NET_VENDOR_MICROCHIP
18
19config ENC28J60
20 tristate "ENC28J60 support"
21 depends on SPI
22 select CRC32
Olivier Deprez157378f2022-04-04 15:47:50 +020023 help
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000024 Support for the Microchip EN28J60 ethernet chip.
25
26 To compile this driver as a module, choose M here. The module will be
27 called enc28j60.
28
29config ENC28J60_WRITEVERIFY
30 bool "Enable write verify"
31 depends on ENC28J60
Olivier Deprez157378f2022-04-04 15:47:50 +020032 help
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000033 Enable the verify after the buffer write useful for debugging purpose.
34 If unsure, say N.
35
36config ENCX24J600
37 tristate "ENCX24J600 support"
38 depends on SPI
Olivier Deprez157378f2022-04-04 15:47:50 +020039 help
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000040 Support for the Microchip ENC424J600/624J600 ethernet chip.
41
42 To compile this driver as a module, choose M here. The module will be
43 called encx24j600.
44
45config LAN743X
46 tristate "LAN743x support"
47 depends on PCI
48 select PHYLIB
49 select CRC16
Olivier Deprez157378f2022-04-04 15:47:50 +020050 select CRC32
51 help
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000052 Support for the Microchip LAN743x PCI Express Gigabit Ethernet chip
53
54 To compile this driver as a module, choose M here. The module will be
55 called lan743x.
56
57endif # NET_VENDOR_MICROCHIP