/*************************************************************************** * Copyright (c) 2024 Microsoft Corporation * Copyright (c) 2026-present Eclipse ThreadX contributors * * This program and the accompanying materials are made available under the * terms of the MIT License which is available at * https://opensource.org/licenses/MIT. * * SPDX-License-Identifier: MIT **************************************************************************/ /**************************************************************************/ /**************************************************************************/ /** */ /** USBX Component */ /** */ /** Utility */ /** */ /**************************************************************************/ /**************************************************************************/ /* Include necessary system files. */ #define UX_SOURCE_CODE #include "ux_api.h" /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _ux_utility_physical_address PORTABLE C */ /* 6.1 */ /* AUTHOR */ /* */ /* Chaoqiong Xiao, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function returns a physical address given the supplied */ /* virtual address. */ /* */ /* INPUT */ /* */ /* virtual_address Physical address */ /* */ /* OUTPUT */ /* */ /* physical_address Virtual address */ /* */ /* CALLS */ /* */ /* None */ /* */ /* CALLED BY */ /* */ /* USBX Components */ /* */ /**************************************************************************/ VOID *_ux_utility_physical_address(VOID *virtual_address) { VOID *physical_address; /* Any code to translate the virtual address into a physical address will be below. If there is no translation, the physical address= the virtual address. */ physical_address = virtual_address; return(physical_address); }