From 119a3ec968d640e2950044381732991b411a1517 Mon Sep 17 00:00:00 2001 From: Armin Kessler Date: Tue, 2 Jul 2024 12:21:15 +0000 Subject: [PATCH] drivers: video: esp32s3: remove VSync interrupt Remove the VSync interrupt handle, as DMA captures VSync through the in_suc_eof event. Signed-off-by: Armin Kessler ake@espros.com --- drivers/video/video_esp32_dvp.c | 57 ++++----------------------------- 1 file changed, 7 insertions(+), 50 deletions(-) diff --git a/drivers/video/video_esp32_dvp.c b/drivers/video/video_esp32_dvp.c index 69d50b083e0ed2e..04050d8af99496e 100644 --- a/drivers/video/video_esp32_dvp.c +++ b/drivers/video/video_esp32_dvp.c @@ -13,10 +13,8 @@ #include #include #include -#include #include #include -#include #include #include @@ -65,29 +63,6 @@ struct video_esp32_data { static int video_esp32_reload_dma(struct video_esp32_data *data); -static void video_esp32_irq_handler(void *arg) -{ - const struct device *dev = (const struct device *)arg; - const struct video_esp32_config *cfg = dev->config; - struct video_esp32_data *data = dev->data; - lcd_cam_lc_dma_int_st_reg_t status = LCD_CAM.lc_dma_int_st; - - if (!status.cam_vsync_int_st) { - LOG_WRN("Unexpected interrupt. status = %x", status.val); - return; - } - - LCD_CAM.lc_dma_int_clr.val = status.val; - data->active_vbuf = k_fifo_get(&data->fifo_in, K_NO_WAIT); - - if (data->active_vbuf == NULL) { - LOG_WRN("Frame dropped. No buffer available"); - return; - } - - video_esp32_reload_dma(data); -} - void video_esp32_dma_rx_done(const struct device *dev, void *user_data, uint32_t channel, int status) { @@ -110,7 +85,13 @@ void video_esp32_dma_rx_done(const struct device *dev, void *user_data, uint32_t } k_fifo_put(&data->fifo_out, data->active_vbuf); - data->active_vbuf = NULL; + data->active_vbuf = k_fifo_get(&data->fifo_in, K_NO_WAIT); + + if (data->active_vbuf == NULL) { + LOG_WRN("Frame dropped. No buffer available"); + return; + } + video_esp32_reload_dma(data); } static int video_esp32_reload_dma(struct video_esp32_data *data) @@ -374,22 +355,6 @@ static void video_esp32_cam_ctrl_init(const struct device *dev) LCD_CAM.cam_rgb_yuv.val = 0; } -static int esp32_interrupt_init(const struct device *dev) -{ - const struct video_esp32_config *cfg = dev->config; - int ret = 0; - - LCD_CAM.lc_dma_int_clr.cam_hs_int_clr = 1; - LCD_CAM.lc_dma_int_clr.cam_vsync_int_clr = 1; - LCD_CAM.lc_dma_int_ena.cam_vsync_int_ena = 1; - LCD_CAM.lc_dma_int_ena.cam_hs_int_ena = 1; - - ret = esp_intr_alloc(cfg->irq_source, cfg->irq_priority, - (intr_handler_t)video_esp32_irq_handler, (void *)dev, NULL); - - return ret; -} - static int esp32_init(const struct device *dev) { const struct video_esp32_config *cfg = dev->config; @@ -409,12 +374,6 @@ static int esp32_init(const struct device *dev) video_esp32_cam_ctrl_init(dev); - ret = esp32_interrupt_init(dev); - if (ret) { - LOG_ERR("Failed to initialize interrupt"); - return ret; - } - if (!device_is_ready(cfg->dma_dev)) { return -ENODEV; } @@ -447,8 +406,6 @@ static const struct video_esp32_config esp32_config = { .source_dev = DEVICE_DT_GET(DT_INST_PHANDLE(0, source)), .dma_dev = ESP32_DT_INST_DMA_CTLR(0, rx), .rx_dma_channel = DT_INST_DMAS_CELL_BY_NAME(0, rx, channel), - .irq_source = DT_INST_IRQN(0), - .irq_priority = ESP_INTR_FLAG_LOWMED, .enable_16_bit = DT_INST_PROP(0, enable_16bit_mode), .invert_bit_order = DT_INST_PROP(0, invert_bit_order), .invert_byte_order = DT_INST_PROP(0, invert_byte_order),