zephyr/drivers/dac/dac_esp32.c
Sylvio Alves c64a74e711 espressif: adapt to hal_espressif IDF master sync
Adapt all Espressif SoC and driver code to the updated
hal_espressif module synced with IDF master branch.

Main changes:
- clock control: delegate peripheral clock gating to HAL
  layer using new clock/reset APIs
- SPI/GDMA: adapt to restructured DMA HAL with new channel
  allocation and configuration interfaces
- ethernet: add RMII clock configuration and PHY management
- GPIO: simplify using direct HAL function calls
- flash: adapt to updated SPI flash HAL interfaces
- linker scripts: update IRAM/DRAM mappings for new HAL
  object files
- DTS: fix ESP32-S2 PSRAM dcache1 address to match actual
  MMU mapping region (0x3f800000 DRAM1 instead of 0x3f500000
  DPORT which lacks 8-bit access capability)
- west.yml: update hal_espressif revision

Signed-off-by: Sylvio Alves <sylvio.alves@espressif.com>
2026-03-13 11:38:18 +01:00

102 lines
2.4 KiB
C

/*
* Copyright (c) 2022 Espressif Systems (Shanghai) Co., Ltd.
*
* SPDX-License-Identifier: Apache-2.0
*/
#define DT_DRV_COMPAT espressif_esp32_dac
#include <soc.h>
#include <zephyr/device.h>
#include <zephyr/drivers/dac.h>
#include <zephyr/drivers/clock_control.h>
#include <hal/dac_ll.h>
#include <hal/dac_types.h>
#include <hal/rtc_io_types.h>
#include <hal/rtc_io_hal.h>
#include <hal/rtc_io_ll.h>
#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(esp32_dac, CONFIG_DAC_LOG_LEVEL);
struct dac_esp32_config {
int irq_source;
const struct device *clock_dev;
clock_control_subsys_t clock_subsys;
};
static int dac_esp32_write_value(const struct device *dev,
uint8_t channel, uint32_t value)
{
ARG_UNUSED(dev);
dac_ll_update_output_value(channel, (uint8_t)value);
return 0;
}
static int dac_esp32_channel_setup(const struct device *dev,
const struct dac_channel_cfg *channel_cfg)
{
ARG_UNUSED(dev);
if (channel_cfg->channel_id >= SOC_DAC_CHAN_NUM) {
LOG_ERR("Channel %d is not valid", channel_cfg->channel_id);
return -EINVAL;
}
if (channel_cfg->internal) {
LOG_ERR("Internal channels not supported");
return -ENOTSUP;
}
dac_ll_power_on(channel_cfg->channel_id);
return 0;
}
static int dac_esp32_init(const struct device *dev)
{
const struct dac_esp32_config *cfg = dev->config;
if (!cfg->clock_dev) {
LOG_ERR("Clock device missing");
return -EINVAL;
}
if (!device_is_ready(cfg->clock_dev)) {
LOG_ERR("Clock device not ready");
return -ENODEV;
}
if (clock_control_on(cfg->clock_dev, (clock_control_subsys_t)cfg->clock_subsys) != 0) {
LOG_ERR("DAC clock setup failed (%d)", -EIO);
return -EIO;
}
return 0;
}
static DEVICE_API(dac, dac_esp32_driver_api) = {
.channel_setup = dac_esp32_channel_setup,
.write_value = dac_esp32_write_value
};
#define ESP32_DAC_INIT(id) \
\
static const struct dac_esp32_config dac_esp32_config_##id = { \
.irq_source = DT_INST_IRQN(id), \
.clock_dev = DEVICE_DT_GET(DT_INST_CLOCKS_CTLR(id)), \
.clock_subsys = (clock_control_subsys_t) DT_INST_CLOCKS_CELL(id, offset), \
}; \
\
DEVICE_DT_INST_DEFINE(id, \
&dac_esp32_init, \
NULL, \
NULL, \
&dac_esp32_config_##id, \
POST_KERNEL, \
CONFIG_DAC_INIT_PRIORITY, \
&dac_esp32_driver_api);
DT_INST_FOREACH_STATUS_OKAY(ESP32_DAC_INIT);