2005-04-16 18:20:36 -04:00
|
|
|
/*
|
2008-08-02 05:55:55 -04:00
|
|
|
* arch/arm/include/asm/map.h
|
2005-04-16 18:20:36 -04:00
|
|
|
*
|
|
|
|
* Copyright (C) 1999-2000 Russell King
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* Page table mapping constructs and function prototypes
|
|
|
|
*/
|
2007-05-05 15:59:27 -04:00
|
|
|
#include <asm/io.h>
|
|
|
|
|
2005-04-16 18:20:36 -04:00
|
|
|
struct map_desc {
|
|
|
|
unsigned long virtual;
|
2005-10-28 10:19:11 -04:00
|
|
|
unsigned long pfn;
|
2005-04-16 18:20:36 -04:00
|
|
|
unsigned long length;
|
|
|
|
unsigned int type;
|
|
|
|
};
|
|
|
|
|
2008-09-07 07:42:51 -04:00
|
|
|
/* types 0-3 are defined in asm/io.h */
|
2008-11-09 06:18:36 -05:00
|
|
|
#define MT_UNCACHED 4
|
|
|
|
#define MT_CACHECLEAN 5
|
|
|
|
#define MT_MINICLEAN 6
|
|
|
|
#define MT_LOW_VECTORS 7
|
|
|
|
#define MT_HIGH_VECTORS 8
|
|
|
|
#define MT_MEMORY 9
|
|
|
|
#define MT_ROM 10
|
2007-05-05 15:28:16 -04:00
|
|
|
|
2006-06-24 12:34:50 -04:00
|
|
|
#ifdef CONFIG_MMU
|
2005-04-16 18:20:36 -04:00
|
|
|
extern void iotable_init(struct map_desc *, int);
|
2006-06-24 12:34:50 -04:00
|
|
|
#else
|
|
|
|
#define iotable_init(map,num) do { } while (0)
|
|
|
|
#endif
|