io.h 14.4 KB
Newer Older
1 2
#ifndef _ASM_POWERPC_IO_H
#define _ASM_POWERPC_IO_H
3
#ifdef __KERNEL__
L
Linus Torvalds 已提交
4 5 6 7 8 9 10 11

/* 
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

12 13
/* Check of existence of legacy devices */
extern int check_legacy_ioport(unsigned long base_port);
14 15
#define PARALLEL_BASE	0x378
#define PNPBIOS_BASE	0xf000	/* only relevant for PReP */
16

17 18 19 20
#ifndef CONFIG_PPC64
#include <asm-ppc/io.h>
#else

L
Linus Torvalds 已提交
21 22 23
#include <linux/compiler.h>
#include <asm/page.h>
#include <asm/byteorder.h>
24
#include <asm/paca.h>
25
#include <asm/synch.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31 32 33 34 35 36 37 38
#include <asm/delay.h>

#include <asm-generic/iomap.h>

#define SIO_CONFIG_RA	0x398
#define SIO_CONFIG_RD	0x399

#define SLOW_DOWN_IO

extern unsigned long isa_io_base;
extern unsigned long pci_io_base;

#ifdef CONFIG_PPC_ISERIES
39

40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85
extern int in_8(const volatile unsigned char __iomem *addr);
extern void out_8(volatile unsigned char __iomem *addr, int val);
extern int in_le16(const volatile unsigned short __iomem *addr);
extern int in_be16(const volatile unsigned short __iomem *addr);
extern void out_le16(volatile unsigned short __iomem *addr, int val);
extern void out_be16(volatile unsigned short __iomem *addr, int val);
extern unsigned in_le32(const volatile unsigned __iomem *addr);
extern unsigned in_be32(const volatile unsigned __iomem *addr);
extern void out_le32(volatile unsigned __iomem *addr, int val);
extern void out_be32(volatile unsigned __iomem *addr, int val);
extern unsigned long in_le64(const volatile unsigned long __iomem *addr);
extern unsigned long in_be64(const volatile unsigned long __iomem *addr);
extern void out_le64(volatile unsigned long __iomem *addr, unsigned long val);
extern void out_be64(volatile unsigned long __iomem *addr, unsigned long val);

extern unsigned char __raw_readb(const volatile void __iomem *addr);
extern unsigned short __raw_readw(const volatile void __iomem *addr);
extern unsigned int __raw_readl(const volatile void __iomem *addr);
extern unsigned long __raw_readq(const volatile void __iomem *addr);
extern void __raw_writeb(unsigned char v, volatile void __iomem *addr);
extern void __raw_writew(unsigned short v, volatile void __iomem *addr);
extern void __raw_writel(unsigned int v, volatile void __iomem *addr);
extern void __raw_writeq(unsigned long v, volatile void __iomem *addr);

extern void memset_io(volatile void __iomem *addr, int c, unsigned long n);
extern void memcpy_fromio(void *dest, const volatile void __iomem *src,
                                 unsigned long n);
extern void memcpy_toio(volatile void __iomem *dest, const void *src,
                                 unsigned long n);

#else /* CONFIG_PPC_ISERIES */

#define in_8(addr)		__in_8((addr))
#define out_8(addr, val)	__out_8((addr), (val))
#define in_le16(addr)		__in_le16((addr))
#define in_be16(addr)		__in_be16((addr))
#define out_le16(addr, val)	__out_le16((addr), (val))
#define out_be16(addr, val)	__out_be16((addr), (val))
#define in_le32(addr)		__in_le32((addr))
#define in_be32(addr)		__in_be32((addr))
#define out_le32(addr, val)	__out_le32((addr), (val))
#define out_be32(addr, val)	__out_be32((addr), (val))
#define in_le64(addr)		__in_le64((addr))
#define in_be64(addr)		__in_be64((addr))
#define out_le64(addr, val)	__out_le64((addr), (val))
#define out_be64(addr, val)	__out_be64((addr), (val))
L
Linus Torvalds 已提交
86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121

