blob: 89786b1f5fe7b4b4fb61f28c9d46a5564fab5f71 [file] [log] [blame]
# 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.
import("//build/image/image.gni")
source_set("common") {
testonly = true
public_configs = [ "//test/hftest:hftest_config" ]
sources = [
"common.c",
]
}
# Service which loops forever.
source_set("busy") {
testonly = true
public_configs = [ "//test/hftest:hftest_config" ]
sources = [
"busy.c",
]
deps = [
":common",
"//src/arch/aarch64/hftest:interrupts_gicv3",
]
}
# Service which uses timers.
source_set("timer") {
testonly = true
public_configs = [ "//test/hftest:hftest_config" ]
sources = [
"timer.c",
]
deps = [
":common",
"//src/arch/aarch64:arch",
"//src/arch/aarch64/hftest:interrupts_gicv3",
]
}
# Service which tries to access GICv3 system registers.
source_set("systemreg") {
testonly = true
public_configs = [ "//test/hftest:hftest_config" ]
sources = [
"systemreg.c",
]
deps = [
":common",
"//src/arch/aarch64:arch",
"//src/arch/aarch64/hftest:interrupts_gicv3",
]
}
# Group services together into VMs.
vm_kernel("gicv3_service_vm0") {
testonly = true
deps = [
":busy",
":systemreg",
":timer",
"//test/hftest:hftest_secondary_vm",
]
}