/* * arch/arm/mm/mm-nexuspci.c * from arch/arm/mm/mm-ebsa110.c * * Extra MM routines for the NexusPCI architecture * * Copyright (C) 1998 Phil Blundell * Copyright (C) 1998-1999 Russell King */ #include #include #include #include #include #include #include "map.h" #define SIZE(x) (sizeof(x) / sizeof(x[0])) const struct map_desc io_desc[] __initdata = { { 0xfff00000, 0x10000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, { 0xffe00000, 0x20000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, { 0xffc00000, 0x60000000, 0x00001000, DOMAIN_IO, 0, 1, 0, 0 }, { 0xfe000000, 0x80000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 }, { 0xfd000000, 0x88000000, 0x00100000, DOMAIN_IO, 0, 1, 0, 0 } }; unsigned int __initdata io_desc_size = SIZE(io_desc);