From f33fbb2f97bfb74076aa2633f4d00479400a9e3d Mon Sep 17 00:00:00 2001 From: Antonio Nino Diaz Date: Thu, 31 Mar 2016 09:08:56 +0100 Subject: Remove xlat_helpers.c lib/aarch64/xlat_helpers.c defines helper functions to build translation descriptors, but no common code or upstream platform port uses them. As the rest of the xlat_tables code evolves, there may be conflicts with these helpers, therefore this code should be removed. Change-Id: I9f5be99720f929264818af33db8dada785368711 --- include/lib/aarch64/arch_helpers.h | 9 --------- 1 file changed, 9 deletions(-) (limited to 'include/lib') diff --git a/include/lib/aarch64/arch_helpers.h b/include/lib/aarch64/arch_helpers.h index d1ad31dc..8be27cd5 100644 --- a/include/lib/aarch64/arch_helpers.h +++ b/include/lib/aarch64/arch_helpers.h @@ -112,15 +112,6 @@ static inline void _op ## _type(uint64_t v) \ __asm__ (#_op " " #_type ", %0" : : "r" (v)); \ } -/******************************************************************************* - * Aarch64 translation tables manipulation helper prototypes -******************************************************************************/ -uint64_t create_table_desc(uint64_t *next_table_ptr); -uint64_t create_block_desc(uint64_t desc, uint64_t addr, uint32_t level); -uint64_t create_device_block(uint64_t output_addr, uint32_t level, uint32_t ns); -uint64_t create_romem_block(uint64_t output_addr, uint32_t level, uint32_t ns); -uint64_t create_rwmem_block(uint64_t output_addr, uint32_t level, uint32_t ns); - /******************************************************************************* * TLB maintenance accessor prototypes ******************************************************************************/ -- cgit