server/telnet: Always allow 'exit' command
[openocd.git] / src / target / armv4_5_mmu.c
blob0c09cb4ca74e6bcf2f61e249c5234154573b1115
1 // SPDX-License-Identifier: GPL-2.0-or-later
3 /***************************************************************************
4 * Copyright (C) 2005 by Dominic Rath *
5 * Dominic.Rath@gmx.de *
6 ***************************************************************************/
8 #ifdef HAVE_CONFIG_H
9 #include "config.h"
10 #endif
12 #include <helper/log.h>
13 #include "target.h"
14 #include "armv4_5_mmu.h"
16 int armv4_5_mmu_translate_va(struct target *target,
17 struct armv4_5_mmu_common *armv4_5_mmu, uint32_t va, uint32_t *cb, uint32_t *val)
19 uint32_t first_lvl_descriptor = 0x0;
20 uint32_t second_lvl_descriptor = 0x0;
21 uint32_t ttb;
22 int retval;
23 retval = armv4_5_mmu->get_ttb(target, &ttb);
24 if (retval != ERROR_OK)
25 return retval;
27 retval = armv4_5_mmu_read_physical(target, armv4_5_mmu,
28 (ttb & 0xffffc000) | ((va & 0xfff00000) >> 18),
29 4, 1, (uint8_t *)&first_lvl_descriptor);
30 if (retval != ERROR_OK)
31 return retval;
32 first_lvl_descriptor = target_buffer_get_u32(target, (uint8_t *)&first_lvl_descriptor);
34 LOG_DEBUG("1st lvl desc: %8.8" PRIx32 "", first_lvl_descriptor);
36 if ((first_lvl_descriptor & 0x3) == 0) {
37 LOG_ERROR("Address translation failure");
38 return ERROR_TARGET_TRANSLATION_FAULT;
41 if (!armv4_5_mmu->has_tiny_pages && ((first_lvl_descriptor & 0x3) == 3)) {
42 LOG_ERROR("Address translation failure");
43 return ERROR_TARGET_TRANSLATION_FAULT;
46 if ((first_lvl_descriptor & 0x3) == 2) {
47 /* section descriptor */
48 *cb = (first_lvl_descriptor & 0xc) >> 2;
49 *val = (first_lvl_descriptor & 0xfff00000) | (va & 0x000fffff);
50 return ERROR_OK;
53 if ((first_lvl_descriptor & 0x3) == 1) {
54 /* coarse page table */
55 retval = armv4_5_mmu_read_physical(target, armv4_5_mmu,
56 (first_lvl_descriptor & 0xfffffc00) | ((va & 0x000ff000) >> 10),
57 4, 1, (uint8_t *)&second_lvl_descriptor);
58 if (retval != ERROR_OK)
59 return retval;
60 } else if ((first_lvl_descriptor & 0x3) == 3) {
61 /* fine page table */
62 retval = armv4_5_mmu_read_physical(target, armv4_5_mmu,
63 (first_lvl_descriptor & 0xfffff000) | ((va & 0x000ffc00) >> 8),
64 4, 1, (uint8_t *)&second_lvl_descriptor);
65 if (retval != ERROR_OK)
66 return retval;
69 second_lvl_descriptor = target_buffer_get_u32(target, (uint8_t *)&second_lvl_descriptor);
71 LOG_DEBUG("2nd lvl desc: %8.8" PRIx32 "", second_lvl_descriptor);
73 if ((second_lvl_descriptor & 0x3) == 0) {
74 LOG_ERROR("Address translation failure");
75 return ERROR_TARGET_TRANSLATION_FAULT;
78 /* cacheable/bufferable is always specified in bits 3-2 */
79 *cb = (second_lvl_descriptor & 0xc) >> 2;
81 if ((second_lvl_descriptor & 0x3) == 1) {
82 /* large page descriptor */
83 *val = (second_lvl_descriptor & 0xffff0000) | (va & 0x0000ffff);
84 return ERROR_OK;
87 if ((second_lvl_descriptor & 0x3) == 2) {
88 /* small page descriptor */
89 *val = (second_lvl_descriptor & 0xfffff000) | (va & 0x00000fff);
90 return ERROR_OK;
93 if ((second_lvl_descriptor & 0x3) == 3) {
94 /* tiny page descriptor */
95 *val = (second_lvl_descriptor & 0xfffffc00) | (va & 0x000003ff);
96 return ERROR_OK;
99 /* should not happen */
100 LOG_ERROR("Address translation failure");
101 return ERROR_TARGET_TRANSLATION_FAULT;
104 int armv4_5_mmu_read_physical(struct target *target,
105 struct armv4_5_mmu_common *armv4_5_mmu, uint32_t address,
106 uint32_t size, uint32_t count, uint8_t *buffer)
108 int retval;
110 if (target->state != TARGET_HALTED) {
111 LOG_TARGET_ERROR(target, "not halted");
112 return ERROR_TARGET_NOT_HALTED;
115 /* disable MMU and data (or unified) cache */
116 retval = armv4_5_mmu->disable_mmu_caches(target, 1, 1, 0);
117 if (retval != ERROR_OK)
118 return retval;
120 retval = armv4_5_mmu->read_memory(target, address, size, count, buffer);
121 if (retval != ERROR_OK)
122 return retval;
124 /* reenable MMU / cache */
125 retval = armv4_5_mmu->enable_mmu_caches(target, armv4_5_mmu->mmu_enabled,
126 armv4_5_mmu->armv4_5_cache.d_u_cache_enabled,
127 armv4_5_mmu->armv4_5_cache.i_cache_enabled);
128 if (retval != ERROR_OK)
129 return retval;
131 return retval;
134 int armv4_5_mmu_write_physical(struct target *target,
135 struct armv4_5_mmu_common *armv4_5_mmu, uint32_t address,
136 uint32_t size, uint32_t count, const uint8_t *buffer)
138 int retval;
140 if (target->state != TARGET_HALTED) {
141 LOG_TARGET_ERROR(target, "not halted");
142 return ERROR_TARGET_NOT_HALTED;
145 /* disable MMU and data (or unified) cache */
146 retval = armv4_5_mmu->disable_mmu_caches(target, 1, 1, 0);
147 if (retval != ERROR_OK)
148 return retval;
150 retval = armv4_5_mmu->write_memory(target, address, size, count, buffer);
151 if (retval != ERROR_OK)
152 return retval;
154 /* reenable MMU / cache */
155 retval = armv4_5_mmu->enable_mmu_caches(target, armv4_5_mmu->mmu_enabled,
156 armv4_5_mmu->armv4_5_cache.d_u_cache_enabled,
157 armv4_5_mmu->armv4_5_cache.i_cache_enabled);
158 if (retval != ERROR_OK)
159 return retval;
161 return retval;