1 /* 2 * Copyright (C) 2018-2022 Intel Corporation. 3 * SPDX-License-Identifier: BSD-3-Clause 4 */ 5 6 #ifndef RELOCATE_H 7 #define RELOCATE_H 8 9 extern void relocate(void); 10 extern uint64_t get_hv_image_delta(void); 11 extern uint64_t get_hv_image_base(void); 12 extern uint64_t get_hv_image_size(void); 13 14 /* external symbols that are helpful for relocation */ 15 extern uint8_t _DYNAMIC[1]; 16 17 #endif /* RELOCATE_H */ 18