blob: d901e084a47936caf610c50d54a9225c9ffa8157 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 *
6 * Copyright (C) 1994 - 1999, 2000, 03, 04 Ralf Baechle
7 * Copyright (C) 2000, 2002 Maciej W. Rozycki
8 * Copyright (C) 1990, 1999, 2000 Silicon Graphics, Inc.
9 */
10#ifndef _ASM_MACH_GENERIC_SPACES_H
11#define _ASM_MACH_GENERIC_SPACES_H
12
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020013#include <linux/const.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Ralf Baechle875d43e2005-09-03 15:56:16 -070015#ifdef CONFIG_32BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020017#define CAC_BASE _AC(0x80000000, UL)
18#define IO_BASE _AC(0xa0000000, UL)
19#define UNCAC_BASE _AC(0xa0000000, UL)
Franck Bui-Huu09bb9ce2007-06-04 17:46:31 +020020
21#ifndef MAP_BASE
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020022#define MAP_BASE _AC(0xc0000000, UL)
Franck Bui-Huu09bb9ce2007-06-04 17:46:31 +020023#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25/*
26 * Memory above this physical address will be considered highmem.
27 */
28#ifndef HIGHMEM_START
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020029#define HIGHMEM_START _AC(0x20000000, UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#endif
31
Ralf Baechle875d43e2005-09-03 15:56:16 -070032#endif /* CONFIG_32BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
Ralf Baechle875d43e2005-09-03 15:56:16 -070034#ifdef CONFIG_64BIT
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020036#ifndef CAC_BASE
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#ifdef CONFIG_DMA_NONCOHERENT
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020038#define CAC_BASE _AC(0x9800000000000000, UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070039#else
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020040#define CAC_BASE _AC(0xa800000000000000, UL)
Linus Torvalds1da177e2005-04-16 15:20:36 -070041#endif
Franck Bui-Huu09bb9ce2007-06-04 17:46:31 +020042#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020044#ifndef IO_BASE
45#define IO_BASE _AC(0x9000000000000000, UL)
46#endif
47
48#ifndef UNCAC_BASE
49#define UNCAC_BASE _AC(0x9000000000000000, UL)
50#endif
51
52#ifndef MAP_BASE
53#define MAP_BASE _AC(0xc000000000000000, UL)
54#endif
55
Linus Torvalds1da177e2005-04-16 15:20:36 -070056/*
57 * Memory above this physical address will be considered highmem.
58 * Fixme: 59 bits is a fictive number and makes assumptions about processors
59 * in the distant future. Nobody will care for a few years :-)
60 */
61#ifndef HIGHMEM_START
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020062#define HIGHMEM_START (_AC(1, UL) << _AC(59, UL))
Franck Bui-Huu09bb9ce2007-06-04 17:46:31 +020063#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65#define TO_PHYS(x) ( ((x) & TO_PHYS_MASK))
66#define TO_CAC(x) (CAC_BASE | ((x) & TO_PHYS_MASK))
67#define TO_UNCAC(x) (UNCAC_BASE | ((x) & TO_PHYS_MASK))
68
Ralf Baechle875d43e2005-09-03 15:56:16 -070069#endif /* CONFIG_64BIT */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Franck Bui-Huuc4612c82007-06-04 17:46:32 +020071/*
72 * This handles the memory map.
73 */
74#ifndef PAGE_OFFSET
75#define PAGE_OFFSET CAC_BASE
76#endif
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#endif /* __ASM_MACH_GENERIC_SPACES_H */