blob: e7fe6ed7e4b2534698f57363d1b3abfb51ad6e04 [file] [log] [blame]
wdenk6069ff22003-02-28 00:49:47 +00001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
5 *
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +09006 * Copyright (C) 1996, 99 Ralf Baechle
7 * Copyright (C) 2000, 2002 Maciej W. Rozycki
8 * Copyright (C) 1990, 1999 by Silicon Graphics, Inc.
wdenk6069ff22003-02-28 00:49:47 +00009 */
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +090010#ifndef _ASM_ADDRSPACE_H
11#define _ASM_ADDRSPACE_H
12
Daniel Schwierzeck23ff8632016-01-12 21:48:25 +010013#include <spaces.h>
14
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +090015/*
16 * Configure language
17 */
18#ifdef __ASSEMBLY__
19#define _ATYPE_
20#define _ATYPE32_
21#define _ATYPE64_
22#define _CONST64_(x) x
23#else
24#define _ATYPE_ __PTRDIFF_TYPE__
25#define _ATYPE32_ int
26#define _ATYPE64_ __s64
27#ifdef CONFIG_64BIT
28#define _CONST64_(x) x ## L
29#else
30#define _CONST64_(x) x ## LL
31#endif
32#endif
33
34/*
35 * 32-bit MIPS address spaces
36 */
37#ifdef __ASSEMBLY__
38#define _ACAST32_
39#define _ACAST64_
40#else
41#define _ACAST32_ (_ATYPE_)(_ATYPE32_) /* widen if necessary */
42#define _ACAST64_ (_ATYPE64_) /* do _not_ narrow */
43#endif
44
45/*
46 * Returns the kernel segment base of a given address
47 */
48#define KSEGX(a) ((_ACAST32_ (a)) & 0xe0000000)
49
50/*
51 * Returns the physical address of a CKSEGx / XKPHYS address
52 */
53#define CPHYSADDR(a) ((_ACAST32_(a)) & 0x1fffffff)
54#define XPHYSADDR(a) ((_ACAST64_(a)) & \
Daniel Schwierzeck23ff8632016-01-12 21:48:25 +010055 _CONST64_(0x0000ffffffffffff))
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +090056
57#ifdef CONFIG_64BIT
58
59/*
60 * Memory segments (64bit kernel mode addresses)
61 * The compatibility segments use the full 64-bit sign extended value. Note
62 * the R8000 doesn't have them so don't reference these in generic MIPS code.
63 */
64#define XKUSEG _CONST64_(0x0000000000000000)
65#define XKSSEG _CONST64_(0x4000000000000000)
66#define XKPHYS _CONST64_(0x8000000000000000)
67#define XKSEG _CONST64_(0xc000000000000000)
68#define CKSEG0 _CONST64_(0xffffffff80000000)
69#define CKSEG1 _CONST64_(0xffffffffa0000000)
70#define CKSSEG _CONST64_(0xffffffffc0000000)
71#define CKSEG3 _CONST64_(0xffffffffe0000000)
72
73#define CKSEG0ADDR(a) (CPHYSADDR(a) | CKSEG0)
74#define CKSEG1ADDR(a) (CPHYSADDR(a) | CKSEG1)
75#define CKSEG2ADDR(a) (CPHYSADDR(a) | CKSEG2)
76#define CKSEG3ADDR(a) (CPHYSADDR(a) | CKSEG3)
77
78#else
79
80#define CKSEG0ADDR(a) (CPHYSADDR(a) | KSEG0)
81#define CKSEG1ADDR(a) (CPHYSADDR(a) | KSEG1)
82#define CKSEG2ADDR(a) (CPHYSADDR(a) | KSEG2)
83#define CKSEG3ADDR(a) (CPHYSADDR(a) | KSEG3)
84
85/*
86 * Map an address to a certain kernel segment
87 */
88#define KSEG0ADDR(a) (CPHYSADDR(a) | KSEG0)
89#define KSEG1ADDR(a) (CPHYSADDR(a) | KSEG1)
90#define KSEG2ADDR(a) (CPHYSADDR(a) | KSEG2)
91#define KSEG3ADDR(a) (CPHYSADDR(a) | KSEG3)
wdenk6069ff22003-02-28 00:49:47 +000092
93/*
94 * Memory segments (32bit kernel mode addresses)
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +090095 * These are the traditional names used in the 32-bit universe.
wdenk6069ff22003-02-28 00:49:47 +000096 */
wdenkd4ca31c2004-01-02 14:00:00 +000097#define KUSEG 0x00000000
98#define KSEG0 0x80000000
99#define KSEG1 0xa0000000
100#define KSEG2 0xc0000000
101#define KSEG3 0xe0000000
wdenk6069ff22003-02-28 00:49:47 +0000102
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900103#define CKUSEG 0x00000000
104#define CKSEG0 0x80000000
105#define CKSEG1 0xa0000000
106#define CKSEG2 0xc0000000
107#define CKSEG3 0xe0000000
wdenk6069ff22003-02-28 00:49:47 +0000108
wdenk6069ff22003-02-28 00:49:47 +0000109#endif
110
111/*
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900112 * Cache modes for XKPHYS address conversion macros
wdenk6069ff22003-02-28 00:49:47 +0000113 */
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900114#define K_CALG_COH_EXCL1_NOL2 0
115#define K_CALG_COH_SHRL1_NOL2 1
116#define K_CALG_UNCACHED 2
117#define K_CALG_NONCOHERENT 3
118#define K_CALG_COH_EXCL 4
119#define K_CALG_COH_SHAREABLE 5
120#define K_CALG_NOTUSED 6
121#define K_CALG_UNCACHED_ACCEL 7
122
123/*
124 * 64-bit address conversions
125 */
126#define PHYS_TO_XKSEG_UNCACHED(p) PHYS_TO_XKPHYS(K_CALG_UNCACHED, (p))
127#define PHYS_TO_XKSEG_CACHED(p) PHYS_TO_XKPHYS(K_CALG_COH_SHAREABLE, (p))
128#define XKPHYS_TO_PHYS(p) ((p) & TO_PHYS_MASK)
129#define PHYS_TO_XKPHYS(cm, a) (_CONST64_(0x8000000000000000) | \
130 (_CONST64_(cm) << 59) | (a))
wdenk6069ff22003-02-28 00:49:47 +0000131
wdenkd4ca31c2004-01-02 14:00:00 +0000132/*
133 * Returns the uncached address of a sdram address
wdenka2663ea2003-12-07 18:32:37 +0000134 */
135#ifndef __ASSEMBLY__
Shinya Kuribayashi8bde63e2008-06-07 20:51:56 +0900136#if defined(CONFIG_SOC_AU1X00) || defined(CONFIG_TB0229)
wdenka2663ea2003-12-07 18:32:37 +0000137/* We use a 36 bit physical address map here and
138 cannot access physical memory directly from core */
139#define UNCACHED_SDRAM(a) (((unsigned long)(a)) | 0x20000000)
Shinya Kuribayashi8bde63e2008-06-07 20:51:56 +0900140#else /* !CONFIG_SOC_AU1X00 */
Zhi-zhou Zhang090854c2012-10-16 15:02:08 +0200141#define UNCACHED_SDRAM(a) CKSEG1ADDR(a)
Shinya Kuribayashi8bde63e2008-06-07 20:51:56 +0900142#endif /* CONFIG_SOC_AU1X00 */
wdenka2663ea2003-12-07 18:32:37 +0000143#endif /* __ASSEMBLY__ */
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900144
wdenk6069ff22003-02-28 00:49:47 +0000145/*
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900146 * The ultimate limited of the 64-bit MIPS architecture: 2 bits for selecting
147 * the region, 3 bits for the CCA mode. This leaves 59 bits of which the
148 * R8000 implements most with its 48-bit physical address space.
wdenk6069ff22003-02-28 00:49:47 +0000149 */
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900150#define TO_PHYS_MASK _CONST64_(0x07ffffffffffffff) /* 2^^59 - 1 */
151
152#ifndef CONFIG_CPU_R8000
153
154/*
155 * The R8000 doesn't have the 32-bit compat spaces so we don't define them
156 * in order to catch bugs in the source code.
157 */
158
159#define COMPAT_K1BASE32 _CONST64_(0xffffffffa0000000)
160#define PHYS_TO_COMPATK1(x) ((x) | COMPAT_K1BASE32) /* 32-bit compat k1 */
161
wdenk6069ff22003-02-28 00:49:47 +0000162#endif
163
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900164#define KDM_TO_PHYS(x) (_ACAST64_ (x) & TO_PHYS_MASK)
165#define PHYS_TO_K0(x) (_ACAST64_ (x) | CAC_BASE)
wdenk6069ff22003-02-28 00:49:47 +0000166
Shinya Kuribayashi7daf2eb2008-06-05 22:29:00 +0900167#endif /* _ASM_ADDRSPACE_H */