Kconfig 2.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. #
  2. # Freescale device configuration
  3. #
  4. config NET_VENDOR_FREESCALE
  5. bool "Freescale devices"
  6. default y
  7. depends on FSL_SOC || QUICC_ENGINE || CPM1 || CPM2 || PPC_MPC512x || \
  8. M523x || M527x || M5272 || M528x || M520x || M532x || \
  9. ARCH_MXC || ARCH_MXS || (PPC_MPC52xx && PPC_BESTCOMM) || \
  10. ARCH_LAYERSCAPE
  11. ---help---
  12. If you have a network (Ethernet) card belonging to this class, say Y.
  13. Note that the answer to this question doesn't directly affect the
  14. kernel: saying N will just cause the configurator to skip all
  15. the questions about Freescale devices. If you say Y, you will be
  16. asked for your specific card in the following questions.
  17. if NET_VENDOR_FREESCALE
  18. config FEC
  19. tristate "FEC ethernet controller (of ColdFire and some i.MX CPUs)"
  20. depends on (M523x || M527x || M5272 || M528x || M520x || M532x || \
  21. ARCH_MXC || SOC_IMX28)
  22. default ARCH_MXC || SOC_IMX28 if ARM
  23. select PHYLIB
  24. select PTP_1588_CLOCK
  25. ---help---
  26. Say Y here if you want to use the built-in 10/100 Fast ethernet
  27. controller on some Motorola ColdFire and Freescale i.MX processors.
  28. config FEC_MPC52xx
  29. tristate "FEC MPC52xx driver"
  30. depends on PPC_MPC52xx && PPC_BESTCOMM
  31. select CRC32
  32. select PHYLIB
  33. select PPC_BESTCOMM_FEC
  34. ---help---
  35. This option enables support for the MPC5200's on-chip
  36. Fast Ethernet Controller
  37. If compiled as module, it will be called fec_mpc52xx.
  38. config FEC_MPC52xx_MDIO
  39. bool "FEC MPC52xx MDIO bus driver"
  40. depends on FEC_MPC52xx
  41. default y
  42. ---help---
  43. The MPC5200's FEC can connect to the Ethernet either with
  44. an external MII PHY chip or 10 Mbps 7-wire interface
  45. (Motorola? industry standard).
  46. If your board uses an external PHY connected to FEC, enable this.
  47. If not sure, enable.
  48. If compiled as module, it will be called fec_mpc52xx_phy.
  49. source "drivers/net/ethernet/freescale/fs_enet/Kconfig"
  50. config FSL_PQ_MDIO
  51. tristate "Freescale PQ MDIO"
  52. select PHYLIB
  53. ---help---
  54. This driver supports the MDIO bus used by the gianfar and UCC drivers.
  55. config FSL_XGMAC_MDIO
  56. tristate "Freescale XGMAC MDIO"
  57. select PHYLIB
  58. select OF_MDIO
  59. ---help---
  60. This driver supports the MDIO bus on the Fman 10G Ethernet MACs, and
  61. on the FMan mEMAC (which supports both Clauses 22 and 45)
  62. config UCC_GETH
  63. tristate "Freescale QE Gigabit Ethernet"
  64. depends on QUICC_ENGINE
  65. select FSL_PQ_MDIO
  66. select PHYLIB
  67. ---help---
  68. This driver supports the Gigabit Ethernet mode of the QUICC Engine,
  69. which is available on some Freescale SOCs.
  70. config UGETH_TX_ON_DEMAND
  71. bool "Transmit on Demand support"
  72. depends on UCC_GETH
  73. config GIANFAR
  74. tristate "Gianfar Ethernet"
  75. select FSL_PQ_MDIO
  76. select PHYLIB
  77. select CRC32
  78. ---help---
  79. This driver supports the Gigabit TSEC on the MPC83xx, MPC85xx,
  80. and MPC86xx family of chips, the eTSEC on LS1021A and the FEC
  81. on the 8540.
  82. endif # NET_VENDOR_FREESCALE