1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * Copyright (c) 2018, The Linux Foundation. All rights reserved. 4 * Copyright (c) 2019-2020. Linaro Limited. 5 */ 6 7 #include <linux/firmware.h> 8 #include <linux/gpio/consumer.h> 9 #include <linux/i2c.h> 10 #include <linux/interrupt.h> 11 #include <linux/module.h> 12 #include <linux/mutex.h> 13 #include <linux/of_graph.h> 14 #include <linux/platform_device.h> 15 #include <linux/regmap.h> 16 #include <linux/regulator/consumer.h> 17 #include <linux/wait.h> 18 #include <linux/workqueue.h> 19 20 #include <sound/hdmi-codec.h> 21 22 #include <drm/drm_atomic_helper.h> 23 #include <drm/drm_bridge.h> 24 #include <drm/drm_edid.h> 25 #include <drm/drm_mipi_dsi.h> 26 #include <drm/drm_of.h> 27 #include <drm/drm_print.h> 28 #include <drm/drm_probe_helper.h> 29 30 #define EDID_BLOCK_SIZE 128 31 #define EDID_NUM_BLOCKS 2 32 33 #define FW_FILE "lt9611uxc_fw.bin" 34 35 struct lt9611uxc { 36 struct device *dev; 37 struct drm_bridge bridge; 38 struct drm_bridge *next_bridge; 39 40 struct regmap *regmap; 41 /* Protects all accesses to registers by stopping the on-chip MCU */ 42 struct mutex ocm_lock; 43 44 struct wait_queue_head wq; 45 struct work_struct work; 46 47 struct device_node *dsi0_node; 48 struct device_node *dsi1_node; 49 struct mipi_dsi_device *dsi0; 50 struct mipi_dsi_device *dsi1; 51 struct platform_device *audio_pdev; 52 53 struct gpio_desc *reset_gpio; 54 struct gpio_desc *enable_gpio; 55 56 struct regulator_bulk_data supplies[2]; 57 58 struct i2c_client *client; 59 60 bool hpd_supported; 61 bool edid_read; 62 /* can be accessed from different threads, so protect this with ocm_lock */ 63 bool hdmi_connected; 64 uint8_t fw_version; 65 }; 66 67 #define LT9611_PAGE_CONTROL 0xff 68 69 static const struct regmap_range_cfg lt9611uxc_ranges[] = { 70 { 71 .name = "register_range", 72 .range_min = 0, 73 .range_max = 0xd0ff, 74 .selector_reg = LT9611_PAGE_CONTROL, 75 .selector_mask = 0xff, 76 .selector_shift = 0, 77 .window_start = 0, 78 .window_len = 0x100, 79 }, 80 }; 81 82 static const struct regmap_config lt9611uxc_regmap_config = { 83 .reg_bits = 8, 84 .val_bits = 8, 85 .max_register = 0xffff, 86 .ranges = lt9611uxc_ranges, 87 .num_ranges = ARRAY_SIZE(lt9611uxc_ranges), 88 }; 89 90 struct lt9611uxc_mode { 91 u16 hdisplay; 92 u16 vdisplay; 93 u8 vrefresh; 94 }; 95 96 /* 97 * This chip supports only a fixed set of modes. 98 * Enumerate them here to check whether the mode is supported. 99 */ 100 static struct lt9611uxc_mode lt9611uxc_modes[] = { 101 { 1920, 1080, 60 }, 102 { 1920, 1080, 30 }, 103 { 1920, 1080, 25 }, 104 { 1366, 768, 60 }, 105 { 1360, 768, 60 }, 106 { 1280, 1024, 60 }, 107 { 1280, 800, 60 }, 108 { 1280, 720, 60 }, 109 { 1280, 720, 50 }, 110 { 1280, 720, 30 }, 111 { 1152, 864, 60 }, 112 { 1024, 768, 60 }, 113 { 800, 600, 60 }, 114 { 720, 576, 50 }, 115 { 720, 480, 60 }, 116 { 640, 480, 60 }, 117 }; 118 119 static struct lt9611uxc *bridge_to_lt9611uxc(struct drm_bridge *bridge) 120 { 121 return container_of(bridge, struct lt9611uxc, bridge); 122 } 123 124 static void lt9611uxc_lock(struct lt9611uxc *lt9611uxc) 125 { 126 mutex_lock(<9611uxc->ocm_lock); 127 regmap_write(lt9611uxc->regmap, 0x80ee, 0x01); 128 } 129 130 static void lt9611uxc_unlock(struct lt9611uxc *lt9611uxc) 131 { 132 regmap_write(lt9611uxc->regmap, 0x80ee, 0x00); 133 msleep(50); 134 mutex_unlock(<9611uxc->ocm_lock); 135 } 136 137 static irqreturn_t lt9611uxc_irq_thread_handler(int irq, void *dev_id) 138 { 139 struct lt9611uxc *lt9611uxc = dev_id; 140 unsigned int irq_status = 0; 141 unsigned int hpd_status = 0; 142 143 lt9611uxc_lock(lt9611uxc); 144 145 regmap_read(lt9611uxc->regmap, 0xb022, &irq_status); 146 regmap_read(lt9611uxc->regmap, 0xb023, &hpd_status); 147 if (irq_status) 148 regmap_write(lt9611uxc->regmap, 0xb022, 0); 149 150 if (irq_status & BIT(0)) { 151 lt9611uxc->edid_read = !!(hpd_status & BIT(0)); 152 wake_up_all(<9611uxc->wq); 153 } 154 155 if (irq_status & BIT(1)) { 156 lt9611uxc->hdmi_connected = hpd_status & BIT(1); 157 schedule_work(<9611uxc->work); 158 } 159 160 lt9611uxc_unlock(lt9611uxc); 161 162 return IRQ_HANDLED; 163 } 164 165 static void lt9611uxc_hpd_work(struct work_struct *work) 166 { 167 struct lt9611uxc *lt9611uxc = container_of(work, struct lt9611uxc, work); 168 bool connected; 169 170 mutex_lock(<9611uxc->ocm_lock); 171 connected = lt9611uxc->hdmi_connected; 172 mutex_unlock(<9611uxc->ocm_lock); 173 174 drm_bridge_hpd_notify(<9611uxc->bridge, 175 connected ? 176 connector_status_connected : 177 connector_status_disconnected); 178 } 179 180 static void lt9611uxc_reset(struct lt9611uxc *lt9611uxc) 181 { 182 gpiod_set_value_cansleep(lt9611uxc->reset_gpio, 1); 183 msleep(20); 184 185 gpiod_set_value_cansleep(lt9611uxc->reset_gpio, 0); 186 msleep(20); 187 188 gpiod_set_value_cansleep(lt9611uxc->reset_gpio, 1); 189 msleep(300); 190 } 191 192 static void lt9611uxc_assert_5v(struct lt9611uxc *lt9611uxc) 193 { 194 if (!lt9611uxc->enable_gpio) 195 return; 196 197 gpiod_set_value_cansleep(lt9611uxc->enable_gpio, 1); 198 msleep(20); 199 } 200 201 static int lt9611uxc_regulator_init(struct lt9611uxc *lt9611uxc) 202 { 203 int ret; 204 205 lt9611uxc->supplies[0].supply = "vdd"; 206 lt9611uxc->supplies[1].supply = "vcc"; 207 208 ret = devm_regulator_bulk_get(lt9611uxc->dev, 2, lt9611uxc->supplies); 209 if (ret < 0) 210 return ret; 211 212 return regulator_set_load(lt9611uxc->supplies[0].consumer, 200000); 213 } 214 215 static int lt9611uxc_regulator_enable(struct lt9611uxc *lt9611uxc) 216 { 217 int ret; 218 219 ret = regulator_enable(lt9611uxc->supplies[0].consumer); 220 if (ret < 0) 221 return ret; 222 223 usleep_range(1000, 10000); /* 50000 according to dtsi */ 224 225 ret = regulator_enable(lt9611uxc->supplies[1].consumer); 226 if (ret < 0) { 227 regulator_disable(lt9611uxc->supplies[0].consumer); 228 return ret; 229 } 230 231 return 0; 232 } 233 234 static struct lt9611uxc_mode *lt9611uxc_find_mode(const struct drm_display_mode *mode) 235 { 236 int i; 237 238 for (i = 0; i < ARRAY_SIZE(lt9611uxc_modes); i++) { 239 if (lt9611uxc_modes[i].hdisplay == mode->hdisplay && 240 lt9611uxc_modes[i].vdisplay == mode->vdisplay && 241 lt9611uxc_modes[i].vrefresh == drm_mode_vrefresh(mode)) { 242 return <9611uxc_modes[i]; 243 } 244 } 245 246 return NULL; 247 } 248 249 static struct mipi_dsi_device *lt9611uxc_attach_dsi(struct lt9611uxc *lt9611uxc, 250 struct device_node *dsi_node) 251 { 252 const struct mipi_dsi_device_info info = { "lt9611uxc", 0, NULL }; 253 struct mipi_dsi_device *dsi; 254 struct mipi_dsi_host *host; 255 struct device *dev = lt9611uxc->dev; 256 int ret; 257 258 host = of_find_mipi_dsi_host_by_node(dsi_node); 259 if (!host) 260 return ERR_PTR(dev_err_probe(dev, -EPROBE_DEFER, "failed to find dsi host\n")); 261 262 dsi = devm_mipi_dsi_device_register_full(dev, host, &info); 263 if (IS_ERR(dsi)) { 264 dev_err(dev, "failed to create dsi device\n"); 265 return dsi; 266 } 267 268 dsi->lanes = 4; 269 dsi->format = MIPI_DSI_FMT_RGB888; 270 dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE | 271 MIPI_DSI_MODE_VIDEO_HSE; 272 273 ret = devm_mipi_dsi_attach(dev, dsi); 274 if (ret < 0) { 275 dev_err(dev, "failed to attach dsi to host\n"); 276 return ERR_PTR(ret); 277 } 278 279 return dsi; 280 } 281 282 static int lt9611uxc_bridge_attach(struct drm_bridge *bridge, 283 enum drm_bridge_attach_flags flags) 284 { 285 struct lt9611uxc *lt9611uxc = bridge_to_lt9611uxc(bridge); 286 287 return drm_bridge_attach(bridge->encoder, lt9611uxc->next_bridge, 288 bridge, flags); 289 } 290 291 static enum drm_mode_status 292 lt9611uxc_bridge_mode_valid(struct drm_bridge *bridge, 293 const struct drm_display_info *info, 294 const struct drm_display_mode *mode) 295 { 296 struct lt9611uxc_mode *lt9611uxc_mode; 297 298 lt9611uxc_mode = lt9611uxc_find_mode(mode); 299 300 return lt9611uxc_mode ? MODE_OK : MODE_BAD; 301 } 302 303 static void lt9611uxc_video_setup(struct lt9611uxc *lt9611uxc, 304 const struct drm_display_mode *mode) 305 { 306 u32 h_total, hactive, hsync_len, hfront_porch; 307 u32 v_total, vactive, vsync_len, vfront_porch; 308 309 h_total = mode->htotal; 310 v_total = mode->vtotal; 311 312 hactive = mode->hdisplay; 313 hsync_len = mode->hsync_end - mode->hsync_start; 314 hfront_porch = mode->hsync_start - mode->hdisplay; 315 316 vactive = mode->vdisplay; 317 vsync_len = mode->vsync_end - mode->vsync_start; 318 vfront_porch = mode->vsync_start - mode->vdisplay; 319 320 regmap_write(lt9611uxc->regmap, 0xd00d, (u8)(v_total / 256)); 321 regmap_write(lt9611uxc->regmap, 0xd00e, (u8)(v_total % 256)); 322 323 regmap_write(lt9611uxc->regmap, 0xd00f, (u8)(vactive / 256)); 324 regmap_write(lt9611uxc->regmap, 0xd010, (u8)(vactive % 256)); 325 326 regmap_write(lt9611uxc->regmap, 0xd011, (u8)(h_total / 256)); 327 regmap_write(lt9611uxc->regmap, 0xd012, (u8)(h_total % 256)); 328 329 regmap_write(lt9611uxc->regmap, 0xd013, (u8)(hactive / 256)); 330 regmap_write(lt9611uxc->regmap, 0xd014, (u8)(hactive % 256)); 331 332 regmap_write(lt9611uxc->regmap, 0xd015, (u8)(vsync_len % 256)); 333 334 regmap_update_bits(lt9611uxc->regmap, 0xd016, 0xf, (u8)(hsync_len / 256)); 335 regmap_write(lt9611uxc->regmap, 0xd017, (u8)(hsync_len % 256)); 336 337 regmap_update_bits(lt9611uxc->regmap, 0xd018, 0xf, (u8)(vfront_porch / 256)); 338 regmap_write(lt9611uxc->regmap, 0xd019, (u8)(vfront_porch % 256)); 339 340 regmap_update_bits(lt9611uxc->regmap, 0xd01a, 0xf, (u8)(hfront_porch / 256)); 341 regmap_write(lt9611uxc->regmap, 0xd01b, (u8)(hfront_porch % 256)); 342 } 343 344 static void lt9611uxc_bridge_mode_set(struct drm_bridge *bridge, 345 const struct drm_display_mode *mode, 346 const struct drm_display_mode *adj_mode) 347 { 348 struct lt9611uxc *lt9611uxc = bridge_to_lt9611uxc(bridge); 349 350 lt9611uxc_lock(lt9611uxc); 351 lt9611uxc_video_setup(lt9611uxc, mode); 352 lt9611uxc_unlock(lt9611uxc); 353 } 354 355 static enum drm_connector_status lt9611uxc_bridge_detect(struct drm_bridge *bridge) 356 { 357 struct lt9611uxc *lt9611uxc = bridge_to_lt9611uxc(bridge); 358 unsigned int reg_val = 0; 359 int ret; 360 bool connected = true; 361 362 lt9611uxc_lock(lt9611uxc); 363 364 if (lt9611uxc->hpd_supported) { 365 ret = regmap_read(lt9611uxc->regmap, 0xb023, ®_val); 366 367 if (ret) 368 dev_err(lt9611uxc->dev, "failed to read hpd status: %d\n", ret); 369 else 370 connected = reg_val & BIT(1); 371 } 372 lt9611uxc->hdmi_connected = connected; 373 374 lt9611uxc_unlock(lt9611uxc); 375 376 return connected ? connector_status_connected : 377 connector_status_disconnected; 378 } 379 380 static int lt9611uxc_wait_for_edid(struct lt9611uxc *lt9611uxc) 381 { 382 return wait_event_interruptible_timeout(lt9611uxc->wq, lt9611uxc->edid_read, 383 msecs_to_jiffies(500)); 384 } 385 386 static int lt9611uxc_get_edid_block(void *data, u8 *buf, unsigned int block, size_t len) 387 { 388 struct lt9611uxc *lt9611uxc = data; 389 int ret; 390 391 if (len > EDID_BLOCK_SIZE) 392 return -EINVAL; 393 394 if (block >= EDID_NUM_BLOCKS) 395 return -EINVAL; 396 397 lt9611uxc_lock(lt9611uxc); 398 399 regmap_write(lt9611uxc->regmap, 0xb00b, 0x10); 400 401 regmap_write(lt9611uxc->regmap, 0xb00a, block * EDID_BLOCK_SIZE); 402 403 ret = regmap_noinc_read(lt9611uxc->regmap, 0xb0b0, buf, len); 404 if (ret) 405 dev_err(lt9611uxc->dev, "edid read failed: %d\n", ret); 406 407 lt9611uxc_unlock(lt9611uxc); 408 409 return 0; 410 }; 411 412 static const struct drm_edid *lt9611uxc_bridge_edid_read(struct drm_bridge *bridge, 413 struct drm_connector *connector) 414 { 415 struct lt9611uxc *lt9611uxc = bridge_to_lt9611uxc(bridge); 416 int ret; 417 418 ret = lt9611uxc_wait_for_edid(lt9611uxc); 419 if (ret < 0) { 420 dev_err(lt9611uxc->dev, "wait for EDID failed: %d\n", ret); 421 return NULL; 422 } else if (ret == 0) { 423 dev_err(lt9611uxc->dev, "wait for EDID timeout\n"); 424 return NULL; 425 } 426 427 return drm_edid_read_custom(connector, lt9611uxc_get_edid_block, lt9611uxc); 428 } 429 430 static const struct drm_bridge_funcs lt9611uxc_bridge_funcs = { 431 .attach = lt9611uxc_bridge_attach, 432 .mode_valid = lt9611uxc_bridge_mode_valid, 433 .mode_set = lt9611uxc_bridge_mode_set, 434 .detect = lt9611uxc_bridge_detect, 435 .edid_read = lt9611uxc_bridge_edid_read, 436 }; 437 438 static int lt9611uxc_parse_dt(struct device *dev, 439 struct lt9611uxc *lt9611uxc) 440 { 441 lt9611uxc->dsi0_node = of_graph_get_remote_node(dev->of_node, 0, -1); 442 if (!lt9611uxc->dsi0_node) { 443 dev_err(lt9611uxc->dev, "failed to get remote node for primary dsi\n"); 444 return -ENODEV; 445 } 446 447 lt9611uxc->dsi1_node = of_graph_get_remote_node(dev->of_node, 1, -1); 448 449 return drm_of_find_panel_or_bridge(dev->of_node, 2, -1, NULL, <9611uxc->next_bridge); 450 } 451 452 static int lt9611uxc_gpio_init(struct lt9611uxc *lt9611uxc) 453 { 454 struct device *dev = lt9611uxc->dev; 455 456 lt9611uxc->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH); 457 if (IS_ERR(lt9611uxc->reset_gpio)) { 458 dev_err(dev, "failed to acquire reset gpio\n"); 459 return PTR_ERR(lt9611uxc->reset_gpio); 460 } 461 462 lt9611uxc->enable_gpio = devm_gpiod_get_optional(dev, "enable", GPIOD_OUT_LOW); 463 if (IS_ERR(lt9611uxc->enable_gpio)) { 464 dev_err(dev, "failed to acquire enable gpio\n"); 465 return PTR_ERR(lt9611uxc->enable_gpio); 466 } 467 468 return 0; 469 } 470 471 static int lt9611uxc_read_device_rev(struct lt9611uxc *lt9611uxc) 472 { 473 unsigned int rev0, rev1, rev2; 474 int ret; 475 476 lt9611uxc_lock(lt9611uxc); 477 478 ret = regmap_read(lt9611uxc->regmap, 0x8100, &rev0); 479 ret |= regmap_read(lt9611uxc->regmap, 0x8101, &rev1); 480 ret |= regmap_read(lt9611uxc->regmap, 0x8102, &rev2); 481 if (ret) 482 dev_err(lt9611uxc->dev, "failed to read revision: %d\n", ret); 483 else 484 dev_info(lt9611uxc->dev, "LT9611 revision: 0x%02x.%02x.%02x\n", rev0, rev1, rev2); 485 486 lt9611uxc_unlock(lt9611uxc); 487 488 return ret; 489 } 490 491 static int lt9611uxc_read_version(struct lt9611uxc *lt9611uxc) 492 { 493 unsigned int rev; 494 int ret; 495 496 lt9611uxc_lock(lt9611uxc); 497 498 ret = regmap_read(lt9611uxc->regmap, 0xb021, &rev); 499 if (ret) 500 dev_err(lt9611uxc->dev, "failed to read revision: %d\n", ret); 501 else 502 dev_info(lt9611uxc->dev, "LT9611 version: 0x%02x\n", rev); 503 504 lt9611uxc_unlock(lt9611uxc); 505 506 return ret < 0 ? ret : rev; 507 } 508 509 static int lt9611uxc_hdmi_hw_params(struct device *dev, void *data, 510 struct hdmi_codec_daifmt *fmt, 511 struct hdmi_codec_params *hparms) 512 { 513 /* 514 * LT9611UXC will automatically detect rate and sample size, so no need 515 * to setup anything here. 516 */ 517 return 0; 518 } 519 520 static void lt9611uxc_audio_shutdown(struct device *dev, void *data) 521 { 522 } 523 524 static int lt9611uxc_hdmi_i2s_get_dai_id(struct snd_soc_component *component, 525 struct device_node *endpoint, 526 void *data) 527 { 528 struct of_endpoint of_ep; 529 int ret; 530 531 ret = of_graph_parse_endpoint(endpoint, &of_ep); 532 if (ret < 0) 533 return ret; 534 535 /* 536 * HDMI sound should be located as reg = <2> 537 * Then, it is sound port 0 538 */ 539 if (of_ep.port == 2) 540 return 0; 541 542 return -EINVAL; 543 } 544 545 static const struct hdmi_codec_ops lt9611uxc_codec_ops = { 546 .hw_params = lt9611uxc_hdmi_hw_params, 547 .audio_shutdown = lt9611uxc_audio_shutdown, 548 .get_dai_id = lt9611uxc_hdmi_i2s_get_dai_id, 549 }; 550 551 static int lt9611uxc_audio_init(struct device *dev, struct lt9611uxc *lt9611uxc) 552 { 553 struct hdmi_codec_pdata codec_data = { 554 .ops = <9611uxc_codec_ops, 555 .max_i2s_channels = 2, 556 .i2s = 1, 557 .data = lt9611uxc, 558 }; 559 560 lt9611uxc->audio_pdev = 561 platform_device_register_data(dev, HDMI_CODEC_DRV_NAME, 562 PLATFORM_DEVID_AUTO, 563 &codec_data, sizeof(codec_data)); 564 565 return PTR_ERR_OR_ZERO(lt9611uxc->audio_pdev); 566 } 567 568 static void lt9611uxc_audio_exit(struct lt9611uxc *lt9611uxc) 569 { 570 if (lt9611uxc->audio_pdev) { 571 platform_device_unregister(lt9611uxc->audio_pdev); 572 lt9611uxc->audio_pdev = NULL; 573 } 574 } 575 576 #define LT9611UXC_FW_PAGE_SIZE 32 577 static void lt9611uxc_firmware_write_page(struct lt9611uxc *lt9611uxc, u16 addr, const u8 *buf) 578 { 579 struct reg_sequence seq_write_prepare[] = { 580 REG_SEQ0(0x805a, 0x04), 581 REG_SEQ0(0x805a, 0x00), 582 583 REG_SEQ0(0x805e, 0xdf), 584 REG_SEQ0(0x805a, 0x20), 585 REG_SEQ0(0x805a, 0x00), 586 REG_SEQ0(0x8058, 0x21), 587 }; 588 589 struct reg_sequence seq_write_addr[] = { 590 REG_SEQ0(0x805b, (addr >> 16) & 0xff), 591 REG_SEQ0(0x805c, (addr >> 8) & 0xff), 592 REG_SEQ0(0x805d, addr & 0xff), 593 REG_SEQ0(0x805a, 0x10), 594 REG_SEQ0(0x805a, 0x00), 595 }; 596 597 regmap_write(lt9611uxc->regmap, 0x8108, 0xbf); 598 msleep(20); 599 regmap_write(lt9611uxc->regmap, 0x8108, 0xff); 600 msleep(20); 601 regmap_multi_reg_write(lt9611uxc->regmap, seq_write_prepare, ARRAY_SIZE(seq_write_prepare)); 602 regmap_noinc_write(lt9611uxc->regmap, 0x8059, buf, LT9611UXC_FW_PAGE_SIZE); 603 regmap_multi_reg_write(lt9611uxc->regmap, seq_write_addr, ARRAY_SIZE(seq_write_addr)); 604 msleep(20); 605 } 606 607 static void lt9611uxc_firmware_read_page(struct lt9611uxc *lt9611uxc, u16 addr, char *buf) 608 { 609 struct reg_sequence seq_read_page[] = { 610 REG_SEQ0(0x805a, 0xa0), 611 REG_SEQ0(0x805a, 0x80), 612 REG_SEQ0(0x805b, (addr >> 16) & 0xff), 613 REG_SEQ0(0x805c, (addr >> 8) & 0xff), 614 REG_SEQ0(0x805d, addr & 0xff), 615 REG_SEQ0(0x805a, 0x90), 616 REG_SEQ0(0x805a, 0x80), 617 REG_SEQ0(0x8058, 0x21), 618 }; 619 620 regmap_multi_reg_write(lt9611uxc->regmap, seq_read_page, ARRAY_SIZE(seq_read_page)); 621 regmap_noinc_read(lt9611uxc->regmap, 0x805f, buf, LT9611UXC_FW_PAGE_SIZE); 622 } 623 624 static char *lt9611uxc_firmware_read(struct lt9611uxc *lt9611uxc, size_t size) 625 { 626 struct reg_sequence seq_read_setup[] = { 627 REG_SEQ0(0x805a, 0x84), 628 REG_SEQ0(0x805a, 0x80), 629 }; 630 631 char *readbuf; 632 u16 offset; 633 634 readbuf = kzalloc(ALIGN(size, 32), GFP_KERNEL); 635 if (!readbuf) 636 return NULL; 637 638 regmap_multi_reg_write(lt9611uxc->regmap, seq_read_setup, ARRAY_SIZE(seq_read_setup)); 639 640 for (offset = 0; 641 offset < size; 642 offset += LT9611UXC_FW_PAGE_SIZE) 643 lt9611uxc_firmware_read_page(lt9611uxc, offset, &readbuf[offset]); 644 645 return readbuf; 646 } 647 648 static int lt9611uxc_firmware_update(struct lt9611uxc *lt9611uxc) 649 { 650 int ret; 651 u16 offset; 652 size_t remain; 653 char *readbuf; 654 const struct firmware *fw; 655 656 struct reg_sequence seq_setup[] = { 657 REG_SEQ0(0x805e, 0xdf), 658 REG_SEQ0(0x8058, 0x00), 659 REG_SEQ0(0x8059, 0x50), 660 REG_SEQ0(0x805a, 0x10), 661 REG_SEQ0(0x805a, 0x00), 662 }; 663 664 665 struct reg_sequence seq_block_erase[] = { 666 REG_SEQ0(0x805a, 0x04), 667 REG_SEQ0(0x805a, 0x00), 668 REG_SEQ0(0x805b, 0x00), 669 REG_SEQ0(0x805c, 0x00), 670 REG_SEQ0(0x805d, 0x00), 671 REG_SEQ0(0x805a, 0x01), 672 REG_SEQ0(0x805a, 0x00), 673 }; 674 675 ret = request_firmware(&fw, FW_FILE, lt9611uxc->dev); 676 if (ret < 0) 677 return ret; 678 679 dev_info(lt9611uxc->dev, "Updating firmware\n"); 680 lt9611uxc_lock(lt9611uxc); 681 682 regmap_multi_reg_write(lt9611uxc->regmap, seq_setup, ARRAY_SIZE(seq_setup)); 683 684 /* 685 * Need erase block 2 timess here. Sometimes, block erase can fail. 686 * This is a workaroud. 687 */ 688 regmap_multi_reg_write(lt9611uxc->regmap, seq_block_erase, ARRAY_SIZE(seq_block_erase)); 689 msleep(3000); 690 regmap_multi_reg_write(lt9611uxc->regmap, seq_block_erase, ARRAY_SIZE(seq_block_erase)); 691 msleep(3000); 692 693 for (offset = 0, remain = fw->size; 694 remain >= LT9611UXC_FW_PAGE_SIZE; 695 offset += LT9611UXC_FW_PAGE_SIZE, remain -= LT9611UXC_FW_PAGE_SIZE) 696 lt9611uxc_firmware_write_page(lt9611uxc, offset, fw->data + offset); 697 698 if (remain > 0) { 699 char buf[LT9611UXC_FW_PAGE_SIZE]; 700 701 memset(buf, 0xff, LT9611UXC_FW_PAGE_SIZE); 702 memcpy(buf, fw->data + offset, remain); 703 lt9611uxc_firmware_write_page(lt9611uxc, offset, buf); 704 } 705 msleep(20); 706 707 readbuf = lt9611uxc_firmware_read(lt9611uxc, fw->size); 708 if (!readbuf) { 709 ret = -ENOMEM; 710 goto out; 711 } 712 713 if (!memcmp(readbuf, fw->data, fw->size)) { 714 dev_err(lt9611uxc->dev, "Firmware update failed\n"); 715 print_hex_dump(KERN_ERR, "fw: ", DUMP_PREFIX_OFFSET, 16, 1, readbuf, fw->size, false); 716 ret = -EINVAL; 717 } else { 718 dev_info(lt9611uxc->dev, "Firmware updates successfully\n"); 719 ret = 0; 720 } 721 kfree(readbuf); 722 723 out: 724 lt9611uxc_unlock(lt9611uxc); 725 lt9611uxc_reset(lt9611uxc); 726 release_firmware(fw); 727 728 return ret; 729 } 730 731 static ssize_t lt9611uxc_firmware_store(struct device *dev, struct device_attribute *attr, const char *buf, size_t len) 732 { 733 struct lt9611uxc *lt9611uxc = dev_get_drvdata(dev); 734 int ret; 735 736 ret = lt9611uxc_firmware_update(lt9611uxc); 737 if (ret < 0) 738 return ret; 739 return len; 740 } 741 742 static ssize_t lt9611uxc_firmware_show(struct device *dev, struct device_attribute *attr, char *buf) 743 { 744 struct lt9611uxc *lt9611uxc = dev_get_drvdata(dev); 745 746 return sysfs_emit(buf, "%02x\n", lt9611uxc->fw_version); 747 } 748 749 static DEVICE_ATTR_RW(lt9611uxc_firmware); 750 751 static struct attribute *lt9611uxc_attrs[] = { 752 &dev_attr_lt9611uxc_firmware.attr, 753 NULL, 754 }; 755 756 static const struct attribute_group lt9611uxc_attr_group = { 757 .attrs = lt9611uxc_attrs, 758 }; 759 760 static const struct attribute_group *lt9611uxc_attr_groups[] = { 761 <9611uxc_attr_group, 762 NULL, 763 }; 764 765 static int lt9611uxc_probe(struct i2c_client *client) 766 { 767 struct lt9611uxc *lt9611uxc; 768 struct device *dev = &client->dev; 769 int ret; 770 bool fw_updated = false; 771 772 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) { 773 dev_err(dev, "device doesn't support I2C\n"); 774 return -ENODEV; 775 } 776 777 lt9611uxc = devm_kzalloc(dev, sizeof(*lt9611uxc), GFP_KERNEL); 778 if (!lt9611uxc) 779 return -ENOMEM; 780 781 lt9611uxc->dev = dev; 782 lt9611uxc->client = client; 783 mutex_init(<9611uxc->ocm_lock); 784 785 lt9611uxc->regmap = devm_regmap_init_i2c(client, <9611uxc_regmap_config); 786 if (IS_ERR(lt9611uxc->regmap)) { 787 dev_err(lt9611uxc->dev, "regmap i2c init failed\n"); 788 return PTR_ERR(lt9611uxc->regmap); 789 } 790 791 ret = lt9611uxc_parse_dt(dev, lt9611uxc); 792 if (ret) { 793 dev_err(dev, "failed to parse device tree\n"); 794 return ret; 795 } 796 797 ret = lt9611uxc_gpio_init(lt9611uxc); 798 if (ret < 0) 799 goto err_of_put; 800 801 ret = lt9611uxc_regulator_init(lt9611uxc); 802 if (ret < 0) 803 goto err_of_put; 804 805 lt9611uxc_assert_5v(lt9611uxc); 806 807 ret = lt9611uxc_regulator_enable(lt9611uxc); 808 if (ret) 809 goto err_of_put; 810 811 lt9611uxc_reset(lt9611uxc); 812 813 ret = lt9611uxc_read_device_rev(lt9611uxc); 814 if (ret) { 815 dev_err(dev, "failed to read chip rev\n"); 816 goto err_disable_regulators; 817 } 818 819 retry: 820 ret = lt9611uxc_read_version(lt9611uxc); 821 if (ret < 0) { 822 dev_err(dev, "failed to read FW version\n"); 823 goto err_disable_regulators; 824 } else if (ret == 0) { 825 if (!fw_updated) { 826 fw_updated = true; 827 dev_err(dev, "FW version 0, enforcing firmware update\n"); 828 ret = lt9611uxc_firmware_update(lt9611uxc); 829 if (ret < 0) 830 goto err_disable_regulators; 831 else 832 goto retry; 833 } else { 834 dev_err(dev, "FW version 0, update failed\n"); 835 ret = -EOPNOTSUPP; 836 goto err_disable_regulators; 837 } 838 } else if (ret < 0x40) { 839 dev_info(dev, "FW version 0x%x, HPD not supported\n", ret); 840 } else { 841 lt9611uxc->hpd_supported = true; 842 } 843 lt9611uxc->fw_version = ret; 844 845 init_waitqueue_head(<9611uxc->wq); 846 INIT_WORK(<9611uxc->work, lt9611uxc_hpd_work); 847 848 ret = request_threaded_irq(client->irq, NULL, 849 lt9611uxc_irq_thread_handler, 850 IRQF_ONESHOT, "lt9611uxc", lt9611uxc); 851 if (ret) { 852 dev_err(dev, "failed to request irq\n"); 853 goto err_disable_regulators; 854 } 855 856 i2c_set_clientdata(client, lt9611uxc); 857 858 lt9611uxc->bridge.funcs = <9611uxc_bridge_funcs; 859 lt9611uxc->bridge.of_node = client->dev.of_node; 860 lt9611uxc->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID; 861 if (lt9611uxc->hpd_supported) 862 lt9611uxc->bridge.ops |= DRM_BRIDGE_OP_HPD; 863 lt9611uxc->bridge.type = DRM_MODE_CONNECTOR_HDMIA; 864 865 drm_bridge_add(<9611uxc->bridge); 866 867 /* Attach primary DSI */ 868 lt9611uxc->dsi0 = lt9611uxc_attach_dsi(lt9611uxc, lt9611uxc->dsi0_node); 869 if (IS_ERR(lt9611uxc->dsi0)) { 870 ret = PTR_ERR(lt9611uxc->dsi0); 871 goto err_remove_bridge; 872 } 873 874 /* Attach secondary DSI, if specified */ 875 if (lt9611uxc->dsi1_node) { 876 lt9611uxc->dsi1 = lt9611uxc_attach_dsi(lt9611uxc, lt9611uxc->dsi1_node); 877 if (IS_ERR(lt9611uxc->dsi1)) { 878 ret = PTR_ERR(lt9611uxc->dsi1); 879 goto err_remove_bridge; 880 } 881 } 882 883 return lt9611uxc_audio_init(dev, lt9611uxc); 884 885 err_remove_bridge: 886 free_irq(client->irq, lt9611uxc); 887 cancel_work_sync(<9611uxc->work); 888 drm_bridge_remove(<9611uxc->bridge); 889 890 err_disable_regulators: 891 regulator_bulk_disable(ARRAY_SIZE(lt9611uxc->supplies), lt9611uxc->supplies); 892 893 err_of_put: 894 of_node_put(lt9611uxc->dsi1_node); 895 of_node_put(lt9611uxc->dsi0_node); 896 897 return ret; 898 } 899 900 static void lt9611uxc_remove(struct i2c_client *client) 901 { 902 struct lt9611uxc *lt9611uxc = i2c_get_clientdata(client); 903 904 free_irq(client->irq, lt9611uxc); 905 cancel_work_sync(<9611uxc->work); 906 lt9611uxc_audio_exit(lt9611uxc); 907 drm_bridge_remove(<9611uxc->bridge); 908 909 mutex_destroy(<9611uxc->ocm_lock); 910 911 regulator_bulk_disable(ARRAY_SIZE(lt9611uxc->supplies), lt9611uxc->supplies); 912 913 of_node_put(lt9611uxc->dsi1_node); 914 of_node_put(lt9611uxc->dsi0_node); 915 } 916 917 static const struct i2c_device_id lt9611uxc_id[] = { 918 { "lontium,lt9611uxc" }, 919 { /* sentinel */ } 920 }; 921 922 static const struct of_device_id lt9611uxc_match_table[] = { 923 { .compatible = "lontium,lt9611uxc" }, 924 { /* sentinel */ } 925 }; 926 MODULE_DEVICE_TABLE(of, lt9611uxc_match_table); 927 928 static struct i2c_driver lt9611uxc_driver = { 929 .driver = { 930 .name = "lt9611uxc", 931 .of_match_table = lt9611uxc_match_table, 932 .dev_groups = lt9611uxc_attr_groups, 933 }, 934 .probe = lt9611uxc_probe, 935 .remove = lt9611uxc_remove, 936 .id_table = lt9611uxc_id, 937 }; 938 module_i2c_driver(lt9611uxc_driver); 939 940 MODULE_AUTHOR("Dmitry Baryshkov <dmitry.baryshkov@linaro.org>"); 941 MODULE_DESCRIPTION("Lontium LT9611UXC DSI/HDMI bridge driver"); 942 MODULE_LICENSE("GPL v2"); 943 944 MODULE_FIRMWARE(FW_FILE); 945