diff options
author | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-06-11 06:26:31 -0400 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2011-08-12 03:22:18 -0400 |
commit | bcc9736c6c201b0992c9d0a5b5a30c35138e5782 (patch) | |
tree | b7993c2f5f0b7372a1ce0994476bfb7696901506 /drivers/net/ethernet/micrel/Kconfig | |
parent | ec21e2ec367697b4803e82662bdff6c8567745fc (diff) |
ks8*/ksz8*: Move the Micrel drivers
Move the Micrel drivers into drivers/net/ethernet/micrel/ and
make the necessary Kconfig and Makefile changes.
CC: Ben Dooks <ben@simtec.co.uk>
CC: Tristram Ha <Tristram.Ha@micrel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/micrel/Kconfig')
-rw-r--r-- | drivers/net/ethernet/micrel/Kconfig | 64 |
1 files changed, 64 insertions, 0 deletions
diff --git a/drivers/net/ethernet/micrel/Kconfig b/drivers/net/ethernet/micrel/Kconfig new file mode 100644 index 000000000000..4227de6d11f2 --- /dev/null +++ b/drivers/net/ethernet/micrel/Kconfig | |||
@@ -0,0 +1,64 @@ | |||
1 | # | ||
2 | # Micrel device configuration | ||
3 | # | ||
4 | |||
5 | config NET_VENDOR_MICREL | ||
6 | bool "Micrel devices" | ||
7 | depends on (HAS_IOMEM && DMA_ENGINE) || SPI || PCI || HAS_IOMEM || \ | ||
8 | (ARM && ARCH_KS8695) | ||
9 | ---help--- | ||
10 | If you have a network (Ethernet) card belonging to this class, say Y | ||
11 | and read the Ethernet-HOWTO, available from | ||
12 | <http://www.tldp.org/docs.html#howto>. | ||
13 | |||
14 | Note that the answer to this question doesn't directly affect the | ||
15 | kernel: saying N will just cause the configurator to skip all | ||
16 | the questions about Micrel devices. If you say Y, you will be asked | ||
17 | for your specific card in the following questions. | ||
18 | |||
19 | if NET_VENDOR_MICREL | ||
20 | |||
21 | config ARM_KS8695_ETHER | ||
22 | tristate "KS8695 Ethernet support" | ||
23 | depends on ARM && ARCH_KS8695 | ||
24 | select MII | ||
25 | ---help--- | ||
26 | If you wish to compile a kernel for the KS8695 and want to | ||
27 | use the internal ethernet then you should answer Y to this. | ||
28 | |||
29 | config KS8842 | ||
30 | tristate "Micrel KSZ8841/42 with generic bus interface" | ||
31 | depends on HAS_IOMEM && DMA_ENGINE | ||
32 | ---help--- | ||
33 | This platform driver is for KSZ8841(1-port) / KS8842(2-port) | ||
34 | ethernet switch chip (managed, VLAN, QoS) from Micrel or | ||
35 | Timberdale(FPGA). | ||
36 | |||
37 | config KS8851 | ||
38 | tristate "Micrel KS8851 SPI" | ||
39 | depends on SPI | ||
40 | select MII | ||
41 | select CRC32 | ||
42 | ---help--- | ||
43 | SPI driver for Micrel KS8851 SPI attached network chip. | ||
44 | |||
45 | config KS8851_MLL | ||
46 | tristate "Micrel KS8851 MLL" | ||
47 | depends on HAS_IOMEM | ||
48 | select MII | ||
49 | ---help--- | ||
50 | This platform driver is for Micrel KS8851 Address/data bus | ||
51 | multiplexed network chip. | ||
52 | |||
53 | config KSZ884X_PCI | ||
54 | tristate "Micrel KSZ8841/2 PCI" | ||
55 | depends on PCI | ||
56 | select MII | ||
57 | select CRC32 | ||
58 | ---help--- | ||
59 | This PCI driver is for Micrel KSZ8841/KSZ8842 PCI Ethernet chip. | ||
60 | |||
61 | To compile this driver as a module, choose M here. The module | ||
62 | will be called ksz884x. | ||
63 | |||
64 | endif # NET_VENDOR_MICREL | ||