spaces.h 2.0 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12
/*
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (C) 1994 - 1999, 2000, 03, 04 Ralf Baechle
 * Copyright (C) 2000, 2002  Maciej W. Rozycki
 * Copyright (C) 1990, 1999, 2000 Silicon Graphics, Inc.
 */
#ifndef _ASM_MACH_GENERIC_SPACES_H
#define _ASM_MACH_GENERIC_SPACES_H

13
#include <linux/const.h>
L
Linus Torvalds 已提交
14

15 16 17 18 19 20 21
/*
 * This gives the physical RAM offset.
 */
#ifndef PHYS_OFFSET
#define PHYS_OFFSET		_AC(0, UL)
#endif

22
#ifdef CONFIG_32BIT
L
Linus Torvalds 已提交
23

24 25 26
#define CAC_BASE		_AC(0x80000000, UL)
#define IO_BASE			_AC(0xa0000000, UL)
#define UNCAC_BASE		_AC(0xa0000000, UL)
27 28

#ifndef MAP_BASE
29
#define MAP_BASE		_AC(0xc0000000, UL)
30
#endif
L
Linus Torvalds 已提交
31 32 33 34 35

/*
 * Memory above this physical address will be considered highmem.
 */
#ifndef HIGHMEM_START
36
#define HIGHMEM_START		_AC(0x20000000, UL)
L
Linus Torvalds 已提交
37 38
#endif

39
#endif /* CONFIG_32BIT */
L
Linus Torvalds 已提交
40

41
#ifdef CONFIG_64BIT
L
Linus Torvalds 已提交
42

43
#ifndef CAC_BASE
L
Linus Torvalds 已提交
44
#ifdef CONFIG_DMA_NONCOHERENT
45
#define CAC_BASE		_AC(0x9800000000000000, UL)
L
Linus Torvalds 已提交
46
#else
47
#define CAC_BASE		_AC(0xa800000000000000, UL)
L
Linus Torvalds 已提交
48
#endif
49 50 51
#endif

#ifndef IO_BASE
52
#define IO_BASE			_AC(0x9000000000000000, UL)
53 54 55
#endif

#ifndef UNCAC_BASE
56
#define UNCAC_BASE		_AC(0x9000000000000000, UL)
57 58 59
#endif

#ifndef MAP_BASE
60 61 62 63 64 65 66 67 68 69
#define MAP_BASE		_AC(0xc000000000000000, UL)
#endif

/*
 * Memory above this physical address will be considered highmem.
 * Fixme: 59 bits is a fictive number and makes assumptions about processors
 * in the distant future.  Nobody will care for a few years :-)
 */
#ifndef HIGHMEM_START
#define HIGHMEM_START		(_AC(1, UL) << _AC(59, UL))
70
#endif
L
Linus Torvalds 已提交
71 72 73 74 75

#define TO_PHYS(x)		(             ((x) & TO_PHYS_MASK))
#define TO_CAC(x)		(CAC_BASE   | ((x) & TO_PHYS_MASK))
#define TO_UNCAC(x)		(UNCAC_BASE | ((x) & TO_PHYS_MASK))

76
#endif /* CONFIG_64BIT */
L
Linus Torvalds 已提交
77

78 79 80 81
/*
 * This handles the memory map.
 */
#ifndef PAGE_OFFSET
82
#define PAGE_OFFSET		(CAC_BASE + PHYS_OFFSET)
83 84
#endif

85 86 87 88
#ifndef FIXADDR_TOP
#define FIXADDR_TOP		((unsigned long)(long)(int)0xfffe0000)
#endif

L
Linus Torvalds 已提交
89
#endif /* __ASM_MACH_GENERIC_SPACES_H */