Skip to content

Commit

Permalink
drivers: display: Add ssd1322 driver
Browse files Browse the repository at this point in the history
Initial support for SSD1322 OLED display driver. Only 1 bit color mode is
supported.

Most options map directly to values documented in the datasheet,
except segments-per-pixel, which I had to add to support the Newhaven
NHD-2.7-12864WDW3. This is a slightly odd feature, but in practice
it is a lot nicer to support it in the driver, and since we're currently
remapping pixels anyway, it makes sense to implement here.

This driver also has a configurable buffer size for the pixel conversion.
By using a larger buffer, we can potentially use DMA for the SPI transfer.
The default is set to 8, which is the smallest value that supports
segments-per-pixel = 2

Initial driver implementation by Lukasz Hawrylko <[email protected]>.
Additional options and configurability by Tobias Pisani <[email protected]>

Signed-off-by: Lukasz Hawrylko <[email protected]>
Signed-off-by: Tobias Pisani <[email protected]>
  • Loading branch information
hlukasz authored and topisani committed Jul 27, 2024
1 parent 1b820df commit 46ff4ad
Show file tree
Hide file tree
Showing 6 changed files with 458 additions and 0 deletions.
1 change: 1 addition & 0 deletions drivers/display/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ zephyr_library_sources_ifdef(CONFIG_MAX7219 display_max7219.c)
zephyr_library_sources_ifdef(CONFIG_OTM8009A display_otm8009a.c)
zephyr_library_sources_ifdef(CONFIG_SSD1306 ssd1306.c)
zephyr_library_sources_ifdef(CONFIG_SSD16XX ssd16xx.c)
zephyr_library_sources_ifdef(CONFIG_SSD1322 ssd1322.c)
zephyr_library_sources_ifdef(CONFIG_ST7789V display_st7789v.c)
zephyr_library_sources_ifdef(CONFIG_ST7735R display_st7735r.c)
zephyr_library_sources_ifdef(CONFIG_ST7796S display_st7796s.c)
Expand Down
1 change: 1 addition & 0 deletions drivers/display/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ source "drivers/display/Kconfig.ili9xxx"
source "drivers/display/Kconfig.sdl"
source "drivers/display/Kconfig.ssd1306"
source "drivers/display/Kconfig.ssd16xx"
source "drivers/display/Kconfig.ssd1322"
source "drivers/display/Kconfig.st7735r"
source "drivers/display/Kconfig.st7789v"
source "drivers/display/Kconfig.st7796s"
Expand Down
22 changes: 22 additions & 0 deletions drivers/display/Kconfig.ssd1322
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# Copyright (c) 2024 Lukasz Hawrylko
# SPDX-License-Identifier: Apache-2.0

config SSD1322
bool "SSD1322 display driver"
default y
depends on DT_HAS_SOLOMON_SSD1322_ENABLED
select MIPI_DBI
help
Enable driver for SSD1322 display driver.

if SSD1322

config SSD1322_BUFFER_SIZE
int "SSD1322 internal buffer size"
default 8
range 8 61440
help
Size of the SSD1322 internal pixel format conversion buffer, in bytes.
Maximum value is the size of the display ram, 480*128=61440.

endif # SSD1322
333 changes: 333 additions & 0 deletions drivers/display/ssd1322.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,333 @@
/*
* Copyright (c) 2024 Lukasz Hawrylko
*
* SPDX-License-Identifier: Apache-2.0
*/

#include "zephyr/sys/util.h"
#define DT_DRV_COMPAT solomon_ssd1322

#include <zephyr/logging/log.h>
LOG_MODULE_REGISTER(ssd1322, CONFIG_DISPLAY_LOG_LEVEL);

#include <string.h>
#include <zephyr/device.h>
#include <zephyr/init.h>
#include <zephyr/drivers/display.h>
#include <zephyr/drivers/gpio.h>
#include <zephyr/drivers/mipi_dbi.h>
#include <zephyr/kernel.h>

#include "ssd1322_regs.h"

#define BITS_PER_PIXEL 4
#define PIXELS_IN_BYTE (8 / BITS_PER_PIXEL)

struct ssd1322_config {
const struct device *mipi_dev;
struct mipi_dbi_config dbi_config;
uint16_t height;
uint16_t width;
uint16_t column_offset;
uint8_t row_offset;
uint8_t start_line;
uint8_t mux_ratio;
bool remap_row_first;
bool remap_columns;
bool remap_rows;
bool remap_nibble;
bool remap_com_odd_even_split;
bool remap_com_dual;
uint8_t segments_per_pixel;
};

static inline int ssd1322_write_command(const struct device *dev, uint8_t cmd, const uint8_t *buf,
size_t len)
{
const struct ssd1322_config *config = dev->config;

return mipi_dbi_command_write(config->mipi_dev, &config->dbi_config, cmd, buf, len);
}

