Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 | // SPDX-License-Identifier: GPL-2.0 /* * Orisetech OTA5601A TFT LCD panel driver * * Copyright (C) 2021, Christophe Branchereau <cbranchereau@gmail.com> */ #include <linux/bits.h> #include <linux/delay.h> #include <linux/device.h> #include <linux/gpio/consumer.h> #include <linux/media-bus-format.h> #include <linux/module.h> #include <linux/of.h> #include <linux/of_device.h> #include <linux/regmap.h> #include <linux/regulator/consumer.h> #include <linux/spi/spi.h> #include <drm/drm_modes.h> #include <drm/drm_panel.h> #define OTA5601A_CTL 0x01 #define OTA5601A_CTL_OFF 0x00 #define OTA5601A_CTL_ON BIT(0) struct ota5601a_panel_info { const struct drm_display_mode *display_modes; unsigned int num_modes; u16 width_mm, height_mm; u32 bus_format, bus_flags; }; struct ota5601a { struct drm_panel drm_panel; struct regmap *map; struct regulator *supply; const struct ota5601a_panel_info *panel_info; struct gpio_desc *reset_gpio; }; static inline struct ota5601a *to_ota5601a(struct drm_panel *panel) { return container_of(panel, struct ota5601a, drm_panel); } static const struct reg_sequence ota5601a_panel_regs[] = { { 0xfd, 0x00 }, /* Page Shift */ { 0x02, 0x00 }, /* Reset */ { 0x18, 0x00 }, /* Interface Sel: RGB 24 Bits */ { 0x34, 0x20 }, /* Undocumented */ { 0x0c, 0x01 }, /* Contrast set by CMD1 == within page 0x00 */ { 0x0d, 0x48 }, /* R Brightness */ { 0x0e, 0x48 }, /* G Brightness */ { 0x0f, 0x48 }, /* B Brightness */ { 0x07, 0x40 }, /* R Contrast */ { 0x08, 0x33 }, /* G Contrast */ { 0x09, 0x3a }, /* B Contrast */ { 0x16, 0x01 }, /* NTSC Sel */ { 0x19, 0x8d }, /* VBLK */ { 0x1a, 0x28 }, /* HBLK */ { 0x1c, 0x00 }, /* Scan Shift Dir. */ { 0xfd, 0xc5 }, /* Page Shift */ { 0x82, 0x0c }, /* PWR_CTRL Pump */ { 0xa2, 0xb4 }, /* PWR_CTRL VGH/VGL */ { 0xfd, 0xc4 }, /* Page Shift - What follows is listed as "RGB 24bit Timing Set" */ { 0x82, 0x45 }, { 0xfd, 0xc1 }, { 0x91, 0x02 }, { 0xfd, 0xc0 }, { 0xa1, 0x01 }, { 0xa2, 0x1f }, { 0xa3, 0x0b }, { 0xa4, 0x38 }, { 0xa5, 0x00 }, { 0xa6, 0x0a }, { 0xa7, 0x38 }, { 0xa8, 0x00 }, { 0xa9, 0x0a }, { 0xaa, 0x37 }, { 0xfd, 0xce }, { 0x81, 0x18 }, { 0x82, 0x43 }, { 0x83, 0x43 }, { 0x91, 0x06 }, { 0x93, 0x38 }, { 0x94, 0x02 }, { 0x95, 0x06 }, { 0x97, 0x38 }, { 0x98, 0x02 }, { 0x99, 0x06 }, { 0x9b, 0x38 }, { 0x9c, 0x02 }, { 0xfd, 0x00 }, /* Page Shift */ }; static const struct regmap_config ota5601a_regmap_config = { .reg_bits = 8, .val_bits = 8, }; static int ota5601a_prepare(struct drm_panel *drm_panel) { struct ota5601a *panel = to_ota5601a(drm_panel); int err; err = regulator_enable(panel->supply); if (err) { dev_err(drm_panel->dev, "Failed to enable power supply: %d\n", err); return err; } /* Reset to be held low for 10us min according to the doc, 10ms before sending commands */ gpiod_set_value_cansleep(panel->reset_gpio, 1); usleep_range(10, 30); gpiod_set_value_cansleep(panel->reset_gpio, 0); usleep_range(10000, 20000); /* Init all registers. */ err = regmap_multi_reg_write(panel->map, ota5601a_panel_regs, ARRAY_SIZE(ota5601a_panel_regs)); if (err) { dev_err(drm_panel->dev, "Failed to init registers: %d\n", err); goto err_disable_regulator; } msleep(120); return 0; err_disable_regulator: regulator_disable(panel->supply); return err; } static int ota5601a_unprepare(struct drm_panel *drm_panel) { struct ota5601a *panel = to_ota5601a(drm_panel); gpiod_set_value_cansleep(panel->reset_gpio, 1); regulator_disable(panel->supply); return 0; } static int ota5601a_enable(struct drm_panel *drm_panel) { struct ota5601a *panel = to_ota5601a(drm_panel); int err; err = regmap_write(panel->map, OTA5601A_CTL, OTA5601A_CTL_ON); if (err) { dev_err(drm_panel->dev, "Unable to enable panel: %d\n", err); return err; } if (drm_panel->backlight) { /* Wait for the picture to be ready before enabling backlight */ msleep(120); } return 0; } static int ota5601a_disable(struct drm_panel *drm_panel) { struct ota5601a *panel = to_ota5601a(drm_panel); int err; err = regmap_write(panel->map, OTA5601A_CTL, OTA5601A_CTL_OFF); if (err) { dev_err(drm_panel->dev, "Unable to disable panel: %d\n", err); return err; } return 0; } static int ota5601a_get_modes(struct drm_panel *drm_panel, struct drm_connector *connector) { struct ota5601a *panel = to_ota5601a(drm_panel); const struct ota5601a_panel_info *panel_info = panel->panel_info; struct drm_display_mode *mode; unsigned int i; for (i = 0; i < panel_info->num_modes; i++) { mode = drm_mode_duplicate(connector->dev, &panel_info->display_modes[i]); if (!mode) return -ENOMEM; drm_mode_set_name(mode); mode->type = DRM_MODE_TYPE_DRIVER; if (panel_info->num_modes == 1) mode->type |= DRM_MODE_TYPE_PREFERRED; drm_mode_probed_add(connector, mode); } connector->display_info.bpc = 8; connector->display_info.width_mm = panel_info->width_mm; connector->display_info.height_mm = panel_info->height_mm; drm_display_info_set_bus_formats(&connector->display_info, &panel_info->bus_format, 1); connector->display_info.bus_flags = panel_info->bus_flags; return panel_info->num_modes; } static const struct drm_panel_funcs ota5601a_funcs = { .prepare = ota5601a_prepare, .unprepare = ota5601a_unprepare, .enable = ota5601a_enable, .disable = ota5601a_disable, .get_modes = ota5601a_get_modes, }; static int ota5601a_probe(struct spi_device *spi) { const struct spi_device_id *id = spi_get_device_id(spi); struct device *dev = &spi->dev; struct ota5601a *panel; int err; panel = devm_kzalloc(dev, sizeof(*panel), GFP_KERNEL); if (!panel) return -ENOMEM; spi_set_drvdata(spi, panel); panel->panel_info = (const struct ota5601a_panel_info *)id->driver_data; if (!panel->panel_info) return -EINVAL; panel->supply = devm_regulator_get(dev, "power"); if (IS_ERR(panel->supply)) { dev_err(dev, "Failed to get power supply\n"); return PTR_ERR(panel->supply); } panel->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); if (IS_ERR(panel->reset_gpio)) { dev_err(dev, "Failed to get reset GPIO\n"); return PTR_ERR(panel->reset_gpio); } spi->bits_per_word = 8; spi->mode = SPI_MODE_3 | SPI_3WIRE; err = spi_setup(spi); if (err) { dev_err(dev, "Failed to setup SPI\n"); return err; } panel->map = devm_regmap_init_spi(spi, &ota5601a_regmap_config); if (IS_ERR(panel->map)) { dev_err(dev, "Failed to init regmap\n"); return PTR_ERR(panel->map); } drm_panel_init(&panel->drm_panel, dev, &ota5601a_funcs, DRM_MODE_CONNECTOR_DPI); err = drm_panel_of_backlight(&panel->drm_panel); if (err) { if (err != -EPROBE_DEFER) dev_err(dev, "Failed to get backlight handle\n"); return err; } drm_panel_add(&panel->drm_panel); return 0; } static void ota5601a_remove(struct spi_device *spi) { struct ota5601a *panel = spi_get_drvdata(spi); drm_panel_remove(&panel->drm_panel); ota5601a_disable(&panel->drm_panel); ota5601a_unprepare(&panel->drm_panel); } static const struct drm_display_mode gpt3_display_modes[] = { { /* 60 Hz */ .clock = 27000, .hdisplay = 640, .hsync_start = 640 + 220, .hsync_end = 640 + 220 + 20, .htotal = 640 + 220 + 20 + 20, .vdisplay = 480, .vsync_start = 480 + 7, .vsync_end = 480 + 7 + 6, .vtotal = 480 + 7 + 6 + 7, .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC, }, { /* 50 Hz */ .clock = 24000, .hdisplay = 640, .hsync_start = 640 + 280, .hsync_end = 640 + 280 + 20, .htotal = 640 + 280 + 20 + 20, .vdisplay = 480, .vsync_start = 480 + 7, .vsync_end = 480 + 7 + 6, .vtotal = 480 + 7 + 6 + 7, .flags = DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC, }, }; static const struct ota5601a_panel_info gpt3_info = { .display_modes = gpt3_display_modes, .num_modes = ARRAY_SIZE(gpt3_display_modes), .width_mm = 71, .height_mm = 51, .bus_format = MEDIA_BUS_FMT_RGB888_1X24, .bus_flags = DRM_BUS_FLAG_PIXDATA_SAMPLE_POSEDGE, }; static const struct spi_device_id gpt3_id[] = { { "gpt3", (kernel_ulong_t)&gpt3_info }, { /* sentinel */ } }; MODULE_DEVICE_TABLE(spi, gpt3_id); static const struct of_device_id ota5601a_of_match[] = { { .compatible = "focaltech,gpt3" }, { /* sentinel */ } }; MODULE_DEVICE_TABLE(of, ota5601a_of_match); static struct spi_driver ota5601a_driver = { .driver = { .name = "ota5601a", .of_match_table = ota5601a_of_match, }, .id_table = gpt3_id, .probe = ota5601a_probe, .remove = ota5601a_remove, }; module_spi_driver(ota5601a_driver); MODULE_AUTHOR("Christophe Branchereau <cbranchereau@gmail.com>"); MODULE_LICENSE("GPL"); |