hardware.h 532 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * hardware.h
  3. *
  4. * hardware specific header
  5. *
  6. * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. #ifndef __OMAP_HARDWARE_H
  11. #define __OMAP_HARDWARE_H
  12. #include <asm/arch/omap.h>
  13. /*
  14. * Common hardware definitions
  15. */
  16. /* BCH Error Location Module */
  17. #define ELM_BASE 0x48078000
  18. /* GPMC Base address */
  19. #define GPMC_BASE 0x50000000
  20. /* EDMA3 Base address for DRA7XX and AM57XX */
  21. #if defined(CONFIG_DRA7XX)
  22. #define EDMA3_BASE 0x43300000
  23. #endif
  24. #endif