diff options
| author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 11:49:07 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-09-27 11:49:07 -0400 |
| commit | b98adfccdf5f8dd34ae56a2d5adbe2c030bd4674 (patch) | |
| tree | 1807a029520f550dd4f90c95ad0063bceb00d645 /include/asm-sh/systemh/io.h | |
| parent | ba21fe71725f94792330ebc3034ef2b35a36276f (diff) | |
| parent | 33573c0e3243aaa38b6ad96942de85a1b713c2ff (diff) | |
Merge master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6
* master.kernel.org:/pub/scm/linux/kernel/git/lethal/sh-2.6: (108 commits)
sh: Fix occasional flush_cache_4096() stack corruption.
sh: Calculate shm alignment at runtime.
sh: dma-mapping compile fixes.
sh: Initial vsyscall page support.
sh: Clean up PAGE_SIZE definition for assembly use.
sh: Selective flush_cache_mm() flushing.
sh: More intelligent entry_mask/way_size calculation.
sh: Support for L2 cache on newer SH-4A CPUs.
sh: Update kexec support for API changes.
sh: Optimized readsl()/writesl() support.
sh: Report movli.l/movco.l capabilities.
sh: CPU flags in AT_HWCAP in ELF auxvt.
sh: Add support for 4K stacks.
sh: Enable /proc/kcore support.
sh: stack debugging support.
sh: select CONFIG_EMBEDDED.
sh: machvec rework.
sh: Solution Engine SH7343 board support.
sh: SH7710VoIPGW board support.
sh: Enable verbose BUG() support.
...
Diffstat (limited to 'include/asm-sh/systemh/io.h')
| -rw-r--r-- | include/asm-sh/systemh/io.h | 43 |
1 files changed, 0 insertions, 43 deletions
diff --git a/include/asm-sh/systemh/io.h b/include/asm-sh/systemh/io.h deleted file mode 100644 index 327849b49db8..000000000000 --- a/include/asm-sh/systemh/io.h +++ /dev/null | |||
| @@ -1,43 +0,0 @@ | |||
| 1 | /* | ||
| 2 | * include/asm-sh/systemh/io.h | ||
| 3 | * | ||
| 4 | * Stupid I/O definitions for SystemH, cloned from SE7751. | ||
| 5 | * | ||
| 6 | * Copyright (C) 2003 Paul Mundt | ||
| 7 | * | ||
| 8 | * This file is subject to the terms and conditions of the GNU General Public | ||
| 9 | * License. See the file "COPYING" in the main directory of this archive | ||
| 10 | * for more details. | ||
| 11 | */ | ||
| 12 | #ifndef __ASM_SH_SYSTEMH_IO_H | ||
| 13 | #define __ASM_SH_SYSTEMH_IO_H | ||
| 14 | |||
| 15 | extern unsigned char sh7751systemh_inb(unsigned long port); | ||
| 16 | extern unsigned short sh7751systemh_inw(unsigned long port); | ||
| 17 | extern unsigned int sh7751systemh_inl(unsigned long port); | ||
| 18 | |||
| 19 | extern void sh7751systemh_outb(unsigned char value, unsigned long port); | ||
| 20 | extern void sh7751systemh_outw(unsigned short value, unsigned long port); | ||
| 21 | extern void sh7751systemh_outl(unsigned int value, unsigned long port); | ||
| 22 | |||
| 23 | extern unsigned char sh7751systemh_inb_p(unsigned long port); | ||
| 24 | extern void sh7751systemh_outb_p(unsigned char value, unsigned long port); | ||
| 25 | |||
| 26 | extern void sh7751systemh_insb(unsigned long port, void *addr, unsigned long count); | ||
| 27 | extern void sh7751systemh_insw(unsigned long port, void *addr, unsigned long count); | ||
| 28 | extern void sh7751systemh_insl(unsigned long port, void *addr, unsigned long count); | ||
| 29 | extern void sh7751systemh_outsb(unsigned long port, const void *addr, unsigned long count); | ||
| 30 | extern void sh7751systemh_outsw(unsigned long port, const void *addr, unsigned long count); | ||
| 31 | extern void sh7751systemh_outsl(unsigned long port, const void *addr, unsigned long count); | ||
| 32 | |||
| 33 | extern unsigned char sh7751systemh_readb(unsigned long addr); | ||
| 34 | extern unsigned short sh7751systemh_readw(unsigned long addr); | ||
| 35 | extern unsigned int sh7751systemh_readl(unsigned long addr); | ||
| 36 | extern void sh7751systemh_writeb(unsigned char b, unsigned long addr); | ||
| 37 | extern void sh7751systemh_writew(unsigned short b, unsigned long addr); | ||
| 38 | extern void sh7751systemh_writel(unsigned int b, unsigned long addr); | ||
| 39 | |||
| 40 | extern unsigned long sh7751systemh_isa_port2addr(unsigned long offset); | ||
| 41 | |||
| 42 | #endif /* __ASM_SH_SYSTEMH_IO_H */ | ||
| 43 | |||
