blob: d22c2eeae78fc4b0f9433d4821cdd71e3d3bbb2b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002 * S390 version
Heiko Carstensa53c8fa2012-07-20 11:15:04 +02003 * Copyright IBM Corp. 1999
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Author(s): Martin Schwidefsky (schwidefsky@de.ibm.com)
5 *
6 * Derived from "include/asm-i386/io.h"
7 */
8
9#ifndef _S390_IO_H
10#define _S390_IO_H
11
Jan Glaubercd248342012-11-29 12:50:30 +010012#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <asm/page.h>
Jan Glaubercd248342012-11-29 12:50:30 +010014#include <asm/pci_io.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
Michael Holzheu576ebd72013-05-21 16:08:22 +020016#define xlate_dev_mem_ptr xlate_dev_mem_ptr
Thierry Reding4707a342014-07-28 17:20:33 +020017void *xlate_dev_mem_ptr(phys_addr_t phys);
18#define unxlate_dev_mem_ptr unxlate_dev_mem_ptr
19void unxlate_dev_mem_ptr(phys_addr_t phys, void *addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21/*
22 * Convert a virtual cached pointer to an uncached pointer
23 */
24#define xlate_dev_kmem_ptr(p) p
25
Jan Glaubercd248342012-11-29 12:50:30 +010026#define IO_SPACE_LIMIT 0
27
28#ifdef CONFIG_PCI
29
30#define ioremap_nocache(addr, size) ioremap(addr, size)
31#define ioremap_wc ioremap_nocache
32
Jan Glaubercd248342012-11-29 12:50:30 +010033static inline void __iomem *ioremap(unsigned long offset, unsigned long size)
34{
35 return (void __iomem *) offset;
36}
37
38static inline void iounmap(volatile void __iomem *addr)
39{
40}
41
42/*
43 * s390 needs a private implementation of pci_iomap since ioremap with its
44 * offset parameter isn't sufficient. That's because BAR spaces are not
45 * disjunctive on s390 so we need the bar parameter of pci_iomap to find
46 * the corresponding device and create the mapping cookie.
47 */
48#define pci_iomap pci_iomap
49#define pci_iounmap pci_iounmap
50
51#define memcpy_fromio(dst, src, count) zpci_memcpy_fromio(dst, src, count)
52#define memcpy_toio(dst, src, count) zpci_memcpy_toio(dst, src, count)
53#define memset_io(dst, val, count) zpci_memset_io(dst, val, count)
54
55#define __raw_readb zpci_read_u8
56#define __raw_readw zpci_read_u16
57#define __raw_readl zpci_read_u32
58#define __raw_readq zpci_read_u64
59#define __raw_writeb zpci_write_u8
60#define __raw_writew zpci_write_u16
61#define __raw_writel zpci_write_u32
62#define __raw_writeq zpci_write_u64
63
Heiko Carstens478740a2013-01-07 14:03:34 +010064#define readb_relaxed readb
65#define readw_relaxed readw
66#define readl_relaxed readl
67#define readq_relaxed readq
68
Jan Glaubercd248342012-11-29 12:50:30 +010069#endif /* CONFIG_PCI */
70
71#include <asm-generic/io.h>
72
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#endif