Kconfig.projbuild 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. menu "Network Manager Configuration"
  2. menu "Ethernet Options"
  3. visible if BASIC_I2C_BT && (ETH_USE_ESP32_EMAC || ETH_USE_SPI_ETHERNET)
  4. choice
  5. prompt "Ethernet Chipset"
  6. default ETH_NODRIVER
  7. config ETH_NODRIVER
  8. bool "Defined in NVS"
  9. config ETH_LAN8720
  10. bool "Microchip LAN8720 (RMII)"
  11. config ETH_DM9051
  12. bool "Davicom 9051 (SPI)"
  13. config ETH_W5500
  14. bool "WIZnet 5500 (SPI)"
  15. endchoice
  16. comment "LAN8720 is an RMII interface and most of the required GPIOs aren't user selectable. They are defined as follow tx_en=21, tx0=19, tx1=22, rx0=25, rx1=26, crs_dv=27"
  17. depends on ETH_LAN8720
  18. config ETH_PHY_RST_IO
  19. int "PHY Reset GPIO number" if !ETH_NODRIVER
  20. default -1
  21. help
  22. Set the GPIO number used to reset PHY chip.
  23. Set to -1 to disable PHY chip hardware reset.
  24. config ETH_MDC_IO
  25. int "SMI MDC GPIO number" if ETH_LAN8720
  26. default -1
  27. help
  28. Set the GPIO number used by SMI MDC.
  29. config ETH_MDIO_IO
  30. int "SMI MDIO GPIO number" if ETH_LAN8720
  31. default -1
  32. help
  33. Set the GPIO number used by SMI MDIO.
  34. config ETH_SPI_HOST
  35. int "SPI host number (-1,1 or 2)" if ETH_DM9051 || ETH_W5500
  36. default -1
  37. help
  38. Set to -1 to use system's SPI config (see Various I/O)
  39. Set to 2 or 3 to use a dedicated bus
  40. config ETH_SPI_INTR_IO
  41. int "interrupt" if ETH_DM9051 || ETH_W5500
  42. default -1
  43. config ETH_SPI_CS_IO
  44. int "Chip Select" if ETH_DM9051 || ETH_W5500
  45. default -1
  46. config ETH_SPI_CLK_IO
  47. int "SPI clock" if ETH_SPI_HOST != -1 && (ETH_DM9051 || ETH_W5500)
  48. default -1
  49. config ETH_SPI_MOSI_IO
  50. int "Data Out" if ETH_SPI_HOST != -1 && (ETH_DM9051 || ETH_W5500)
  51. default -1
  52. config ETH_SPI_MISO_IO
  53. int "Data In" if ETH_SPI_HOST != -1 && (ETH_DM9051 || ETH_W5500)
  54. default -1
  55. config ETH_SPI_SPEED
  56. int "SPI speed (Hz)" if ETH_SPI_HOST != -1 && (ETH_DM9051 || ETH_W5500)
  57. default 20000000
  58. endmenu
  59. endmenu