aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/arch/aarch64/hypervisor/other_world.c2
-rw-r--r--src/arch/aarch64/hypervisor/vm.c7
-rw-r--r--src/ffa_memory.c6
-rw-r--r--src/load.c2
-rw-r--r--src/mm.c1
5 files changed, 0 insertions, 18 deletions
diff --git a/src/arch/aarch64/hypervisor/other_world.c b/src/arch/aarch64/hypervisor/other_world.c
index 0984a688..5f80ab35 100644
--- a/src/arch/aarch64/hypervisor/other_world.c
+++ b/src/arch/aarch64/hypervisor/other_world.c
@@ -27,7 +27,6 @@ bool arch_other_world_vm_init(struct vm *other_world_vm,
bool ret = false;
uint32_t i;
- dlog_info(" +++++++ arch_other_world_vm_init +++++\n");
other_world_vm_locked = vm_lock(other_world_vm);
/* Enabling all communication methods for the other world. */
@@ -45,7 +44,6 @@ bool arch_other_world_vm_init(struct vm *other_world_vm,
dlog_error("%s", err_msg);
goto out;
}
- dlog_info(" +++++++ arch_other_world_vm_init beg %x end %x +++++\n", params->ns_mem_ranges[i].begin.pa, params->ns_mem_ranges[i].end.pa );
}
/*
* Force the hypervisor's version to be same as ours.
diff --git a/src/arch/aarch64/hypervisor/vm.c b/src/arch/aarch64/hypervisor/vm.c
index d32b95f1..e9355bd7 100644
--- a/src/arch/aarch64/hypervisor/vm.c
+++ b/src/arch/aarch64/hypervisor/vm.c
@@ -11,7 +11,6 @@
#include "hf/arch/mmu.h"
#include "hf/plat/iommu.h"
-#include "hf/dlog.h"
#include "hypervisor/feature_id.h"
@@ -172,8 +171,6 @@ bool arch_vm_mem_get_mode(struct vm_locked vm_locked, ipaddr_t begin,
}
ret = mm_vm_get_mode(&vm_locked.vm->ptable, begin, end, mode);
- dlog_verbose("arch_vm_mem_get_mode begin %x mode %x\n",
- begin.ipa, *mode);
#if SECURE_WORLD == 1
uint32_t mode2;
@@ -182,14 +179,10 @@ bool arch_vm_mem_get_mode(struct vm_locked vm_locked, ipaddr_t begin,
/* If the region is fully unmapped in the secure IPA space. */
if ((ret == true) && ((*mode & mask) == mask)) {
- dlog_verbose("arch_vm_mem_get_mode fully unmapped in S IPA\n");
-
/* Look up the non-secure IPA space. */
ret = mm_vm_get_mode(&vm_locked.vm->arch.ptable_ns, begin, end,
&mode2);
- dlog_verbose("arch_vm_mem_get_mode begin %x mode2 %x\n",
- begin.ipa, mode2);
/* If region is fully mapped in the non-secure IPA space. */
if ((ret == true) && ((mode2 & mask) != mask)) {
*mode = mode2;
diff --git a/src/ffa_memory.c b/src/ffa_memory.c
index c28356a9..c441c4c1 100644
--- a/src/ffa_memory.c
+++ b/src/ffa_memory.c
@@ -378,8 +378,6 @@ static struct ffa_value constituents_get_mode(
size_t size = fragments[i][j].page_count * PAGE_SIZE;
ipaddr_t end = ipa_add(begin, size);
uint32_t current_mode;
- dlog_verbose("constituents_get_mode begin %x\n",
- begin.ipa);
/* Fail if addresses are not page-aligned. */
if (!is_aligned(ipa_addr(begin), PAGE_SIZE) ||
@@ -394,8 +392,6 @@ static struct ffa_value constituents_get_mode(
if (!vm_mem_get_mode(vm, begin, end, &current_mode)) {
return ffa_error(FFA_DENIED);
}
- dlog_verbose("constituents_get_mode mode %x\n",
- current_mode);
/*
* Ensure that all constituents are mapped with the same
@@ -443,8 +439,6 @@ static struct ffa_value ffa_send_check_transition(
const uint32_t state_mask =
MM_MODE_INVALID | MM_MODE_UNOWNED | MM_MODE_SHARED;
struct ffa_value ret;
- dlog_verbose("ffa_send_check_transition vm_locked vm_id %x\n",
- from.vm->id);
ret = constituents_get_mode(from, orig_from_mode, fragments,
fragment_constituent_counts,
diff --git a/src/load.c b/src/load.c
index 37243a4f..1c1794da 100644
--- a/src/load.c
+++ b/src/load.c
@@ -970,8 +970,6 @@ bool load_vms(struct mm_stage1_locked stage1_locked,
paddr_t secondary_mem_end;
if (vm_id == HF_PRIMARY_VM_ID) {
- dlog_info("Loading VM id %#x: %s.\n", vm_id,
- manifest_vm->debug_name);
continue;
}
diff --git a/src/mm.c b/src/mm.c
index 1d2343a7..b05a3447 100644
--- a/src/mm.c
+++ b/src/mm.c
@@ -1072,7 +1072,6 @@ void *mm_identity_map(struct mm_stage1_locked stage1_locked, paddr_t begin,
{
int flags = MM_FLAG_STAGE1 | mm_mode_to_flags(mode);
- dlog_verbose("mm_identity_map begin %p - end %p / mode 0x%x\n", begin.pa, end.pa, mode);
if (mm_ptable_identity_update(stage1_locked.ptable, begin, end,
arch_mm_mode_to_stage1_attrs(mode), flags,
ppool)) {