~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/arch/blackfin/include/asm/mem_map.h

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

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