/*************************************************************************** * 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 */ /** */ /** Storage Class */ /** */ /**************************************************************************/ /**************************************************************************/ /* Include necessary system files. */ #define UX_SOURCE_CODE #include "ux_api.h" #include "ux_host_class_storage.h" #include "ux_host_stack.h" #if defined(UX_HOST_CLASS_STORAGE_NO_FILEX) /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _ux_host_class_storage_media_get PORTABLE C */ /* 6.1.12 */ /* AUTHOR */ /* */ /* Chaoqiong Xiao, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function retrieves storage media from the storage device. */ /* */ /* INPUT */ /* */ /* storage Pointer to storage class */ /* media_lun Media logical unit No. (LUN) */ /* storage_media Holds returned storage media */ /* pointer */ /* */ /* OUTPUT */ /* */ /* Completion Status */ /* */ /* CALLS */ /* */ /* */ /* CALLED BY */ /* */ /* Storage Class */ /* */ /**************************************************************************/ UINT _ux_host_class_storage_media_get(UX_HOST_CLASS_STORAGE *storage, ULONG media_lun, UX_HOST_CLASS_STORAGE_MEDIA **storage_media) { #if !defined(UX_HOST_CLASS_STORAGE_NO_FILEX) UX_PARAMETER_NOT_USED(storage); UX_PARAMETER_NOT_USED(media_index); UX_PARAMETER_NOT_USED(storage_media); return(UX_FUNCTION_NOT_SUPPORTED); #else UX_HOST_CLASS_STORAGE_MEDIA *storage_medias; UX_HOST_CLASS_STORAGE_MEDIA *storage_media_inst; UX_HOST_CLASS *class_inst; UINT scan_index; /* If storage is not live, media is not ready. */ if (storage -> ux_host_class_storage_state != UX_HOST_CLASS_INSTANCE_LIVE) return(UX_ERROR); /* Get storage class instance. */ class_inst = storage -> ux_host_class_storage_class; /* Get shared storage media array. */ storage_medias = (UX_HOST_CLASS_STORAGE_MEDIA *)class_inst -> ux_host_class_media; /* Search media to find the right one. */ for(scan_index = 0; scan_index < UX_HOST_CLASS_STORAGE_MAX_MEDIA; scan_index ++) { storage_media_inst = &storage_medias[scan_index]; /* Skip storage media not used. */ if (storage_media_inst -> ux_host_class_storage_media_status != UX_USED) continue; /* Skip storage media not belong to the storage. */ if (storage_media_inst -> ux_host_class_storage_media_storage != storage) continue; /* Skip storage media with different LUN. */ if (storage_media_inst -> ux_host_class_storage_media_lun != media_lun) continue; /* Store the media instance. */ { *storage_media = storage_media_inst; return(UX_SUCCESS); } } /* Media not found. */ return(UX_ERROR); #endif } /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _uxe_host_class_storage_media_get PORTABLE C */ /* 6.3.0 */ /* AUTHOR */ /* */ /* Chaoqiong Xiao, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function checks errors in storage media get function call. */ /* */ /* INPUT */ /* */ /* storage Pointer to storage class */ /* media_lun Media logical unit No. (LUN) */ /* storage_media Holds returned storage media */ /* */ /* OUTPUT */ /* */ /* Status */ /* */ /* CALLS */ /* */ /* _ux_host_class_storage_media_get Get storage media */ /* */ /* CALLED BY */ /* */ /* Application */ /* */ /**************************************************************************/ UINT _uxe_host_class_storage_media_get(UX_HOST_CLASS_STORAGE *storage, ULONG media_lun, UX_HOST_CLASS_STORAGE_MEDIA **storage_media) { /* Sanity check. */ if ((storage == UX_NULL) || (storage_media == UX_NULL)) return(UX_INVALID_PARAMETER); /* Invoke storage media get function. */ return(_ux_host_class_storage_media_get(storage, media_lun, storage_media)); } #endif