mem_map.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. /*
  2. * BF51x memory map
  3. *
  4. * Copyright 2004-2009 Analog Devices Inc.
  5. * Licensed under the GPL-2 or later.
  6. */
  7. #ifndef __BFIN_MACH_MEM_MAP_H__
  8. #define __BFIN_MACH_MEM_MAP_H__
  9. #ifndef __BFIN_MEM_MAP_H__
  10. # error "do not include mach/mem_map.h directly -- use asm/mem_map.h"
  11. #endif
  12. /* Async Memory Banks */
  13. #define ASYNC_BANK3_BASE 0x20300000 /* Async Bank 3 */
  14. #define ASYNC_BANK3_SIZE 0x00100000 /* 1M */
  15. #define ASYNC_BANK2_BASE 0x20200000 /* Async Bank 2 */
  16. #define ASYNC_BANK2_SIZE 0x00100000 /* 1M */
  17. #define ASYNC_BANK1_BASE 0x20100000 /* Async Bank 1 */
  18. #define ASYNC_BANK1_SIZE 0x00100000 /* 1M */
  19. #define ASYNC_BANK0_BASE 0x20000000 /* Async Bank 0 */
  20. #define ASYNC_BANK0_SIZE 0x00100000 /* 1M */
  21. /* Boot ROM Memory */
  22. #define BOOT_ROM_START 0xEF000000
  23. #define BOOT_ROM_LENGTH 0x8000
  24. /* Level 1 Memory */
  25. /* Memory Map for ADSP-BF518/6/4/2 processors */
  26. #ifdef CONFIG_BFIN_ICACHE
  27. #define BFIN_ICACHESIZE (16 * 1024)
  28. #else
  29. #define BFIN_ICACHESIZE (0)
  30. #endif
  31. #define L1_CODE_START 0xFFA00000
  32. #define L1_DATA_A_START 0xFF800000
  33. #define L1_DATA_B_START 0xFF900000
  34. #define L1_CODE_LENGTH 0x8000
  35. #ifdef CONFIG_BFIN_DCACHE
  36. #ifdef CONFIG_BFIN_DCACHE_BANKA
  37. #define DMEM_CNTR (ACACHE_BSRAM | ENDCPLB | PORT_PREF0)
  38. #define L1_DATA_A_LENGTH (0x8000 - 0x4000)
  39. #define L1_DATA_B_LENGTH 0x8000
  40. #define BFIN_DCACHESIZE (16 * 1024)
  41. #define BFIN_DSUPBANKS 1
  42. #else
  43. #define DMEM_CNTR (ACACHE_BCACHE | ENDCPLB | PORT_PREF0)
  44. #define L1_DATA_A_LENGTH (0x8000 - 0x4000)
  45. #define L1_DATA_B_LENGTH (0x8000 - 0x4000)
  46. #define BFIN_DCACHESIZE (32 * 1024)
  47. #define BFIN_DSUPBANKS 2
  48. #endif
  49. #else
  50. #define DMEM_CNTR (ASRAM_BSRAM | ENDCPLB | PORT_PREF0)
  51. #define L1_DATA_A_LENGTH 0x8000
  52. #define L1_DATA_B_LENGTH 0x8000
  53. #define BFIN_DCACHESIZE 0
  54. #define BFIN_DSUPBANKS 0
  55. #endif /*CONFIG_BFIN_DCACHE */
  56. #endif