Dániel Buga 3e6b85bf30
Update i2c/spi instance info (#3627)
* Add instances to drivers

* Move AnyI2c

* Move AnySpi and DataMode

* Generate new semver baseline
2025-06-13 13:56:52 +00:00

185 lines
3.2 KiB
TOML

# ESP32-C6 Device Metadata
#
# Empty [`device.driver`] tables imply `partial` support status.
#
# If you modify a driver support status, run `cargo xtask update-chip-support-table` to
# update the table in the esp-hal README.
[device]
name = "esp32c6"
arch = "riscv"
cores = 1
trm = "https://www.espressif.com/sites/default/files/documentation/esp32-c6_technical_reference_manual_en.pdf"
peripherals = [
# Peripherals available in the PAC:
"aes",
"apb_saradc",
"assist_debug",
"atomic",
"dma",
"ds",
"ecc",
"efuse",
"extmem",
"gpio",
"gpio_sd",
"hinf",
"hmac",
"hp_apm",
"hp_sys",
"i2c0",
"i2s0",
"interrupt_core0",
"intpri",
"io_mux",
"ledc",
"lp_ana",
"lp_aon",
"lp_apm",
"lp_apm0",
"lp_clkrst",
"lp_i2c0",
"lp_i2c_ana_mst",
"lp_io",
"lp_peri",
"lp_tee",
"lp_timer",
"lp_uart",
"lp_wdt",
"mcpwm0",
"mem_monitor",
"otp_debug",
"parl_io",
"pau",
"pcnt",
"pcr",
"pmu",
"rmt",
"rng",
"rsa",
"sha",
"slchost",
"soc_etm",
"spi0",
"spi1",
"spi2",
"systimer",
"tee",
"timg0",
"timg1",
"trace0",
"twai0",
"twai1",
"uart0",
"uart1",
"uhci0",
"usb_device",
]
symbols = [
# Additional peripherals defined by us (the developers):
"adc1",
"assist_debug_sp_monitor",
"assist_debug_region_monitor",
"gdma",
"large_intr_status",
"plic",
"phy",
"lp_core",
"tsens",
# ROM capabilities
"rom_crc_le",
"rom_crc_be",
"rom_md5_bsd",
# Wakeup SOC based on ESP-IDF:
"pm_support_wifi_wakeup",
"pm_support_beacon_wakeup",
"pm_support_bt_wakeup",
"gpio_support_deepsleep_wakeup",
"uart_support_wakeup_int",
"pm_support_ext1_wakeup",
]
memory = [{ name = "dram", start = 0x4080_0000, end = 0x4088_0000 }]
[device.gpio]
status = "supported"
[device.i2c_master]
status = "supported"
instances = [{ name = "i2c0" }]
has_fsm_timeouts = true
has_hw_bus_clear = true
ll_intr_mask = 0x3ffff
fifo_size = 32
has_bus_timeout_enable = true
max_bus_timeout = 0x1F
can_estimate_nack_reason = true
has_conf_update = true
has_reliable_fsm_reset = true
has_arbitration_en = true
has_tx_fifo_watermark = true
bus_timeout_is_exponential = true
[device.rmt]
status = "partial"
ram_start = 0x60006400
channel_ram_size = 48
[device.spi_master]
status = "supported"
instances = [{ name = "spi2" }]
[device.timergroup]
instances = [{ name = "timg0" }, { name = "timg1" }]
[device.uart]
status = "supported"
[device.ds]
status = "not_supported"
[device.wifi]
status = "partial"
has_wifi6 = true
# Other drivers which are partially supported but have no other configuration:
## Crypto
[device.aes]
[device.ecc]
[device.rsa]
[device.sha]
[device.hmac]
[device.rng]
## Interfaces
[device.i2s]
[device.ledc]
[device.mcpwm]
[device.parl_io]
[device.pcnt]
[device.spi_slave]
[device.sd_slave]
[device.twai]
[device.usb_serial_jtag]
## Miscellaneous
[device.adc]
[device.assist_debug]
[device.dma]
[device.etm]
[device.interrupts]
[device.io_mux]
[device.sleep]
[device.temp_sensor]
[device.systimer]
[device.ulp_riscv]
## Radio
[device.bt]
[device.ieee802154]