0% found this document useful (0 votes)
76 views

Esp32-S2 Errata en

Uploaded by

JOSE FRANÇA
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
76 views

Esp32-S2 Errata en

Uploaded by

JOSE FRANÇA
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 10

ESP32­S2 Series SoC

Errata

Introduction

This document describes known errata in ESP32-S2 series of SoCs.

Version 1.0
Espressif Systems
Copyright © 2022

www.espressif.com
Contents

Contents

Chip Revision Identification 3

Errata Description 5
1 System 5
1.1 Leakage current at the VDDA and VDD3P3_RTC pin during shutdown 5
1.2 Random flash download failure 5
2 RTC I2C 6
2.1 The falling edge of RTC_I2C_RESET triggers reset at low temperature 6
3 SPI 6
3.1 SPI is stuck after soft restart from auto suspension 6
4 USB OTG 6
4.1 Abnormal data during AHB bus arbitration by USB OTG 6
5 SAR ADC 7
5.1 Bit 1 of SAR ADC does not flip 7

Related Documentation and Resources 8

Revision History 9

Espressif Systems 2 ESP32-S2 Series SoC Errata v1.0


Submit Documentation Feedback
Chip Revision Identification

Chip Revision Identification


Note:

Check the link or the QR code to make sure that you use the latest version of this document:
https://espressif.com/sites/default/files/documentation/esp32-s2_errata_en.pdf

The chip revision is identified by:

• eFuse field EFUSE_RD_MAC_SPI_SYS_3_REG[20:18] and EFUSE_RD_MAC_SPI_SYS_4_REG[6:4]

Table 1: Chip Revision Identification by eFuse Bits

Chip Revision
eFuse Bit
v0.0 v1.0
EFUSE_RD_MAC_SPI_SYS_3_REG[19] 0 0
Major Number
EFUSE_RD_MAC_SPI_SYS_3_REG[18] 0 1
EFUSE_RD_MAC_SPI_SYS_3_REG[20] 0 0
EFUSE_RD_MAC_SPI_SYS_4_REG[6] 0 0
Minor Number
EFUSE_RD_MAC_SPI_SYS_4_REG[5] 0 0
EFUSE_RD_MAC_SPI_SYS_4_REG[4] 0 0

• Main Die line in chip marking

Pin 1

Espressif Logo

Product Name Product Name


Date Code WWYYYY

Main Die XXXXXXXXXXX

Figure 1: Chip Marking Diagram

Table 2: Chip Revision Identification by Silk Print

Chip Revision Main Die


v0.0 XAXXXXXXXX
v1.0 XBXXXXXXXX

Espressif Systems 3 ESP32-S2 Series SoC Errata v1.0


Submit Documentation Feedback
Chip Revision Identification

Note:
Information about ESP-IDF release that supports a specific chip revision is provided in ESP Product Selector.

Espressif Systems 4 ESP32-S2 Series SoC Errata v1.0


Submit Documentation Feedback
Errata Description

Errata Description

Table 3: Errata Summary

Affected Revisions
Category Description v0.0 v1.0
1.1 Leakage current at the VDDA and VDD3P3_RTC pin during
Y
System shutdown
1.2 Random flash download failure Y
2.1 The falling edge of RTC_I2C_RESET triggers reset at low
RTC I2C Y
temperature
SPI 3.1 SPI is stuck after soft restart from auto suspension Y
USB OTG 4.1 Abnormal data during AHB bus arbitration by USB OTG Y
SAR ADC 5.1 Bit 1 of SAR ADC does not flip Y

1 System
1.1 Leakage current at the VDDA and VDD3P3_RTC pin during shutdown
Description

When a chip is connected to the power supply, but the CHIP_PU pin is held low (meaning that the chip powers
off), there will be a leakage current in the µA range at power pins such as VDDA and VDD3P3_RTC.

Workarounds

No.

Projected Solution

Fixed in chip revision v1.0.

1.2 Random flash download failure


Description

In download mode, the first stage bootloader in ROM receives serial data from two different input pins. Among
the two intput pins, pin 24 DAC_2 (GPIO18) is not pulled up by default. If this pin is not pulled up in PCB design
and is left floating, in download mode the first stage bootloader will not function properly (including download
applications) due to interference.

Workarounds

This problem can be bypassed in PCB design by pulling up pin 24 DAC_2. The typical value of the pull-up resistor
is 10 kΩ. All official development boards by Espressif pull this pin up, while official modules are not.

Espressif Systems 5 ESP32-S2 Series SoC Errata v1.0


Submit Documentation Feedback
Errata Description

Projected Solution

Fixed in chip revision v1.0 by pulling pin 24 up by default.

2 RTC I2C
2.1 The falling edge of RTC_I2C_RESET triggers reset at low temperature
Description

At –40 °C, the chip will be restarted during wake-up.

Workarounds

No.

Projected Solution

Fixed in chip revision v1.0.

3 SPI
3.1 SPI is stuck after soft restart from auto suspension
Description

After auto suspend is enabled, if caching is requested while Memory SPI is erasing flash, Memory SPI will
automatically send a SUSPEND command (0x75). If there is a system reset, and Memory SPI is restarted before
sending a RESUME command (0x7A), the state machine of Memory SPI will not be restored. As a result, the
system cannot continue operations.

Workarounds

Disable auto suspend function.

Projected Solution

Fixed in chip revision v1.0.

