Kconfig 2.8 KB

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