eagle.h 690 B

123456789101112131415161718192021222324252627282930
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * include/configs/eagle.h
  4. * This file is Eagle board configuration.
  5. *
  6. * Copyright (C) 2015 Renesas Electronics Corporation
  7. */
  8. #ifndef __EAGLE_H
  9. #define __EAGLE_H
  10. #include "rcar-gen3-common.h"
  11. /* Ethernet RAVB */
  12. #define CONFIG_BITBANGMII
  13. #define CONFIG_BITBANGMII_MULTI
  14. /* Environment compatibility */
  15. #undef CONFIG_ENV_SECT_SIZE
  16. #define CONFIG_ENV_SECT_SIZE (256 * 1024)
  17. #define CONFIG_ENV_OFFSET 0x700000
  18. /* Board Clock */
  19. /* XTAL_CLK : 33.33MHz */
  20. #define CONFIG_SYS_CLK_FREQ 33333333u
  21. /* Generic Timer Definitions (use in assembler source) */
  22. #define COUNTER_FREQUENCY 0xFE502A /* 16.66MHz from CPclk */
  23. #endif /* __EAGLE_H */