mirror of
https://github.com/espressif/esp-idf.git
synced 2025-11-08 23:35:33 +00:00
Merge branch 'feature/usb_p4_ver2' into 'master'
feat(usb/host): Add USB support to ESP32-P4 v3 (ECO5) Closes IDF-13507 and IDF-13742 See merge request espressif/esp-idf!41602
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2023-2024 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2023-2025 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
@@ -14,10 +14,13 @@ extern "C" {
|
||||
|
||||
/*
|
||||
Registers and fields were generated based on a set of USB-DWC configuration options.
|
||||
ESP32-P4 contains 2 instances of USB-DWC with different configurations, the structure below corresponds to the HS instance.
|
||||
The FS instance contains a subset of registers from HS instance, the user (HAL) is responsible for accessing only existing fields.
|
||||
ESP32-P4 contains 2 instances of USB-DWC with different configurations and versions, the structure below corresponds to the High Speed v4.30a instance.
|
||||
The Full Speed instance contains a subset of registers from High Speed instance, the user (HAL) is responsible for accessing only existing fields.
|
||||
|
||||
See ESP32-P4 "usb_dwc_cfg.h" for more details.
|
||||
|
||||
List of changes v4.00a -> v4.30a
|
||||
- GRSTCTL register now contains the CSftRstDone bit which indicates the completion of a soft reset.
|
||||
*/
|
||||
|
||||
/* ---------------------------- Register Types ------------------------------ */
|
||||
@@ -129,7 +132,8 @@ typedef union {
|
||||
uint32_t rxfflsh: 1;
|
||||
uint32_t txfflsh: 1;
|
||||
uint32_t txfnum: 5;
|
||||
uint32_t reserved_11: 19;
|
||||
uint32_t reserved_11: 18;
|
||||
uint32_t csftrstdone: 1;
|
||||
uint32_t dmareq: 1;
|
||||
uint32_t ahbidle: 1;
|
||||
};
|
||||
|
||||
181
components/soc/esp32p4/register/hw_ver3/soc/usb_dwc_cfg.h
Normal file
181
components/soc/esp32p4/register/hw_ver3/soc/usb_dwc_cfg.h
Normal file
@@ -0,0 +1,181 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/*
|
||||
HS Instance:
|
||||
Configuration Set ID: 11
|
||||
*/
|
||||
|
||||
/* 3.1 Basic Config Parameters */
|
||||
#define OTG20_MODE 0
|
||||
#define OTG20_ARCHITECTURE 2
|
||||
#define OTG20_SINGLE_POINT 1
|
||||
#define OTG20_ENABLE_LPM 0
|
||||
#define OTG20_EN_DED_TX_FIFO 1
|
||||
#define OTG20_EN_DESC_DMA 1
|
||||
#define OTG20_MULTI_PROC_INTRPT 1
|
||||
|
||||
/* 3.2 USB Physical Layer Interface Parameters */
|
||||
#define OTG20_HSPHY_INTERFACE 3 // Although we support both UTMI+ and ULPI, the ULPI is not wired out of the USB-DWC. Hence only UTMI+ can be used
|
||||
#define OTG20_HSPHY_DWIDTH 2
|
||||
#define OTG20_FSPHY_INTERFACE 2
|
||||
#define OTG20_ENABLE_IC_USB 0
|
||||
#define OTG20_ENABLE_HSIC 0
|
||||
#define OTG20_I2C_INTERFACE 0
|
||||
#define OTG20_ULPI_CARKIT 1
|
||||
#define OTG20_ADP_SUPPORT 1
|
||||
#define OTG20_BC_SUPPORT 0
|
||||
#define OTG20_VENDOR_CTL_INTERFACE 1
|
||||
|
||||
/* 3.3 Device Endpoint Configuration Parameters */
|
||||
#define OTG20_NUM_EPS 15
|
||||
#define OTG20_NUM_IN_EPS 8
|
||||
#define OTG20_NUM_CRL_EPS 1
|
||||
|
||||
/* 3.4 Host Endpoint Configuration Parameters */
|
||||
#define OTG20_NUM_HOST_CHAN 16
|
||||
#define OTG20_EN_PERIO_HOST 1
|
||||
|
||||
/* 3.5 Endpoint Channel FIFO Configuration Parameters */
|
||||
#define OTG20_DFIFO_DEPTH 1024
|
||||
#define OTG20_DFIFO_DYNAMIC 1
|
||||
#define OTG20_RX_DFIFO_DEPTH 1024
|
||||
#define OTG20_TX_HNPERIO_DFIFO_DEPTH 1024
|
||||
#define OTG20_TX_HPERIO_DFIFO_DEPTH 1024
|
||||
#define OTG20_NPERIO_TX_QUEUE_DEPTH 8
|
||||
#define OTG20_PERIO_TX_QUEUE_DEPTH 16
|
||||
|
||||
/* 3.6 Additional Configuration Options Parameters */
|
||||
#define OTG20_TRANS_COUNT_WIDTH 17
|
||||
#define OTG20_PACKET_COUNT_WIDTH 8
|
||||
#define OTG20_RM_OPT_FEATURES 1
|
||||
#define OTG20_EN_PWROPT 1
|
||||
#define OTG20_SYNC_RESET_TYPE 0
|
||||
#define OTG20_EN_IDDIG_FILTER 1
|
||||
#define OTG20_EN_VBUSVALID_FILTER 1
|
||||
#define OTG20_EN_A_VALID_FILTER 1
|
||||
#define OTG20_EN_B_VALID_FILTER 1
|
||||
#define OTG20_EN_SESSIONEND_FILTER 1
|
||||
#define OTG20_EXCP_CNTL_XFER_FLOW 1
|
||||
#define OTG20_PWR_CLAMP 0
|
||||
#define OTG20_PWR_SWITCH_POLARITY 0
|
||||
|
||||
/* 3.7 Endpoint Direction Parameters */
|
||||
#define OTG20_EP_DIR_1 0
|
||||
#define OTG20_EP_DIR_2 0
|
||||
#define OTG20_EP_DIR_3 0
|
||||
#define OTG20_EP_DIR_4 0
|
||||
#define OTG20_EP_DIR_5 0
|
||||
#define OTG20_EP_DIR_6 0
|
||||
#define OTG20_EP_DIR_7 0
|
||||
#define OTG20_EP_DIR_8 0
|
||||
#define OTG20_EP_DIR_9 0
|
||||
#define OTG20_EP_DIR_10 0
|
||||
#define OTG20_EP_DIR_11 0
|
||||
#define OTG20_EP_DIR_12 0
|
||||
#define OTG20_EP_DIR_13 0
|
||||
#define OTG20_EP_DIR_14 0
|
||||
#define OTG20_EP_DIR_15 0
|
||||
|
||||
/* 3.8 Device Periodic FIFO Depth Parameters */
|
||||
|
||||
/* 3.9 Device IN Endpoint FIFO Depth Parameters */
|
||||
#define OTG20_TX_DINEP_DFIFO_DEPTH_0 512
|
||||
#define OTG20_TX_DINEP_DFIFO_DEPTH_1 512
|
||||
#define OTG20_TX_DINEP_DFIFO_DEPTH_2 512
|
||||
#define OTG20_TX_DINEP_DFIFO_DEPTH_3 512
|
||||
#define OTG20_TX_DINEP_DFIFO_DEPTH_4 512
|
||||
#define OTG20_TX_DINEP_DFIFO_DEPTH_5 512
|
||||
#define OTG20_TX_DINEP_DFIFO_DEPTH_6 512
|
||||
#define OTG20_TX_DINEP_DFIFO_DEPTH_7 512
|
||||
|
||||
/* 3.10 UTMI-To-UTMI Bridge Component Parameters */
|
||||
#define OTG20_U2UB_EN 0
|
||||
|
||||
/*
|
||||
FS Instance:
|
||||
Configuration Set ID: 1
|
||||
*/
|
||||
|
||||
/* 3.1 Basic Config Parameters */
|
||||
#define OTG11_MODE 0
|
||||
#define OTG11_ARCHITECTURE 2
|
||||
#define OTG11_SINGLE_POINT 1
|
||||
#define OTG11_ENABLE_LPM 0
|
||||
#define OTG11_EN_DED_TX_FIFO 1
|
||||
#define OTG11_EN_DESC_DMA 1
|
||||
#define OTG11_MULTI_PROC_INTRPT 0
|
||||
|
||||
/* 3.2 USB Physical Layer Interface Parameters */
|
||||
#define OTG11_HSPHY_INTERFACE 0
|
||||
#define OTG11_FSPHY_INTERFACE 1
|
||||
#define OTG11_ENABLE_IC_USB 0
|
||||
#define OTG11_I2C_INTERFACE 0
|
||||
#define OTG11_ADP_SUPPORT 0
|
||||
#define OTG11_BC_SUPPORT 0
|
||||
|
||||
/* 3.3 Device Endpoint Configuration Parameters */
|
||||
#define OTG11_NUM_EPS 6
|
||||
#define OTG11_NUM_IN_EPS 5
|
||||
#define OTG11_NUM_CRL_EPS 0
|
||||
|
||||
/* 3.4 Host Endpoint Configuration Parameters */
|
||||
#define OTG11_NUM_HOST_CHAN 8
|
||||
#define OTG11_EN_PERIO_HOST 1
|
||||
|
||||
/* 3.5 Endpoint Channel FIFO Configuration Parameters */
|
||||
#define OTG11_DFIFO_DEPTH 256
|
||||
#define OTG11_DFIFO_DYNAMIC 1
|
||||
#define OTG11_RX_DFIFO_DEPTH 256
|
||||
#define OTG11_TX_HNPERIO_DFIFO_DEPTH 256
|
||||
#define OTG11_TX_NPERIO_DFIFO_DEPTH 256
|
||||
#define OTG11_TX_HPERIO_DFIFO_DEPTH 256
|
||||
#define OTG11_NPERIO_TX_QUEUE_DEPTH 4
|
||||
#define OTG11_PERIO_TX_QUEUE_DEPTH 8
|
||||
|
||||
/* 3.6 Additional Configuration Options Parameters */
|
||||
#define OTG11_TRANS_COUNT_WIDTH 16
|
||||
#define OTG11_PACKET_COUNT_WIDTH 7
|
||||
#define OTG11_RM_OPT_FEATURES 1
|
||||
#define OTG11_EN_PWROPT 1
|
||||
#define OTG11_SYNC_RESET_TYPE 0
|
||||
#define OTG11_EN_IDDIG_FILTER 1
|
||||
#define OTG11_EN_VBUSVALID_FILTER 1
|
||||
#define OTG11_EN_A_VALID_FILTER 1
|
||||
#define OTG11_EN_B_VALID_FILTER 1
|
||||
#define OTG11_EN_SESSIONEND_FILTER 1
|
||||
#define OTG11_EXCP_CNTL_XFER_FLOW 1
|
||||
#define OTG11_PWR_CLAMP 0
|
||||
#define OTG11_PWR_SWITCH_POLARITY 0
|
||||
|
||||
/* 3.7 Endpoint Direction Parameters */
|
||||
#define OTG11_EP_DIR_1 0
|
||||
#define OTG11_EP_DIR_2 0
|
||||
#define OTG11_EP_DIR_3 0
|
||||
#define OTG11_EP_DIR_4 0
|
||||
#define OTG11_EP_DIR_5 0
|
||||
#define OTG11_EP_DIR_6 0
|
||||
|
||||
/* 3.8 Device Periodic FIFO Depth Parameters */
|
||||
|
||||
/* 3.9 Device IN Endpoint FIFO Depth Parameters */
|
||||
#define OTG11_TX_DINEP_DFIFO_DEPTH_1 256
|
||||
#define OTG11_TX_DINEP_DFIFO_DEPTH_2 256
|
||||
#define OTG11_TX_DINEP_DFIFO_DEPTH_3 256
|
||||
#define OTG11_TX_DINEP_DFIFO_DEPTH_4 256
|
||||
|
||||
/* 3.10 UTMI-To-UTMI Bridge Component Parameters */
|
||||
#define OTG11_U2UB_EN 0
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
@@ -1,139 +0,0 @@
|
||||
/**
|
||||
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
#pragma once
|
||||
|
||||
#include <stdint.h>
|
||||
#ifdef __cplusplus
|
||||
extern "C" {
|
||||
#endif
|
||||
|
||||
/** Group: USB wrapper registers. */
|
||||
/** Type of otg_conf register
|
||||
* USB wrapper configuration registers.
|
||||
*/
|
||||
typedef union {
|
||||
struct {
|
||||
/** srp_sessend_override : R/W; bitpos: [0]; default: 0;
|
||||
* This bit is used to enable the software over-ride of srp session end signal. 1'b0:
|
||||
* the signal is controlled by the chip input, 1'b1: the signal is controlled by the
|
||||
* software.
|
||||
*/
|
||||
uint32_t srp_sessend_override:1;
|
||||
/** srp_sessend_value : R/W; bitpos: [1]; default: 0;
|
||||
* Software over-ride value of srp session end signal.
|
||||
*/
|
||||
uint32_t srp_sessend_value:1;
|
||||
/** phy_sel : R/W; bitpos: [2]; default: 0;
|
||||
* Select internal external PHY. 1'b0: Select internal PHY, 1'b1: Select external PHY.
|
||||
*/
|
||||
uint32_t phy_sel:1;
|
||||
/** dfifo_force_pd : R/W; bitpos: [3]; default: 0;
|
||||
* Force the dfifo to go into low power mode. The data in dfifo will not lost.
|
||||
*/
|
||||
uint32_t dfifo_force_pd:1;
|
||||
/** dbnce_fltr_bypass : R/W; bitpos: [4]; default: 0;
|
||||
* Bypass Debounce filters for avalid,bvalid,vbusvalid,session end, id signals
|
||||
*/
|
||||
uint32_t dbnce_fltr_bypass:1;
|
||||
/** exchg_pins_override : R/W; bitpos: [5]; default: 0;
|
||||
* Enable software controlle USB D+ D- exchange
|
||||
*/
|
||||
uint32_t exchg_pins_override:1;
|
||||
/** exchg_pins : R/W; bitpos: [6]; default: 0;
|
||||
* USB D+ D- exchange. 1'b0: don't change, 1'b1: exchange D+ D-.
|
||||
*/
|
||||
uint32_t exchg_pins:1;
|
||||
/** vrefh : R/W; bitpos: [8:7]; default: 0;
|
||||
* Control single-end input high threshold,1.76V to 2V, step 80mV.
|
||||
*/
|
||||
uint32_t vrefh:2;
|
||||
/** vrefl : R/W; bitpos: [10:9]; default: 0;
|
||||
* Control single-end input low threshold,0.8V to 1.04V, step 80mV.
|
||||
*/
|
||||
uint32_t vrefl:2;
|
||||
/** vref_override : R/W; bitpos: [11]; default: 0;
|
||||
* Enable software controlle input threshold.
|
||||
*/
|
||||
uint32_t vref_override:1;
|
||||
/** pad_pull_override : R/W; bitpos: [12]; default: 0;
|
||||
* Enable software controlle USB D+ D- pullup pulldown.
|
||||
*/
|
||||
uint32_t pad_pull_override:1;
|
||||
/** dp_pullup : R/W; bitpos: [13]; default: 0;
|
||||
* Controlle USB D+ pullup.
|
||||
*/
|
||||
uint32_t dp_pullup:1;
|
||||
/** dp_pulldown : R/W; bitpos: [14]; default: 0;
|
||||
* Controlle USB D+ pulldown.
|
||||
*/
|
||||
uint32_t dp_pulldown:1;
|
||||
/** dm_pullup : R/W; bitpos: [15]; default: 0;
|
||||
* Controlle USB D+ pullup.
|
||||
*/
|
||||
uint32_t dm_pullup:1;
|
||||
/** dm_pulldown : R/W; bitpos: [16]; default: 0;
|
||||
* Controlle USB D+ pulldown.
|
||||
*/
|
||||
uint32_t dm_pulldown:1;
|
||||
/** pullup_value : R/W; bitpos: [17]; default: 0;
|
||||
* Controlle pullup value. 1'b0: typical value is 2.4K, 1'b1: typical value is 1.2K.
|
||||
*/
|
||||
uint32_t pullup_value:1;
|
||||
/** usb_pad_enable : R/W; bitpos: [18]; default: 0;
|
||||
* Enable USB pad function.
|
||||
*/
|
||||
uint32_t usb_pad_enable:1;
|
||||
/** ahb_clk_force_on : R/W; bitpos: [19]; default: 0;
|
||||
* Force ahb clock always on.
|
||||
*/
|
||||
uint32_t ahb_clk_force_on:1;
|
||||
/** phy_clk_force_on : R/W; bitpos: [20]; default: 1;
|
||||
* Force phy clock always on.
|
||||
*/
|
||||
uint32_t phy_clk_force_on:1;
|
||||
uint32_t reserved_21:1;
|
||||
/** dfifo_force_pu : R/W; bitpos: [22]; default: 0;
|
||||
* Disable the dfifo to go into low power mode. The data in dfifo will not lost.
|
||||
*/
|
||||
uint32_t dfifo_force_pu:1;
|
||||
uint32_t reserved_23:8;
|
||||
/** clk_en : R/W; bitpos: [31]; default: 0;
|
||||
* Disable auto clock gating of CSR registers.
|
||||
*/
|
||||
uint32_t clk_en:1;
|
||||
};
|
||||
uint32_t val;
|
||||
} usb_wrap_otg_conf_reg_t;
|
||||
|
||||
/** Type of date register
|
||||
* Date register.
|
||||
*/
|
||||
typedef union {
|
||||
struct {
|
||||
/** usb_wrap_date : HRO; bitpos: [31:0]; default: 587400452;
|
||||
* Date register.
|
||||
*/
|
||||
uint32_t usb_wrap_date:32;
|
||||
};
|
||||
uint32_t val;
|
||||
} usb_wrap_date_reg_t;
|
||||
|
||||
|
||||
typedef struct {
|
||||
volatile usb_wrap_otg_conf_reg_t otg_conf;
|
||||
uint32_t reserved_004[254];
|
||||
volatile usb_wrap_date_reg_t date;
|
||||
} usb_wrap_dev_t;
|
||||
|
||||
extern usb_wrap_dev_t USB_WRAP;
|
||||
|
||||
#ifndef __cplusplus
|
||||
_Static_assert(sizeof(usb_wrap_dev_t) == 0x400, "Invalid size of usb_wrap_dev_t structure");
|
||||
#endif
|
||||
|
||||
#ifdef __cplusplus
|
||||
}
|
||||
#endif
|
||||
Reference in New Issue
Block a user