4 USB OTG
4.1 Abnormal data during AHB bus arbitration by USB OTG
Description

When USB OTG and other peripherals on ESP32-S2 request the AHB bus at the same time, the AHB bus might
generate wrong arbitration signals, which result in abnormal data during reads and writes by USB OTG. The
competing peripherals include:

• I2S

• SPI

Espressif Systems 6 ESP32-S2 Series SoC Errata v1.0


Submit Documentation Feedback
Errata Description

Workarounds

1. Avoid AHB bus competition between USB OTG and above peripherals by not using DMA mode of USB
OTG, or disabling DMA mode of above peripherals.

2. Avoid interrupt while USB OTG is using the AHB bus. Specifically, set USB OTG’s AHB burst transfer to
INCR mode. In this mode, USB OTG will occupy the AHB bus exclusively until the burst transfer is
completed.

Note:
Use the second workaround with care, as it requires adjustment to maximum packet size (MPS) for USB OTG
endpoints, so that burst time is smaller than the timeout period of the competing peripherals.

Projected Solution

Fixed in chip revision v1.0.

5 SAR ADC
5.1 Bit 1 of SAR ADC does not flip
Description

Bit 1 of SAR ADC is always 0, and does not change with measured voltage.

Workarounds

No.

Projected Solution

Fixed in chip revision v1.0. The effective resolution of SAR ADC on chip revision v1.0 is changed from 13 bits to
12 bits. That is, bit 0 is not valid, and the valid bits are bit 1 ∼ bit 12 inclusive.

Espressif Systems 7 ESP32-S2 Series SoC Errata v1.0


Submit Documentation Feedback
Related Documentation and Resources

Related Documentation and Resources


Related Documentation
• ESP32-S2 Series Datasheet – Specifications of the ESP32-S2 hardware.
• ESP32-S2 Technical Reference Manual – Detailed information on how to use the ESP32-S2 memory and peripherals.
• ESP32-S2 Hardware Design Guidelines – Guidelines on how to integrate the ESP32-S2 into your hardware product.
• Certificates
https://espressif.com/en/support/documents/certificates
• ESP32-S2 Product/Process Change Notifications (PCN)
https://espressif.com/en/support/documents/pcns
• ESP32-S2 Advisories – Information on security, bugs, compatibility, component reliability.
https://espressif.com/en/support/documents/advisories
• Documentation Updates and Update Notification Subscription
https://espressif.com/en/support/download/documents

Developer Zone
• ESP-IDF Programming Guide for ESP32-S2 – Extensive documentation for the ESP-IDF development framework.
• ESP-IDF and other development frameworks on GitHub.
https://github.com/espressif
• ESP32 BBS Forum – Engineer-to-Engineer (E2E) Community for Espressif products where you can post questions,
share knowledge, explore ideas, and help solve problems with fellow engineers.
https://esp32.com/
• The ESP Journal – Best Practices, Articles, and Notes from Espressif folks.
https://blog.espressif.com/
• See the tabs SDKs and Demos, Apps, Tools, AT Firmware.
https://espressif.com/en/support/download/sdks-demos

Products
• ESP32-S2 Series SoCs – Browse through all ESP32-S2 SoCs.
https://espressif.com/en/products/socs?id=ESP32-S2
• ESP32-S2 Series Modules – Browse through all ESP32-S2-based modules.
https://espressif.com/en/products/modules?id=ESP32-S2
• ESP32-S2 Series DevKits – Browse through all ESP32-S2-based devkits.
https://espressif.com/en/products/devkits?id=ESP32-S2
• ESP Product Selector – Find an Espressif hardware product suitable for your needs by comparing or applying filters.
https://products.espressif.com/#/product-selector?language=en

Contact Us
• See the tabs Sales Questions, Technical Enquiries, Circuit Schematic & PCB Design Review, Get Samples
(Online stores), Become Our Supplier, Comments & Suggestions.
https://espressif.com/en/contact-us/sales-questions

Espressif Systems 8 ESP32-S2 Series SoC Errata v1.0


Submit Documentation Feedback
Revision History

Revision History

Date Version Release Notes


2022-09-19 v1.0 First release

Espressif Systems 9 ESP32-S2 Series SoC Errata v1.0


Submit Documentation Feedback
Disclaimer and Copyright Notice
Information in this document, including URL references, is subject to change without notice.
ALL THIRD PARTY’S INFORMATION IN THIS DOCUMENT IS PROVIDED AS IS WITH NO
WARRANTIES TO ITS AUTHENTICITY AND ACCURACY.
NO WARRANTY IS PROVIDED TO THIS DOCUMENT FOR ITS MERCHANTABILITY, NON-
INFRINGEMENT, FITNESS FOR ANY PARTICULAR PURPOSE, NOR DOES ANY WARRANTY
OTHERWISE ARISING OUT OF ANY PROPOSAL, SPECIFICATION OR SAMPLE.
All liability, including liability for infringement of any proprietary rights, relating to use of information
in this document is disclaimed. No licenses express or implied, by estoppel or otherwise, to any
intellectual property rights are granted herein.
The Wi-Fi Alliance Member logo is a trademark of the Wi-Fi Alliance. The Bluetooth logo is a
registered trademark of Bluetooth SIG.
All trade names, trademarks and registered trademarks mentioned in this document are property
www.espressif.com of their respective owners, and are hereby acknowledged.
Copyright © 2022 Espressif Systems (Shanghai) Co., Ltd. All rights reserved.

You might also like