blob: 3f2fd3979260915c622965c11e5a420e0a1b3bee [file] [log] [blame]
Lennert Buytenhek91da11f2008-10-07 13:44:02 +00001menuconfig NET_DSA
2 bool "Distributed Switch Architecture support"
3 default n
4 depends on EXPERIMENTAL
5 ---help---
6 This allows you to use hardware switch chips that use
7 the Distributed Switch Architecture.
8
9
10if NET_DSA
11
12# tagging formats
Lennert Buytenhekcf85d082008-10-07 13:45:02 +000013config NET_DSA_TAG_DSA
14 bool
15 default n
16
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000017config NET_DSA_TAG_EDSA
18 bool
19 default n
20
Lennert Buytenhek396138f02008-10-07 13:46:07 +000021config NET_DSA_TAG_TRAILER
22 bool
23 default n
24
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000025
26# switch drivers
27config NET_DSA_MV88E6XXX
28 bool
29 default n
30
Lennert Buytenhek2e16a772008-10-07 13:46:22 +000031config NET_DSA_MV88E6060
32 bool "Marvell 88E6060 ethernet switch chip support"
33 select NET_DSA_TAG_TRAILER
34 ---help---
35 This enables support for the Marvell 88E6060 ethernet switch
36 chip.
37
Lennert Buytenhek2e5f0322008-10-07 13:45:18 +000038config NET_DSA_MV88E6XXX_NEED_PPU
39 bool
40 default n
41
42config NET_DSA_MV88E6131
43 bool "Marvell 88E6131 ethernet switch chip support"
44 select NET_DSA_MV88E6XXX
45 select NET_DSA_MV88E6XXX_NEED_PPU
46 select NET_DSA_TAG_DSA
47 ---help---
48 This enables support for the Marvell 88E6131 ethernet switch
49 chip.
50
Lennert Buytenhek91da11f2008-10-07 13:44:02 +000051config NET_DSA_MV88E6123_61_65
52 bool "Marvell 88E6123/6161/6165 ethernet switch chip support"
53 select NET_DSA_MV88E6XXX
54 select NET_DSA_TAG_EDSA
55 ---help---
56 This enables support for the Marvell 88E6123/6161/6165
57 ethernet switch chips.
58
59endif