In <asm-generic/io.h>, it provides a generic implementation of all I/O accessors. For some port|mm io functions, SuperH has its own implementation in arch/sh/kernel/iomap.c and arch/sh/include/asm/io_noioport.h. These will conflict with those in <asm-generic/io.h> and cause compiling error. Hence add macro definitions to ensure that the SuperH version of them will override the generic version. [arnd@arndb.de: fix asm-generic/io.h inclusion] Link: https://lkml.kernel.org/r/20230802141658.2064864-1-arnd@kernel.org Link: https://lkml.kernel.org/r/20230706154520.11257-12-bhe@redhat.com Signed-off-by: Baoquan He <bhe@redhat.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de> Cc: John Paul Adrian Glaubitz <glaubitz@physik.fu-berlin.de> Cc: Yoshinori Sato <ysato@users.sourceforge.jp> Cc: Rich Felker <dalias@libc.org> Cc: Alexander Gordeev <agordeev@linux.ibm.com> Cc: Arnd Bergmann <arnd@arndb.de> Cc: Brian Cain <bcain@quicinc.com> Cc: Catalin Marinas <catalin.marinas@arm.com> Cc: Christian Borntraeger <borntraeger@linux.ibm.com> Cc: Christophe Leroy <christophe.leroy@csgroup.eu> Cc: Christoph Hellwig <hch@lst.de> Cc: Chris Zankel <chris@zankel.net> Cc: David Laight <David.Laight@ACULAB.COM> Cc: Geert Uytterhoeven <geert@linux-m68k.org> Cc: Gerald Schaefer <gerald.schaefer@linux.ibm.com> Cc: Heiko Carstens <hca@linux.ibm.com> Cc: Helge Deller <deller@gmx.de> Cc: "James E.J. Bottomley" <James.Bottomley@HansenPartnership.com> Cc: Jonas Bonn <jonas@southpole.se> Cc: Kefeng Wang <wangkefeng.wang@huawei.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: Max Filippov <jcmvbkbc@gmail.com> Cc: Michael Ellerman <mpe@ellerman.id.au> Cc: Mike Rapoport (IBM) <rppt@kernel.org> Cc: Nathan Chancellor <nathan@kernel.org> Cc: Nicholas Piggin <npiggin@gmail.com> Cc: Niklas Schnelle <schnelle@linux.ibm.com> Cc: Stafford Horne <shorne@gmail.com> Cc: Stefan Kristiansson <stefan.kristiansson@saunalahti.fi> Cc: Sven Schnelle <svens@linux.ibm.com> Cc: Vasily Gorbik <gor@linux.ibm.com> Cc: Vineet Gupta <vgupta@kernel.org> Cc: Will Deacon <will@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
79 lines
1.3 KiB
C
79 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef __ASM_SH_IO_NOIOPORT_H
|
|
#define __ASM_SH_IO_NOIOPORT_H
|
|
|
|
static inline u8 inb(unsigned long addr)
|
|
{
|
|
BUG();
|
|
return -1;
|
|
}
|
|
|
|
static inline u16 inw(unsigned long addr)
|
|
{
|
|
BUG();
|
|
return -1;
|
|
}
|
|
|
|
static inline u32 inl(unsigned long addr)
|
|
{
|
|
BUG();
|
|
return -1;
|
|
}
|
|
|
|
static inline void outb(unsigned char x, unsigned long port)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void outw(unsigned short x, unsigned long port)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void outl(unsigned int x, unsigned long port)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void __iomem *ioport_map(unsigned long port, unsigned int size)
|
|
{
|
|
BUG();
|
|
return NULL;
|
|
}
|
|
|
|
static inline void ioport_unmap(void __iomem *addr)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void insb(unsigned long port, void *dst, unsigned long count)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void insw(unsigned long port, void *dst, unsigned long count)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void insl(unsigned long port, void *dst, unsigned long count)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void outsb(unsigned long port, const void *src, unsigned long count)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void outsw(unsigned long port, const void *src, unsigned long count)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
static inline void outsl(unsigned long port, const void *src, unsigned long count)
|
|
{
|
|
BUG();
|
|
}
|
|
|
|
#endif /* __ASM_SH_IO_NOIOPORT_H */
|