Loading...
1#
2# Renesas device configuration
3#
4
5config SH_ETH
6 tristate "Renesas SuperH Ethernet support"
7 depends on HAS_DMA
8 select CRC32
9 select MII
10 select MDIO_BITBANG
11 select PHYLIB
12 ---help---
13 Renesas SuperH Ethernet device driver.
14 This driver supporting CPUs are:
15 - SH7619, SH7710, SH7712, SH7724, SH7734, SH7763, SH7757,
16 R8A7740, R8A777x and R8A779x.
1# SPDX-License-Identifier: GPL-2.0
2#
3# Renesas device configuration
4#
5
6config NET_VENDOR_RENESAS
7 bool "Renesas devices"
8 default y
9 help
10 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 Renesas devices. If you say Y, you will be asked
15 for your specific device in the following questions.
16
17if NET_VENDOR_RENESAS
18
19config SH_ETH
20 tristate "Renesas SuperH Ethernet support"
21 depends on ARCH_RENESAS || SUPERH || COMPILE_TEST
22 select CRC32
23 select MII
24 select MDIO_BITBANG
25 select PHYLIB
26 help
27 Renesas SuperH Ethernet device driver.
28 This driver supporting CPUs are:
29 - SH7619, SH7710, SH7712, SH7724, SH7734, SH7763, SH7757,
30 R8A7740, R8A774x, R8A777x and R8A779x.
31
32config RAVB
33 tristate "Renesas Ethernet AVB support"
34 depends on ARCH_RENESAS || COMPILE_TEST
35 depends on PTP_1588_CLOCK_OPTIONAL
36 select CRC32
37 select MII
38 select MDIO_BITBANG
39 select PHYLIB
40 help
41 Renesas Ethernet AVB device driver.
42 This driver supports the following SoCs:
43 - R8A779x.
44
45config RENESAS_ETHER_SWITCH
46 tristate "Renesas Ethernet Switch support"
47 depends on ARCH_RENESAS || COMPILE_TEST
48 depends on PTP_1588_CLOCK_OPTIONAL
49 select CRC32
50 select MII
51 select PHYLINK
52 help
53 Renesas Ethernet Switch device driver.
54 This driver supports the following SoCs:
55 - R8A779Fx.
56
57endif # NET_VENDOR_RENESAS