/*************************************************************************** * 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 */ /** */ /** OHCI Controller Driver */ /** */ /**************************************************************************/ /**************************************************************************/ /* Include necessary system files. */ #define UX_SOURCE_CODE #include "ux_api.h" #include "ux_hcd_ohci.h" #include "ux_host_stack.h" /**************************************************************************/ /* */ /* FUNCTION RELEASE */ /* */ /* _ux_hcd_ohci_port_reset PORTABLE C */ /* 6.1.12 */ /* AUTHOR */ /* */ /* Chaoqiong Xiao, Microsoft Corporation */ /* */ /* DESCRIPTION */ /* */ /* This function will reset a specific port attached to the root HUB. */ /* */ /* INPUT */ /* */ /* hcd_ohci Pointer to OHCI controller */ /* port_index Port index */ /* */ /* OUTPUT */ /* */ /* Completion Status */ /* */ /* CALLS */ /* */ /* _ux_hcd_ohci_register_read OHCI register read */ /* _ux_hcd_ohci_register_write OHCI register write */ /* _ux_utility_delay_ms Delay */ /* */ /* CALLED BY */ /* */ /* OHCI Controller Driver */ /* */ /**************************************************************************/ UINT _ux_hcd_ohci_port_reset(UX_HCD_OHCI *hcd_ohci, ULONG port_index) { ULONG ohci_register_port_status; UINT status; ULONG actual_flags = 0; /* Check to see if this port is valid on this controller. */ if (hcd_ohci -> ux_hcd_ohci_nb_root_hubs < port_index) { /* Error trap. */ _ux_system_error_handler(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_HCD, UX_PORT_INDEX_UNKNOWN); /* If trace is enabled, insert this event into the trace buffer. */ UX_TRACE_IN_LINE_INSERT(UX_TRACE_ERROR, UX_PORT_INDEX_UNKNOWN, port_index, 0, 0, UX_TRACE_ERRORS, 0, 0) return(UX_PORT_INDEX_UNKNOWN); } /* Ensure that the downstream port has a device attached. It is unnatural to perform a port reset if there is no device. */ ohci_register_port_status = _ux_hcd_ohci_register_read(hcd_ohci, OHCI_HC_RH_PORT_STATUS + port_index); /* Check Device Connection Status. */ if ((ohci_register_port_status & OHCI_HC_PS_CCS) == 0) { /* Error trap. */ _ux_system_error_handler(UX_SYSTEM_LEVEL_THREAD, UX_SYSTEM_CONTEXT_HCD, UX_NO_DEVICE_CONNECTED); /* If trace is enabled, insert this event into the trace buffer. */ UX_TRACE_IN_LINE_INSERT(UX_TRACE_ERROR, UX_NO_DEVICE_CONNECTED, port_index, 0, 0, UX_TRACE_ERRORS, 0, 0) return(UX_NO_DEVICE_CONNECTED); } /* Now we can safely issue a RESET command to this port. */ _ux_hcd_ohci_register_write(hcd_ohci, OHCI_HC_RH_PORT_STATUS + port_index, OHCI_HC_PS_PRS); /* Wait for the port reset complete event */ status = _ux_host_event_flags_get(&hcd_ohci -> ux_hcd_ohci_event_flags_group, (UX_OHCI_PRSC_EVENT), UX_OR_CLEAR, &actual_flags, UX_MS_TO_TICK(UX_OHCI_PRSC_EVENT_TIMEOUT)); if ((status != UX_NO_EVENTS) && (actual_flags & UX_OHCI_PRSC_EVENT)) { return(UX_SUCCESS); } /* If trace is enabled, insert this event into the trace buffer. */ UX_TRACE_IN_LINE_INSERT(UX_TRACE_ERROR, UX_PORT_RESET_FAILED, port_index, 0, 0, UX_TRACE_ERRORS, 0, 0) /* The reset failed! Inform the root HUB driver. This should not really happen in a 1.x controller. */ return(UX_PORT_RESET_FAILED); }