mem_map.h 601 B

1234567891011121314151617181920212223242526
  1. /*
  2. * Common Blackfin memory map
  3. *
  4. * Copyright 2004-2009 Analog Devices Inc.
  5. * Licensed under the GPL-2 or later.
  6. */
  7. #ifndef __BFIN_MEM_MAP_H__
  8. #define __BFIN_MEM_MAP_H__
  9. /* Every Blackfin so far has MMRs like this */
  10. #ifndef COREMMR_BASE
  11. # define COREMMR_BASE 0xFFE00000
  12. #endif
  13. #ifndef SYSMMR_BASE
  14. # define SYSMMR_BASE 0xFFC00000
  15. #endif
  16. /* Every Blackfin so far has on-chip Scratch Pad SRAM like this */
  17. #ifndef L1_SRAM_SCRATCH
  18. # define L1_SRAM_SCRATCH 0xFFB00000
  19. # define L1_SRAM_SCRATCH_SIZE 0x1000
  20. # define L1_SRAM_SCRATCH_END (L1_SRAM_SCRATCH + L1_SRAM_SCRATCH_SIZE)
  21. #endif
  22. #endif