2005-04-16 15:20:36 -07:00
/*
* 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
2007-06-04 17:46:32 +02:00
# include <linux/const.h>
2005-04-16 15:20:36 -07:00
2007-06-04 17:46:34 +02:00
/*
* This gives the physical RAM offset .
*/
# ifndef PHYS_OFFSET
# define PHYS_OFFSET _AC(0, UL)
# endif
2005-09-03 15:56:16 -07:00
# ifdef CONFIG_32BIT
2005-04-16 15:20:36 -07:00
2007-06-04 17:46:32 +02:00
# define CAC_BASE _AC(0x80000000, UL)
# define IO_BASE _AC(0xa0000000, UL)
# define UNCAC_BASE _AC(0xa0000000, UL)
2007-06-04 17:46:31 +02:00
# ifndef MAP_BASE
2007-06-04 17:46:32 +02:00
# define MAP_BASE _AC(0xc0000000, UL)
2007-06-04 17:46:31 +02:00
# endif
2005-04-16 15:20:36 -07:00
/*
* Memory above this physical address will be considered highmem .
*/
# ifndef HIGHMEM_START
2007-06-04 17:46:32 +02:00
# define HIGHMEM_START _AC(0x20000000, UL)
2005-04-16 15:20:36 -07:00
# endif
2005-09-03 15:56:16 -07:00
# endif /* CONFIG_32BIT */
2005-04-16 15:20:36 -07:00
2005-09-03 15:56:16 -07:00
# ifdef CONFIG_64BIT
2005-04-16 15:20:36 -07:00
2007-06-04 17:46:31 +02:00
# ifndef CAC_BASE
2005-04-16 15:20:36 -07:00
# ifdef CONFIG_DMA_NONCOHERENT
2007-06-04 17:46:32 +02:00
# define CAC_BASE _AC(0x9800000000000000, UL)
2005-04-16 15:20:36 -07:00
# else
2007-06-04 17:46:32 +02:00
# define CAC_BASE _AC(0xa800000000000000, UL)
2005-04-16 15:20:36 -07:00
# endif
2007-06-04 17:46:31 +02:00
# endif
# ifndef IO_BASE
2007-06-04 17:46:32 +02:00
# define IO_BASE _AC(0x9000000000000000, UL)
2007-06-04 17:46:31 +02:00
# endif
# ifndef UNCAC_BASE
2007-06-04 17:46:32 +02:00
# define UNCAC_BASE _AC(0x9000000000000000, UL)
2007-06-04 17:46:31 +02:00
# endif
# ifndef MAP_BASE
2007-06-04 17:46:32 +02:00
# 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))
2007-06-04 17:46:31 +02:00
# endif
2005-04-16 15:20:36 -07:00
# 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))
2005-09-03 15:56:16 -07:00
# endif /* CONFIG_64BIT */
2005-04-16 15:20:36 -07:00
2007-06-04 17:46:32 +02:00
/*
* This handles the memory map .
*/
# ifndef PAGE_OFFSET
2007-06-04 17:46:33 +02:00
# define PAGE_OFFSET (CAC_BASE + PHYS_OFFSET)
2007-06-04 17:46:32 +02:00
# endif
2005-04-16 15:20:36 -07:00
# endif /* __ASM_MACH_GENERIC_SPACES_H */