omap4_panda.h 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /*
  2. * (C) Copyright 2010
  3. * Texas Instruments Incorporated.
  4. * Steve Sakoman <steve@sakoman.com>
  5. *
  6. * Configuration settings for the TI OMAP4 Panda board.
  7. * See ti_omap4_common.h for OMAP4 common part
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #ifndef __CONFIG_PANDA_H
  12. #define __CONFIG_PANDA_H
  13. /*
  14. * High Level Configuration Options
  15. */
  16. /* USB UHH support options */
  17. #define CONFIG_USB_EHCI
  18. #define CONFIG_USB_EHCI_OMAP
  19. #define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 3
  20. #define CONFIG_OMAP_EHCI_PHY1_RESET_GPIO 1
  21. #define CONFIG_OMAP_EHCI_PHY2_RESET_GPIO 62
  22. /* USB Networking options */
  23. #define CONFIG_USB_HOST_ETHER
  24. #define CONFIG_USB_ETHER_SMSC95XX
  25. #define CONFIG_UBOOT_ENABLE_PADS_ALL
  26. #include <configs/ti_omap4_common.h>
  27. /* GPIO */
  28. /* ENV related config options */
  29. #define CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
  30. #define CONFIG_ENV_IS_IN_FAT
  31. #define FAT_ENV_INTERFACE "mmc"
  32. #define FAT_ENV_DEVICE_AND_PART "0:1"
  33. #define FAT_ENV_FILE "uboot.env"
  34. #define CONFIG_ENV_OVERWRITE
  35. #endif /* __CONFIG_PANDA_H */