static inline unsigned char __raw_readb(const volatile void __iomem *addr)
{
	return *(volatile unsigned char __force *)addr;
}
static inline unsigned short __raw_readw(const volatile void __iomem *addr)
{
	return *(volatile unsigned short __force *)addr;
}
static inline unsigned int __raw_readl(const volatile void __iomem *addr)
{
	return *(volatile unsigned int __force *)addr;
}
static inline unsigned long __raw_readq(const volatile void __iomem *addr)
{
	return *(volatile unsigned long __force *)addr;
}
static inline void __raw_writeb(unsigned char v, volatile void __iomem *addr)
{
	*(volatile unsigned char __force *)addr = v;
}
static inline void __raw_writew(unsigned short v, volatile void __iomem *addr)
{
	*(volatile unsigned short __force *)addr = v;
}
static inline void __raw_writel(unsigned int v, volatile void __iomem *addr)
{
	*(volatile unsigned int __force *)addr = v;
}
static inline void __raw_writeq(unsigned long v, volatile void __iomem *addr)
{
	*(volatile unsigned long __force *)addr = v;
}
#define memset_io(a,b,c)	eeh_memset_io((a),(b),(c))
#define memcpy_fromio(a,b,c)	eeh_memcpy_fromio((a),(b),(c))
#define memcpy_toio(a,b,c)	eeh_memcpy_toio((a),(b),(c))
122 123

#endif /* CONFIG_PPC_ISERIES */
L
Linus Torvalds 已提交
124 125 126 127 128 129 130 131 132 133

/*
 * The insw/outsw/insl/outsl macros don't do byte-swapping.
 * They are only used in practice for transferring buffers which
 * are arrays of bytes, and byte-swapping is not appropriate in
 * that case.  - paulus */
#define insb(port, buf, ns)	eeh_insb((port), (buf), (ns))
#define insw(port, buf, ns)	eeh_insw_ns((port), (buf), (ns))
#define insl(port, buf, nl)	eeh_insl_ns((port), (buf), (nl))

134 135 136
#define outsb(port, buf, ns)  _outsb((u8 __iomem *)((port)+pci_io_base), (buf), (ns))
#define outsw(port, buf, ns)  _outsw_ns((u16 __iomem *)((port)+pci_io_base), (buf), (ns))
#define outsl(port, buf, nl)  _outsl_ns((u32 __iomem *)((port)+pci_io_base), (buf), (nl))
L
Linus Torvalds 已提交
137

138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
#define readb(addr)		eeh_readb(addr)
#define readw(addr)		eeh_readw(addr)
#define readl(addr)		eeh_readl(addr)
#define readq(addr)		eeh_readq(addr)
#define writeb(data, addr)	eeh_writeb((data), (addr))
#define writew(data, addr)	eeh_writew((data), (addr))
#define writel(data, addr)	eeh_writel((data), (addr))
#define writeq(data, addr)	eeh_writeq((data), (addr))
#define inb(port)		eeh_inb((unsigned long)port)
#define outb(val, port)		eeh_outb(val, (unsigned long)port)
#define inw(port)		eeh_inw((unsigned long)port)
#define outw(val, port)		eeh_outw(val, (unsigned long)port)
#define inl(port)		eeh_inl((unsigned long)port)
#define outl(val, port)		eeh_outl(val, (unsigned long)port)

L
Linus Torvalds 已提交
153 154 155 156 157
#define readb_relaxed(addr) readb(addr)
#define readw_relaxed(addr) readw(addr)
#define readl_relaxed(addr) readl(addr)
#define readq_relaxed(addr) readq(addr)

158 159 160 161 162 163
extern void _insb(volatile u8 __iomem *port, void *buf, long count);
extern void _outsb(volatile u8 __iomem *port, const void *buf, long count);
extern void _insw_ns(volatile u16 __iomem *port, void *buf, long count);
extern void _outsw_ns(volatile u16 __iomem *port, const void *buf, long count);
extern void _insl_ns(volatile u32 __iomem *port, void *buf, long count);
extern void _outsl_ns(volatile u32 __iomem *port, const void *buf, long count);
L
Linus Torvalds 已提交
164

165 166 167 168 169
static inline void mmiowb(void)
{
	__asm__ __volatile__ ("sync" : : : "memory");
	get_paca()->io_sync = 0;
}
L
Linus Torvalds 已提交
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272

/*
 * output pause versions need a delay at least for the
 * w83c105 ide controller in a p610.
 */
#define inb_p(port)             inb(port)
#define outb_p(val, port)       (udelay(1), outb((val), (port)))
#define inw_p(port)             inw(port)
#define outw_p(val, port)       (udelay(1), outw((val), (port)))
#define inl_p(port)             inl(port)
#define outl_p(val, port)       (udelay(1), outl((val), (port)))


#define IO_SPACE_LIMIT ~(0UL)


extern int __ioremap_explicit(unsigned long p_addr, unsigned long v_addr,
		     	      unsigned long size, unsigned long flags);
extern void __iomem *__ioremap(unsigned long address, unsigned long size,
		       unsigned long flags);

/**
 * ioremap     -   map bus memory into CPU space
 * @address:   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.
 */
extern void __iomem *ioremap(unsigned long address, unsigned long size);

#define ioremap_nocache(addr, size)	ioremap((addr), (size))
extern int iounmap_explicit(volatile void __iomem *addr, unsigned long size);
extern void iounmap(volatile void __iomem *addr);
extern void __iomem * reserve_phb_iospace(unsigned long size);

