1# 2# TI device configuration 3# 4 5config NET_VENDOR_TI 6 bool "Texas Instruments (TI) devices" 7 default y 8 depends on PCI || EISA || AR7 || ARCH_DAVINCI || ARCH_OMAP2PLUS || ARCH_KEYSTONE 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 TI devices. If you say Y, you will be asked for 15 your specific card in the following questions. 16 17if NET_VENDOR_TI 18 19config TI_DAVINCI_EMAC 20 tristate "TI DaVinci EMAC Support" 21 depends on ARM && ( ARCH_DAVINCI || ARCH_OMAP3 ) 22 select TI_DAVINCI_MDIO 23 select TI_DAVINCI_CPDMA 24 select PHYLIB 25 ---help--- 26 This driver supports TI's DaVinci Ethernet . 27 28 To compile this driver as a module, choose M here: the module 29 will be called davinci_emac_driver. This is recommended. 30 31config TI_DAVINCI_MDIO 32 tristate "TI DaVinci MDIO Support" 33 depends on ARCH_DAVINCI || ARCH_OMAP2PLUS || ARCH_KEYSTONE 34 select PHYLIB 35 ---help--- 36 This driver supports TI's DaVinci MDIO module. 37 38 To compile this driver as a module, choose M here: the module 39 will be called davinci_mdio. This is recommended. 40 41config TI_DAVINCI_CPDMA 42 tristate "TI DaVinci CPDMA Support" 43 depends on ARCH_DAVINCI || ARCH_OMAP2PLUS 44 ---help--- 45 This driver supports TI's DaVinci CPDMA dma engine. 46 47 To compile this driver as a module, choose M here: the module 48 will be called davinci_cpdma. This is recommended. 49 50config TI_CPSW_PHY_SEL 51 bool 52 ---help--- 53 This driver supports configuring of the phy mode connected to 54 the CPSW. 55 56config TI_CPSW_ALE 57 tristate "TI CPSW ALE Support" 58 ---help--- 59 This driver supports TI's CPSW ALE module. 60 61config TI_CPSW 62 tristate "TI CPSW Switch Support" 63 depends on ARCH_DAVINCI || ARCH_OMAP2PLUS 64 select TI_DAVINCI_CPDMA 65 select TI_DAVINCI_MDIO 66 select TI_CPSW_PHY_SEL 67 select TI_CPSW_ALE 68 select MFD_SYSCON 69 select REGMAP 70 ---help--- 71 This driver supports TI's CPSW Ethernet Switch. 72 73 To compile this driver as a module, choose M here: the module 74 will be called cpsw. 75 76config TI_CPTS 77 bool "TI Common Platform Time Sync (CPTS) Support" 78 depends on TI_CPSW 79 select PTP_1588_CLOCK 80 ---help--- 81 This driver supports the Common Platform Time Sync unit of 82 the CPSW Ethernet Switch. The unit can time stamp PTP UDP/IPv4 83 and Layer 2 packets, and the driver offers a PTP Hardware Clock. 84 85config TI_KEYSTONE_NETCP 86 tristate "TI Keystone NETCP Core Support" 87 select TI_CPSW_ALE 88 select TI_DAVINCI_MDIO 89 depends on OF 90 depends on KEYSTONE_NAVIGATOR_DMA && KEYSTONE_NAVIGATOR_QMSS 91 ---help--- 92 This driver supports TI's Keystone NETCP Core. 93 94 To compile this driver as a module, choose M here: the module 95 will be called keystone_netcp. 96 97config TI_KEYSTONE_NETCP_ETHSS 98 depends on TI_KEYSTONE_NETCP 99 tristate "TI Keystone NETCP Ethernet subsystem Support" 100 ---help--- 101 102 To compile this driver as a module, choose M here: the module 103 will be called keystone_netcp_ethss. 104 105config TLAN 106 tristate "TI ThunderLAN support" 107 depends on (PCI || EISA) 108 ---help--- 109 If you have a PCI Ethernet network card based on the ThunderLAN chip 110 which is supported by this driver, say Y here. 111 112 Devices currently supported by this driver are Compaq Netelligent, 113 Compaq NetFlex and Olicom cards. Please read the file 114 <file:Documentation/networking/tlan.txt> for more details. 115 116 To compile this driver as a module, choose M here. The module 117 will be called tlan. 118 119 Please email feedback to <torben.mathiasen@compaq.com>. 120 121config CPMAC 122 tristate "TI AR7 CPMAC Ethernet support" 123 depends on AR7 124 select PHYLIB 125 ---help--- 126 TI AR7 CPMAC Ethernet support 127 128endif # NET_VENDOR_TI 129