| /* |
| * Copyright 2019 The Hafnium Authors. |
| * |
| * Licensed under the Apache License, Version 2.0 (the "License"); |
| * you may not use this file except in compliance with the License. |
| * You may obtain a copy of the License at |
| * |
| * https://www.apache.org/licenses/LICENSE-2.0 |
| * |
| * Unless required by applicable law or agreed to in writing, software |
| * distributed under the License is distributed on an "AS IS" BASIS, |
| * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| * See the License for the specific language governing permissions and |
| * limitations under the License. |
| */ |
| |
| #include "primary_with_secondary.h" |
| #include "sysregs.h" |
| #include "util.h" |
| |
| /** |
| * QEMU does not properly handle the trapping of certain system register |
| * accesses. This was fixed in a custom local build that we could use. If not |
| * using that build, limit testing to the subset QEMU handles correctly. |
| */ |
| #define CUSTOM_QEMU_BUILD() 0 |
| |
| /* |
| * TODO(b/132422368): Devise a way to test exhaustively read/write behavior to |
| * all debug registers that does not involve a separate service per register. |
| * This needs proper trap support as a starting point. |
| */ |
| |
| TEST(debug_el1, secondary_mdccint_el1) |
| { |
| struct hf_vcpu_run_return run_res; |
| struct mailbox_buffers mb = set_up_mailbox(); |
| |
| SERVICE_SELECT(SERVICE_VM0, "debug_el1_secondary_mdccint_el1", mb.send); |
| |
| run_res = hf_vcpu_run(SERVICE_VM0, 0); |
| EXPECT_EQ(run_res.code, HF_VCPU_RUN_ABORTED); |
| } |
| |
| TEST(debug_el1, secondary_dbgbcr0_el1) |
| { |
| struct hf_vcpu_run_return run_res; |
| struct mailbox_buffers mb = set_up_mailbox(); |
| |
| SERVICE_SELECT(SERVICE_VM0, "debug_el1_secondary_dbgbcr0_el1", mb.send); |
| |
| run_res = hf_vcpu_run(SERVICE_VM0, 0); |
| EXPECT_EQ(run_res.code, HF_VCPU_RUN_ABORTED); |
| } |
| |
| TEST(debug_el1, secondary_dbgbvr0_el1) |
| { |
| struct hf_vcpu_run_return run_res; |
| struct mailbox_buffers mb = set_up_mailbox(); |
| |
| SERVICE_SELECT(SERVICE_VM0, "debug_el1_secondary_dbgbvr0_el1", mb.send); |
| |
| run_res = hf_vcpu_run(SERVICE_VM0, 0); |
| EXPECT_EQ(run_res.code, HF_VCPU_RUN_ABORTED); |
| } |
| |
| TEST(debug_el1, secondary_dbgwcr0_el1) |
| { |
| struct hf_vcpu_run_return run_res; |
| struct mailbox_buffers mb = set_up_mailbox(); |
| |
| SERVICE_SELECT(SERVICE_VM0, "debug_el1_secondary_dbgwcr0_el1", mb.send); |
| |
| run_res = hf_vcpu_run(SERVICE_VM0, 0); |
| EXPECT_EQ(run_res.code, HF_VCPU_RUN_ABORTED); |
| } |
| |
| TEST(debug_el1, secondary_dbgwvr0_el1) |
| { |
| struct hf_vcpu_run_return run_res; |
| struct mailbox_buffers mb = set_up_mailbox(); |
| |
| SERVICE_SELECT(SERVICE_VM0, "debug_el1_secondary_dbgwvr0_el1", mb.send); |
| |
| run_res = hf_vcpu_run(SERVICE_VM0, 0); |
| EXPECT_EQ(run_res.code, HF_VCPU_RUN_ABORTED); |
| } |
| |
| /** |
| * Attempts to access debug registers for read, without validating their value. |
| */ |
| TEST(debug_el1, primary_basic) |
| { |
| EXPECT_EQ(hf_vm_get_id(), HF_PRIMARY_VM_ID); |
| |
| if (CUSTOM_QEMU_BUILD()) { |
| TRY_READ(DBGAUTHSTATUS_EL1); |
| TRY_READ(DBGCLAIMCLR_EL1); |
| TRY_READ(DBGCLAIMSET_EL1); |
| TRY_READ(DBGPRCR_EL1); |
| TRY_READ(OSDTRRX_EL1); |
| TRY_READ(OSDTRTX_EL1); |
| TRY_READ(OSECCR_EL1); |
| |
| TRY_READ(DBGBCR2_EL1); |
| TRY_READ(DBGBCR3_EL1); |
| TRY_READ(DBGBCR4_EL1); |
| TRY_READ(DBGBCR5_EL1); |
| TRY_READ(DBGBVR2_EL1); |
| TRY_READ(DBGBVR3_EL1); |
| TRY_READ(DBGBVR4_EL1); |
| TRY_READ(DBGBVR5_EL1); |
| TRY_READ(DBGWCR2_EL1); |
| TRY_READ(DBGWCR3_EL1); |
| TRY_READ(DBGWVR2_EL1); |
| TRY_READ(DBGWVR3_EL1); |
| } |
| |
| /* The following is the subset currently supported by QEMU. */ |
| TRY_READ(MDCCINT_EL1); |
| TRY_READ(MDRAR_EL1); |
| TRY_READ(MDSCR_EL1); |
| TRY_READ(OSDLR_EL1); |
| TRY_READ(OSLSR_EL1); |
| |
| TRY_READ(DBGBCR0_EL1); |
| TRY_READ(DBGBCR1_EL1); |
| TRY_READ(DBGBVR0_EL1); |
| TRY_READ(DBGBVR1_EL1); |
| TRY_READ(DBGWCR0_EL1); |
| TRY_READ(DBGWCR1_EL1); |
| TRY_READ(DBGWVR0_EL1); |
| TRY_READ(DBGWVR1_EL1); |
| } |
| |
| /** |
| * Tests a few debug registers for read and write, and checks that the expected |
| * value is written/read. |
| */ |
| TEST(debug_el1, primary_read_write) |
| { |
| EXPECT_EQ(hf_vm_get_id(), HF_PRIMARY_VM_ID); |
| |
| TRY_WRITE_READ(DBGBCR0_EL1, 0x2); |
| TRY_WRITE_READ(DBGBVR0_EL1, 0xf0); |
| } |