/**
 *	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 unsigned long virt_to_phys(volatile void * address)
{
	return __pa((unsigned long)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(unsigned long address)
{
	return (void *)__va(address);
}

/*
 * Change "struct page" to physical address.
 */
#define page_to_phys(page)	(page_to_pfn(page) << PAGE_SHIFT)

/* We do NOT want virtual merging, it would put too much pressure on
 * our iommu allocator. Instead, we want drivers to be smart enough
 * to coalesce sglists that happen to have been mapped in a contiguous
 * way by the iommu
 */
#define BIO_VMERGE_BOUNDARY	0

static inline void iosync(void)
{
        __asm__ __volatile__ ("sync" : : : "memory");
}

/* Enforce in-order execution of data I/O. 
 * No distinction between read/write on PPC; use eieio for all three.
 */
#define iobarrier_rw() eieio()
#define iobarrier_r()  eieio()
#define iobarrier_w()  eieio()

/*
 * 8, 16 and 32 bit, big and little endian I/O operations, with barrier.
 * These routines do not perform EEH-related I/O address translation,
 * and should not be used directly by device drivers.  Use inb/readb
 * instead.
 */
273
static inline int __in_8(const volatile unsigned char __iomem *addr)
L
Linus Torvalds 已提交
274 275 276
{
	int ret;

277
	__asm__ __volatile__("sync; lbz%U1%X1 %0,%1; twi 0,%0,0; isync"
L
Linus Torvalds 已提交
278 279 280 281
			     : "=r" (ret) : "m" (*addr));
	return ret;
}

282
static inline void __out_8(volatile unsigned char __iomem *addr, int val)
L
Linus Torvalds 已提交
283
{
284
	__asm__ __volatile__("sync; stb%U0%X0 %1,%0"
L
Linus Torvalds 已提交
285
			     : "=m" (*addr) : "r" (val));
286
	get_paca()->io_sync = 1;
L
Linus Torvalds 已提交
287 288
}

289
static inline int __in_le16(const volatile unsigned short __iomem *addr)
L
Linus Torvalds 已提交
290 291 292
{
	int ret;

293
	__asm__ __volatile__("sync; lhbrx %0,0,%1; twi 0,%0,0; isync"
L
Linus Torvalds 已提交
294 295 296 297
			     : "=r" (ret) : "r" (addr), "m" (*addr));
	return ret;
}

298
static inline int __in_be16(const volatile unsigned short __iomem *addr)
L
Linus Torvalds 已提交
299 300 301
{
	int ret;

302
	__asm__ __volatile__("sync; lhz%U1%X1 %0,%1; twi 0,%0,0; isync"
L
Linus Torvalds 已提交
303 304 305 306
			     : "=r" (ret) : "m" (*addr));
	return ret;
}

307
static inline void __out_le16(volatile unsigned short __iomem *addr, int val)
L
Linus Torvalds 已提交
308
{
309
	__asm__ __volatile__("sync; sthbrx %1,0,%2"
L
Linus Torvalds 已提交
310
			     : "=m" (*addr) : "r" (val), "r" (addr));
311
	get_paca()->io_sync = 1;
L
Linus Torvalds 已提交
312 313
}

314
static inline void __out_be16(volatile unsigned short __iomem *addr, int val)
L
Linus Torvalds 已提交
315
{
316
	__asm__ __volatile__("sync; sth%U0%X0 %1,%0"
L
Linus Torvalds 已提交
317
			     : "=m" (*addr) : "r" (val));
318
	get_paca()->io_sync = 1;
L
Linus Torvalds 已提交
319 320
}

321
static inline unsigned __in_le32(const volatile unsigned __iomem *addr)
L
Linus Torvalds 已提交
322 323 324
{
	unsigned ret;

325
	__asm__ __volatile__("sync; lwbrx %0,0,%1; twi 0,%0,0; isync"
L
Linus Torvalds 已提交
326 327 328 329
			     : "=r" (ret) : "r" (addr), "m" (*addr));
	return ret;
}

330
static inline unsigned __in_be32(const volatile unsigned __iomem *addr)
L
Linus Torvalds 已提交
331 332 333
{
	unsigned ret;

334
	__asm__ __volatile__("sync; lwz%U1%X1 %0,%1; twi 0,%0,0; isync"
L
Linus Torvalds 已提交
335 336 337 338
			     : "=r" (ret) : "m" (*addr));
	return ret;
}

