Merge tag 'sched-urgent-2020-12-27' of git://git.kernel.org/pub/scm/linux/kernel...
[linux/fpc-iii.git] / arch / arm / mach-s3c / include / mach / io-s3c24xx.h
blob738b775d33366155ec087ac6f9e86867b4366c10
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * arch/arm/mach-s3c2410/include/mach/io.h
4 * from arch/arm/mach-rpc/include/mach/io.h
6 * Copyright (C) 1997 Russell King
7 * (C) 2003 Simtec Electronics
8 */
10 #ifndef __ASM_ARM_ARCH_IO_S3C24XX_H
11 #define __ASM_ARM_ARCH_IO_S3C24XX_H
13 #include <mach/map-base.h>
16 * ISA style IO, for each machine to sort out mappings for,
17 * if it implements it. We reserve two 16M regions for ISA,
18 * so the PC/104 can use separate addresses for 8-bit and
19 * 16-bit port I/O.
21 #define PCIO_BASE S3C_ADDR(0x02000000)
22 #define IO_SPACE_LIMIT 0x00ffffff
23 #define S3C24XX_VA_ISA_WORD (PCIO_BASE)
24 #define S3C24XX_VA_ISA_BYTE (PCIO_BASE + 0x01000000)
26 #ifdef CONFIG_ISA
28 #define inb(p) readb(S3C24XX_VA_ISA_BYTE + (p))
29 #define inw(p) readw(S3C24XX_VA_ISA_WORD + (p))
30 #define inl(p) readl(S3C24XX_VA_ISA_WORD + (p))
32 #define outb(v,p) writeb((v), S3C24XX_VA_ISA_BYTE + (p))
33 #define outw(v,p) writew((v), S3C24XX_VA_ISA_WORD + (p))
34 #define outl(v,p) writel((v), S3C24XX_VA_ISA_WORD + (p))
36 #define insb(p,d,l) readsb(S3C24XX_VA_ISA_BYTE + (p),d,l)
37 #define insw(p,d,l) readsw(S3C24XX_VA_ISA_WORD + (p),d,l)
38 #define insl(p,d,l) readsl(S3C24XX_VA_ISA_WORD + (p),d,l)
40 #define outsb(p,d,l) writesb(S3C24XX_VA_ISA_BYTE + (p),d,l)
41 #define outsw(p,d,l) writesw(S3C24XX_VA_ISA_WORD + (p),d,l)
42 #define outsl(p,d,l) writesl(S3C24XX_VA_ISA_WORD + (p),d,l)
44 #else
46 #define __io(x) (PCIO_BASE + (x))
48 #endif
50 #endif