4 * Copyright (c) 2003 Fabrice Bellard
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
19 #include "qemu-timer.h"
21 #define DATA_SIZE (1 << SHIFT)
26 #define DATA_TYPE uint64_t
30 #define DATA_TYPE uint32_t
34 #define DATA_TYPE uint16_t
38 #define DATA_TYPE uint8_t
40 #error unsupported data size
43 #ifdef SOFTMMU_CODE_ACCESS
44 #define READ_ACCESS_TYPE 2
45 #define ADDR_READ addr_code
47 #define READ_ACCESS_TYPE 0
48 #define ADDR_READ addr_read
51 static DATA_TYPE
glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
54 static inline DATA_TYPE
glue(io_read
, SUFFIX
)(target_phys_addr_t physaddr
,
60 index
= (physaddr
>> IO_MEM_SHIFT
) & (IO_MEM_NB_ENTRIES
- 1);
61 physaddr
= (physaddr
& TARGET_PAGE_MASK
) + addr
;
62 env
->mem_io_pc
= (unsigned long)retaddr
;
63 if (index
> (IO_MEM_NOTDIRTY
>> IO_MEM_SHIFT
)
65 cpu_io_recompile(env
, retaddr
);
68 env
->mem_io_vaddr
= addr
;
70 res
= io_mem_read
[index
][SHIFT
](io_mem_opaque
[index
], physaddr
);
72 #ifdef TARGET_WORDS_BIGENDIAN
73 res
= (uint64_t)io_mem_read
[index
][2](io_mem_opaque
[index
], physaddr
) << 32;
74 res
|= io_mem_read
[index
][2](io_mem_opaque
[index
], physaddr
+ 4);
76 res
= io_mem_read
[index
][2](io_mem_opaque
[index
], physaddr
);
77 res
|= (uint64_t)io_mem_read
[index
][2](io_mem_opaque
[index
], physaddr
+ 4) << 32;
79 #endif /* SHIFT > 2 */
83 /* handle all cases except unaligned access which span two pages */
84 DATA_TYPE REGPARM
glue(glue(__ld
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
89 target_ulong tlb_addr
;
90 target_phys_addr_t ioaddr
;
94 /* test if there is match for unaligned or IO access */
95 /* XXX: could done more in memory macro in a non portable way */
96 index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
98 tlb_addr
= env
->tlb_table
[mmu_idx
][index
].ADDR_READ
;
99 if ((addr
& TARGET_PAGE_MASK
) == (tlb_addr
& (TARGET_PAGE_MASK
| TLB_INVALID_MASK
))) {
100 if (tlb_addr
& ~TARGET_PAGE_MASK
) {
102 if ((addr
& (DATA_SIZE
- 1)) != 0)
103 goto do_unaligned_access
;
105 ioaddr
= env
->iotlb
[mmu_idx
][index
];
106 res
= glue(io_read
, SUFFIX
)(ioaddr
, addr
, retaddr
);
107 } else if (((addr
& ~TARGET_PAGE_MASK
) + DATA_SIZE
- 1) >= TARGET_PAGE_SIZE
) {
108 /* slow unaligned access (it spans two pages or IO) */
112 do_unaligned_access(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
114 res
= glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(addr
,
117 /* unaligned/aligned access in the same page */
119 if ((addr
& (DATA_SIZE
- 1)) != 0) {
121 do_unaligned_access(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
124 addend
= env
->tlb_table
[mmu_idx
][index
].addend
;
125 res
= glue(glue(ld
, USUFFIX
), _raw
)((uint8_t *)(long)(addr
+addend
));
128 /* the page is not in the TLB : fill it */
131 if ((addr
& (DATA_SIZE
- 1)) != 0)
132 do_unaligned_access(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
134 tlb_fill(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
140 /* handle all unaligned cases */
141 static DATA_TYPE
glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
145 DATA_TYPE res
, res1
, res2
;
147 target_phys_addr_t ioaddr
;
148 unsigned long addend
;
149 target_ulong tlb_addr
, addr1
, addr2
;
151 index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
153 tlb_addr
= env
->tlb_table
[mmu_idx
][index
].ADDR_READ
;
154 if ((addr
& TARGET_PAGE_MASK
) == (tlb_addr
& (TARGET_PAGE_MASK
| TLB_INVALID_MASK
))) {
155 if (tlb_addr
& ~TARGET_PAGE_MASK
) {
157 if ((addr
& (DATA_SIZE
- 1)) != 0)
158 goto do_unaligned_access
;
159 ioaddr
= env
->iotlb
[mmu_idx
][index
];
160 res
= glue(io_read
, SUFFIX
)(ioaddr
, addr
, retaddr
);
161 } else if (((addr
& ~TARGET_PAGE_MASK
) + DATA_SIZE
- 1) >= TARGET_PAGE_SIZE
) {
163 /* slow unaligned access (it spans two pages) */
164 addr1
= addr
& ~(DATA_SIZE
- 1);
165 addr2
= addr1
+ DATA_SIZE
;
166 res1
= glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(addr1
,
168 res2
= glue(glue(slow_ld
, SUFFIX
), MMUSUFFIX
)(addr2
,
170 shift
= (addr
& (DATA_SIZE
- 1)) * 8;
171 #ifdef TARGET_WORDS_BIGENDIAN
172 res
= (res1
<< shift
) | (res2
>> ((DATA_SIZE
* 8) - shift
));
174 res
= (res1
>> shift
) | (res2
<< ((DATA_SIZE
* 8) - shift
));
176 res
= (DATA_TYPE
)res
;
178 /* unaligned/aligned access in the same page */
179 addend
= env
->tlb_table
[mmu_idx
][index
].addend
;
180 res
= glue(glue(ld
, USUFFIX
), _raw
)((uint8_t *)(long)(addr
+addend
));
183 /* the page is not in the TLB : fill it */
184 tlb_fill(addr
, READ_ACCESS_TYPE
, mmu_idx
, retaddr
);
190 #ifndef SOFTMMU_CODE_ACCESS
192 static void glue(glue(slow_st
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
197 static inline void glue(io_write
, SUFFIX
)(target_phys_addr_t physaddr
,
203 index
= (physaddr
>> IO_MEM_SHIFT
) & (IO_MEM_NB_ENTRIES
- 1);
204 physaddr
= (physaddr
& TARGET_PAGE_MASK
) + addr
;
205 if (index
> (IO_MEM_NOTDIRTY
>> IO_MEM_SHIFT
)
206 && !can_do_io(env
)) {
207 cpu_io_recompile(env
, retaddr
);
210 env
->mem_io_vaddr
= addr
;
211 env
->mem_io_pc
= (unsigned long)retaddr
;
213 io_mem_write
[index
][SHIFT
](io_mem_opaque
[index
], physaddr
, val
);
215 #ifdef TARGET_WORDS_BIGENDIAN
216 io_mem_write
[index
][2](io_mem_opaque
[index
], physaddr
, val
>> 32);
217 io_mem_write
[index
][2](io_mem_opaque
[index
], physaddr
+ 4, val
);
219 io_mem_write
[index
][2](io_mem_opaque
[index
], physaddr
, val
);
220 io_mem_write
[index
][2](io_mem_opaque
[index
], physaddr
+ 4, val
>> 32);
222 #endif /* SHIFT > 2 */
225 void REGPARM
glue(glue(__st
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
229 target_phys_addr_t ioaddr
;
230 unsigned long addend
;
231 target_ulong tlb_addr
;
235 index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
237 tlb_addr
= env
->tlb_table
[mmu_idx
][index
].addr_write
;
238 if ((addr
& TARGET_PAGE_MASK
) == (tlb_addr
& (TARGET_PAGE_MASK
| TLB_INVALID_MASK
))) {
239 if (tlb_addr
& ~TARGET_PAGE_MASK
) {
241 if ((addr
& (DATA_SIZE
- 1)) != 0)
242 goto do_unaligned_access
;
244 ioaddr
= env
->iotlb
[mmu_idx
][index
];
245 glue(io_write
, SUFFIX
)(ioaddr
, val
, addr
, retaddr
);
246 } else if (((addr
& ~TARGET_PAGE_MASK
) + DATA_SIZE
- 1) >= TARGET_PAGE_SIZE
) {
250 do_unaligned_access(addr
, 1, mmu_idx
, retaddr
);
252 glue(glue(slow_st
, SUFFIX
), MMUSUFFIX
)(addr
, val
,
255 /* aligned/unaligned access in the same page */
257 if ((addr
& (DATA_SIZE
- 1)) != 0) {
259 do_unaligned_access(addr
, 1, mmu_idx
, retaddr
);
262 addend
= env
->tlb_table
[mmu_idx
][index
].addend
;
263 glue(glue(st
, SUFFIX
), _raw
)((uint8_t *)(long)(addr
+addend
), val
);
266 /* the page is not in the TLB : fill it */
269 if ((addr
& (DATA_SIZE
- 1)) != 0)
270 do_unaligned_access(addr
, 1, mmu_idx
, retaddr
);
272 tlb_fill(addr
, 1, mmu_idx
, retaddr
);
277 /* handles all unaligned cases */
278 static void glue(glue(slow_st
, SUFFIX
), MMUSUFFIX
)(target_ulong addr
,
283 target_phys_addr_t ioaddr
;
284 unsigned long addend
;
285 target_ulong tlb_addr
;
288 index
= (addr
>> TARGET_PAGE_BITS
) & (CPU_TLB_SIZE
- 1);
290 tlb_addr
= env
->tlb_table
[mmu_idx
][index
].addr_write
;
291 if ((addr
& TARGET_PAGE_MASK
) == (tlb_addr
& (TARGET_PAGE_MASK
| TLB_INVALID_MASK
))) {
292 if (tlb_addr
& ~TARGET_PAGE_MASK
) {
294 if ((addr
& (DATA_SIZE
- 1)) != 0)
295 goto do_unaligned_access
;
296 ioaddr
= env
->iotlb
[mmu_idx
][index
];
297 glue(io_write
, SUFFIX
)(ioaddr
, val
, addr
, retaddr
);
298 } else if (((addr
& ~TARGET_PAGE_MASK
) + DATA_SIZE
- 1) >= TARGET_PAGE_SIZE
) {
300 /* XXX: not efficient, but simple */
301 /* Note: relies on the fact that tlb_fill() does not remove the
302 * previous page from the TLB cache. */
303 for(i
= DATA_SIZE
- 1; i
>= 0; i
--) {
304 #ifdef TARGET_WORDS_BIGENDIAN
305 glue(slow_stb
, MMUSUFFIX
)(addr
+ i
, val
>> (((DATA_SIZE
- 1) * 8) - (i
* 8)),
308 glue(slow_stb
, MMUSUFFIX
)(addr
+ i
, val
>> (i
* 8),
313 /* aligned/unaligned access in the same page */
314 addend
= env
->tlb_table
[mmu_idx
][index
].addend
;
315 glue(glue(st
, SUFFIX
), _raw
)((uint8_t *)(long)(addr
+addend
), val
);
318 /* the page is not in the TLB : fill it */
319 tlb_fill(addr
, 1, mmu_idx
, retaddr
);
324 #endif /* !defined(SOFTMMU_CODE_ACCESS) */
326 #undef READ_ACCESS_TYPE