339
static inline void __out_le32(volatile unsigned __iomem *addr, int val)
L
Linus Torvalds 已提交
340
{
341
	__asm__ __volatile__("sync; stwbrx %1,0,%2" : "=m" (*addr)
L
Linus Torvalds 已提交
342
			     : "r" (val), "r" (addr));
343
	get_paca()->io_sync = 1;
L
Linus Torvalds 已提交
344 345
}

346
static inline void __out_be32(volatile unsigned __iomem *addr, int val)
L
Linus Torvalds 已提交
347
{
348
	__asm__ __volatile__("sync; stw%U0%X0 %1,%0"
L
Linus Torvalds 已提交
349
			     : "=m" (*addr) : "r" (val));
350
	get_paca()->io_sync = 1;
L
Linus Torvalds 已提交
351 352
}

353
static inline unsigned long __in_le64(const volatile unsigned long __iomem *addr)
L
Linus Torvalds 已提交
354 355 356 357
{
	unsigned long tmp, ret;

	__asm__ __volatile__(
358
			     "sync\n"
L
Linus Torvalds 已提交
359 360 361 362 363 364 365 366 367 368 369 370 371 372
			     "ld %1,0(%2)\n"
			     "twi 0,%1,0\n"
			     "isync\n"
			     "rldimi %0,%1,5*8,1*8\n"
			     "rldimi %0,%1,3*8,2*8\n"
			     "rldimi %0,%1,1*8,3*8\n"
			     "rldimi %0,%1,7*8,4*8\n"
			     "rldicl %1,%1,32,0\n"
			     "rlwimi %0,%1,8,8,31\n"
			     "rlwimi %0,%1,24,16,23\n"
			     : "=r" (ret) , "=r" (tmp) : "b" (addr) , "m" (*addr));
	return ret;
}

373
static inline unsigned long __in_be64(const volatile unsigned long __iomem *addr)
L
Linus Torvalds 已提交
374 375 376
{
	unsigned long ret;

377
	__asm__ __volatile__("sync; ld%U1%X1 %0,%1; twi 0,%0,0; isync"
L
Linus Torvalds 已提交
378 379 380 381
			     : "=r" (ret) : "m" (*addr));
	return ret;
}

382
static inline void __out_le64(volatile unsigned long __iomem *addr, unsigned long val)
L
Linus Torvalds 已提交
383 384 385 386 387 388 389 390 391 392 393
{
	unsigned long tmp;

	__asm__ __volatile__(
			     "rldimi %0,%1,5*8,1*8\n"
			     "rldimi %0,%1,3*8,2*8\n"
			     "rldimi %0,%1,1*8,3*8\n"
			     "rldimi %0,%1,7*8,4*8\n"
			     "rldicl %1,%1,32,0\n"
			     "rlwimi %0,%1,8,8,31\n"
			     "rlwimi %0,%1,24,16,23\n"
394 395
			     "sync\n"
			     "std %0,0(%3)"
L
Linus Torvalds 已提交
396
			     : "=&r" (tmp) , "=&r" (val) : "1" (val) , "b" (addr) , "m" (*addr));
397
	get_paca()->io_sync = 1;
L
Linus Torvalds 已提交
398 399
}

400
static inline void __out_be64(volatile unsigned long __iomem *addr, unsigned long val)
L
Linus Torvalds 已提交
401
{
402 403
	__asm__ __volatile__("sync; std%U0%X0 %1,%0" : "=m" (*addr) : "r" (val));
	get_paca()->io_sync = 1;
L
Linus Torvalds 已提交
404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
}

#include <asm/eeh.h>

/**
 *	check_signature		-	find BIOS signatures
 *	@io_addr: mmio address to check
 *	@signature:  signature block
 *	@length: length of signature
 *
 *	Perform a signature comparison with the mmio address io_addr. This
 *	address should have been obtained by ioremap.
 *	Returns 1 on a match.
 */
static inline int check_signature(const volatile void __iomem * io_addr,
	const unsigned char *signature, int length)
{
	int retval = 0;
	do {
		if (readb(io_addr) != *signature)
			goto out;
		io_addr++;
		signature++;
		length--;
	} while (length);
	retval = 1;
out:
	return retval;
}

/* Nothing to do */

#define dma_cache_inv(_start,_size)		do { } while (0)
#define dma_cache_wback(_start,_size)		do { } while (0)
#define dma_cache_wback_inv(_start,_size)	do { } while (0)


/*
 * Convert a physical pointer to a virtual kernel pointer for /dev/mem
 * access
 */
#define xlate_dev_mem_ptr(p)	__va(p)

/*
 * Convert a virtual cached pointer to an uncached pointer
 */
#define xlate_dev_kmem_ptr(p)	p

#endif /* __KERNEL__ */

454 455
#endif /* CONFIG_PPC64 */
#endif /* _ASM_POWERPC_IO_H */