remove remnants of pre 5.x IDF (#23995)
This commit is contained in:
parent
cfe393b371
commit
abf2e22c10
@ -599,11 +599,8 @@ uDisplay::uDisplay(char *lp) : Renderer(800, 600) {
|
||||
case 'B':
|
||||
lvgl_param.flushlines = next_val(&lp1);
|
||||
lvgl_param.data = next_val(&lp1);
|
||||
// temporary fix to disable DMA due to a problem in esp-idf 5.3
|
||||
#ifdef ESP32
|
||||
#if ESP_IDF_VERSION >= ESP_IDF_VERSION_VAL(5, 3, 0)
|
||||
lvgl_param.use_dma = false;
|
||||
#endif
|
||||
lvgl_param.use_dma = false; // temporary fix to disable DMA due to a problem in esp-idf 5.3
|
||||
#endif
|
||||
break;
|
||||
case 'M':
|
||||
@ -1241,11 +1238,7 @@ Renderer *uDisplay::Init(void) {
|
||||
_panel_config->disp_gpio_num = GPIO_NUM_NC;
|
||||
|
||||
_panel_config->flags.disp_active_low = 0;
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
_panel_config->flags.refresh_on_demand = 0;
|
||||
#else
|
||||
_panel_config->flags.relax_on_idle = 0;
|
||||
#endif // ESP_IDF_VERSION_MAJOR >= 5
|
||||
_panel_config->flags.fb_in_psram = 1; // allocate frame buffer in PSRAM
|
||||
|
||||
ESP_ERROR_CHECK(esp_lcd_new_rgb_panel(_panel_config, &_panel_handle));
|
||||
@ -1255,16 +1248,9 @@ Renderer *uDisplay::Init(void) {
|
||||
uint16_t color = random(0xffff);
|
||||
ESP_ERROR_CHECK(_panel_handle->draw_bitmap(_panel_handle, 0, 0, 1, 1, &color));
|
||||
|
||||
#if ESP_IDF_VERSION_MAJOR < 5
|
||||
_rgb_panel = __containerof(_panel_handle, esp_rgb_panel_t, base);
|
||||
rgb_fb = (uint16_t *)_rgb_panel->fb;
|
||||
#else
|
||||
void * buf = NULL;
|
||||
esp_lcd_rgb_panel_get_frame_buffer(_panel_handle, 1, &buf);
|
||||
rgb_fb = (uint16_t *)buf;
|
||||
#endif
|
||||
|
||||
|
||||
|
||||
#endif // USE_ESP32_S3
|
||||
}
|
||||
@ -1340,10 +1326,6 @@ Renderer *uDisplay::Init(void) {
|
||||
|
||||
esp_lcd_new_i80_bus(&bus_config, &_i80_bus);
|
||||
|
||||
#if ESP_IDF_VERSION_MAJOR < 5
|
||||
_dma_chan = _i80_bus->dma_chan;
|
||||
#endif
|
||||
|
||||
uint32_t div_a, div_b, div_n, clkcnt;
|
||||
calcClockDiv(&div_a, &div_b, &div_n, &clkcnt, 240*1000*1000, spi_speed*1000000);
|
||||
lcd_cam_lcd_clock_reg_t lcd_clock;
|
||||
|
||||
@ -11,10 +11,8 @@
|
||||
#define USE_ESP32_S3
|
||||
#endif
|
||||
#include "driver/spi_master.h"
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
#include "soc/gpio_periph.h"
|
||||
#include <rom/gpio.h>
|
||||
#endif // ESP_IDF_VERSION_MAJOR >= 5
|
||||
#endif
|
||||
|
||||
enum {
|
||||
@ -56,9 +54,7 @@ static inline void gpio_lo(int_fast8_t pin) { if (pin >= 0) *get_gpio_lo_reg(pin
|
||||
#include "esp_lcd_panel_ops.h"
|
||||
#include <hal/dma_types.h>
|
||||
#include <rom/cache.h>
|
||||
#if ESP_IDF_VERSION_MAJOR >= 5
|
||||
#include "esp_rom_lldesc.h"
|
||||
#endif // ESP_IDF_VERSION_MAJOR >= 5
|
||||
#endif // USE_ESP32_S3
|
||||
|
||||
#define _UDSP_I2C 1
|
||||
@ -136,57 +132,6 @@ enum uColorType { uCOLOR_BW, uCOLOR_COLOR };
|
||||
#define SPI_DC_LOW if (spi_dc >= 0) GPIO_CLR_SLOW(spi_dc);
|
||||
#define SPI_DC_HIGH if (spi_dc >= 0) GPIO_SET_SLOW(spi_dc);
|
||||
|
||||
|
||||
#if defined(USE_ESP32_S3) && ESP_IDF_VERSION_MAJOR < 5
|
||||
struct esp_lcd_i80_bus_t {
|
||||
int bus_id; // Bus ID, index from 0
|
||||
portMUX_TYPE spinlock; // spinlock used to protect i80 bus members(hal, device_list, cur_trans)
|
||||
lcd_hal_context_t hal; // Hal object
|
||||
size_t bus_width; // Number of data lines
|
||||
intr_handle_t intr; // LCD peripheral interrupt handle
|
||||
void* pm_lock; // Power management lock
|
||||
size_t num_dma_nodes; // Number of DMA descriptors
|
||||
uint8_t *format_buffer; // The driver allocates an internal buffer for DMA to do data format transformer
|
||||
size_t resolution_hz; // LCD_CLK resolution, determined by selected clock source
|
||||
gdma_channel_handle_t dma_chan; // DMA channel handle
|
||||
};
|
||||
|
||||
// extract from esp-idf esp_lcd_rgb_panel.c
|
||||
struct esp_rgb_panel_t
|
||||
{
|
||||
esp_lcd_panel_t base; // Base class of generic lcd panel
|
||||
int panel_id; // LCD panel ID
|
||||
lcd_hal_context_t hal; // Hal layer object
|
||||
size_t data_width; // Number of data lines (e.g. for RGB565, the data width is 16)
|
||||
size_t sram_trans_align; // Alignment for framebuffer that allocated in SRAM
|
||||
size_t psram_trans_align; // Alignment for framebuffer that allocated in PSRAM
|
||||
int disp_gpio_num; // Display control GPIO, which is used to perform action like "disp_off"
|
||||
intr_handle_t intr; // LCD peripheral interrupt handle
|
||||
esp_pm_lock_handle_t pm_lock; // Power management lock
|
||||
size_t num_dma_nodes; // Number of DMA descriptors that used to carry the frame buffer
|
||||
uint8_t *fb; // Frame buffer
|
||||
size_t fb_size; // Size of frame buffer
|
||||
int data_gpio_nums[SOC_LCD_RGB_DATA_WIDTH]; // GPIOs used for data lines, we keep these GPIOs for action like "invert_color"
|
||||
size_t resolution_hz; // Peripheral clock resolution
|
||||
esp_lcd_rgb_timing_t timings; // RGB timing parameters (e.g. pclk, sync pulse, porch width)
|
||||
gdma_channel_handle_t dma_chan; // DMA channel handle
|
||||
#if ESP_IDF_VERSION_MAJOR < 5
|
||||
esp_lcd_rgb_panel_frame_trans_done_cb_t on_frame_trans_done; // Callback, invoked after frame trans done
|
||||
#endif // ESP_IDF_VERSION_MAJOR < 5
|
||||
void *user_ctx; // Reserved user's data of callback functions
|
||||
int x_gap; // Extra gap in x coordinate, it's used when calculate the flush window
|
||||
int y_gap; // Extra gap in y coordinate, it's used when calculate the flush window
|
||||
struct
|
||||
{
|
||||
unsigned int disp_en_level : 1; // The level which can turn on the screen by `disp_gpio_num`
|
||||
unsigned int stream_mode : 1; // If set, the LCD transfers data continuously, otherwise, it stops refreshing the LCD when transaction done
|
||||
unsigned int fb_in_psram : 1; // Whether the frame buffer is in PSRAM
|
||||
} flags;
|
||||
dma_descriptor_t dma_nodes[]; // DMA descriptor pool of size `num_dma_nodes`
|
||||
};
|
||||
#endif //USE_ESP32_S3 && ESP_IDF_VERSION_MAJOR < 5
|
||||
|
||||
|
||||
class uDisplay : public Renderer {
|
||||
public:
|
||||
uDisplay(char *);
|
||||
@ -393,11 +338,6 @@ class uDisplay : public Renderer {
|
||||
uint16_t pclk_active_neg;
|
||||
|
||||
esp_lcd_panel_handle_t _panel_handle = NULL;
|
||||
#if ESP_IDF_VERSION_MAJOR < 5
|
||||
esp_rgb_panel_t *_rgb_panel;
|
||||
#endif //ESP_IDF_VERSION_MAJOR < 5
|
||||
|
||||
|
||||
|
||||
esp_lcd_i80_bus_handle_t _i80_bus = nullptr;
|
||||
gdma_channel_handle_t _dma_chan;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user