Searched refs:root (Results 1 – 19 of 19) sorted by relevance
/hafnium-2.8-rc0/ |
A D | BUILD.gn | 7 # The root of the build redirects to a project build file so each project can 10 # The root of the build. 11 group("root") { 13 "//project/${project}:root", 17 # The root of the build for test artifacts. 35 ":root",
|
/hafnium-2.8-rc0/build/bash/ |
A D | symlink_repo.py | 26 root = tree.getroot() 27 assert(root.tag == "manifest"); 29 for proj in root:
|
A D | common.inc | 104 ## Find Hafnium's root directory. 109 # root is further one level up.
|
/hafnium-2.8-rc0/build/image/ |
A D | generate_linux_initrd.py | 27 staged_files = [os.path.join(root, filename) 28 for (root, dirs, files) in os.walk(".") for filename in files + dirs]
|
/hafnium-2.8-rc0/build/linux/ |
A D | gen_depfile.py | 24 for root, _, files in os.walk(args.root_dir): 25 sources.extend([ os.path.join(root, f) for f in files ])
|
A D | copy_dirs.py | 28 for root, _, files in os.walk(args.source_folder): 30 abs_src_path = os.path.join(root, f)
|
/hafnium-2.8-rc0/src/ |
A D | manifest.c | 784 struct fdt_node root; in parse_ffa_manifest() local 792 if (!fdt_find_node(fdt, "/", &root)) { in parse_ffa_manifest() 806 TRY(read_uint32list(&root, "uuid", &uuid)); in parse_ffa_manifest() 822 TRY(read_uint8(&root, "exception-level", in parse_ffa_manifest() 826 TRY(read_uint8(&root, "execution-state", in parse_ffa_manifest() 852 ffa_node = root; in parse_ffa_manifest() 872 TRY(read_uint8(&root, "messaging-method", in parse_ffa_manifest() 916 TRY(read_bool(&root, "managed-exit-virq", in parse_ffa_manifest() 931 ffa_node = root; in parse_ffa_manifest() 942 ffa_node = root; in parse_ffa_manifest() [all …]
|
A D | mm.c | 236 t->root = pa_init((uintpaddr_t)tables); in mm_ptable_init() 246 struct mm_page_table *tables = mm_page_table_from_pa(t->root); in mm_ptable_fini() 444 &mm_page_table_from_pa(t->root)[mm_index(begin, root_level)]; in mm_map_root() 592 struct mm_page_table *tables = mm_page_table_from_pa(t->root); in mm_ptable_dump() 722 struct mm_page_table *tables = mm_page_table_from_pa(t->root); in mm_ptable_defrag() 827 table = &mm_page_table_from_pa(t->root)[mm_index(begin, root_level)]; in mm_get_attrs() 1125 if (!arch_mm_init(ptable.root)) { in mm_init()
|
A D | mm_test.cc | 1183 pa_add(ptable.root, i * sizeof(struct mm_page_table)))); in get_ptable()
|
/hafnium-2.8-rc0/test/hftest/ |
A D | mm.c | 66 arch_vm_mm_enable(ptable.root); in hftest_mm_init() 85 arch_vm_mm_enable(ptable.root); in hftest_mm_vcpu_init()
|
/hafnium-2.8-rc0/docs/ |
A D | PreparingLinux.md | 21 copied to the Hafnium RAM disk's root as `vmlinuz`. 25 From the Hafnium root directory, the following commands can be used to compile 73 section. Assuming the BusyBox root directory is in the same parent directory as 74 the Hafnium root directory: 88 disk's root.
|
A D | HermeticBuild.md | 22 If you don't mind running a Docker daemon with root privileges on your system, 27 Because the daemon runs as root, files generated by the container are owned by 28 root as well. To work around this, the build will automatically derive a local 35 user namespaces, thus eliminating the need for a daemon with root privileges. It
|
A D | FVP.md | 13 1. Unzip it to a directory called `fvp` alongside the root directory of your 18 To run tests with the FVP instead of QEMU, from the root directory of your
|
A D | HafniumRamDisk.md | 3 Hafnium expects to find the following files in the root directory of its RAM
|
A D | GettingStarted.md | 40 with tests. Each project in the `project` directory specifies a root
|
/hafnium-2.8-rc0/test/vmapi/ffa_secure_partition_only/ |
A D | secure_partition.c | 366 struct fdt_node root; in TEST() local 382 EXPECT_TRUE(fdt_find_node(&fdt, "/", &root)); in TEST() 384 EXPECT_TRUE(fdt_is_compatible(&root, "arm,ffa-manifest-1.0")); in TEST() 385 EXPECT_TRUE(fdt_read_number(&root, "ffa-version", &ffa_version)); in TEST()
|
/hafnium-2.8-rc0/inc/hf/ |
A D | mm.h | 97 paddr_t root; member
|
/hafnium-2.8-rc0/src/arch/aarch64/hypervisor/ |
A D | cpu.c | 85 paddr_t table = vcpu->vm->ptable.root; in arch_regs_reset()
|
/hafnium-2.8-rc0/src/arch/aarch64/arm_smmuv3/ |
A D | arm_smmuv3.c | 1274 vttbr = (vm->ptable.root.pa & GEN_MASK(51, 4)) >> 4; in smmuv3_config_ste_stg2()
|
Completed in 24 milliseconds