提交 4cb3cee0 编写于 作者: B Benjamin Herrenschmidt 提交者: Paul Mackerras

[POWERPC] Allow hooking of PCI MMIO & PIO accessors on 64 bits

This patch reworks the way iSeries hooks on PCI IO operations (both MMIO
and PIO) and provides a generic way for other platforms to do so (we
have need to do that for various other platforms).

While reworking the IO ops, I ended up doing some spring cleaning in
io.h and eeh.h which I might want to split into 2 or 3 patches (among
others, eeh.h had a lot of useless stuff in it).

A side effect is that EEH for PIO should work now (it used to pass IO
ports down to the eeh address check functions which is bogus).

Also, new are MMIO "repeat" ops, which other archs like ARM already had,
and that we have too now: readsb, readsw, readsl, writesb, writesw,
writesl.

In the long run, I might also make EEH use the hooks instead
of wrapping at the toplevel, which would make things even cleaner and
relegate EEH completely in platforms/iseries, but we have to measure the
performance impact there (though it's really only on MMIO reads)

Since I also need to hook on ioremap, I shuffled the functions a bit
there. I introduced ioremap_flags() to use by drivers who want to pass
explicit flags to ioremap (and it can be hooked). The old __ioremap() is
still there as a low level and cannot be hooked, thus drivers who use it
should migrate unless they know they want the low level version.

The patch "arch provides generic iomap missing accessors" (should be
number 4 in this series) is a pre-requisite to provide full iomap
API support with this patch.
Signed-off-by: NBenjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: NPaul Mackerras <paulus@samba.org>
上级 d03f387e
...@@ -394,6 +394,7 @@ config PPC_PSERIES ...@@ -394,6 +394,7 @@ config PPC_PSERIES
config PPC_ISERIES config PPC_ISERIES
bool "IBM Legacy iSeries" bool "IBM Legacy iSeries"
depends on PPC_MULTIPLATFORM && PPC64 depends on PPC_MULTIPLATFORM && PPC64
select PPC_INDIRECT_IO
config PPC_CHRP config PPC_CHRP
bool "Common Hardware Reference Platform (CHRP) based machines" bool "Common Hardware Reference Platform (CHRP) based machines"
...@@ -548,6 +549,15 @@ config PPC_970_NAP ...@@ -548,6 +549,15 @@ config PPC_970_NAP
bool bool
default n default n
config PPC_INDIRECT_IO
bool
select GENERIC_IOMAP
default n
config GENERIC_IOMAP
bool
default n
source "drivers/cpufreq/Kconfig" source "drivers/cpufreq/Kconfig"
config CPU_FREQ_PMAC config CPU_FREQ_PMAC
......
...@@ -62,7 +62,7 @@ obj-$(CONFIG_PPC_UDBG_16550) += legacy_serial.o udbg_16550.o ...@@ -62,7 +62,7 @@ obj-$(CONFIG_PPC_UDBG_16550) += legacy_serial.o udbg_16550.o
module-$(CONFIG_PPC64) += module_64.o module-$(CONFIG_PPC64) += module_64.o
obj-$(CONFIG_MODULES) += $(module-y) obj-$(CONFIG_MODULES) += $(module-y)
pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o iomap.o pci64-$(CONFIG_PPC64) += pci_64.o pci_dn.o
pci32-$(CONFIG_PPC32) := pci_32.o pci32-$(CONFIG_PPC32) := pci_32.o
obj-$(CONFIG_PCI) += $(pci64-y) $(pci32-y) obj-$(CONFIG_PCI) += $(pci64-y) $(pci32-y)
kexec-$(CONFIG_PPC64) := machine_kexec_64.o kexec-$(CONFIG_PPC64) := machine_kexec_64.o
...@@ -71,6 +71,10 @@ obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o $(kexec-y) ...@@ -71,6 +71,10 @@ obj-$(CONFIG_KEXEC) += machine_kexec.o crash.o $(kexec-y)
obj-$(CONFIG_AUDIT) += audit.o obj-$(CONFIG_AUDIT) += audit.o
obj64-$(CONFIG_AUDIT) += compat_audit.o obj64-$(CONFIG_AUDIT) += compat_audit.o
ifneq ($(CONFIG_PPC_INDIRECT_IO),y)
pci64-$(CONFIG_PPC64) += iomap.o
endif
ifeq ($(CONFIG_PPC_ISERIES),y) ifeq ($(CONFIG_PPC_ISERIES),y)
$(obj)/head_64.o: $(obj)/lparmap.s $(obj)/head_64.o: $(obj)/lparmap.s
AFLAGS_head_64.o += -I$(obj) AFLAGS_head_64.o += -I$(obj)
......
...@@ -25,13 +25,11 @@ ...@@ -25,13 +25,11 @@
#include <asm/firmware.h> #include <asm/firmware.h>
#include <asm/bug.h> #include <asm/bug.h>
void _insb(volatile u8 __iomem *port, void *buf, long count) void _insb(const volatile u8 __iomem *port, void *buf, long count)
{ {
u8 *tbuf = buf; u8 *tbuf = buf;
u8 tmp; u8 tmp;
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES));
if (unlikely(count <= 0)) if (unlikely(count <= 0))
return; return;
asm volatile("sync"); asm volatile("sync");
...@@ -48,8 +46,6 @@ void _outsb(volatile u8 __iomem *port, const void *buf, long count) ...@@ -48,8 +46,6 @@ void _outsb(volatile u8 __iomem *port, const void *buf, long count)
{ {
const u8 *tbuf = buf; const u8 *tbuf = buf;
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES));
if (unlikely(count <= 0)) if (unlikely(count <= 0))
return; return;
asm volatile("sync"); asm volatile("sync");
...@@ -60,13 +56,11 @@ void _outsb(volatile u8 __iomem *port, const void *buf, long count) ...@@ -60,13 +56,11 @@ void _outsb(volatile u8 __iomem *port, const void *buf, long count)
} }
EXPORT_SYMBOL(_outsb); EXPORT_SYMBOL(_outsb);
void _insw_ns(volatile u16 __iomem *port, void *buf, long count) void _insw_ns(const volatile u16 __iomem *port, void *buf, long count)
{ {
u16 *tbuf = buf; u16 *tbuf = buf;
u16 tmp; u16 tmp;
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES));
if (unlikely(count <= 0)) if (unlikely(count <= 0))
return; return;
asm volatile("sync"); asm volatile("sync");
...@@ -83,8 +77,6 @@ void _outsw_ns(volatile u16 __iomem *port, const void *buf, long count) ...@@ -83,8 +77,6 @@ void _outsw_ns(volatile u16 __iomem *port, const void *buf, long count)
{ {
const u16 *tbuf = buf; const u16 *tbuf = buf;
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES));
if (unlikely(count <= 0)) if (unlikely(count <= 0))
return; return;
asm volatile("sync"); asm volatile("sync");
...@@ -95,13 +87,11 @@ void _outsw_ns(volatile u16 __iomem *port, const void *buf, long count) ...@@ -95,13 +87,11 @@ void _outsw_ns(volatile u16 __iomem *port, const void *buf, long count)
} }
EXPORT_SYMBOL(_outsw_ns); EXPORT_SYMBOL(_outsw_ns);
void _insl_ns(volatile u32 __iomem *port, void *buf, long count) void _insl_ns(const volatile u32 __iomem *port, void *buf, long count)
{ {
u32 *tbuf = buf; u32 *tbuf = buf;
u32 tmp; u32 tmp;
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES));
if (unlikely(count <= 0)) if (unlikely(count <= 0))
return; return;
asm volatile("sync"); asm volatile("sync");
...@@ -118,8 +108,6 @@ void _outsl_ns(volatile u32 __iomem *port, const void *buf, long count) ...@@ -118,8 +108,6 @@ void _outsl_ns(volatile u32 __iomem *port, const void *buf, long count)
{ {
const u32 *tbuf = buf; const u32 *tbuf = buf;
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES));
if (unlikely(count <= 0)) if (unlikely(count <= 0))
return; return;
asm volatile("sync"); asm volatile("sync");
......
...@@ -1137,7 +1137,7 @@ int unmap_bus_range(struct pci_bus *bus) ...@@ -1137,7 +1137,7 @@ int unmap_bus_range(struct pci_bus *bus)
if (get_bus_io_range(bus, &start_phys, &start_virt, &size)) if (get_bus_io_range(bus, &start_phys, &start_virt, &size))
return 1; return 1;
if (iounmap_explicit((void __iomem *) start_virt, size)) if (__iounmap_explicit((void __iomem *) start_virt, size))
return 1; return 1;
return 0; return 0;
......
...@@ -599,3 +599,10 @@ void __init setup_per_cpu_areas(void) ...@@ -599,3 +599,10 @@ void __init setup_per_cpu_areas(void)
} }
} }
#endif #endif
#ifdef CONFIG_PPC_INDIRECT_IO
struct ppc_pci_io ppc_pci_io;
EXPORT_SYMBOL(ppc_pci_io);
#endif /* CONFIG_PPC_INDIRECT_IO */
...@@ -129,22 +129,12 @@ static void __iomem * __ioremap_com(unsigned long addr, unsigned long pa, ...@@ -129,22 +129,12 @@ static void __iomem * __ioremap_com(unsigned long addr, unsigned long pa,
return (void __iomem *) (ea + (addr & ~PAGE_MASK)); return (void __iomem *) (ea + (addr & ~PAGE_MASK));
} }
void __iomem *
ioremap(unsigned long addr, unsigned long size)
{
return __ioremap(addr, size, _PAGE_NO_CACHE | _PAGE_GUARDED);
}
void __iomem * __ioremap(unsigned long addr, unsigned long size, void __iomem * __ioremap(unsigned long addr, unsigned long size,
unsigned long flags) unsigned long flags)
{ {
unsigned long pa, ea; unsigned long pa, ea;
void __iomem *ret; void __iomem *ret;
if (firmware_has_feature(FW_FEATURE_ISERIES))
return (void __iomem *)addr;
/* /*
* Choose an address to map it to. * Choose an address to map it to.
* Once the imalloc system is running, we use it. * Once the imalloc system is running, we use it.
...@@ -178,6 +168,25 @@ void __iomem * __ioremap(unsigned long addr, unsigned long size, ...@@ -178,6 +168,25 @@ void __iomem * __ioremap(unsigned long addr, unsigned long size,
return ret; return ret;
} }
void __iomem * ioremap(unsigned long addr, unsigned long size)
{
unsigned long flags = _PAGE_NO_CACHE | _PAGE_GUARDED;
if (ppc_md.ioremap)
return ppc_md.ioremap(addr, size, flags);
return __ioremap(addr, size, flags);
}
void __iomem * ioremap_flags(unsigned long addr, unsigned long size,
unsigned long flags)
{
if (ppc_md.ioremap)
return ppc_md.ioremap(addr, size, flags);
return __ioremap(addr, size, flags);
}
#define IS_PAGE_ALIGNED(_val) ((_val) == ((_val) & PAGE_MASK)) #define IS_PAGE_ALIGNED(_val) ((_val) == ((_val) & PAGE_MASK))
int __ioremap_explicit(unsigned long pa, unsigned long ea, int __ioremap_explicit(unsigned long pa, unsigned long ea,
...@@ -235,13 +244,10 @@ int __ioremap_explicit(unsigned long pa, unsigned long ea, ...@@ -235,13 +244,10 @@ int __ioremap_explicit(unsigned long pa, unsigned long ea,
* *
* XXX what about calls before mem_init_done (ie python_countermeasures()) * XXX what about calls before mem_init_done (ie python_countermeasures())
*/ */
void iounmap(volatile void __iomem *token) void __iounmap(void __iomem *token)
{ {
void *addr; void *addr;
if (firmware_has_feature(FW_FEATURE_ISERIES))
return;
if (!mem_init_done) if (!mem_init_done)
return; return;
...@@ -250,6 +256,14 @@ void iounmap(volatile void __iomem *token) ...@@ -250,6 +256,14 @@ void iounmap(volatile void __iomem *token)
im_free(addr); im_free(addr);
} }
void iounmap(void __iomem *token)
{
if (ppc_md.iounmap)
ppc_md.iounmap(token);
else
__iounmap(token);
}
static int iounmap_subset_regions(unsigned long addr, unsigned long size) static int iounmap_subset_regions(unsigned long addr, unsigned long size)
{ {
struct vm_struct *area; struct vm_struct *area;
...@@ -268,7 +282,7 @@ static int iounmap_subset_regions(unsigned long addr, unsigned long size) ...@@ -268,7 +282,7 @@ static int iounmap_subset_regions(unsigned long addr, unsigned long size)
return 0; return 0;
} }
int iounmap_explicit(volatile void __iomem *start, unsigned long size) int __iounmap_explicit(void __iomem *start, unsigned long size)
{ {
struct vm_struct *area; struct vm_struct *area;
unsigned long addr; unsigned long addr;
...@@ -303,8 +317,10 @@ int iounmap_explicit(volatile void __iomem *start, unsigned long size) ...@@ -303,8 +317,10 @@ int iounmap_explicit(volatile void __iomem *start, unsigned long size)
} }
EXPORT_SYMBOL(ioremap); EXPORT_SYMBOL(ioremap);
EXPORT_SYMBOL(ioremap_flags);
EXPORT_SYMBOL(__ioremap); EXPORT_SYMBOL(__ioremap);
EXPORT_SYMBOL(iounmap); EXPORT_SYMBOL(iounmap);
EXPORT_SYMBOL(__iounmap);
void __iomem * reserve_phb_iospace(unsigned long size) void __iomem * reserve_phb_iospace(unsigned long size)
{ {
......
...@@ -155,53 +155,6 @@ static void pci_Log_Error(char *Error_Text, int Bus, int SubBus, ...@@ -155,53 +155,6 @@ static void pci_Log_Error(char *Error_Text, int Bus, int SubBus,
Error_Text, Bus, SubBus, AgentId, HvRc); Error_Text, Bus, SubBus, AgentId, HvRc);
} }
/*
* iSeries_pcibios_init
*
* Description:
* This function checks for all possible system PCI host bridges that connect
* PCI buses. The system hypervisor is queried as to the guest partition
* ownership status. A pci_controller is built for any bus which is partially
* owned or fully owned by this guest partition.
*/
void iSeries_pcibios_init(void)
{
struct pci_controller *phb;
struct device_node *root = of_find_node_by_path("/");
struct device_node *node = NULL;
if (root == NULL) {
printk(KERN_CRIT "iSeries_pcibios_init: can't find root "
"of device tree\n");
return;
}
while ((node = of_get_next_child(root, node)) != NULL) {
HvBusNumber bus;
const u32 *busp;
if ((node->type == NULL) || (strcmp(node->type, "pci") != 0))
continue;
busp = get_property(node, "bus-range", NULL);
if (busp == NULL)
continue;
bus = *busp;
printk("bus %d appears to exist\n", bus);
phb = pcibios_alloc_controller(node);
if (phb == NULL)
continue;
phb->pci_mem_offset = phb->local_number = bus;
phb->first_busno = bus;
phb->last_busno = bus;
phb->ops = &iSeries_pci_ops;
}
of_node_put(root);
pci_devs_phb_init();
}
/* /*
* iSeries_pci_final_fixup(void) * iSeries_pci_final_fixup(void)
*/ */
...@@ -438,11 +391,7 @@ static inline struct device_node *xlate_iomm_address( ...@@ -438,11 +391,7 @@ static inline struct device_node *xlate_iomm_address(
/* /*
* Read MM I/O Instructions for the iSeries * Read MM I/O Instructions for the iSeries
* On MM I/O error, all ones are returned and iSeries_pci_IoError is cal * On MM I/O error, all ones are returned and iSeries_pci_IoError is cal
* else, data is returned in big Endian format. * else, data is returned in Big Endian format.
*
* iSeries_Read_Byte = Read Byte ( 8 bit)
* iSeries_Read_Word = Read Word (16 bit)
* iSeries_Read_Long = Read Long (32 bit)
*/ */
static u8 iSeries_Read_Byte(const volatile void __iomem *IoAddress) static u8 iSeries_Read_Byte(const volatile void __iomem *IoAddress)
{ {
...@@ -462,14 +411,15 @@ static u8 iSeries_Read_Byte(const volatile void __iomem *IoAddress) ...@@ -462,14 +411,15 @@ static u8 iSeries_Read_Byte(const volatile void __iomem *IoAddress)
num_printed = 0; num_printed = 0;
} }
if (num_printed++ < 10) if (num_printed++ < 10)
printk(KERN_ERR "iSeries_Read_Byte: invalid access at IO address %p\n", IoAddress); printk(KERN_ERR "iSeries_Read_Byte: invalid access at IO address %p\n",
IoAddress);
return 0xff; return 0xff;
} }
do { do {
HvCall3Ret16(HvCallPciBarLoad8, &ret, dsa, BarOffset, 0); HvCall3Ret16(HvCallPciBarLoad8, &ret, dsa, BarOffset, 0);
} while (CheckReturnCode("RDB", DevNode, &retry, ret.rc) != 0); } while (CheckReturnCode("RDB", DevNode, &retry, ret.rc) != 0);
return (u8)ret.value; return ret.value;
} }
static u16 iSeries_Read_Word(const volatile void __iomem *IoAddress) static u16 iSeries_Read_Word(const volatile void __iomem *IoAddress)
...@@ -490,7 +440,8 @@ static u16 iSeries_Read_Word(const volatile void __iomem *IoAddress) ...@@ -490,7 +440,8 @@ static u16 iSeries_Read_Word(const volatile void __iomem *IoAddress)
num_printed = 0; num_printed = 0;
} }
if (num_printed++ < 10) if (num_printed++ < 10)
printk(KERN_ERR "iSeries_Read_Word: invalid access at IO address %p\n", IoAddress); printk(KERN_ERR "iSeries_Read_Word: invalid access at IO address %p\n",
IoAddress);
return 0xffff; return 0xffff;
} }
do { do {
...@@ -498,7 +449,7 @@ static u16 iSeries_Read_Word(const volatile void __iomem *IoAddress) ...@@ -498,7 +449,7 @@ static u16 iSeries_Read_Word(const volatile void __iomem *IoAddress)
BarOffset, 0); BarOffset, 0);
} while (CheckReturnCode("RDW", DevNode, &retry, ret.rc) != 0); } while (CheckReturnCode("RDW", DevNode, &retry, ret.rc) != 0);
return swab16((u16)ret.value); return ret.value;
} }
static u32 iSeries_Read_Long(const volatile void __iomem *IoAddress) static u32 iSeries_Read_Long(const volatile void __iomem *IoAddress)
...@@ -519,7 +470,8 @@ static u32 iSeries_Read_Long(const volatile void __iomem *IoAddress) ...@@ -519,7 +470,8 @@ static u32 iSeries_Read_Long(const volatile void __iomem *IoAddress)
num_printed = 0; num_printed = 0;
} }
if (num_printed++ < 10) if (num_printed++ < 10)
printk(KERN_ERR "iSeries_Read_Long: invalid access at IO address %p\n", IoAddress); printk(KERN_ERR "iSeries_Read_Long: invalid access at IO address %p\n",
IoAddress);
return 0xffffffff; return 0xffffffff;
} }
do { do {
...@@ -527,15 +479,12 @@ static u32 iSeries_Read_Long(const volatile void __iomem *IoAddress) ...@@ -527,15 +479,12 @@ static u32 iSeries_Read_Long(const volatile void __iomem *IoAddress)
BarOffset, 0); BarOffset, 0);
} while (CheckReturnCode("RDL", DevNode, &retry, ret.rc) != 0); } while (CheckReturnCode("RDL", DevNode, &retry, ret.rc) != 0);
return swab32((u32)ret.value); return ret.value;
} }
/* /*
* Write MM I/O Instructions for the iSeries * Write MM I/O Instructions for the iSeries
* *
* iSeries_Write_Byte = Write Byte (8 bit)
* iSeries_Write_Word = Write Word(16 bit)
* iSeries_Write_Long = Write Long(32 bit)
*/ */
static void iSeries_Write_Byte(u8 data, volatile void __iomem *IoAddress) static void iSeries_Write_Byte(u8 data, volatile void __iomem *IoAddress)
{ {
...@@ -581,11 +530,12 @@ static void iSeries_Write_Word(u16 data, volatile void __iomem *IoAddress) ...@@ -581,11 +530,12 @@ static void iSeries_Write_Word(u16 data, volatile void __iomem *IoAddress)
num_printed = 0; num_printed = 0;
} }
if (num_printed++ < 10) if (num_printed++ < 10)
printk(KERN_ERR "iSeries_Write_Word: invalid access at IO address %p\n", IoAddress); printk(KERN_ERR "iSeries_Write_Word: invalid access at IO address %p\n",
IoAddress);
return; return;
} }
do { do {
rc = HvCall4(HvCallPciBarStore16, dsa, BarOffset, swab16(data), 0); rc = HvCall4(HvCallPciBarStore16, dsa, BarOffset, data, 0);
} while (CheckReturnCode("WWW", DevNode, &retry, rc) != 0); } while (CheckReturnCode("WWW", DevNode, &retry, rc) != 0);
} }
...@@ -607,231 +557,221 @@ static void iSeries_Write_Long(u32 data, volatile void __iomem *IoAddress) ...@@ -607,231 +557,221 @@ static void iSeries_Write_Long(u32 data, volatile void __iomem *IoAddress)
num_printed = 0; num_printed = 0;
} }
if (num_printed++ < 10) if (num_printed++ < 10)
printk(KERN_ERR "iSeries_Write_Long: invalid access at IO address %p\n", IoAddress); printk(KERN_ERR "iSeries_Write_Long: invalid access at IO address %p\n",
IoAddress);
return; return;
} }
do { do {
rc = HvCall4(HvCallPciBarStore32, dsa, BarOffset, swab32(data), 0); rc = HvCall4(HvCallPciBarStore32, dsa, BarOffset, data, 0);
} while (CheckReturnCode("WWL", DevNode, &retry, rc) != 0); } while (CheckReturnCode("WWL", DevNode, &retry, rc) != 0);
} }
extern unsigned char __raw_readb(const volatile void __iomem *addr) static u8 iseries_readb(const volatile void __iomem *addr)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); return iSeries_Read_Byte(addr);
return *(volatile unsigned char __force *)addr;
} }
EXPORT_SYMBOL(__raw_readb);
extern unsigned short __raw_readw(const volatile void __iomem *addr) static u16 iseries_readw(const volatile void __iomem *addr)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); return le16_to_cpu(iSeries_Read_Word(addr));
return *(volatile unsigned short __force *)addr;
} }
EXPORT_SYMBOL(__raw_readw);
extern unsigned int __raw_readl(const volatile void __iomem *addr) static u32 iseries_readl(const volatile void __iomem *addr)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); return le32_to_cpu(iSeries_Read_Long(addr));
return *(volatile unsigned int __force *)addr;
} }
EXPORT_SYMBOL(__raw_readl);
extern unsigned long __raw_readq(const volatile void __iomem *addr) static u16 iseries_readw_be(const volatile void __iomem *addr)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); return iSeries_Read_Word(addr);
return *(volatile unsigned long __force *)addr;
} }
EXPORT_SYMBOL(__raw_readq);
extern void __raw_writeb(unsigned char v, volatile void __iomem *addr) static u32 iseries_readl_be(const volatile void __iomem *addr)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); return iSeries_Read_Long(addr);
*(volatile unsigned char __force *)addr = v;
} }
EXPORT_SYMBOL(__raw_writeb);
extern void __raw_writew(unsigned short v, volatile void __iomem *addr) static void iseries_writeb(u8 data, volatile void __iomem *addr)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); iSeries_Write_Byte(data, addr);
*(volatile unsigned short __force *)addr = v;
} }
EXPORT_SYMBOL(__raw_writew);
extern void __raw_writel(unsigned int v, volatile void __iomem *addr) static void iseries_writew(u16 data, volatile void __iomem *addr)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); iSeries_Write_Word(cpu_to_le16(data), addr);
*(volatile unsigned int __force *)addr = v;
} }
EXPORT_SYMBOL(__raw_writel);
extern void __raw_writeq(unsigned long v, volatile void __iomem *addr) static void iseries_writel(u32 data, volatile void __iomem *addr)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); iSeries_Write_Long(cpu_to_le32(data), addr);
*(volatile unsigned long __force *)addr = v;
} }
EXPORT_SYMBOL(__raw_writeq);
int in_8(const volatile unsigned char __iomem *addr) static void iseries_writew_be(u16 data, volatile void __iomem *addr)
{ {
if (firmware_has_feature(FW_FEATURE_ISERIES)) iSeries_Write_Word(data, addr);
return iSeries_Read_Byte(addr);
return __in_8(addr);
} }
EXPORT_SYMBOL(in_8);
void out_8(volatile unsigned char __iomem *addr, int val) static void iseries_writel_be(u32 data, volatile void __iomem *addr)
{ {
if (firmware_has_feature(FW_FEATURE_ISERIES)) iSeries_Write_Long(data, addr);
iSeries_Write_Byte(val, addr);
else
__out_8(addr, val);
} }
EXPORT_SYMBOL(out_8);
int in_le16(const volatile unsigned short __iomem *addr) static void iseries_readsb(const volatile void __iomem *addr, void *buf,
unsigned long count)
{ {
if (firmware_has_feature(FW_FEATURE_ISERIES)) u8 *dst = buf;
return iSeries_Read_Word(addr); while(count-- > 0)
return __in_le16(addr); *(dst++) = iSeries_Read_Byte(addr);
} }
EXPORT_SYMBOL(in_le16);
int in_be16(const volatile unsigned short __iomem *addr) static void iseries_readsw(const volatile void __iomem *addr, void *buf,
unsigned long count)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); u16 *dst = buf;
while(count-- > 0)
return __in_be16(addr); *(dst++) = iSeries_Read_Word(addr);
} }
EXPORT_SYMBOL(in_be16);
void out_le16(volatile unsigned short __iomem *addr, int val) static void iseries_readsl(const volatile void __iomem *addr, void *buf,
unsigned long count)
{ {
if (firmware_has_feature(FW_FEATURE_ISERIES)) u32 *dst = buf;
iSeries_Write_Word(val, addr); while(count-- > 0)
else *(dst++) = iSeries_Read_Long(addr);
__out_le16(addr, val);
} }
EXPORT_SYMBOL(out_le16);
void out_be16(volatile unsigned short __iomem *addr, int val) static void iseries_writesb(volatile void __iomem *addr, const void *buf,
unsigned long count)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); const u8 *src = buf;
while(count-- > 0)
__out_be16(addr, val); iSeries_Write_Byte(*(src++), addr);
} }
EXPORT_SYMBOL(out_be16);
unsigned in_le32(const volatile unsigned __iomem *addr) static void iseries_writesw(volatile void __iomem *addr, const void *buf,
unsigned long count)
{ {
if (firmware_has_feature(FW_FEATURE_ISERIES)) const u16 *src = buf;
return iSeries_Read_Long(addr); while(count-- > 0)
return __in_le32(addr); iSeries_Write_Word(*(src++), addr);
} }
EXPORT_SYMBOL(in_le32);
unsigned in_be32(const volatile unsigned __iomem *addr) static void iseries_writesl(volatile void __iomem *addr, const void *buf,
unsigned long count)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); const u32 *src = buf;
while(count-- > 0)
return __in_be32(addr); iSeries_Write_Long(*(src++), addr);
} }
EXPORT_SYMBOL(in_be32);
void out_le32(volatile unsigned __iomem *addr, int val) static void iseries_memset_io(volatile void __iomem *addr, int c,
unsigned long n)
{ {
if (firmware_has_feature(FW_FEATURE_ISERIES)) volatile char __iomem *d = addr;
iSeries_Write_Long(val, addr);
else
__out_le32(addr, val);
}
EXPORT_SYMBOL(out_le32);
void out_be32(volatile unsigned __iomem *addr, int val) while (n-- > 0)
{ iSeries_Write_Byte(c, d++);
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES));
__out_be32(addr, val);
} }
EXPORT_SYMBOL(out_be32);
unsigned long in_le64(const volatile unsigned long __iomem *addr) static void iseries_memcpy_fromio(void *dest, const volatile void __iomem *src,
unsigned long n)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); char *d = dest;
const volatile char __iomem *s = src;
return __in_le64(addr); while (n-- > 0)
*d++ = iSeries_Read_Byte(s++);
} }
EXPORT_SYMBOL(in_le64);
unsigned long in_be64(const volatile unsigned long __iomem *addr) static void iseries_memcpy_toio(volatile void __iomem *dest, const void *src,
unsigned long n)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); const char *s = src;
volatile char __iomem *d = dest;
return __in_be64(addr); while (n-- > 0)
iSeries_Write_Byte(*s++, d++);
} }
EXPORT_SYMBOL(in_be64);
void out_le64(volatile unsigned long __iomem *addr, unsigned long val)
{
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES));
__out_le64(addr, val); /* We only set MMIO ops. The default PIO ops will be default
} * to the MMIO ops + pci_io_base which is 0 on iSeries as
EXPORT_SYMBOL(out_le64); * expected so both should work.
*
* Note that we don't implement the readq/writeq versions as
* I don't know of an HV call for doing so. Thus, the default
* operation will be used instead, which will fault a the value
* return by iSeries for MMIO addresses always hits a non mapped
* area. This is as good as the BUG() we used to have there.
*/
static struct ppc_pci_io __initdata iseries_pci_io = {
.readb = iseries_readb,
.readw = iseries_readw,
.readl = iseries_readl,
.readw_be = iseries_readw_be,
.readl_be = iseries_readl_be,
.writeb = iseries_writeb,
.writew = iseries_writew,
.writel = iseries_writel,
.writew_be = iseries_writew_be,
.writel_be = iseries_writel_be,
.readsb = iseries_readsb,
.readsw = iseries_readsw,
.readsl = iseries_readsl,
.writesb = iseries_writesb,
.writesw = iseries_writesw,
.writesl = iseries_writesl,
.memset_io = iseries_memset_io,
.memcpy_fromio = iseries_memcpy_fromio,
.memcpy_toio = iseries_memcpy_toio,
};
void out_be64(volatile unsigned long __iomem *addr, unsigned long val) /*
* iSeries_pcibios_init
*
* Description:
* This function checks for all possible system PCI host bridges that connect
* PCI buses. The system hypervisor is queried as to the guest partition
* ownership status. A pci_controller is built for any bus which is partially
* owned or fully owned by this guest partition.
*/
void __init iSeries_pcibios_init(void)
{ {
BUG_ON(firmware_has_feature(FW_FEATURE_ISERIES)); struct pci_controller *phb;
struct device_node *root = of_find_node_by_path("/");
struct device_node *node = NULL;
__out_be64(addr, val); /* Install IO hooks */
} ppc_pci_io = iseries_pci_io;
EXPORT_SYMBOL(out_be64);
void memset_io(volatile void __iomem *addr, int c, unsigned long n) if (root == NULL) {
{ printk(KERN_CRIT "iSeries_pcibios_init: can't find root "
if (firmware_has_feature(FW_FEATURE_ISERIES)) { "of device tree\n");
volatile char __iomem *d = addr; return;
}
while ((node = of_get_next_child(root, node)) != NULL) {
HvBusNumber bus;
const u32 *busp;
while (n-- > 0) { if ((node->type == NULL) || (strcmp(node->type, "pci") != 0))
iSeries_Write_Byte(c, d++); continue;
}
} else
eeh_memset_io(addr, c, n);
}
EXPORT_SYMBOL(memset_io);
void memcpy_fromio(void *dest, const volatile void __iomem *src, busp = get_property(node, "bus-range", NULL);
unsigned long n) if (busp == NULL)
{ continue;
if (firmware_has_feature(FW_FEATURE_ISERIES)) { bus = *busp;
char *d = dest; printk("bus %d appears to exist\n", bus);
const volatile char __iomem *s = src; phb = pcibios_alloc_controller(node);
if (phb == NULL)
continue;
while (n-- > 0) { phb->pci_mem_offset = phb->local_number = bus;
*d++ = iSeries_Read_Byte(s++); phb->first_busno = bus;
} phb->last_busno = bus;
} else phb->ops = &iSeries_pci_ops;
eeh_memcpy_fromio(dest, src, n); }
}
EXPORT_SYMBOL(memcpy_fromio);
void memcpy_toio(volatile void __iomem *dest, const void *src, unsigned long n) of_node_put(root);
{
if (firmware_has_feature(FW_FEATURE_ISERIES)) {
const char *s = src;
volatile char __iomem *d = dest;
while (n-- > 0) { pci_devs_phb_init();
iSeries_Write_Byte(*s++, d++);
}
} else
eeh_memcpy_toio(dest, src, n);
} }
EXPORT_SYMBOL(memcpy_toio);
...@@ -617,6 +617,16 @@ static void iseries_dedicated_idle(void) ...@@ -617,6 +617,16 @@ static void iseries_dedicated_idle(void)
void __init iSeries_init_IRQ(void) { } void __init iSeries_init_IRQ(void) { }
#endif #endif
static void __iomem *iseries_ioremap(unsigned long address, unsigned long size,
unsigned long flags)
{
return (void __iomem *)address;
}
static void iseries_iounmap(void __iomem *token)
{
}
/* /*
* iSeries has no legacy IO, anything calling this function has to * iSeries has no legacy IO, anything calling this function has to
* fail or bad things will happen * fail or bad things will happen
...@@ -655,6 +665,8 @@ define_machine(iseries) { ...@@ -655,6 +665,8 @@ define_machine(iseries) {
.progress = iSeries_progress, .progress = iSeries_progress,
.probe = iseries_probe, .probe = iseries_probe,
.check_legacy_ioport = iseries_check_legacy_ioport, .check_legacy_ioport = iseries_check_legacy_ioport,
.ioremap = iseries_ioremap,
.iounmap = iseries_iounmap,
/* XXX Implement enable_pmcs for iSeries */ /* XXX Implement enable_pmcs for iSeries */
}; };
......
...@@ -120,10 +120,6 @@ static inline u8 eeh_readb(const volatile void __iomem *addr) ...@@ -120,10 +120,6 @@ static inline u8 eeh_readb(const volatile void __iomem *addr)
return eeh_check_failure(addr, val); return eeh_check_failure(addr, val);
return val; return val;
} }
static inline void eeh_writeb(u8 val, volatile void __iomem *addr)
{
out_8(addr, val);
}
static inline u16 eeh_readw(const volatile void __iomem *addr) static inline u16 eeh_readw(const volatile void __iomem *addr)
{ {
...@@ -132,21 +128,6 @@ static inline u16 eeh_readw(const volatile void __iomem *addr) ...@@ -132,21 +128,6 @@ static inline u16 eeh_readw(const volatile void __iomem *addr)
return eeh_check_failure(addr, val); return eeh_check_failure(addr, val);
return val; return val;
} }
static inline void eeh_writew(u16 val, volatile void __iomem *addr)
{
out_le16(addr, val);
}
static inline u16 eeh_raw_readw(const volatile void __iomem *addr)
{
u16 val = in_be16(addr);
if (EEH_POSSIBLE_ERROR(val, u16))
return eeh_check_failure(addr, val);
return val;
}
static inline void eeh_raw_writew(u16 val, volatile void __iomem *addr) {
volatile u16 __iomem *vaddr = (volatile u16 __iomem *) addr;
out_be16(vaddr, val);
}
static inline u32 eeh_readl(const volatile void __iomem *addr) static inline u32 eeh_readl(const volatile void __iomem *addr)
{ {
...@@ -155,44 +136,38 @@ static inline u32 eeh_readl(const volatile void __iomem *addr) ...@@ -155,44 +136,38 @@ static inline u32 eeh_readl(const volatile void __iomem *addr)
return eeh_check_failure(addr, val); return eeh_check_failure(addr, val);
return val; return val;
} }
static inline void eeh_writel(u32 val, volatile void __iomem *addr)
{ static inline u64 eeh_readq(const volatile void __iomem *addr)
out_le32(addr, val);
}
static inline u32 eeh_raw_readl(const volatile void __iomem *addr)
{ {
u32 val = in_be32(addr); u64 val = in_le64(addr);
if (EEH_POSSIBLE_ERROR(val, u32)) if (EEH_POSSIBLE_ERROR(val, u64))
return eeh_check_failure(addr, val); return eeh_check_failure(addr, val);
return val; return val;
} }
static inline void eeh_raw_writel(u32 val, volatile void __iomem *addr)
{
out_be32(addr, val);
}
static inline u64 eeh_readq(const volatile void __iomem *addr) static inline u16 eeh_readw_be(const volatile void __iomem *addr)
{ {
u64 val = in_le64(addr); u16 val = in_be16(addr);
if (EEH_POSSIBLE_ERROR(val, u64)) if (EEH_POSSIBLE_ERROR(val, u16))
return eeh_check_failure(addr, val); return eeh_check_failure(addr, val);
return val; return val;
} }
static inline void eeh_writeq(u64 val, volatile void __iomem *addr)
static inline u32 eeh_readl_be(const volatile void __iomem *addr)
{ {
out_le64(addr, val); u32 val = in_be32(addr);
if (EEH_POSSIBLE_ERROR(val, u32))
return eeh_check_failure(addr, val);
return val;
} }
static inline u64 eeh_raw_readq(const volatile void __iomem *addr)
static inline u64 eeh_readq_be(const volatile void __iomem *addr)
{ {
u64 val = in_be64(addr); u64 val = in_be64(addr);
if (EEH_POSSIBLE_ERROR(val, u64)) if (EEH_POSSIBLE_ERROR(val, u64))
return eeh_check_failure(addr, val); return eeh_check_failure(addr, val);
return val; return val;
} }
static inline void eeh_raw_writeq(u64 val, volatile void __iomem *addr)
{
out_be64(addr, val);
}
#define EEH_CHECK_ALIGN(v,a) \ #define EEH_CHECK_ALIGN(v,a) \
((((unsigned long)(v)) & ((a) - 1)) == 0) ((((unsigned long)(v)) & ((a) - 1)) == 0)
...@@ -292,68 +267,29 @@ static inline void eeh_memcpy_toio(volatile void __iomem *dest, const void *src, ...@@ -292,68 +267,29 @@ static inline void eeh_memcpy_toio(volatile void __iomem *dest, const void *src,
#undef EEH_CHECK_ALIGN #undef EEH_CHECK_ALIGN
static inline u8 eeh_inb(unsigned long port)
{
u8 val;
val = in_8((u8 __iomem *)(port+pci_io_base));
if (EEH_POSSIBLE_ERROR(val, u8))
return eeh_check_failure((void __iomem *)(port), val);
return val;
}
static inline void eeh_outb(u8 val, unsigned long port)
{
out_8((u8 __iomem *)(port+pci_io_base), val);
}
static inline u16 eeh_inw(unsigned long port)
{
u16 val;
val = in_le16((u16 __iomem *)(port+pci_io_base));
if (EEH_POSSIBLE_ERROR(val, u16))
return eeh_check_failure((void __iomem *)(port), val);
return val;
}
static inline void eeh_outw(u16 val, unsigned long port)
{
out_le16((u16 __iomem *)(port+pci_io_base), val);
}
static inline u32 eeh_inl(unsigned long port)
{
u32 val;
val = in_le32((u32 __iomem *)(port+pci_io_base));
if (EEH_POSSIBLE_ERROR(val, u32))
return eeh_check_failure((void __iomem *)(port), val);
return val;
}
static inline void eeh_outl(u32 val, unsigned long port)
{
out_le32((u32 __iomem *)(port+pci_io_base), val);
}
/* in-string eeh macros */ /* in-string eeh macros */
static inline void eeh_insb(unsigned long port, void * buf, int ns) static inline void eeh_readsb(const volatile void __iomem *addr, void * buf,
int ns)
{ {
_insb((u8 __iomem *)(port+pci_io_base), buf, ns); _insb(addr, buf, ns);
if (EEH_POSSIBLE_ERROR((*(((u8*)buf)+ns-1)), u8)) if (EEH_POSSIBLE_ERROR((*(((u8*)buf)+ns-1)), u8))
eeh_check_failure((void __iomem *)(port), *(u8*)buf); eeh_check_failure(addr, *(u8*)buf);
} }
static inline void eeh_insw_ns(unsigned long port, void * buf, int ns) static inline void eeh_readsw(const volatile void __iomem *addr, void * buf,
int ns)
{ {
_insw_ns((u16 __iomem *)(port+pci_io_base), buf, ns); _insw(addr, buf, ns);
if (EEH_POSSIBLE_ERROR((*(((u16*)buf)+ns-1)), u16)) if (EEH_POSSIBLE_ERROR((*(((u16*)buf)+ns-1)), u16))
eeh_check_failure((void __iomem *)(port), *(u16*)buf); eeh_check_failure(addr, *(u16*)buf);
} }
static inline void eeh_insl_ns(unsigned long port, void * buf, int nl) static inline void eeh_readsl(const volatile void __iomem *addr, void * buf,
int nl)
{ {
_insl_ns((u32 __iomem *)(port+pci_io_base), buf, nl); _insl(addr, buf, nl);
if (EEH_POSSIBLE_ERROR((*(((u32*)buf)+nl-1)), u32)) if (EEH_POSSIBLE_ERROR((*(((u32*)buf)+nl-1)), u32))
eeh_check_failure((void __iomem *)(port), *(u32*)buf); eeh_check_failure(addr, *(u32*)buf);
} }
#endif /* __KERNEL__ */ #endif /* __KERNEL__ */
......
...@@ -22,10 +22,17 @@ ...@@ -22,10 +22,17 @@
#endif #endif
#endif #endif
#ifdef __powerpc64__
#define __ide_mm_insw(p, a, c) readsw((void __iomem *)(p), (a), (c))
#define __ide_mm_insl(p, a, c) readsl((void __iomem *)(p), (a), (c))
#define __ide_mm_outsw(p, a, c) writesw((void __iomem *)(p), (a), (c))
#define __ide_mm_outsl(p, a, c) writesl((void __iomem *)(p), (a), (c))
#else
#define __ide_mm_insw(p, a, c) _insw_ns((volatile u16 __iomem *)(p), (a), (c)) #define __ide_mm_insw(p, a, c) _insw_ns((volatile u16 __iomem *)(p), (a), (c))
#define __ide_mm_insl(p, a, c) _insl_ns((volatile u32 __iomem *)(p), (a), (c)) #define __ide_mm_insl(p, a, c) _insl_ns((volatile u32 __iomem *)(p), (a), (c))
#define __ide_mm_outsw(p, a, c) _outsw_ns((volatile u16 __iomem *)(p), (a), (c)) #define __ide_mm_outsw(p, a, c) _outsw_ns((volatile u16 __iomem *)(p), (a), (c))
#define __ide_mm_outsl(p, a, c) _outsl_ns((volatile u32 __iomem *)(p), (a), (c)) #define __ide_mm_outsl(p, a, c) _outsl_ns((volatile u32 __iomem *)(p), (a), (c))
#endif
#ifndef __powerpc64__ #ifndef __powerpc64__
#include <linux/hdreg.h> #include <linux/hdreg.h>
......
/* This file is meant to be include multiple times by other headers */
DEF_PCI_AC_RET(readb, u8, (const PCI_IO_ADDR addr), (addr))
DEF_PCI_AC_RET(readw, u16, (const PCI_IO_ADDR addr), (addr))
DEF_PCI_AC_RET(readl, u32, (const PCI_IO_ADDR addr), (addr))
DEF_PCI_AC_RET(readq, u64, (const PCI_IO_ADDR addr), (addr))
DEF_PCI_AC_RET(readw_be, u16, (const PCI_IO_ADDR addr), (addr))
DEF_PCI_AC_RET(readl_be, u32, (const PCI_IO_ADDR addr), (addr))
DEF_PCI_AC_RET(readq_be, u64, (const PCI_IO_ADDR addr), (addr))
DEF_PCI_AC_NORET(writeb, (u8 val, PCI_IO_ADDR addr), (val, addr))
DEF_PCI_AC_NORET(writew, (u16 val, PCI_IO_ADDR addr), (val, addr))
DEF_PCI_AC_NORET(writel, (u32 val, PCI_IO_ADDR addr), (val, addr))
DEF_PCI_AC_NORET(writeq, (u64 val, PCI_IO_ADDR addr), (val, addr))
DEF_PCI_AC_NORET(writew_be, (u16 val, PCI_IO_ADDR addr), (val, addr))
DEF_PCI_AC_NORET(writel_be, (u32 val, PCI_IO_ADDR addr), (val, addr))
DEF_PCI_AC_NORET(writeq_be, (u64 val, PCI_IO_ADDR addr), (val, addr))
DEF_PCI_AC_RET(inb, u8, (unsigned long port), (port))
DEF_PCI_AC_RET(inw, u16, (unsigned long port), (port))
DEF_PCI_AC_RET(inl, u32, (unsigned long port), (port))
DEF_PCI_AC_NORET(outb, (u8 val, unsigned long port), (val, port))
DEF_PCI_AC_NORET(outw, (u16 val, unsigned long port), (val, port))
DEF_PCI_AC_NORET(outl, (u32 val, unsigned long port), (val, port))
DEF_PCI_AC_NORET(readsb, (const PCI_IO_ADDR a, void *b, unsigned long c), \
(a, b, c))
DEF_PCI_AC_NORET(readsw, (const PCI_IO_ADDR a, void *b, unsigned long c), \
(a, b, c))
DEF_PCI_AC_NORET(readsl, (const PCI_IO_ADDR a, void *b, unsigned long c), \
(a, b, c))
DEF_PCI_AC_NORET(writesb, (PCI_IO_ADDR a, const void *b, unsigned long c), \
(a, b, c))
DEF_PCI_AC_NORET(writesw, (PCI_IO_ADDR a, const void *b, unsigned long c), \
(a, b, c))
DEF_PCI_AC_NORET(writesl, (PCI_IO_ADDR a, const void *b, unsigned long c), \
(a, b, c))
DEF_PCI_AC_NORET(insb, (unsigned long p, void *b, unsigned long c), \
(p, b, c))
DEF_PCI_AC_NORET(insw, (unsigned long p, void *b, unsigned long c), \
(p, b, c))
DEF_PCI_AC_NORET(insl, (unsigned long p, void *b, unsigned long c), \
(p, b, c))
DEF_PCI_AC_NORET(outsb, (unsigned long p, const void *b, unsigned long c), \
(p, b, c))
DEF_PCI_AC_NORET(outsw, (unsigned long p, const void *b, unsigned long c), \
(p, b, c))
DEF_PCI_AC_NORET(outsl, (unsigned long p, const void *b, unsigned long c), \
(p, b, c))
DEF_PCI_AC_NORET(memset_io, (PCI_IO_ADDR a, int c, unsigned long n), \
(a, c, n))
DEF_PCI_AC_NORET(memcpy_fromio,(void *d,const PCI_IO_ADDR s,unsigned long n), \
(d, s, n))
DEF_PCI_AC_NORET(memcpy_toio,(PCI_IO_ADDR d,const void *s,unsigned long n), \
(d, s, n))
此差异已折叠。
...@@ -87,6 +87,10 @@ struct machdep_calls { ...@@ -87,6 +87,10 @@ struct machdep_calls {
void (*tce_flush)(struct iommu_table *tbl); void (*tce_flush)(struct iommu_table *tbl);
void (*pci_dma_dev_setup)(struct pci_dev *dev); void (*pci_dma_dev_setup)(struct pci_dev *dev);
void (*pci_dma_bus_setup)(struct pci_bus *bus); void (*pci_dma_bus_setup)(struct pci_bus *bus);
void __iomem * (*ioremap)(unsigned long addr, unsigned long size,
unsigned long flags);
void (*iounmap)(void __iomem *token);
#endif /* CONFIG_PPC64 */ #endif /* CONFIG_PPC64 */
int (*probe)(void); int (*probe)(void);
......
...@@ -321,12 +321,12 @@ __do_out_asm(outl, "stwbrx") ...@@ -321,12 +321,12 @@ __do_out_asm(outl, "stwbrx")
#define inl_p(port) inl((port)) #define inl_p(port) inl((port))
#define outl_p(val, port) outl((val), (port)) #define outl_p(val, port) outl((val), (port))
extern void _insb(volatile u8 __iomem *port, void *buf, long count); extern void _insb(const volatile u8 __iomem *addr, void *buf, long count);
extern void _outsb(volatile u8 __iomem *port, const void *buf, long count); extern void _outsb(volatile u8 __iomem *addr,const void *buf,long count);
extern void _insw_ns(volatile u16 __iomem *port, void *buf, long count); extern void _insw_ns(const volatile u16 __iomem *addr, void *buf, long count);
extern void _outsw_ns(volatile u16 __iomem *port, const void *buf, long count); extern void _outsw_ns(volatile u16 __iomem *addr, const void *buf, long count);
extern void _insl_ns(volatile u32 __iomem *port, void *buf, long count); extern void _insl_ns(const volatile u32 __iomem *addr, void *buf, long count);
extern void _outsl_ns(volatile u32 __iomem *port, const void *buf, long count); extern void _outsl_ns(volatile u32 __iomem *addr, const void *buf, long count);
#define IO_SPACE_LIMIT ~0 #define IO_SPACE_LIMIT ~0
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册