2008-10-23 09:26:29 +04:00
|
|
|
#ifndef _ASM_X86_IO_H
|
|
|
|
#define _ASM_X86_IO_H
|
2008-03-19 03:00:15 +03:00
|
|
|
|
2010-02-05 17:37:09 +03:00
|
|
|
/*
|
|
|
|
* This file contains the definitions for the x86 IO instructions
|
|
|
|
* inb/inw/inl/outb/outw/outl and the "string versions" of the same
|
|
|
|
* (insb/insw/insl/outsb/outsw/outsl). You can also use "pausing"
|
|
|
|
* versions of the single-IO instructions (inb_p/inw_p/..).
|
|
|
|
*
|
|
|
|
* This file is not meant to be obfuscating: it's just complicated
|
|
|
|
* to (a) handle it all in a way that makes gcc able to optimize it
|
|
|
|
* as well as possible and (b) trying to avoid writing the same thing
|
|
|
|
* over and over again with slight variations and possibly making a
|
|
|
|
* mistake somewhere.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Thanks to James van Artsdalen for a better timing-fix than
|
|
|
|
* the two short jumps: using outb's to a nonexistent port seems
|
|
|
|
* to guarantee better timings even on fast machines.
|
|
|
|
*
|
|
|
|
* On the other hand, I'd like to be sure of a non-existent port:
|
|
|
|
* I feel a bit unsafe about using 0x80 (should be safe, though)
|
|
|
|
*
|
|
|
|
* Linus
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Bit simplified and optimized by Jan Hubicka
|
|
|
|
* Support of BIGMEM added by Gerhard Wichert, Siemens AG, July 1999.
|
|
|
|
*
|
|
|
|
* isa_memset_io, isa_memcpy_fromio, isa_memcpy_toio added,
|
|
|
|
* isa_read[wl] and isa_write[wl] fixed
|
|
|
|
* - Arnaldo Carvalho de Melo <acme@conectiva.com.br>
|
|
|
|
*/
|
|
|
|
|
2008-03-19 03:00:24 +03:00
|
|
|
#define ARCH_HAS_IOREMAP_WC
|
|
|
|
|
2010-02-05 17:37:09 +03:00
|
|
|
#include <linux/string.h>
|
2008-05-27 20:47:13 +04:00
|
|
|
#include <linux/compiler.h>
|
2009-02-07 00:29:44 +03:00
|
|
|
#include <asm/page.h>
|
2014-04-08 02:39:49 +04:00
|
|
|
#include <asm/early_ioremap.h>
|
2015-06-02 12:01:38 +03:00
|
|
|
#include <asm/pgtable_types.h>
|
2008-05-27 20:47:13 +04:00
|
|
|
|
|
|
|
#define build_mmio_read(name, size, type, reg, barrier) \
|
|
|
|
static inline type name(const volatile void __iomem *addr) \
|
2008-08-13 23:07:07 +04:00
|
|
|
{ type ret; asm volatile("mov" size " %1,%0":reg (ret) \
|
2008-05-27 20:47:13 +04:00
|
|
|
:"m" (*(volatile type __force *)addr) barrier); return ret; }
|
|
|
|
|
|
|
|
#define build_mmio_write(name, size, type, reg, barrier) \
|
|
|
|
static inline void name(type val, volatile void __iomem *addr) \
|
|
|
|
{ asm volatile("mov" size " %0,%1": :reg (val), \
|
|
|
|
"m" (*(volatile type __force *)addr) barrier); }
|
|
|
|
|
2008-08-13 23:07:07 +04:00
|
|
|
build_mmio_read(readb, "b", unsigned char, "=q", :"memory")
|
|
|
|
build_mmio_read(readw, "w", unsigned short, "=r", :"memory")
|
|
|
|
build_mmio_read(readl, "l", unsigned int, "=r", :"memory")
|
2008-05-27 20:47:13 +04:00
|
|
|
|
2008-08-13 23:07:07 +04:00
|
|
|
build_mmio_read(__readb, "b", unsigned char, "=q", )
|
|
|
|
build_mmio_read(__readw, "w", unsigned short, "=r", )
|
|
|
|
build_mmio_read(__readl, "l", unsigned int, "=r", )
|
2008-05-27 20:47:13 +04:00
|
|
|
|
|
|
|
build_mmio_write(writeb, "b", unsigned char, "q", :"memory")
|
|
|
|
build_mmio_write(writew, "w", unsigned short, "r", :"memory")
|
|
|
|
build_mmio_write(writel, "l", unsigned int, "r", :"memory")
|
|
|
|
|
|
|
|
build_mmio_write(__writeb, "b", unsigned char, "q", )
|
|
|
|
build_mmio_write(__writew, "w", unsigned short, "r", )
|
|
|
|
build_mmio_write(__writel, "l", unsigned int, "r", )
|
|
|
|
|
|
|
|
#define readb_relaxed(a) __readb(a)
|
|
|
|
#define readw_relaxed(a) __readw(a)
|
|
|
|
#define readl_relaxed(a) __readl(a)
|
|
|
|
#define __raw_readb __readb
|
|
|
|
#define __raw_readw __readw
|
|
|
|
#define __raw_readl __readl
|
|
|
|
|
2013-09-04 14:34:08 +04:00
|
|
|
#define writeb_relaxed(v, a) __writeb(v, a)
|
|
|
|
#define writew_relaxed(v, a) __writew(v, a)
|
|
|
|
#define writel_relaxed(v, a) __writel(v, a)
|
2008-05-27 20:47:13 +04:00
|
|
|
#define __raw_writeb __writeb
|
|
|
|
#define __raw_writew __writew
|
|
|
|
#define __raw_writel __writel
|
|
|
|
|
|
|
|
#define mmiowb() barrier()
|
|
|
|
|
|
|
|
#ifdef CONFIG_X86_64
|
2008-11-30 12:20:20 +03:00
|
|
|
|
2008-08-13 23:07:07 +04:00
|
|
|
build_mmio_read(readq, "q", unsigned long, "=r", :"memory")
|
2008-05-27 20:47:13 +04:00
|
|
|
build_mmio_write(writeq, "q", unsigned long, "r", :"memory")
|
|
|
|
|
2008-11-30 12:20:20 +03:00
|
|
|
#define readq_relaxed(a) readq(a)
|
2013-09-04 14:34:08 +04:00
|
|
|
#define writeq_relaxed(v, a) writeq(v, a)
|
2008-11-30 12:20:20 +03:00
|
|
|
|
|
|
|
#define __raw_readq(a) readq(a)
|
|
|
|
#define __raw_writeq(val, addr) writeq(val, addr)
|
|
|
|
|
2008-11-30 11:33:55 +03:00
|
|
|
/* Let people know that we have them */
|
2008-11-30 12:20:20 +03:00
|
|
|
#define readq readq
|
|
|
|
#define writeq writeq
|
2008-11-30 11:16:04 +03:00
|
|
|
|
2011-05-25 04:13:09 +04:00
|
|
|
#endif
|
|
|
|
|
2009-02-07 00:29:44 +03:00
|
|
|
/**
|
|
|
|
* virt_to_phys - map virtual addresses to physical
|
|
|
|
* @address: address to remap
|
|
|
|
*
|
|
|
|
* The returned physical address is the physical (CPU) mapping for
|
|
|
|
* the memory address given. It is only valid to use this function on
|
|
|
|
* addresses directly mapped or allocated via kmalloc.
|
|
|
|
*
|
|
|
|
* This function does not give bus mappings for DMA transfers. In
|
|
|
|
* almost all conceivable cases a device driver should not be using
|
|
|
|
* this function
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline phys_addr_t virt_to_phys(volatile void *address)
|
|
|
|
{
|
|
|
|
return __pa(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* phys_to_virt - map physical address to virtual
|
|
|
|
* @address: address to remap
|
|
|
|
*
|
|
|
|
* The returned virtual address is a current CPU mapping for
|
|
|
|
* the memory address given. It is only valid to use this function on
|
|
|
|
* addresses that have a kernel mapping
|
|
|
|
*
|
|
|
|
* This function does not handle bus mappings for DMA transfers. In
|
|
|
|
* almost all conceivable cases a device driver should not be using
|
|
|
|
* this function
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline void *phys_to_virt(phys_addr_t address)
|
|
|
|
{
|
|
|
|
return __va(address);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Change "struct page" to physical address.
|
|
|
|
*/
|
|
|
|
#define page_to_phys(page) ((dma_addr_t)page_to_pfn(page) << PAGE_SHIFT)
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ISA I/O bus memory addresses are 1:1 with the physical address.
|
2009-02-18 00:01:51 +03:00
|
|
|
* However, we truncate the address to unsigned int to avoid undesirable
|
|
|
|
* promitions in legacy drivers.
|
2009-02-07 00:29:44 +03:00
|
|
|
*/
|
2009-02-18 00:01:51 +03:00
|
|
|
static inline unsigned int isa_virt_to_bus(volatile void *address)
|
|
|
|
{
|
|
|
|
return (unsigned int)virt_to_phys(address);
|
|
|
|
}
|
|
|
|
#define isa_page_to_bus(page) ((unsigned int)page_to_phys(page))
|
|
|
|
#define isa_bus_to_virt phys_to_virt
|
2009-02-07 00:29:44 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* However PCI ones are not necessarily 1:1 and therefore these interfaces
|
|
|
|
* are forbidden in portable PCI drivers.
|
|
|
|
*
|
|
|
|
* Allow them on x86 for legacy drivers, though.
|
|
|
|
*/
|
|
|
|
#define virt_to_bus virt_to_phys
|
|
|
|
#define bus_to_virt phys_to_virt
|
|
|
|
|
2009-02-07 00:29:52 +03:00
|
|
|
/**
|
|
|
|
* ioremap - map bus memory into CPU space
|
|
|
|
* @offset: bus address of the memory
|
|
|
|
* @size: size of the resource to map
|
|
|
|
*
|
|
|
|
* ioremap performs a platform specific sequence of operations to
|
|
|
|
* make bus memory CPU accessible via the readb/readw/readl/writeb/
|
|
|
|
* writew/writel functions and the other mmio helpers. The returned
|
|
|
|
* address is not guaranteed to be usable directly as a virtual
|
|
|
|
* address.
|
|
|
|
*
|
|
|
|
* If the area you are trying to map is a PCI BAR you should have a
|
|
|
|
* look at pci_iomap().
|
|
|
|
*/
|
|
|
|
extern void __iomem *ioremap_nocache(resource_size_t offset, unsigned long size);
|
x86/mm: Add ioremap_uc() helper to map memory uncacheable (not UC-)
ioremap_nocache() currently uses UC- by default. Our goal is to
eventually make UC the default. Linux maps UC- to PCD=1, PWT=0
page attributes on non-PAT systems. Linux maps UC to PCD=1,
PWT=1 page attributes on non-PAT systems. On non-PAT and PAT
systems a WC MTRR has different effects on pages with either of
these attributes. In order to help with a smooth transition its
best to enable use of UC (PCD,1, PWT=1) on a region as that
ensures a WC MTRR will have no effect on a region, this however
requires us to have an way to declare a region as UC and we
currently do not have a way to do this.
WC MTRR on non-PAT system with PCD=1, PWT=0 (UC-) yields WC.
WC MTRR on non-PAT system with PCD=1, PWT=1 (UC) yields UC.
WC MTRR on PAT system with PCD=1, PWT=0 (UC-) yields WC.
WC MTRR on PAT system with PCD=1, PWT=1 (UC) yields UC.
A flip of the default ioremap_nocache() behaviour from UC- to UC
can therefore regress a memory region from effective memory type
WC to UC if MTRRs are used. Use of MTRRs should be phased out
and in the best case only arch_phys_wc_add() use will remain,
even if this happens arch_phys_wc_add() will have an effect on
non-PAT systems and changes to default ioremap_nocache()
behaviour could regress drivers.
Now, ideally we'd use ioremap_nocache() on the regions in which
we'd need uncachable memory types and avoid any MTRRs on those
regions. There are however some restrictions on MTRRs use, such
as the requirement of having the base and size of variable sized
MTRRs to be powers of two, which could mean having to use a WC
MTRR over a large area which includes a region in which
write-combining effects are undesirable.
Add ioremap_uc() to help with the both phasing out of MTRR use
and also provide a way to blacklist small WC undesirable regions
in devices with mixed regions which are size-implicated to use
large WC MTRRs. Use of ioremap_uc() helps phase out MTRR use by
avoiding regressions with an eventual flip of default behaviour
or ioremap_nocache() from UC- to UC.
Drivers working with WC MTRRs can use the below table to review
and consider the use of ioremap*() and similar helpers to ensure
appropriate behaviour long term even if default
ioremap_nocache() behaviour changes from UC- to UC.
Although ioremap_uc() is being added we leave set_memory_uc() to
use UC- as only initial memory type setup is required to be able
to accommodate existing device drivers and phase out MTRR use.
It should also be clarified that set_memory_uc() cannot be used
with IO memory, even though its use will not return any errors,
it really has no effect.
----------------------------------------------------------------------
MTRR Non-PAT PAT Linux ioremap value Effective memory type
----------------------------------------------------------------------
Non-PAT | PAT
PAT
|PCD
||PWT
|||
WC 000 WB _PAGE_CACHE_MODE_WB WC | WC
WC 001 WC _PAGE_CACHE_MODE_WC WC* | WC
WC 010 UC- _PAGE_CACHE_MODE_UC_MINUS WC* | WC
WC 011 UC _PAGE_CACHE_MODE_UC UC | UC
----------------------------------------------------------------------
Signed-off-by: Luis R. Rodriguez <mcgrof@suse.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: H. Peter Anvin <hpa@zytor.com>
Cc: Andy Lutomirski <luto@amacapital.net>
Cc: Antonino Daplas <adaplas@gmail.com>
Cc: Bjorn Helgaas <bhelgaas@google.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Brian Gerst <brgerst@gmail.com>
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Davidlohr Bueso <dbueso@suse.de>
Cc: Denys Vlasenko <dvlasenk@redhat.com>
Cc: Jean-Christophe Plagniol-Villard <plagnioj@jcrosoft.com>
Cc: Juergen Gross <jgross@suse.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Mike Travis <travis@sgi.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Suresh Siddha <sbsiddha@gmail.com>
Cc: Thierry Reding <treding@nvidia.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Tomi Valkeinen <tomi.valkeinen@ti.com>
Cc: Toshi Kani <toshi.kani@hp.com>
Cc: Ville Syrjälä <syrjala@sci.fi>
Cc: Vlastimil Babka <vbabka@suse.cz>
Cc: Will Deacon <will.deacon@arm.com>
Cc: linux-fbdev@vger.kernel.org
Link: http://lkml.kernel.org/r/1430343851-967-2-git-send-email-mcgrof@do-not-panic.com
Link: http://lkml.kernel.org/r/1431332153-18566-9-git-send-email-bp@alien8.de
Signed-off-by: Ingo Molnar <mingo@kernel.org>
2015-05-11 11:15:53 +03:00
|
|
|
extern void __iomem *ioremap_uc(resource_size_t offset, unsigned long size);
|
2009-02-07 00:29:52 +03:00
|
|
|
extern void __iomem *ioremap_cache(resource_size_t offset, unsigned long size);
|
|
|
|
extern void __iomem *ioremap_prot(resource_size_t offset, unsigned long size,
|
|
|
|
unsigned long prot_val);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The default ioremap() behavior is non-cached:
|
|
|
|
*/
|
|
|
|
static inline void __iomem *ioremap(resource_size_t offset, unsigned long size)
|
|
|
|
{
|
|
|
|
return ioremap_nocache(offset, size);
|
|
|
|
}
|
|
|
|
|
|
|
|
extern void iounmap(volatile void __iomem *addr);
|
|
|
|
|
2010-09-16 20:44:02 +04:00
|
|
|
extern void set_iounmap_nonlazy(void);
|
2008-07-21 20:54:29 +04:00
|
|
|
|
2010-02-05 17:37:09 +03:00
|
|
|
#ifdef __KERNEL__
|
|
|
|
|
|
|
|
#include <asm-generic/iomap.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Convert a virtual cached pointer to an uncached pointer
|
|
|
|
*/
|
|
|
|
#define xlate_dev_kmem_ptr(p) p
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
memset_io(volatile void __iomem *addr, unsigned char val, size_t count)
|
|
|
|
{
|
|
|
|
memset((void __force *)addr, val, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
memcpy_fromio(void *dst, const volatile void __iomem *src, size_t count)
|
|
|
|
{
|
|
|
|
memcpy(dst, (const void __force *)src, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
memcpy_toio(volatile void __iomem *dst, const void *src, size_t count)
|
|
|
|
{
|
|
|
|
memcpy((void __force *)dst, src, count);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* ISA space is 'always mapped' on a typical x86 system, no need to
|
|
|
|
* explicitly ioremap() it. The fact that the ISA IO space is mapped
|
|
|
|
* to PAGE_OFFSET is pure coincidence - it does not mean ISA values
|
|
|
|
* are physical addresses. The following constant pointer can be
|
|
|
|
* used as the IO-area pointer (it can be iounmapped as well, so the
|
|
|
|
* analogy with PCI is quite large):
|
|
|
|
*/
|
|
|
|
#define __ISA_IO_base ((char __iomem *)(PAGE_OFFSET))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Cache management
|
|
|
|
*
|
|
|
|
* This needed for two cases
|
|
|
|
* 1. Out of order aware processors
|
|
|
|
* 2. Accidentally out of order processors (PPro errata #51)
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline void flush_write_buffers(void)
|
|
|
|
{
|
2014-03-11 03:32:22 +04:00
|
|
|
#if defined(CONFIG_X86_PPRO_FENCE)
|
2010-02-05 17:37:09 +03:00
|
|
|
asm volatile("lock; addl $0,0(%%esp)": : :"memory");
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif /* __KERNEL__ */
|
|
|
|
|
|
|
|
extern void native_io_delay(void);
|
|
|
|
|
|
|
|
extern int io_delay_type;
|
|
|
|
extern void io_delay_init(void);
|
|
|
|
|
|
|
|
#if defined(CONFIG_PARAVIRT)
|
|
|
|
#include <asm/paravirt.h>
|
2007-10-11 13:20:03 +04:00
|
|
|
#else
|
2010-02-05 17:37:09 +03:00
|
|
|
|
|
|
|
static inline void slow_down_io(void)
|
|
|
|
{
|
|
|
|
native_io_delay();
|
|
|
|
#ifdef REALLY_SLOW_IO
|
|
|
|
native_io_delay();
|
|
|
|
native_io_delay();
|
|
|
|
native_io_delay();
|
2007-10-11 13:20:03 +04:00
|
|
|
#endif
|
2010-02-05 17:37:09 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define BUILDIO(bwl, bw, type) \
|
|
|
|
static inline void out##bwl(unsigned type value, int port) \
|
|
|
|
{ \
|
|
|
|
asm volatile("out" #bwl " %" #bw "0, %w1" \
|
|
|
|
: : "a"(value), "Nd"(port)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static inline unsigned type in##bwl(int port) \
|
|
|
|
{ \
|
|
|
|
unsigned type value; \
|
|
|
|
asm volatile("in" #bwl " %w1, %" #bw "0" \
|
|
|
|
: "=a"(value) : "Nd"(port)); \
|
|
|
|
return value; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static inline void out##bwl##_p(unsigned type value, int port) \
|
|
|
|
{ \
|
|
|
|
out##bwl(value, port); \
|
|
|
|
slow_down_io(); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static inline unsigned type in##bwl##_p(int port) \
|
|
|
|
{ \
|
|
|
|
unsigned type value = in##bwl(port); \
|
|
|
|
slow_down_io(); \
|
|
|
|
return value; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static inline void outs##bwl(int port, const void *addr, unsigned long count) \
|
|
|
|
{ \
|
|
|
|
asm volatile("rep; outs" #bwl \
|
|
|
|
: "+S"(addr), "+c"(count) : "d"(port)); \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
static inline void ins##bwl(int port, void *addr, unsigned long count) \
|
|
|
|
{ \
|
|
|
|
asm volatile("rep; ins" #bwl \
|
|
|
|
: "+D"(addr), "+c"(count) : "d"(port)); \
|
|
|
|
}
|
|
|
|
|
|
|
|
BUILDIO(b, b, char)
|
|
|
|
BUILDIO(w, w, short)
|
|
|
|
BUILDIO(l, , int)
|
2008-03-19 03:00:15 +03:00
|
|
|
|
2014-07-28 19:20:33 +04:00
|
|
|
extern void *xlate_dev_mem_ptr(phys_addr_t phys);
|
|
|
|
extern void unxlate_dev_mem_ptr(phys_addr_t phys, void *addr);
|
2008-03-19 03:00:15 +03:00
|
|
|
|
2008-03-19 03:00:16 +03:00
|
|
|
extern int ioremap_change_attr(unsigned long vaddr, unsigned long size,
|
2014-11-03 16:01:58 +03:00
|
|
|
enum page_cache_mode pcm);
|
2009-01-10 03:13:13 +03:00
|
|
|
extern void __iomem *ioremap_wc(resource_size_t offset, unsigned long size);
|
2008-03-19 03:00:16 +03:00
|
|
|
|
2010-10-14 03:02:24 +04:00
|
|
|
extern bool is_early_ioremap_ptep(pte_t *ptep);
|
2008-06-25 08:19:03 +04:00
|
|
|
|
2009-02-09 23:05:46 +03:00
|
|
|
#ifdef CONFIG_XEN
|
2011-08-04 12:00:38 +04:00
|
|
|
#include <xen/xen.h>
|
2009-02-09 23:05:46 +03:00
|
|
|
struct bio_vec;
|
|
|
|
|
|
|
|
extern bool xen_biovec_phys_mergeable(const struct bio_vec *vec1,
|
|
|
|
const struct bio_vec *vec2);
|
|
|
|
|
|
|
|
#define BIOVEC_PHYS_MERGEABLE(vec1, vec2) \
|
|
|
|
(__BIOVEC_PHYS_MERGEABLE(vec1, vec2) && \
|
|
|
|
(!xen_domain() || xen_biovec_phys_mergeable(vec1, vec2)))
|
|
|
|
#endif /* CONFIG_XEN */
|
|
|
|
|
2009-01-29 02:42:23 +03:00
|
|
|
#define IO_SPACE_LIMIT 0xffff
|
2008-06-25 08:19:03 +04:00
|
|
|
|
2013-05-14 03:58:40 +04:00
|
|
|
#ifdef CONFIG_MTRR
|
2015-05-26 11:28:13 +03:00
|
|
|
extern int __must_check arch_phys_wc_index(int handle);
|
|
|
|
#define arch_phys_wc_index arch_phys_wc_index
|
|
|
|
|
2013-05-14 03:58:40 +04:00
|
|
|
extern int __must_check arch_phys_wc_add(unsigned long base,
|
|
|
|
unsigned long size);
|
|
|
|
extern void arch_phys_wc_del(int handle);
|
|
|
|
#define arch_phys_wc_add arch_phys_wc_add
|
|
|
|
#endif
|
|
|
|
|
2008-10-23 09:26:29 +04:00
|
|
|
#endif /* _ASM_X86_IO_H */
|