Blame view

arch/sh/kernel/io.c 2.57 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
  /*
5e9377ec6   Stuart Menefy   sh: Optimise memc...
2
   * arch/sh/kernel/io.c - Machine independent I/O functions.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
3
   *
5e9377ec6   Stuart Menefy   sh: Optimise memc...
4
   * Copyright (C) 2000 - 2009  Stuart Menefy
b66c1a391   Paul Mundt   [PATCH] sh: I/O r...
5
   * Copyright (C) 2005  Paul Mundt
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
6
   *
b66c1a391   Paul Mundt   [PATCH] sh: I/O r...
7
8
9
   * This file is subject to the terms and conditions of the GNU General Public
   * License.  See the file "COPYING" in the main directory of this archive
   * for more details.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
10
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
11
  #include <linux/module.h>
8ce0143b1   Magnus Damm   sh: pci io port b...
12
  #include <linux/pci.h>
b66c1a391   Paul Mundt   [PATCH] sh: I/O r...
13
14
  #include <asm/machvec.h>
  #include <asm/io.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
15
16
17
  
  /*
   * Copy data from IO memory space to "real" memory space.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
18
   */
14866543a   Paul Mundt   sh: More I/O rout...
19
  void memcpy_fromio(void *to, const volatile void __iomem *from, unsigned long count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
20
  {
5e9377ec6   Stuart Menefy   sh: Optimise memc...
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
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
86
87
88
89
90
91
92
93
94
95
96
97
  	/*
  	 * Would it be worthwhile doing byte and long transfers first
  	 * to try and get aligned?
  	 */
  #ifdef CONFIG_CPU_SH4
  	if ((count >= 0x20) &&
  	     (((u32)to & 0x1f) == 0) && (((u32)from & 0x3) == 0)) {
  		int tmp2, tmp3, tmp4, tmp5, tmp6;
  
  		__asm__ __volatile__(
  			"1:			
  \t"
  			"mov.l	@%7+, r0	
  \t"
  			"mov.l	@%7+, %2	
  \t"
  			"movca.l r0, @%0	
  \t"
  			"mov.l	@%7+, %3	
  \t"
  			"mov.l	@%7+, %4	
  \t"
  			"mov.l	@%7+, %5	
  \t"
  			"mov.l	@%7+, %6	
  \t"
  			"mov.l	@%7+, r7	
  \t"
  			"mov.l	@%7+, r0	
  \t"
  			"mov.l	%2, @(0x04,%0)	
  \t"
  			"mov	#0x20, %2	
  \t"
  			"mov.l	%3, @(0x08,%0)	
  \t"
  			"sub	%2, %1		
  \t"
  			"mov.l	%4, @(0x0c,%0)	
  \t"
  			"cmp/hi	%1, %2		! T if 32 > count	
  \t"
  			"mov.l	%5, @(0x10,%0)	
  \t"
  			"mov.l	%6, @(0x14,%0)	
  \t"
  			"mov.l	r7, @(0x18,%0)	
  \t"
  			"mov.l	r0, @(0x1c,%0)	
  \t"
  			"bf.s	1b		
  \t"
  			" add	#0x20, %0	
  \t"
  			: "=&r" (to), "=&r" (count),
  			  "=&r" (tmp2), "=&r" (tmp3), "=&r" (tmp4),
  			  "=&r" (tmp5), "=&r" (tmp6), "=&r" (from)
  			: "7"(from), "0" (to), "1" (count)
  			: "r0", "r7", "t", "memory");
  	}
  #endif
  
  	if ((((u32)to | (u32)from) & 0x3) == 0) {
  		for (; count > 3; count -= 4) {
  			*(u32 *)to = *(volatile u32 *)from;
  			to += 4;
  			from += 4;
  		}
  	}
  
  	for (; count > 0; count--) {
  		*(u8 *)to = *(volatile u8 *)from;
  		to++;
  		from++;
  	}
  
  	mb();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
98
  }
b66c1a391   Paul Mundt   [PATCH] sh: I/O r...
99
  EXPORT_SYMBOL(memcpy_fromio);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
100
101
  /*
   * Copy data from "real" memory space to IO memory space.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
102
   */
b66c1a391   Paul Mundt   [PATCH] sh: I/O r...
103
  void memcpy_toio(volatile void __iomem *to, const void *from, unsigned long count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
104
  {
5e9377ec6   Stuart Menefy   sh: Optimise memc...
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
  	if ((((u32)to | (u32)from) & 0x3) == 0) {
  		for ( ; count > 3; count -= 4) {
  			*(volatile u32 *)to = *(u32 *)from;
  			to += 4;
  			from += 4;
  		}
  	}
  
  	for (; count > 0; count--) {
  		*(volatile u8 *)to = *(u8 *)from;
  		to++;
  		from++;
  	}
  
  	mb();
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
120
  }
b66c1a391   Paul Mundt   [PATCH] sh: I/O r...
121
  EXPORT_SYMBOL(memcpy_toio);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
122
123
124
125
  /*
   * "memset" on IO memory space.
   * This needs to be optimized.
   */
b66c1a391   Paul Mundt   [PATCH] sh: I/O r...
126
  void memset_io(volatile void __iomem *dst, int c, unsigned long count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
127
128
129
  {
          while (count) {
                  count--;
14866543a   Paul Mundt   sh: More I/O rout...
130
                  writeb(c, dst);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
131
132
133
                  dst++;
          }
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
134
  EXPORT_SYMBOL(memset_io);