4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
8 * OpenRISC implementation:
9 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
18 #ifndef __ASM_OPENRISC_IO_H
19 #define __ASM_OPENRISC_IO_H
22 * PCI: can we really do 0 here if we have no port IO?
24 #define IO_SPACE_LIMIT 0
26 /* OpenRISC has no port IO */
27 #define HAVE_ARCH_PIO_SIZE 1
28 #define PIO_RESERVED 0X0UL
32 #include <asm-generic/io.h>
33 #include <asm/pgtable.h>
35 extern void __iomem
*__ioremap(phys_addr_t offset
, unsigned long size
,
38 static inline void __iomem
*ioremap(phys_addr_t offset
, unsigned long size
)
40 return __ioremap(offset
, size
, PAGE_KERNEL
);
43 /* #define _PAGE_CI 0x002 */
44 static inline void __iomem
*ioremap_nocache(phys_addr_t offset
,
47 return __ioremap(offset
, size
,
48 __pgprot(pgprot_val(PAGE_KERNEL
) | _PAGE_CI
));
51 extern void iounmap(void *addr
);