blob: 6709b28a0221d6e66a7a29b7b64323493fde9d67 [file] [log] [blame]
Jonas Bonn58e01662011-06-04 22:43:49 +03001/*
2 * OpenRISC Linux
3 *
4 * Linux architectural port borrowing liberally from similar works of
5 * others. All original copyrights apply as per the original source
6 * declaration.
7 *
8 * OpenRISC implementation:
9 * Copyright (C) 2010-2011 Jonas Bonn <jonas@southpole.se>
10 * et al.
11 *
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.
16 */
17
18#ifndef __ASM_OPENRISC_IO_H
19#define __ASM_OPENRISC_IO_H
20
21/*
22 * PCI: can we really do 0 here if we have no port IO?
23 */
24#define IO_SPACE_LIMIT 0
25
26/* OpenRISC has no port IO */
27#define HAVE_ARCH_PIO_SIZE 1
28#define PIO_RESERVED 0X0UL
29#define PIO_OFFSET 0
30#define PIO_MASK 0
31
Greentime Hub934e8e2017-12-22 22:18:40 +080032#define ioremap_nocache ioremap_nocache
Jonas Bonn58e01662011-06-04 22:43:49 +030033#include <asm-generic/io.h>
James Hogan9b04ebd2012-10-23 10:21:57 +010034#include <asm/pgtable.h>
Jonas Bonn58e01662011-06-04 22:43:49 +030035
36extern void __iomem *__ioremap(phys_addr_t offset, unsigned long size,
37 pgprot_t prot);
38
Greentime Hub934e8e2017-12-22 22:18:40 +080039static inline void __iomem *ioremap(phys_addr_t offset, size_t size)
Jonas Bonn58e01662011-06-04 22:43:49 +030040{
41 return __ioremap(offset, size, PAGE_KERNEL);
42}
43
44/* #define _PAGE_CI 0x002 */
45static inline void __iomem *ioremap_nocache(phys_addr_t offset,
46 unsigned long size)
47{
48 return __ioremap(offset, size,
49 __pgprot(pgprot_val(PAGE_KERNEL) | _PAGE_CI));
50}
51
52extern void iounmap(void *addr);
53#endif