omap.h 747 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * omap.h
  3. *
  4. * Copyright (C) 2011, Texas Instruments, Incorporated - http://www.ti.com/
  5. *
  6. * Author:
  7. * Chandan Nath <chandan.nath@ti.com>
  8. *
  9. * Derived from OMAP4 work by
  10. * Aneesh V <aneesh@ti.com>
  11. *
  12. * SPDX-License-Identifier: GPL-2.0+
  13. */
  14. #ifndef _OMAP_H_
  15. #define _OMAP_H_
  16. #ifdef CONFIG_AM33XX
  17. #define NON_SECURE_SRAM_START 0x402F0400
  18. #define NON_SECURE_SRAM_END 0x40310000
  19. #define SRAM_SCRATCH_SPACE_ADDR 0x4030B800
  20. #elif defined(CONFIG_TI81XX)
  21. #define NON_SECURE_SRAM_START 0x40300000
  22. #define NON_SECURE_SRAM_END 0x40320000
  23. #define SRAM_SCRATCH_SPACE_ADDR 0x4031B800
  24. #elif defined(CONFIG_AM43XX)
  25. #define NON_SECURE_SRAM_START 0x402F0400
  26. #define NON_SECURE_SRAM_END 0x40340000
  27. #define SRAM_SCRATCH_SPACE_ADDR 0x4033C000
  28. #endif
  29. #endif