2016-10-14 00:29:54 +02:00
|
|
|
README for the Expressif ESP32 Core board (V2)
|
2016-10-14 19:01:28 +02:00
|
|
|
==============================================
|
2016-10-14 00:29:54 +02:00
|
|
|
|
|
|
|
The ESP32 is a dual-core system from Expressif with two Harvard
|
|
|
|
architecture Xtensa LX6 CPUs. All embedded memory, external memory and
|
|
|
|
peripherals are located on the data bus and/or the instruction bus of
|
|
|
|
these CPUs. With some minor exceptions, the address mapping of two CPUs
|
|
|
|
is symmetric, meaning they use the same addresses to access the same
|
|
|
|
memory. Multiple peripherals in the system can access embedded memory via
|
|
|
|
DMA.
|
|
|
|
|
|
|
|
The two CPUs are named "PRO_CPU" and "APP_CPU" (for "protocol" and
|
|
|
|
"application"), however for most purposes the two CPUs are
|
|
|
|
interchangeable.
|
|
|
|
|
2016-10-15 22:57:06 +02:00
|
|
|
Contents
|
|
|
|
========
|
|
|
|
|
|
|
|
o STATUS
|
|
|
|
o ESP32 Features
|
|
|
|
o ESP32 Toolchain
|
2016-11-12 22:10:23 +01:00
|
|
|
o Memory Map
|
2016-10-15 22:57:06 +02:00
|
|
|
o Serial Console
|
|
|
|
o Buttons and LEDs
|
2016-10-31 15:29:28 +01:00
|
|
|
o SMP
|
2016-11-07 18:03:01 +01:00
|
|
|
o Debug Issues
|
2016-10-15 22:57:06 +02:00
|
|
|
o Configurations
|
2016-11-01 22:12:30 +01:00
|
|
|
o Things to Do
|
2016-10-15 22:57:06 +02:00
|
|
|
|
|
|
|
STATUS
|
|
|
|
======
|
|
|
|
|
|
|
|
The basic port is underway. No testing has yet been performed.
|
|
|
|
|
2016-10-14 19:01:28 +02:00
|
|
|
ESP32 Features
|
|
|
|
==============
|
2016-10-14 00:29:54 +02:00
|
|
|
|
|
|
|
* Address Space
|
|
|
|
- Symmetric address mapping
|
|
|
|
- 4 GB (32-bit) address space for both data bus and instruction bus
|
|
|
|
- 1296 KB embedded memory address space
|
|
|
|
- 19704 KB external memory address space
|
|
|
|
- 512 KB peripheral address space
|
|
|
|
- Some embedded and external memory regions can be accessed by either
|
|
|
|
data bus or instruction bus
|
|
|
|
- 328 KB DMA address space
|
|
|
|
* Embedded Memory
|
|
|
|
- 448 KB Internal ROM
|
|
|
|
- 520 KB Internal SRAM
|
|
|
|
- 8 KB RTC FAST Memory
|
|
|
|
- 8 KB RTC SLOW Memory
|
|
|
|
* External Memory
|
|
|
|
Off-chip SPI memory can be mapped into the available address space as
|
|
|
|
external memory. Parts of the embedded memory can be used as transparent
|
|
|
|
cache for this external memory.
|
|
|
|
- Supports up to 16 MB off-Chip SPI Flash.
|
|
|
|
- Supports up to 8 MB off-Chip SPI SRAM.
|
|
|
|
* Peripherals
|
|
|
|
- 41 peripherals
|
|
|
|
* DMA
|
|
|
|
- 13 modules are capable of DMA operation
|
|
|
|
|
|
|
|
ESP32 Toolchain
|
|
|
|
===============
|
|
|
|
|
2016-10-14 19:01:28 +02:00
|
|
|
You must use the custom Xtensa toolchain in order to build the ESP32 Core
|
|
|
|
BSP. The steps to build toolchain with crosstool-NG on Linux are as
|
|
|
|
follows:
|
2016-10-14 00:29:54 +02:00
|
|
|
|
|
|
|
git clone -b xtensa-1.22.x https://github.com/espressif/crosstool-NG.git
|
|
|
|
cd crosstool-NG
|
|
|
|
./bootstrap && ./configure --prefix=$PWD && make install
|
|
|
|
./ct-ng xtensa-esp32-elf
|
|
|
|
./ct-ng build
|
|
|
|
chmod -R u+w builds/xtensa-esp32-elf
|
|
|
|
|
|
|
|
These steps are given in setup guide in ESP-IDF repository:
|
|
|
|
https://github.com/espressif/esp-idf/blob/master/docs/linux-setup.rst#alternative-step-1-compile-the-toolchain-from-source-using-crosstool-ng
|
|
|
|
|
2016-10-14 19:01:28 +02:00
|
|
|
NOTE: The xtensa-esp32-elf configuration is only available in the
|
2016-10-14 00:29:54 +02:00
|
|
|
xtensa-1.22.x branch.
|
2016-10-15 22:57:06 +02:00
|
|
|
|
2016-11-12 22:10:23 +01:00
|
|
|
Memory Map
|
|
|
|
==========
|
|
|
|
|
2016-11-12 22:51:14 +01:00
|
|
|
Address Mapping
|
|
|
|
----------- ---------- ---------- --------------- ---------------
|
|
|
|
BUS TYPE START LAST DESCRIPTION NOTES
|
|
|
|
----------- ---------- ---------- --------------- ---------------
|
|
|
|
0x00000000 0x3F3FFFFF Reserved
|
|
|
|
Data 0x3F400000 0x3F7FFFFF External Memory
|
|
|
|
Data 0x3F800000 0x3FBFFFFF External Memory
|
|
|
|
0x3FC00000 0x3FEFFFFF Reserved
|
|
|
|
Data 0x3FF00000 0x3FF7FFFF Peripheral
|
|
|
|
Data 0x3FF80000 0x3FFFFFFF Embedded Memory
|
|
|
|
Instruction 0x40000000 0x400C1FFF Embedded Memory
|
|
|
|
Instruction 0x400C2000 0x40BFFFFF External Memory
|
|
|
|
0x40C00000 0x4FFFFFFF Reserved
|
|
|
|
Data / 0x50000000 0x50001FFF Embedded Memory
|
|
|
|
Instruction
|
|
|
|
0x50002000 0xFFFFFFFF Reserved
|
|
|
|
|
2016-11-12 22:10:23 +01:00
|
|
|
Embedded Memory
|
2016-11-12 22:51:14 +01:00
|
|
|
----------- ---------- ---------- --------------- ---------------
|
2016-11-12 22:10:23 +01:00
|
|
|
BUS TYPE START LAST DESCRIPTION NOTES
|
2016-11-12 22:51:14 +01:00
|
|
|
----------- ---------- ---------- --------------- ---------------
|
2016-11-12 22:10:23 +01:00
|
|
|
Data 0x3ff80000 0x3ff81fff RTC FAST Memory PRO_CPU Only
|
|
|
|
0x3ff82000 0x3ff8ffff Reserved
|
|
|
|
Data 0x3ff90000 0x3ff9ffff Internal ROM 1
|
|
|
|
0x3ffa0000 0x3ffadfff Reserved
|
|
|
|
Data 0x3ffae000 0x3ffdffff Internal SRAM 2 DMA
|
|
|
|
Data 0x3ffe0000 0x3fffffff Internal SRAM 1 DMA
|
|
|
|
|
|
|
|
Boundary Address
|
2016-11-12 22:51:14 +01:00
|
|
|
----------- ---------- ---------- --------------- ---------------
|
2016-11-12 22:10:23 +01:00
|
|
|
BUS TYPE START LAST DESCRIPTION NOTES
|
2016-11-12 22:51:14 +01:00
|
|
|
----------- ---------- ---------- --------------- ---------------
|
2016-11-12 22:10:23 +01:00
|
|
|
Instruction 0x40000000 0x40007fff Internal ROM 0 Remap
|
|
|
|
Instruction 0x40008000 0x4005ffff Internal ROM 0
|
|
|
|
0x40060000 0x4006ffff Reserved
|
|
|
|
Instruction 0x40070000 0x4007ffff Internal SRAM 0 Cache
|
|
|
|
Instruction 0x40080000 0x4009ffff Internal SRAM 0
|
|
|
|
Instruction 0x400a0000 0x400affff Internal SRAM 1
|
|
|
|
Instruction 0x400b0000 0x400b7FFF Internal SRAM 1 Remap
|
|
|
|
Instruction 0x400b8000 0x400bffff Internal SRAM 1
|
|
|
|
Instruction 0x400c0000 0x400c1FFF RTC FAST Memory PRO_CPU Only
|
|
|
|
Data / 0x50000000 0x50001fff RTC SLOW Memory
|
|
|
|
Instruction
|
|
|
|
|
|
|
|
External Memory
|
2016-11-12 22:51:14 +01:00
|
|
|
----------- ---------- ---------- --------------- ---------------
|
2016-11-12 22:10:23 +01:00
|
|
|
BUS TYPE START LAST DESCRIPTION NOTES
|
2016-11-12 22:51:14 +01:00
|
|
|
----------- ---------- ---------- --------------- ---------------
|
2016-11-12 22:10:23 +01:00
|
|
|
Data 0x3f400000 0x3f7fffff External Flash Read
|
|
|
|
Data 0x3f800000 0x3fbfffff External SRAM Read and Write
|
|
|
|
|
|
|
|
Boundary Address
|
|
|
|
----------------
|
|
|
|
Instruction 0x400c2000 0x40bfffff 11512 KB External Flash Read
|
|
|
|
|
|
|
|
Linker Segments
|
2016-11-12 22:51:14 +01:00
|
|
|
------------------ ---------- ---------- ---- ----------------------------
|
|
|
|
DESCRIPTION START END ATTR LINKER SEGMENT NAME
|
|
|
|
------------------ ---------- ---------- ---- ----------------------------
|
2016-11-13 16:30:45 +01:00
|
|
|
FLASH mapped data: 0x3f400010 0x3fc00010 R drom0_0_seg
|
|
|
|
- .rodata
|
|
|
|
- Constructors/destructors
|
|
|
|
COMMON data RAM: 0x3ffb0000 0x40000000 RW dram0_0_seg (NOTE 1,2)
|
|
|
|
- .bss/.data
|
2016-11-12 22:51:14 +01:00
|
|
|
IRAM for PRO cpu: 0x40080000 0x400a0000 RX iram0_0_seg
|
2016-11-13 16:30:45 +01:00
|
|
|
- Interrupt Vectors
|
|
|
|
- Low level handlers
|
|
|
|
- Xtensa/Expressif libraries
|
|
|
|
RTC fast memory: 0x400c0000 0x400c2000 RWX rtc_iram_seg (PRO_CPU only)
|
|
|
|
- .rtc.text (unused?)
|
|
|
|
FLASH: 0x400d0018 0x40400018 RX iram0_2_seg (actually FLASH)
|
|
|
|
- .text
|
2016-11-12 22:51:14 +01:00
|
|
|
RTC slow memory: 0x50000000 0x50001000 RW rtc_slow_seg (NOTE 3)
|
2016-11-13 16:30:45 +01:00
|
|
|
- .rtc.data/rodata (unused?)
|
2016-11-12 22:10:23 +01:00
|
|
|
|
2016-11-13 14:55:34 +01:00
|
|
|
NOTE 1: Linker script will reserve space at the beginning of the segment
|
2016-11-12 22:10:23 +01:00
|
|
|
for BT and at the end for trace memory.
|
2016-11-13 16:30:45 +01:00
|
|
|
NOTE 2: Heap enads at the top of dram_0_seg
|
2016-11-13 14:55:34 +01:00
|
|
|
NOTE 3: Linker script will reserve space at the beginning of the segment
|
2016-11-12 22:10:23 +01:00
|
|
|
for co-processor reserve memory and at the end for ULP coprocessor
|
|
|
|
reserve memory.
|
|
|
|
|
2016-10-15 22:57:06 +02:00
|
|
|
Serial Console
|
|
|
|
==============
|
|
|
|
|
2016-10-24 22:09:47 +02:00
|
|
|
USART0 is, by default, the serial console. It connects to the on-board
|
|
|
|
CP2102 converter and is available on the USB connector USB CON8 (J1).
|
2016-10-15 22:57:06 +02:00
|
|
|
|
|
|
|
Buttons and LEDs
|
|
|
|
================
|
|
|
|
|
|
|
|
Buttons
|
|
|
|
-------
|
2016-10-21 15:35:56 +02:00
|
|
|
There are two buttons labeled Boot and EN. The EN button is not available
|
|
|
|
to software. It pulls the chip enable line that doubles as a reset line.
|
|
|
|
|
|
|
|
The BOOT button is connected to IO0. On reset it is used as a strapping
|
|
|
|
pin to determine whether the chip boots normally or into the serial
|
|
|
|
bootloader. After reset, however, the BOOT button can be used for software
|
|
|
|
input.
|
2016-10-15 22:57:06 +02:00
|
|
|
|
|
|
|
LEDs
|
2016-10-21 15:35:56 +02:00
|
|
|
----
|
|
|
|
There are several on-board LEDs for that indicate the presence of power
|
|
|
|
and USB activity. None of these are available for use by sofware.
|
2016-10-15 22:57:06 +02:00
|
|
|
|
2016-10-31 15:29:28 +01:00
|
|
|
SMP
|
|
|
|
===
|
|
|
|
|
|
|
|
The ESP32 has 2 CPUs. Support is included for testing an SMP configuration.
|
|
|
|
That configuration is still not yet ready for usage but can be enabled with
|
|
|
|
the following configuration settings:
|
|
|
|
|
|
|
|
RTOS Features -> Tasks and Scheduling
|
|
|
|
CONFIG_SPINLOCK=y
|
|
|
|
CONFIG_SMP=y
|
|
|
|
CONFIG_SMP_NCPUS=2
|
|
|
|
CONFIG_SMP_IDLETHREAD_STACKSIZE=2048
|
|
|
|
|
|
|
|
Open Issues:
|
|
|
|
|
2016-11-01 22:12:30 +01:00
|
|
|
1. Currently all device interrupts are handled on the PRO CPU only. Critical
|
2016-10-31 15:29:28 +01:00
|
|
|
sections will attempt to disable interrupts but will now disable interrupts
|
|
|
|
only on the current CPU (which may not be CPU0). Perhaps that should be a
|
|
|
|
spinlock to prohibit execution of interrupts on CPU0 when other CPUs are in
|
|
|
|
a critical section?
|
|
|
|
|
|
|
|
2. Cache Issues. I have not though about this yet, but certainly caching is
|
|
|
|
an issue in an SMP system:
|
|
|
|
|
|
|
|
- Cache coherency. Are there separate caches for each CPU? Or a single
|
|
|
|
shared cache? If the are separate then keep the caches coherent will
|
|
|
|
be an issue.
|
|
|
|
- Caching MAY interfere with spinlocks as they are currently implemented.
|
|
|
|
Waiting on a cached copy of the spinlock may result in a hang or a
|
|
|
|
failure to wait.
|
|
|
|
|
|
|
|
3. Assertions. On a fatal assertions, other CPUs need to be stopped.
|
|
|
|
|
2016-11-07 18:03:01 +01:00
|
|
|
Debug Issues
|
|
|
|
============
|
|
|
|
|
2016-11-13 16:30:45 +01:00
|
|
|
You basically need the debug environment and a step-by-step procedure.
|
2016-11-07 18:03:01 +01:00
|
|
|
|
|
|
|
- First in need some debug environment which would be a JTAG emulator
|
2016-11-13 16:30:45 +01:00
|
|
|
and the ESP32 OpenOCD software which is available here:
|
|
|
|
https://github.com/espressif/openocd-esp32
|
|
|
|
|
|
|
|
- There is on overiew of the use of OpenOCD here:
|
|
|
|
https://dl.espressif.com/doc/esp-idf/latest/openocd.html
|
|
|
|
This document is also available in ESP-IDF source tree in docs
|
|
|
|
directory (https://github.com/espressif/esp-idf).
|
|
|
|
|
|
|
|
A template ESP32 OpenOCD configuration file is provided in
|
|
|
|
ESP-IDF docs directory (esp32.cfg). Since you are not using
|
|
|
|
FreeRTOS, you will need to uncomment the "set ESP32_RTOS none"
|
|
|
|
line in OpenOCD configuration file.
|
|
|
|
|
2016-11-14 18:30:40 +01:00
|
|
|
NOTE: A copy of this OpenOCD configuration file (with the referenced
|
|
|
|
line uncommented). Is available in the NuttX source tree at
|
|
|
|
nuttx/config/esp32-core/scripts/esp32.cfg.
|
|
|
|
|
2016-11-13 16:30:45 +01:00
|
|
|
The documentation indicates that you need to use an external JTAG
|
|
|
|
like the TIAO USB Multi-protocol Adapter and the Flyswatter2.
|
|
|
|
The instructions at http://www.esp32.com/viewtopic.php?t=381 show
|
|
|
|
use of an FTDI C232HM-DDHSL-0 USB 2.0 high speed to MPSSE cable.
|
|
|
|
|
|
|
|
- The ESP32 Core v2 board has no on board JTAG connector. It will
|
|
|
|
be necessary to make a cable or some other board to connect a JTAG
|
|
|
|
emulator. Refer to http://www.esp32.com/viewtopic.php?t=381 "How
|
|
|
|
to debug ESP32 with JTAG / OpenOCD / GDB 1st part connect the
|
|
|
|
hardware."
|
|
|
|
|
|
|
|
Relevant pin-out:
|
|
|
|
|
|
|
|
-------- ----------
|
|
|
|
PIN JTAG
|
|
|
|
LABEL FUNCTION
|
|
|
|
-------- ----------
|
|
|
|
IO14 TMS
|
|
|
|
IO12 TDI
|
|
|
|
GND GND
|
|
|
|
IO13 TCK
|
|
|
|
-------- ----------
|
|
|
|
IO15 TDO
|
|
|
|
-------- ----------
|
|
|
|
|
|
|
|
You can find the mapping of JTAG signals to ESP32 GPIO numbers in
|
|
|
|
"ESP32 Pin List" document found here:
|
|
|
|
http://espressif.com/en/support/download/documents?keys=&field_type_tid%5B%5D=13
|
2016-11-07 18:03:01 +01:00
|
|
|
|
2016-11-14 17:30:10 +01:00
|
|
|
I put the ESP32 on a prototyping board and used a standard JTAG 20-pin
|
|
|
|
connector with an older Olimex JTAG that I had. Here is how I wired
|
|
|
|
the 20-pin connector:
|
|
|
|
|
|
|
|
----------------- ----------
|
|
|
|
20-PIN JTAG ESP32 PIN
|
|
|
|
CONNECTOR LABEL
|
|
|
|
----------------- ----------
|
|
|
|
1 VREF INPUT 3V3
|
|
|
|
3 nTRST OUTPUT N/C
|
|
|
|
5 TDI OUTPUT IO12
|
|
|
|
7 TMS OUTPUT IO14
|
|
|
|
9 TCLK OUTPUT IO13
|
|
|
|
11 RTCK INPUT N/C
|
|
|
|
13 TDO INPUT IO15
|
|
|
|
15 RESET I/O N/C
|
|
|
|
17 DBGRQ OUTPUT N/C
|
|
|
|
19 5V OUTPUT N/C
|
|
|
|
------------ ----------
|
|
|
|
2 VCC INPUT 3V3
|
|
|
|
4 GND N/A GND
|
|
|
|
6 GND N/A GND
|
|
|
|
8 GND N/A GND
|
|
|
|
10 GND N/A GND
|
|
|
|
12 GND N/A GND
|
|
|
|
14 GND N/A GND
|
|
|
|
16 GND N/A GND
|
|
|
|
18 GND N/A GND
|
|
|
|
20 GND N/A GND
|
|
|
|
------------ ----------
|
|
|
|
|
2016-11-07 18:03:01 +01:00
|
|
|
- I need to understand how to use the secondary bootloader. My
|
|
|
|
understanding is that it will configure hardware, read a partition
|
|
|
|
table at address 0x5000, and then load code into memory. I do need to
|
|
|
|
download and build the bootloader?
|
|
|
|
|
|
|
|
- Do I need to create a partition table at 0x5000? Should this be part
|
|
|
|
of the NuttX build?
|
|
|
|
|
2016-11-13 16:30:45 +01:00
|
|
|
See https://github.com/espressif/esp-idf/tree/master/components/bootloader
|
|
|
|
and https://github.com/espressif/esp-idf/tree/master/components/partition_table.
|
|
|
|
I suppose some of what I need is in there, but I am not sure what I am
|
|
|
|
looking at right now.
|
|
|
|
|
|
|
|
It is possible to skip the secondary bootloader and run out of IRAM using
|
|
|
|
only the primary bootloader if your application of small enough (< 128KiB code,
|
|
|
|
<180KiB data), then you can simplify initial bring-up by avoiding second stage
|
|
|
|
bootloader. Your application will be loaded into IRAM using first stage
|
|
|
|
bootloader present in ESP32 ROM. To achieve this, you need two things:
|
|
|
|
|
|
|
|
1. Have a linker script which places all code into IRAM and all data into DRAM
|
|
|
|
|
|
|
|
2. Use "esptool.py" utility found in ESP-IDF to convert application .elf file
|
|
|
|
into binary format which can be loaded by first stage bootloader.
|
|
|
|
|
|
|
|
The default linker script in ESP-IDF places most code into memory-mapped flash:
|
|
|
|
https://github.com/espressif/esp-idf/blob/master/components/esp32/ld/esp32.common.ld#L178-L186
|
|
|
|
|
|
|
|
You would need to remove this section and move its contents into the end of .iram0.text section:
|
|
|
|
https://github.com/espressif/esp-idf/blob/master/components/esp32/ld/esp32.common.ld#L85
|
|
|
|
|
|
|
|
Same with constant data: move contents of .flash.rodata section:
|
|
|
|
https://github.com/espressif/esp-idf/blob/master/components/esp32/ld/esp32.common.ld#L134-L173
|
|
|
|
|
|
|
|
into the end of .dram0.data section (before _heap_start):
|
|
|
|
https://github.com/espressif/esp-idf/blob/master/components/esp32/ld/esp32.common.ld#L128
|
|
|
|
|
|
|
|
With these modifications, all code and data should be moved into IRAM/DRAM. Next, you would
|
|
|
|
need to link the ELF file and convert it to binary format suitable for flashing into the
|
|
|
|
board. The xommand should to convert ELF file to binary image looks as follows:
|
|
|
|
|
|
|
|
python esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 elf2image --flash_mode "dio" --flash_freq "40m" --flash_size "2MB" -o app.bin app.elf
|
|
|
|
|
|
|
|
To flash binary image to your development board, use the same esptool.py utility:
|
|
|
|
|
|
|
|
python esp-idf/components/esptool_py/esptool/esptool.py --chip esp32 --port /dev/ttyUSB0 --baud 921600 write_flash -z --flash_mode dio --flash_freq 40m --flash_size 2MB 0x1000 app.bin
|
|
|
|
|
|
|
|
The argument before app.bin (0x1000) indicates the offset in flash where binary
|
|
|
|
will be written. ROM bootloader expects to find an application (or second stage
|
|
|
|
bootloader) image at offset 0x1000, so we are writing the binary there.
|
2016-11-07 18:03:01 +01:00
|
|
|
|
|
|
|
Right now, the NuttX port depends on the bootloader to initialize hardware,
|
|
|
|
including basic (slow) clocking. If I had the clock configuration logic,
|
|
|
|
would I be able to run directly out of IRAM without a bootloader? That
|
|
|
|
might be a simpler bring-up.
|
|
|
|
|
2016-10-15 22:57:06 +02:00
|
|
|
Configurations
|
|
|
|
==============
|
|
|
|
|
|
|
|
Common Configuration Information
|
|
|
|
--------------------------------
|
|
|
|
Each ESP32 core configuration is maintained in sub-directories and
|
|
|
|
can be selected as follow:
|
|
|
|
|
|
|
|
cd tools
|
|
|
|
./configure.sh esp32-core/<subdir>
|
|
|
|
cd -
|
|
|
|
make oldconfig
|
|
|
|
. ./setenv.sh
|
|
|
|
|
|
|
|
Before sourcing the setenv.sh file above, you should examine it and
|
|
|
|
perform edits as necessary so that TOOLCHAIN_BIN is the correct path to
|
|
|
|
the directory than holds your toolchain binaries.
|
|
|
|
|
|
|
|
If this is a Windows native build, then configure.bat should be used
|
|
|
|
instead of configure.sh:
|
|
|
|
|
|
|
|
configure.bat esp32-core\<subdir>
|
|
|
|
|
|
|
|
And then build NuttX by simply typing the following. At the conclusion of
|
|
|
|
the make, the nuttx binary will reside in an ELF file called, simply,
|
|
|
|
nuttx.
|
|
|
|
|
|
|
|
make oldconfig
|
|
|
|
make
|
|
|
|
|
|
|
|
The <subdir> that is provided above as an argument to the
|
|
|
|
tools/configure.sh must be is one of the directories listed below.
|
|
|
|
|
|
|
|
NOTES:
|
|
|
|
|
|
|
|
1. These configurations use the mconf-based configuration tool. To
|
|
|
|
change any of these configurations using that tool, you should:
|
|
|
|
|
|
|
|
a. Build and install the kconfig-mconf tool. See nuttx/README.txt
|
|
|
|
see additional README.txt files in the NuttX tools repository.
|
|
|
|
|
|
|
|
b. Execute 'make menuconfig' in nuttx/ in order to start the
|
|
|
|
reconfiguration process.
|
|
|
|
|
|
|
|
2. Unless stated otherwise, all configurations generate console
|
|
|
|
output on [To be provided].
|
|
|
|
|
|
|
|
Configuration sub-directories
|
|
|
|
-----------------------------
|
|
|
|
|
|
|
|
nsh:
|
|
|
|
|
|
|
|
Configures the NuttShell (nsh) located at apps/examples/nsh.
|
|
|
|
|
|
|
|
NOTES:
|
2016-10-29 22:56:07 +02:00
|
|
|
|
|
|
|
smp:
|
|
|
|
|
|
|
|
Another NSH configuration, similar to nsh, but also enables
|
|
|
|
SMP operation.
|
|
|
|
|
|
|
|
NOTES:
|
2016-11-01 22:12:30 +01:00
|
|
|
|
|
|
|
Things to Do
|
|
|
|
============
|
|
|
|
|
|
|
|
1. There is no support for an interrupt stack yet.
|
2016-11-13 14:55:34 +01:00
|
|
|
|
2016-11-07 18:03:01 +01:00
|
|
|
2. There is no clock intialization logic in place. This depends on logic in
|
|
|
|
Expressif libriaries. The board comes up using that basic 40 Mhz crystal
|
|
|
|
for clocking. Getting to 80 MHz will require clocking initialization in
|
|
|
|
esp32_clockconfig.c.
|
2016-11-13 14:55:34 +01:00
|
|
|
|
2016-11-07 18:03:01 +01:00
|
|
|
3. I did not implement the lazy co-processor save logic supported by Xtensa.
|
|
|
|
That logic works like this:
|
|
|
|
|
|
|
|
a. CPENABLE is set to zero on each context switch, disabling all co-
|
|
|
|
processors.
|
|
|
|
b. If/when the task attempts to use the disabled co-processor, an
|
|
|
|
exception occurs
|
2016-11-01 22:12:30 +01:00
|
|
|
c. The co-processor exception handler re-enables the co-processor.
|
|
|
|
|
2016-11-07 18:03:01 +01:00
|
|
|
Instead, the NuttX logic saves and restores CPENABLE on each context
|
2016-11-13 14:55:34 +01:00
|
|
|
switch. This has disadvantages in that (1) co-processor context will
|
|
|
|
be saved and restored even if the co-processor was never used, and (2)
|
|
|
|
tasks must explicitly enable and disable co-processors.
|
2016-11-07 18:03:01 +01:00
|
|
|
|
|
|
|
4. Currently the Xtensa port copies register state save information from
|
|
|
|
the stack into the TCB. A more efficient alternative would be to just
|
|
|
|
save a pointer to a register state save area in the TCB. This would
|
|
|
|
add some complexity to signal handling and also also the the
|
|
|
|
up_initialstate(). But the performance improvement might be worth
|
|
|
|
the effort.
|
2016-11-01 22:12:30 +01:00
|
|
|
|
2016-11-07 18:03:01 +01:00
|
|
|
5. See SMP-related issues above
|
2016-11-01 22:12:30 +01:00
|
|
|
|
2016-11-07 18:03:01 +01:00
|
|
|
6. See Debug Issues above
|