static inline int ssd1322_write_data(const struct device *dev, uint8_t *buf, size_t len)
{
const struct ssd1322_config *config = dev->config;
struct display_buffer_descriptor mipi_desc;

mipi_desc.buf_size = len;
mipi_desc.width = len * PIXELS_IN_BYTE;
mipi_desc.height = 1;
mipi_desc.pitch = mipi_desc.width;
return mipi_dbi_write_display(config->mipi_dev, &config->dbi_config, buf, &mipi_desc,
PIXEL_FORMAT_MONO01);
}

static int ssd1322_blanking_on(const struct device *dev)
{
return ssd1322_write_command(dev, SSD1322_BLANKING_ON, NULL, 0);
}

static int ssd1322_blanking_off(const struct device *dev)
{
return ssd1322_write_command(dev, SSD1322_BLANKING_OFF, NULL, 0);
}

static int ssd1322_write(const struct device *dev, const uint16_t x, const uint16_t y,
const struct display_buffer_descriptor *desc, const void *buf)
{
const struct ssd1322_config *config = dev->config;
size_t buf_len;
int ret;

if (desc->pitch < desc->width) {
LOG_ERR("Pitch is smaller than width");
return -1;
}

buf_len = MIN(desc->buf_size, desc->height * desc->width / 8);
if (buf == NULL || buf_len == 0U) {
LOG_ERR("Display buffer is not available");
return -1;
}

if (desc->pitch > desc->width) {
LOG_ERR("Unsupported mode");
return -1;
}

LOG_DBG("x %u, y %u, pitch %u, width %u, height %u, buf_len %u", x, y, desc->pitch,
desc->width, desc->height, buf_len);

uint8_t cmd_data[2];

cmd_data[0] = config->column_offset + (x >> 2) * config->segments_per_pixel;
cmd_data[1] =
config->column_offset + ((x + desc->width) >> 2) * config->segments_per_pixel - 1;
ret = ssd1322_write_command(dev, SSD1322_SET_COLUMN_ADDR, cmd_data, 2);
if (ret < 0) {
return ret;
}

cmd_data[0] = y;
cmd_data[1] = (y + desc->height - 1);
ret = ssd1322_write_command(dev, SSD1322_SET_ROW_ADDR, cmd_data, 2);
if (ret < 0) {
return ret;
}

ret = ssd1322_write_command(dev, SSD1322_ENABLE_RAM_WRITE, NULL, 0);
if (ret < 0) {
return ret;
}

/*
* Controller uses 4-bit grayscale format, so one pixel is represented by 4 bits.
* Zephyr's display API does not support this format, so I am using 1-bit b/w mode and
* convert each 1-bit pixel to 1111 or 0000.
*/
static uint8_t pixel_buf[CONFIG_SSD1322_BUFFER_SIZE];

__ASSERT(CONFIG_SSD1322_BUFFER_SIZE / config->segments_per_pixel / 2 > 0,
"Pixel conversion buffer too small");

const uint8_t *in_buf = buf;
int32_t pixel_count = desc->width * desc->height;

while (pixel_count > 0) {
uint16_t in_idx = 0;
uint16_t seg_idx = 0;
uint8_t color;

while (in_idx < pixel_count && seg_idx / 2 < sizeof(pixel_buf)) {
in_idx = seg_idx / config->segments_per_pixel;
color = (in_buf[in_idx / 8] & BIT(in_idx % 8)) ? 0xF : 0;
pixel_buf[seg_idx / 2] = (seg_idx % 2 == 0)
? color
: ((color << 4) | pixel_buf[seg_idx / 2]);
seg_idx++;
}
ret = ssd1322_write_data(dev, pixel_buf, seg_idx / 2);
if (ret < 0) {
return ret;
}
in_buf += in_idx / 8;
pixel_count -= in_idx;
}
return 0;
}

static int ssd1322_set_contrast(const struct device *dev, const uint8_t contrast)
{
return ssd1322_write_command(dev, SSD1322_SET_CONTRAST, &contrast, 1);
}

static void ssd1322_get_capabilities(const struct device *dev, struct display_capabilities *caps)
{
const struct ssd1322_config *config = dev->config;

memset(caps, 0, sizeof(struct display_capabilities));
caps->x_resolution = config->width;
caps->y_resolution = config->height;
caps->supported_pixel_formats = PIXEL_FORMAT_MONO01;
caps->current_pixel_format = PIXEL_FORMAT_MONO01;
}

