You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
535 lines
13 KiB
535 lines
13 KiB
/* |
|
* Copyright (c) 2017 Jan Van Winkel <jan.van_winkel@dxplore.eu> |
|
* Copyright (c) 2019 Nordic Semiconductor ASA |
|
* Copyright (c) 2019 Marc Reilly |
|
* Copyright (c) 2019 PHYTEC Messtechnik GmbH |
|
* Copyright (c) 2020 Endian Technologies AB |
|
* Copyright (c) 2020 Kim Bøndergaard <kim@fam-boendergaard.dk> |
|
* Copyright 2024 NXP |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#define DT_DRV_COMPAT sitronix_st7735r |
|
|
|
#include "display_st7735r.h" |
|
|
|
#include <zephyr/device.h> |
|
#include <zephyr/drivers/mipi_dbi.h> |
|
#include <zephyr/drivers/gpio.h> |
|
#include <zephyr/pm/device.h> |
|
#include <zephyr/sys/byteorder.h> |
|
#include <zephyr/drivers/display.h> |
|
|
|
#include <zephyr/logging/log.h> |
|
LOG_MODULE_REGISTER(display_st7735r, CONFIG_DISPLAY_LOG_LEVEL); |
|
|
|
#define ST7735R_RESET_TIME 1 |
|
#define ST7735R_EXIT_SLEEP_TIME K_MSEC(120) |
|
|
|
#define ST7735R_PIXEL_SIZE 2u |
|
|
|
struct st7735r_config { |
|
const struct device *mipi_dev; |
|
const struct mipi_dbi_config dbi_config; |
|
uint16_t height; |
|
uint16_t width; |
|
uint8_t madctl; |
|
uint8_t colmod; |
|
uint8_t caset[4]; |
|
uint8_t raset[4]; |
|
uint8_t vmctr1; |
|
uint8_t invctr; |
|
uint8_t pwctr1[3]; |
|
uint8_t pwctr2[1]; |
|
uint8_t pwctr3[2]; |
|
uint8_t pwctr4[2]; |
|
uint8_t pwctr5[2]; |
|
uint8_t frmctr1[3]; |
|
uint8_t frmctr2[3]; |
|
uint8_t frmctr3[6]; |
|
uint8_t gamctrp1[16]; |
|
uint8_t gamctrn1[16]; |
|
bool inversion_on; |
|
bool rgb_is_inverted; |
|
}; |
|
|
|
struct st7735r_data { |
|
uint16_t x_offset; |
|
uint16_t y_offset; |
|
}; |
|
|
|
static void st7735r_set_lcd_margins(const struct device *dev, |
|
uint16_t x_offset, uint16_t y_offset) |
|
{ |
|
struct st7735r_data *data = dev->data; |
|
|
|
data->x_offset = x_offset; |
|
data->y_offset = y_offset; |
|
} |
|
|
|
static int st7735r_transmit_hold(const struct device *dev, uint8_t cmd, |
|
const uint8_t *tx_data, size_t tx_count) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
|
|
return mipi_dbi_command_write(config->mipi_dev, &config->dbi_config, |
|
cmd, tx_data, tx_count); |
|
} |
|
|
|
static int st7735r_transmit(const struct device *dev, uint8_t cmd, |
|
const uint8_t *tx_data, size_t tx_count) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
int ret; |
|
|
|
ret = st7735r_transmit_hold(dev, cmd, tx_data, tx_count); |
|
mipi_dbi_release(config->mipi_dev, &config->dbi_config); |
|
return ret; |
|
} |
|
|
|
static int st7735r_exit_sleep(const struct device *dev) |
|
{ |
|
int ret; |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_SLEEP_OUT, NULL, 0); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
k_sleep(ST7735R_EXIT_SLEEP_TIME); |
|
|
|
return 0; |
|
} |
|
|
|
static int st7735r_reset_display(const struct device *dev) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
int ret; |
|
|
|
LOG_DBG("Resetting display"); |
|
ret = mipi_dbi_reset(config->mipi_dev, ST7735R_RESET_TIME); |
|
if (ret != 0) { |
|
ret = st7735r_transmit(dev, ST7735R_CMD_SW_RESET, NULL, 0); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
} |
|
|
|
k_sleep(ST7735R_EXIT_SLEEP_TIME); |
|
|
|
return 0; |
|
} |
|
|
|
static int st7735r_blanking_on(const struct device *dev) |
|
{ |
|
return st7735r_transmit(dev, ST7735R_CMD_DISP_OFF, NULL, 0); |
|
} |
|
|
|
static int st7735r_blanking_off(const struct device *dev) |
|
{ |
|
return st7735r_transmit(dev, ST7735R_CMD_DISP_ON, NULL, 0); |
|
} |
|
|
|
static int st7735r_set_mem_area(const struct device *dev, |
|
const uint16_t x, const uint16_t y, |
|
const uint16_t w, const uint16_t h) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
struct st7735r_data *data = dev->data; |
|
uint16_t spi_data[2]; |
|
|
|
int ret; |
|
|
|
/* ST7735S requires repeating COLMOD for each transfer */ |
|
ret = st7735r_transmit_hold(dev, ST7735R_CMD_COLMOD, &config->colmod, 1); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
uint16_t ram_x = x + data->x_offset; |
|
uint16_t ram_y = y + data->y_offset; |
|
|
|
spi_data[0] = sys_cpu_to_be16(ram_x); |
|
spi_data[1] = sys_cpu_to_be16(ram_x + w - 1); |
|
ret = st7735r_transmit_hold(dev, ST7735R_CMD_CASET, (uint8_t *)&spi_data[0], 4); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
spi_data[0] = sys_cpu_to_be16(ram_y); |
|
spi_data[1] = sys_cpu_to_be16(ram_y + h - 1); |
|
ret = st7735r_transmit_hold(dev, ST7735R_CMD_RASET, (uint8_t *)&spi_data[0], 4); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
/* NB: CS still held - data transfer coming next */ |
|
return 0; |
|
} |
|
|
|
static int st7735r_write(const struct device *dev, |
|
const uint16_t x, |
|
const uint16_t y, |
|
const struct display_buffer_descriptor *desc, |
|
const void *buf) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
const uint8_t *write_data_start = (uint8_t *) buf; |
|
uint16_t write_cnt; |
|
uint16_t nbr_of_writes; |
|
uint16_t write_h; |
|
int ret; |
|
enum display_pixel_format fmt; |
|
struct display_buffer_descriptor mipi_desc; |
|
|
|
__ASSERT(desc->width <= desc->pitch, "Pitch is smaller than width"); |
|
__ASSERT((desc->pitch * ST7735R_PIXEL_SIZE * desc->height) |
|
<= desc->buf_size, "Input buffer too small"); |
|
|
|
LOG_DBG("Writing %dx%d (w,h) @ %dx%d (x,y)", |
|
desc->width, desc->height, x, y); |
|
ret = st7735r_set_mem_area(dev, x, y, desc->width, desc->height); |
|
if (ret < 0) { |
|
goto out; |
|
} |
|
|
|
if (desc->pitch > desc->width) { |
|
write_h = 1U; |
|
nbr_of_writes = desc->height; |
|
mipi_desc.height = 1; |
|
mipi_desc.buf_size = desc->pitch * ST7735R_PIXEL_SIZE; |
|
} else { |
|
write_h = desc->height; |
|
nbr_of_writes = 1U; |
|
mipi_desc.height = desc->height; |
|
mipi_desc.buf_size = desc->width * ST7735R_PIXEL_SIZE * write_h; |
|
} |
|
|
|
mipi_desc.width = desc->width; |
|
/* Per MIPI API, pitch must always match width */ |
|
mipi_desc.pitch = desc->width; |
|
|
|
|
|
if (!(config->madctl & ST7735R_MADCTL_BGR) != !config->rgb_is_inverted) { |
|
fmt = PIXEL_FORMAT_BGR_565; |
|
} else { |
|
fmt = PIXEL_FORMAT_RGB_565; |
|
} |
|
|
|
ret = st7735r_transmit_hold(dev, ST7735R_CMD_RAMWR, |
|
(void *) write_data_start, |
|
desc->width * ST7735R_PIXEL_SIZE * write_h); |
|
if (ret < 0) { |
|
goto out; |
|
} |
|
|
|
write_data_start += (desc->pitch * ST7735R_PIXEL_SIZE); |
|
for (write_cnt = 1U; write_cnt < nbr_of_writes; ++write_cnt) { |
|
ret = mipi_dbi_write_display(config->mipi_dev, |
|
&config->dbi_config, |
|
write_data_start, |
|
&mipi_desc, |
|
fmt); |
|
if (ret < 0) { |
|
goto out; |
|
} |
|
|
|
write_data_start += (desc->pitch * ST7735R_PIXEL_SIZE); |
|
} |
|
|
|
ret = 0; |
|
out: |
|
mipi_dbi_release(config->mipi_dev, &config->dbi_config); |
|
return ret; |
|
} |
|
|
|
static void st7735r_get_capabilities(const struct device *dev, |
|
struct display_capabilities *capabilities) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
|
|
memset(capabilities, 0, sizeof(struct display_capabilities)); |
|
capabilities->x_resolution = config->width; |
|
capabilities->y_resolution = config->height; |
|
|
|
/* |
|
* Invert the pixel format if rgb_is_inverted is enabled. |
|
* Report pixel format as the same format set in the MADCTL |
|
* if disabling the rgb_is_inverted option. |
|
* Or not so, reporting pixel format as RGB if MADCTL setting |
|
* is BGR. And also vice versa. |
|
* It is a workaround for supporting buggy modules that display RGB as BGR. |
|
*/ |
|
if (!(config->madctl & ST7735R_MADCTL_BGR) != !config->rgb_is_inverted) { |
|
capabilities->supported_pixel_formats = PIXEL_FORMAT_BGR_565; |
|
capabilities->current_pixel_format = PIXEL_FORMAT_BGR_565; |
|
} else { |
|
capabilities->supported_pixel_formats = PIXEL_FORMAT_RGB_565; |
|
capabilities->current_pixel_format = PIXEL_FORMAT_RGB_565; |
|
} |
|
|
|
capabilities->current_orientation = DISPLAY_ORIENTATION_NORMAL; |
|
} |
|
|
|
static int st7735r_set_pixel_format(const struct device *dev, |
|
const enum display_pixel_format pixel_format) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
|
|
if ((pixel_format == PIXEL_FORMAT_RGB_565) && |
|
(~config->madctl & ST7735R_MADCTL_BGR)) { |
|
return 0; |
|
} |
|
|
|
if ((pixel_format == PIXEL_FORMAT_BGR_565) && |
|
(config->madctl & ST7735R_MADCTL_BGR)) { |
|
return 0; |
|
} |
|
|
|
LOG_ERR("Pixel format change not implemented"); |
|
|
|
return -ENOTSUP; |
|
} |
|
|
|
static int st7735r_set_orientation(const struct device *dev, |
|
const enum display_orientation orientation) |
|
{ |
|
if (orientation == DISPLAY_ORIENTATION_NORMAL) { |
|
return 0; |
|
} |
|
|
|
LOG_ERR("Changing display orientation not implemented"); |
|
|
|
return -ENOTSUP; |
|
} |
|
|
|
static int st7735r_lcd_init(const struct device *dev) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
struct st7735r_data *data = dev->data; |
|
int ret; |
|
|
|
st7735r_set_lcd_margins(dev, data->x_offset, data->y_offset); |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_FRMCTR1, config->frmctr1, |
|
sizeof(config->frmctr1)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_FRMCTR2, config->frmctr2, |
|
sizeof(config->frmctr2)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_FRMCTR3, config->frmctr3, |
|
sizeof(config->frmctr3)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_INVCTR, &config->invctr, 1); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_PWCTR1, config->pwctr1, |
|
sizeof(config->pwctr1)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_PWCTR2, config->pwctr2, |
|
sizeof(config->pwctr2)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_PWCTR3, config->pwctr3, |
|
sizeof(config->pwctr3)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_PWCTR4, config->pwctr4, |
|
sizeof(config->pwctr4)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_PWCTR5, config->pwctr5, |
|
sizeof(config->pwctr5)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_VMCTR1, &config->vmctr1, 1); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
if (config->inversion_on) { |
|
ret = st7735r_transmit(dev, ST7735R_CMD_INV_ON, NULL, 0); |
|
} else { |
|
ret = st7735r_transmit(dev, ST7735R_CMD_INV_OFF, NULL, 0); |
|
} |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_MADCTL, &config->madctl, 1); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_COLMOD, &config->colmod, 1); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_CASET, config->caset, |
|
sizeof(config->caset)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_RASET, config->raset, |
|
sizeof(config->raset)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_GAMCTRP1, config->gamctrp1, |
|
sizeof(config->gamctrp1)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_GAMCTRN1, config->gamctrn1, |
|
sizeof(config->gamctrn1)); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_NORON, NULL, 0); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
ret = st7735r_transmit(dev, ST7735R_CMD_DISP_ON, NULL, 0); |
|
if (ret < 0) { |
|
return ret; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
static int st7735r_init(const struct device *dev) |
|
{ |
|
const struct st7735r_config *config = dev->config; |
|
int ret; |
|
|
|
if (!device_is_ready(config->mipi_dev)) { |
|
LOG_ERR("MIPI bus %s not ready", config->mipi_dev->name); |
|
return -ENODEV; |
|
} |
|
|
|
ret = st7735r_reset_display(dev); |
|
if (ret < 0) { |
|
LOG_ERR("Couldn't reset display"); |
|
return ret; |
|
} |
|
|
|
ret = st7735r_exit_sleep(dev); |
|
if (ret < 0) { |
|
LOG_ERR("Couldn't exit sleep"); |
|
return ret; |
|
} |
|
|
|
ret = st7735r_lcd_init(dev); |
|
if (ret < 0) { |
|
LOG_ERR("Couldn't init LCD"); |
|
return ret; |
|
} |
|
|
|
return 0; |
|
} |
|
|
|
#ifdef CONFIG_PM_DEVICE |
|
static int st7735r_pm_action(const struct device *dev, |
|
enum pm_device_action action) |
|
{ |
|
int ret = 0; |
|
|
|
switch (action) { |
|
case PM_DEVICE_ACTION_RESUME: |
|
ret = st7735r_exit_sleep(dev); |
|
break; |
|
case PM_DEVICE_ACTION_SUSPEND: |
|
ret = st7735r_transmit(dev, ST7735R_CMD_SLEEP_IN, NULL, 0); |
|
break; |
|
default: |
|
ret = -ENOTSUP; |
|
break; |
|
} |
|
|
|
return ret; |
|
} |
|
#endif /* CONFIG_PM_DEVICE */ |
|
|
|
static DEVICE_API(display, st7735r_api) = { |
|
.blanking_on = st7735r_blanking_on, |
|
.blanking_off = st7735r_blanking_off, |
|
.write = st7735r_write, |
|
.get_capabilities = st7735r_get_capabilities, |
|
.set_pixel_format = st7735r_set_pixel_format, |
|
.set_orientation = st7735r_set_orientation, |
|
}; |
|
|
|
|
|
#define ST7735R_INIT(inst) \ |
|
const static struct st7735r_config st7735r_config_ ## inst = { \ |
|
.mipi_dev = DEVICE_DT_GET(DT_INST_PARENT(inst)), \ |
|
.dbi_config = MIPI_DBI_CONFIG_DT_INST(inst, \ |
|
SPI_OP_MODE_MASTER | \ |
|
((DT_INST_STRING_UPPER_TOKEN(inst, mipi_mode) == \ |
|
MIPI_DBI_MODE_SPI_4WIRE) ? SPI_WORD_SET(8) : \ |
|
SPI_WORD_SET(9)) | \ |
|
SPI_HOLD_ON_CS | SPI_LOCK_ON, 0), \ |
|
.width = DT_INST_PROP(inst, width), \ |
|
.height = DT_INST_PROP(inst, height), \ |
|
.madctl = DT_INST_PROP(inst, madctl), \ |
|
.colmod = DT_INST_PROP(inst, colmod), \ |
|
.caset = DT_INST_PROP(inst, caset), \ |
|
.raset = DT_INST_PROP(inst, raset), \ |
|
.vmctr1 = DT_INST_PROP(inst, vmctr1), \ |
|
.invctr = DT_INST_PROP(inst, invctr), \ |
|
.pwctr1 = DT_INST_PROP(inst, pwctr1), \ |
|
.pwctr2 = DT_INST_PROP(inst, pwctr2), \ |
|
.pwctr3 = DT_INST_PROP(inst, pwctr3), \ |
|
.pwctr4 = DT_INST_PROP(inst, pwctr4), \ |
|
.pwctr5 = DT_INST_PROP(inst, pwctr5), \ |
|
.frmctr1 = DT_INST_PROP(inst, frmctr1), \ |
|
.frmctr2 = DT_INST_PROP(inst, frmctr2), \ |
|
.frmctr3 = DT_INST_PROP(inst, frmctr3), \ |
|
.gamctrp1 = DT_INST_PROP(inst, gamctrp1), \ |
|
.gamctrn1 = DT_INST_PROP(inst, gamctrn1), \ |
|
.inversion_on = DT_INST_PROP(inst, inversion_on), \ |
|
.rgb_is_inverted = DT_INST_PROP(inst, rgb_is_inverted), \ |
|
}; \ |
|
\ |
|
static struct st7735r_data st7735r_data_ ## inst = { \ |
|
.x_offset = DT_INST_PROP(inst, x_offset), \ |
|
.y_offset = DT_INST_PROP(inst, y_offset), \ |
|
}; \ |
|
\ |
|
PM_DEVICE_DT_INST_DEFINE(inst, st7735r_pm_action); \ |
|
\ |
|
DEVICE_DT_INST_DEFINE(inst, st7735r_init, PM_DEVICE_DT_INST_GET(inst), \ |
|
&st7735r_data_ ## inst, &st7735r_config_ ## inst, \ |
|
POST_KERNEL, CONFIG_DISPLAY_INIT_PRIORITY, \ |
|
&st7735r_api); |
|
|
|
DT_INST_FOREACH_STATUS_OKAY(ST7735R_INIT)
|
|
|