zc5601.h 737 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright (C) Stefano Babic <sbabic@denx.de>
  3. *
  4. * Configuration settings for the E+L i.MX6Q DO82 board.
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #ifndef __EL_ZC5601_H
  9. #define __EL_ZC5601_H
  10. #define CONFIG_MXC_UART_BASE UART2_BASE
  11. #define CONSOLE_DEV "ttymxc1"
  12. #define CONFIG_MMCROOT "/dev/mmcblk0p1"
  13. #define CONFIG_SUPPORT_EMMC_BOOT /* eMMC specific */
  14. #include "el6x_common.h"
  15. /* Ethernet */
  16. #define CONFIG_FEC_MXC
  17. #define CONFIG_MII
  18. #define IMX_FEC_BASE ENET_BASE_ADDR
  19. #define CONFIG_FEC_XCV_TYPE RGMII
  20. #define CONFIG_ETHPRIME "FEC"
  21. #define CONFIG_FEC_MXC_PHYADDR 0x10
  22. #define CONFIG_PHYLIB
  23. #define CONFIG_FEC_FIXED_SPEED 1000 /* No autoneg, fix Gb */
  24. #endif /*__EL6Q_CONFIG_H */