static int ssd1322_init_device(const struct device *dev)
{
int ret;
uint8_t data[2];
const struct ssd1322_config *config = dev->config;

ret = mipi_dbi_reset(config->mipi_dev, 1);
if (ret < 0) {
return ret;
}
k_usleep(100);

ret = ssd1322_write_command(dev, SSD1322_DISPLAY_OFF, NULL, 0);
if (ret < 0) {
return ret;
}

data[0] = 0x91;
ret = ssd1322_write_command(dev, SSD1322_SET_CLOCK_DIV, data, 1);
if (ret < 0) {
return ret;
}

data[0] = config->mux_ratio - 1;
ret = ssd1322_write_command(dev, SSD1322_SET_MUX_RATIO, data, 1);
if (ret < 0) {
return ret;
}

data[0] = config->start_line;
ret = ssd1322_write_command(dev, SSD1322_SET_START_LINE, data, 1);
if (ret < 0) {
return ret;
}

data[0] = config->row_offset;
ret = ssd1322_write_command(dev, SSD1322_SET_DISPLAY_OFFSET, data, 1);
if (ret < 0) {
return ret;
}

data[0] = 0x00;
data[1] = 0x01;
WRITE_BIT(data[0], 0, config->remap_row_first);
WRITE_BIT(data[0], 1, config->remap_columns);
WRITE_BIT(data[0], 2, config->remap_nibble);
WRITE_BIT(data[0], 4, config->remap_rows);
WRITE_BIT(data[0], 5, config->remap_com_odd_even_split);
WRITE_BIT(data[1], 4, config->remap_com_dual);
ret = ssd1322_write_command(dev, SSD1322_SET_REMAP, data, 2);
if (ret < 0) {
return ret;
}

data[0] = 0x00;
ret = ssd1322_write_command(dev, SSD1322_SET_GPIO, data, 1);
if (ret < 0) {
return ret;
}

ret = ssd1322_write_command(dev, SSD1322_DEFAULT_GREYSCALE, NULL, 0);
if (ret < 0) {
return ret;
}

data[0] = 0xE2;
ret = ssd1322_write_command(dev, SSD1322_SET_PHASE_LENGTH, data, 1);
if (ret < 0) {
return ret;
}

data[0] = 0x1F;
ret = ssd1322_write_command(dev, SSD1322_SET_PRECHARGE, data, 1);
if (ret < 0) {
return ret;
}

data[0] = 0x08;
ret = ssd1322_write_command(dev, SSD1322_SET_SECOND_PRECHARGE, data, 1);
if (ret < 0) {
return ret;
}

data[0] = 0x07;
ret = ssd1322_write_command(dev, SSD1322_SET_VCOMH, data, 1);
if (ret < 0) {
return ret;
}

ret = ssd1322_write_command(dev, SSD1322_EXIT_PARTIAL, NULL, 0);
if (ret < 0) {
return ret;
}

ret = ssd1322_blanking_on(dev);
if (ret < 0) {
return ret;
}

ret = ssd1322_write_command(dev, SSD1322_DISPLAY_ON, NULL, 0);
if (ret < 0) {
return ret;
}

return 0;
}

static int ssd1322_init(const struct device *dev)
{
const struct ssd1322_config *config = dev->config;

if (!device_is_ready(config->mipi_dev)) {
LOG_ERR("MIPI not ready!");
return -ENODEV;
}

int ret = ssd1322_init_device(dev);

if (ret < 0) {
LOG_ERR("Failed to initialize device, err = %d", ret);
return -EIO;
}

return 0;
}

static struct display_driver_api ssd1322_driver_api = {
.blanking_on = ssd1322_blanking_on,
.blanking_off = ssd1322_blanking_off,
.write = ssd1322_write,
.set_contrast = ssd1322_set_contrast,
.get_capabilities = ssd1322_get_capabilities,
};

#define SSD1322_DEFINE(node_id) \
static const struct ssd1322_config config##node_id = { \
.height = DT_PROP(node_id, height), \
.width = DT_PROP(node_id, width), \
.column_offset = DT_PROP(node_id, column_offset), \
.row_offset = DT_PROP(node_id, row_offset), \
.start_line = DT_PROP(node_id, start_line), \
.mux_ratio = DT_PROP(node_id, mux_ratio), \
.remap_row_first = DT_PROP(node_id, remap_row_first), \
.remap_columns = DT_PROP(node_id, remap_columns), \
.remap_rows = DT_PROP(node_id, remap_rows), \
.remap_nibble = DT_PROP(node_id, remap_nibble), \
.remap_com_odd_even_split = DT_PROP(node_id, remap_com_odd_even_split), \
.remap_com_dual = DT_PROP(node_id, remap_com_dual), \
.segments_per_pixel = DT_PROP(node_id, segments_per_pixel), \
.mipi_dev = DEVICE_DT_GET(DT_PARENT(node_id)), \
.dbi_config = {.mode = MIPI_DBI_MODE_SPI_4WIRE, \
.config = MIPI_DBI_SPI_CONFIG_DT( \
node_id, SPI_OP_MODE_MASTER | SPI_WORD_SET(8), 0)}, \
}; \
\
DEVICE_DT_DEFINE(node_id, ssd1322_init, NULL, NULL, &config##node_id, POST_KERNEL, \
CONFIG_DISPLAY_INIT_PRIORITY, &ssd1322_driver_api);

DT_FOREACH_STATUS_OKAY(solomon_ssd1322, SSD1322_DEFINE)
Loading

0 comments on commit 46ff4ad

Please sign in to comment.