2023-06-07 15:10:40 +07:00
|
|
|
/*
|
|
|
|
|
* The MIT License (MIT)
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2023 Ha Thach (thach@tinyusb.org)
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
|
* THE SOFTWARE.
|
|
|
|
|
*
|
|
|
|
|
* This file is part of the TinyUSB stack.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include "tusb_option.h"
|
|
|
|
|
|
|
|
|
|
#if CFG_TUC_ENABLED
|
|
|
|
|
|
|
|
|
|
#include "tcd.h"
|
2023-06-07 18:57:48 +07:00
|
|
|
#include "utcd.h"
|
2023-06-07 15:10:40 +07:00
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
//
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
|
2023-06-07 18:57:48 +07:00
|
|
|
// Debug level of USBD
|
|
|
|
|
#define UTCD_DEBUG 2
|
|
|
|
|
#define TU_LOG_UTCD(...) TU_LOG(UTCD_DEBUG, __VA_ARGS__)
|
|
|
|
|
|
|
|
|
|
// Event queue
|
|
|
|
|
// utcd_int_set() is used as mutex in OS NONE config
|
|
|
|
|
void utcd_int_set(bool enabled);
|
2023-06-09 18:15:28 +07:00
|
|
|
OSAL_QUEUE_DEF(utcd_int_set, _utcd_qdef, CFG_TUC_TASK_QUEUE_SZ, tcd_event_t);
|
|
|
|
|
tu_static osal_queue_t _utcd_q;
|
2023-06-07 18:57:48 +07:00
|
|
|
|
|
|
|
|
// if stack is initialized
|
2023-06-09 18:15:28 +07:00
|
|
|
static bool _utcd_inited = false;
|
2023-06-07 18:57:48 +07:00
|
|
|
|
|
|
|
|
// if port is initialized
|
2023-06-09 18:15:28 +07:00
|
|
|
static bool _port_inited[TUP_TYPEC_RHPORTS_NUM];
|
|
|
|
|
|
|
|
|
|
// Max possible PD size is 262 bytes
|
|
|
|
|
static uint8_t _rx_buf[262] TU_ATTR_ALIGNED(4);
|
2023-06-12 12:14:55 +07:00
|
|
|
static uint8_t _tx_buf[100] TU_ATTR_ALIGNED(4);
|
2023-06-07 15:10:40 +07:00
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
//
|
|
|
|
|
//--------------------------------------------------------------------+
|
2023-06-07 18:57:48 +07:00
|
|
|
bool tuc_inited(uint8_t rhport) {
|
2023-06-09 18:15:28 +07:00
|
|
|
return _utcd_inited && _port_inited[rhport];
|
2023-06-07 18:57:48 +07:00
|
|
|
}
|
|
|
|
|
|
2023-06-12 14:57:50 +07:00
|
|
|
bool tuc_init(uint8_t rhport, uint32_t port_type) {
|
2023-06-07 18:57:48 +07:00
|
|
|
// Initialize stack
|
2023-06-09 18:15:28 +07:00
|
|
|
if (!_utcd_inited) {
|
|
|
|
|
tu_memclr(_port_inited, sizeof(_port_inited));
|
2023-06-07 18:57:48 +07:00
|
|
|
|
2023-06-09 18:15:28 +07:00
|
|
|
_utcd_q = osal_queue_create(&_utcd_qdef);
|
|
|
|
|
TU_ASSERT(_utcd_q != NULL);
|
2023-06-07 18:57:48 +07:00
|
|
|
|
2023-06-09 18:15:28 +07:00
|
|
|
_utcd_inited = true;
|
2023-06-07 18:57:48 +07:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// skip if port already initialized
|
2023-06-09 18:15:28 +07:00
|
|
|
if ( _port_inited[rhport] ) {
|
2023-06-07 18:57:48 +07:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
TU_LOG_UTCD("UTCD init on port %u\r\n", rhport);
|
2023-06-07 15:10:40 +07:00
|
|
|
|
|
|
|
|
TU_ASSERT(tcd_init(rhport, port_type));
|
|
|
|
|
tcd_int_enable(rhport);
|
2023-06-07 18:57:48 +07:00
|
|
|
|
2023-06-09 18:15:28 +07:00
|
|
|
_port_inited[rhport] = true;
|
2023-06-07 15:10:40 +07:00
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-09 18:15:28 +07:00
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
//
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
|
2023-06-12 14:57:50 +07:00
|
|
|
bool utcd_msg_send(uint8_t rhport, pd_header_t const* header, void const* data) {
|
2023-06-12 12:14:55 +07:00
|
|
|
// copy header
|
2023-06-12 14:57:50 +07:00
|
|
|
memcpy(_tx_buf, header, sizeof(pd_header_t));
|
2023-06-12 12:14:55 +07:00
|
|
|
|
|
|
|
|
// copy data objcet if available
|
|
|
|
|
uint16_t const n_data_obj = header->n_data_obj;
|
|
|
|
|
if (n_data_obj > 0) {
|
2023-06-12 14:57:50 +07:00
|
|
|
memcpy(_tx_buf + sizeof(pd_header_t), data, n_data_obj * 4);
|
2023-06-12 12:14:55 +07:00
|
|
|
}
|
|
|
|
|
|
2023-06-12 14:57:50 +07:00
|
|
|
return tcd_msg_send(rhport, _tx_buf, sizeof(pd_header_t) + n_data_obj * 4);
|
2023-06-12 12:14:55 +07:00
|
|
|
}
|
|
|
|
|
|
2023-06-09 19:38:50 +07:00
|
|
|
bool parse_message(uint8_t rhport, uint8_t const* buf, uint16_t len) {
|
|
|
|
|
(void) rhport;
|
|
|
|
|
uint8_t const* p_end = buf + len;
|
2023-06-12 14:57:50 +07:00
|
|
|
pd_header_t const* header = (pd_header_t const*) buf;
|
|
|
|
|
uint8_t const * ptr = buf + sizeof(pd_header_t);
|
2023-06-09 19:38:50 +07:00
|
|
|
|
|
|
|
|
if (header->n_data_obj == 0) {
|
|
|
|
|
// control message
|
2023-06-12 12:14:55 +07:00
|
|
|
switch (header->msg_type) {
|
2023-06-12 14:57:50 +07:00
|
|
|
case PD_CTRL_GOOD_CRC:
|
2023-06-12 12:14:55 +07:00
|
|
|
break;
|
|
|
|
|
|
2023-06-12 14:57:50 +07:00
|
|
|
case PD_CTRL_ACCEPT:
|
2023-06-12 12:14:55 +07:00
|
|
|
break;
|
|
|
|
|
|
2023-06-12 14:57:50 +07:00
|
|
|
case PD_CTRL_REJECT:
|
2023-06-12 12:14:55 +07:00
|
|
|
break;
|
|
|
|
|
|
2023-06-12 14:57:50 +07:00
|
|
|
case PD_CTRL_PS_READY:
|
2023-06-12 12:14:55 +07:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
2023-06-09 19:38:50 +07:00
|
|
|
} else {
|
|
|
|
|
// data message
|
|
|
|
|
switch (header->msg_type) {
|
2023-06-12 14:57:50 +07:00
|
|
|
case PD_DATA_SOURCE_CAP: {
|
2023-06-12 12:14:55 +07:00
|
|
|
// Examine source capability and select a suitable PDO (starting from 1 with safe5v)
|
|
|
|
|
uint8_t obj_pos = 1;
|
|
|
|
|
|
2023-06-09 19:38:50 +07:00
|
|
|
for(size_t i=0; i<header->n_data_obj; i++) {
|
|
|
|
|
TU_VERIFY(ptr < p_end);
|
|
|
|
|
uint32_t const pdo = tu_le32toh(tu_unaligned_read32(ptr));
|
|
|
|
|
|
|
|
|
|
switch ((pdo >> 30) & 0x03ul) {
|
|
|
|
|
case PD_PDO_TYPE_FIXED: {
|
|
|
|
|
pd_pdo_fixed_t const* fixed = (pd_pdo_fixed_t const*) &pdo;
|
|
|
|
|
TU_LOG3("[Fixed] %u mV %u mA\r\n", fixed->voltage_50mv*50, fixed->current_max_10ma*10);
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
case PD_PDO_TYPE_BATTERY:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PD_PDO_TYPE_VARIABLE:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case PD_PDO_TYPE_APDO:
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ptr += 4;
|
|
|
|
|
}
|
2023-06-12 12:14:55 +07:00
|
|
|
|
|
|
|
|
// Send request with selected PDO position as response to Source Cap
|
|
|
|
|
pd_rdo_fixed_variable_t rdo = {
|
|
|
|
|
.current_extremum_10ma = 50, // max 500mA
|
|
|
|
|
.current_operate_10ma = 30, // 300mA
|
|
|
|
|
.reserved = 0,
|
|
|
|
|
.epr_mode_capable = 0,
|
|
|
|
|
.unchunked_ext_msg_support = 0,
|
|
|
|
|
.no_usb_suspend = 0,
|
|
|
|
|
.usb_comm_capable = 1,
|
|
|
|
|
.capability_mismatch = 0,
|
|
|
|
|
.give_back_flag = 0, // exteremum is max
|
|
|
|
|
.object_position = obj_pos,
|
|
|
|
|
};
|
|
|
|
|
|
2023-06-12 14:57:50 +07:00
|
|
|
pd_header_t const req_header = {
|
|
|
|
|
.msg_type = PD_DATA_REQUEST,
|
|
|
|
|
.data_role = PD_DATA_ROLE_UFP,
|
|
|
|
|
.specs_rev = PD_REV_20,
|
|
|
|
|
.power_role = PD_POWER_ROLE_SINK,
|
2023-06-12 12:14:55 +07:00
|
|
|
.msg_id = 0,
|
|
|
|
|
.n_data_obj = 1,
|
|
|
|
|
.extended = 0,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
utcd_msg_send(rhport, &req_header, &rdo);
|
|
|
|
|
|
2023-06-09 19:38:50 +07:00
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
default: break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
2023-06-09 18:15:28 +07:00
|
|
|
|
|
|
|
|
void tcd_event_handler(tcd_event_t const * event, bool in_isr) {
|
|
|
|
|
(void) in_isr;
|
|
|
|
|
switch(event->event_id) {
|
|
|
|
|
case TCD_EVENT_CC_CHANGED:
|
|
|
|
|
if (event->cc_changed.cc_state[0] || event->cc_changed.cc_state[1]) {
|
|
|
|
|
// Attach
|
2023-06-12 14:57:50 +07:00
|
|
|
tcd_msg_receive(event->rhport, _rx_buf, sizeof(_rx_buf));
|
2023-06-09 18:15:28 +07:00
|
|
|
}else {
|
|
|
|
|
// Detach
|
|
|
|
|
}
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case TCD_EVENT_RX_COMPLETE:
|
|
|
|
|
// TODO process message here in ISR, move to thread later
|
2023-06-09 19:38:50 +07:00
|
|
|
if (event->rx_complete.result == XFER_RESULT_SUCCESS) {
|
|
|
|
|
parse_message(event->rhport, _rx_buf, event->rx_complete.xferred_bytes);
|
|
|
|
|
}
|
2023-06-09 18:15:28 +07:00
|
|
|
|
|
|
|
|
// start new rx
|
2023-06-12 14:57:50 +07:00
|
|
|
tcd_msg_receive(event->rhport, _rx_buf, sizeof(_rx_buf));
|
2023-06-09 18:15:28 +07:00
|
|
|
break;
|
2023-06-09 19:38:50 +07:00
|
|
|
|
|
|
|
|
default: break;
|
2023-06-09 18:15:28 +07:00
|
|
|
}
|
|
|
|
|
}
|
2023-06-07 18:57:48 +07:00
|
|
|
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
//
|
|
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
|
void utcd_int_set(bool enabled) {
|
|
|
|
|
// Disable all controllers since they shared the same event queue
|
|
|
|
|
for (uint8_t p = 0; p < TUP_TYPEC_RHPORTS_NUM; p++) {
|
2023-06-09 18:15:28 +07:00
|
|
|
if ( _port_inited[p] ) {
|
2023-06-07 18:57:48 +07:00
|
|
|
if (enabled) {
|
|
|
|
|
tcd_int_enable(p);
|
|
|
|
|
}else {
|
|
|
|
|
tcd_int_disable(p);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2023-06-07 15:10:40 +07:00
|
|
|
#endif
|