1 // SPDX-License-Identifier: GPL-2.0+ 2 /* 3 * i.MX8 NWL MIPI DSI host driver 4 * 5 * Copyright (C) 2017 NXP 6 * Copyright (C) 2020 Purism SPC 7 */ 8 9 #include <linux/bitfield.h> 10 #include <linux/clk.h> 11 #include <linux/irq.h> 12 #include <linux/math64.h> 13 #include <linux/mfd/syscon.h> 14 #include <linux/module.h> 15 #include <linux/mux/consumer.h> 16 #include <linux/of.h> 17 #include <linux/of_platform.h> 18 #include <linux/phy/phy.h> 19 #include <linux/regmap.h> 20 #include <linux/reset.h> 21 #include <linux/sys_soc.h> 22 #include <linux/time64.h> 23 24 #include <drm/drm_atomic_state_helper.h> 25 #include <drm/drm_bridge.h> 26 #include <drm/drm_mipi_dsi.h> 27 #include <drm/drm_of.h> 28 #include <drm/drm_panel.h> 29 #include <drm/drm_print.h> 30 31 #include <video/mipi_display.h> 32 33 #include "nwl-dsi.h" 34 35 #define DRV_NAME "nwl-dsi" 36 37 /* i.MX8 NWL quirks */ 38 /* i.MX8MQ errata E11418 */ 39 #define E11418_HS_MODE_QUIRK BIT(0) 40 41 #define NWL_DSI_MIPI_FIFO_TIMEOUT msecs_to_jiffies(500) 42 43 enum transfer_direction { 44 DSI_PACKET_SEND, 45 DSI_PACKET_RECEIVE, 46 }; 47 48 #define NWL_DSI_ENDPOINT_LCDIF 0 49 #define NWL_DSI_ENDPOINT_DCSS 1 50 51 struct nwl_dsi_transfer { 52 const struct mipi_dsi_msg *msg; 53 struct mipi_dsi_packet packet; 54 struct completion completed; 55 56 int status; /* status of transmission */ 57 enum transfer_direction direction; 58 bool need_bta; 59 u8 cmd; 60 u16 rx_word_count; 61 size_t tx_len; /* in bytes */ 62 size_t rx_len; /* in bytes */ 63 }; 64 65 struct nwl_dsi { 66 struct drm_bridge bridge; 67 struct mipi_dsi_host dsi_host; 68 struct drm_bridge *panel_bridge; 69 struct device *dev; 70 struct phy *phy; 71 union phy_configure_opts phy_cfg; 72 unsigned int quirks; 73 74 struct regmap *regmap; 75 int irq; 76 /* 77 * The DSI host controller needs this reset sequence according to NWL: 78 * 1. Deassert pclk reset to get access to DSI regs 79 * 2. Configure DSI Host and DPHY and enable DPHY 80 * 3. Deassert ESC and BYTE resets to allow host TX operations) 81 * 4. Send DSI cmds to configure peripheral (handled by panel drv) 82 * 5. Deassert DPI reset so DPI receives pixels and starts sending 83 * DSI data 84 * 85 * TODO: Since panel_bridges do their DSI setup in enable we 86 * currently have 4. and 5. swapped. 87 */ 88 struct reset_control *rst_byte; 89 struct reset_control *rst_esc; 90 struct reset_control *rst_dpi; 91 struct reset_control *rst_pclk; 92 struct mux_control *mux; 93 94 /* DSI clocks */ 95 struct clk *phy_ref_clk; 96 struct clk *rx_esc_clk; 97 struct clk *tx_esc_clk; 98 struct clk *core_clk; 99 /* 100 * hardware bug: the i.MX8MQ needs this clock on during reset 101 * even when not using LCDIF. 102 */ 103 struct clk *lcdif_clk; 104 105 /* dsi lanes */ 106 u32 lanes; 107 enum mipi_dsi_pixel_format format; 108 struct drm_display_mode mode; 109 unsigned long dsi_mode_flags; 110 int error; 111 112 struct nwl_dsi_transfer *xfer; 113 }; 114 115 static const struct regmap_config nwl_dsi_regmap_config = { 116 .reg_bits = 16, 117 .val_bits = 32, 118 .reg_stride = 4, 119 .max_register = NWL_DSI_IRQ_MASK2, 120 .name = DRV_NAME, 121 }; 122 123 static inline struct nwl_dsi *bridge_to_dsi(struct drm_bridge *bridge) 124 { 125 return container_of(bridge, struct nwl_dsi, bridge); 126 } 127 128 static int nwl_dsi_clear_error(struct nwl_dsi *dsi) 129 { 130 int ret = dsi->error; 131 132 dsi->error = 0; 133 return ret; 134 } 135 136 static void nwl_dsi_write(struct nwl_dsi *dsi, unsigned int reg, u32 val) 137 { 138 int ret; 139 140 if (dsi->error) 141 return; 142 143 ret = regmap_write(dsi->regmap, reg, val); 144 if (ret < 0) { 145 DRM_DEV_ERROR(dsi->dev, 146 "Failed to write NWL DSI reg 0x%x: %d\n", reg, 147 ret); 148 dsi->error = ret; 149 } 150 } 151 152 static u32 nwl_dsi_read(struct nwl_dsi *dsi, u32 reg) 153 { 154 unsigned int val; 155 int ret; 156 157 if (dsi->error) 158 return 0; 159 160 ret = regmap_read(dsi->regmap, reg, &val); 161 if (ret < 0) { 162 DRM_DEV_ERROR(dsi->dev, "Failed to read NWL DSI reg 0x%x: %d\n", 163 reg, ret); 164 dsi->error = ret; 165 } 166 return val; 167 } 168 169 static int nwl_dsi_get_dpi_pixel_format(enum mipi_dsi_pixel_format format) 170 { 171 switch (format) { 172 case MIPI_DSI_FMT_RGB565: 173 return NWL_DSI_PIXEL_FORMAT_16; 174 case MIPI_DSI_FMT_RGB666: 175 return NWL_DSI_PIXEL_FORMAT_18L; 176 case MIPI_DSI_FMT_RGB666_PACKED: 177 return NWL_DSI_PIXEL_FORMAT_18; 178 case MIPI_DSI_FMT_RGB888: 179 return NWL_DSI_PIXEL_FORMAT_24; 180 default: 181 return -EINVAL; 182 } 183 } 184 185 /* 186 * ps2bc - Picoseconds to byte clock cycles 187 */ 188 static u32 ps2bc(struct nwl_dsi *dsi, unsigned long long ps) 189 { 190 u32 bpp = mipi_dsi_pixel_format_to_bpp(dsi->format); 191 192 return DIV64_U64_ROUND_UP(ps * dsi->mode.clock * bpp, 193 dsi->lanes * 8ULL * NSEC_PER_SEC); 194 } 195 196 /* 197 * ui2bc - UI time periods to byte clock cycles 198 */ 199 static u32 ui2bc(struct nwl_dsi *dsi, unsigned long long ui) 200 { 201 u32 bpp = mipi_dsi_pixel_format_to_bpp(dsi->format); 202 203 return DIV64_U64_ROUND_UP(ui * dsi->lanes, 204 dsi->mode.clock * 1000 * bpp); 205 } 206 207 /* 208 * us2bc - micro seconds to lp clock cycles 209 */ 210 static u32 us2lp(u32 lp_clk_rate, unsigned long us) 211 { 212 return DIV_ROUND_UP(us * lp_clk_rate, USEC_PER_SEC); 213 } 214 215 static int nwl_dsi_config_host(struct nwl_dsi *dsi) 216 { 217 u32 cycles; 218 struct phy_configure_opts_mipi_dphy *cfg = &dsi->phy_cfg.mipi_dphy; 219 220 if (dsi->lanes < 1 || dsi->lanes > 4) 221 return -EINVAL; 222 223 DRM_DEV_DEBUG_DRIVER(dsi->dev, "DSI Lanes %d\n", dsi->lanes); 224 nwl_dsi_write(dsi, NWL_DSI_CFG_NUM_LANES, dsi->lanes - 1); 225 226 if (dsi->dsi_mode_flags & MIPI_DSI_CLOCK_NON_CONTINUOUS) { 227 nwl_dsi_write(dsi, NWL_DSI_CFG_NONCONTINUOUS_CLK, 0x01); 228 nwl_dsi_write(dsi, NWL_DSI_CFG_AUTOINSERT_EOTP, 0x01); 229 } else { 230 nwl_dsi_write(dsi, NWL_DSI_CFG_NONCONTINUOUS_CLK, 0x00); 231 nwl_dsi_write(dsi, NWL_DSI_CFG_AUTOINSERT_EOTP, 0x00); 232 } 233 234 /* values in byte clock cycles */ 235 cycles = ui2bc(dsi, cfg->clk_pre); 236 DRM_DEV_DEBUG_DRIVER(dsi->dev, "cfg_t_pre: 0x%x\n", cycles); 237 nwl_dsi_write(dsi, NWL_DSI_CFG_T_PRE, cycles); 238 cycles = ps2bc(dsi, cfg->lpx + cfg->clk_prepare + cfg->clk_zero); 239 DRM_DEV_DEBUG_DRIVER(dsi->dev, "cfg_tx_gap (pre): 0x%x\n", cycles); 240 cycles += ui2bc(dsi, cfg->clk_pre); 241 DRM_DEV_DEBUG_DRIVER(dsi->dev, "cfg_t_post: 0x%x\n", cycles); 242 nwl_dsi_write(dsi, NWL_DSI_CFG_T_POST, cycles); 243 cycles = ps2bc(dsi, cfg->hs_exit); 244 DRM_DEV_DEBUG_DRIVER(dsi->dev, "cfg_tx_gap: 0x%x\n", cycles); 245 nwl_dsi_write(dsi, NWL_DSI_CFG_TX_GAP, cycles); 246 247 nwl_dsi_write(dsi, NWL_DSI_CFG_EXTRA_CMDS_AFTER_EOTP, 0x01); 248 nwl_dsi_write(dsi, NWL_DSI_CFG_HTX_TO_COUNT, 0x00); 249 nwl_dsi_write(dsi, NWL_DSI_CFG_LRX_H_TO_COUNT, 0x00); 250 nwl_dsi_write(dsi, NWL_DSI_CFG_BTA_H_TO_COUNT, 0x00); 251 /* In LP clock cycles */ 252 cycles = us2lp(cfg->lp_clk_rate, cfg->wakeup); 253 DRM_DEV_DEBUG_DRIVER(dsi->dev, "cfg_twakeup: 0x%x\n", cycles); 254 nwl_dsi_write(dsi, NWL_DSI_CFG_TWAKEUP, cycles); 255 256 return nwl_dsi_clear_error(dsi); 257 } 258 259 static int nwl_dsi_config_dpi(struct nwl_dsi *dsi) 260 { 261 u32 mode; 262 int color_format; 263 bool burst_mode; 264 int hfront_porch, hback_porch, vfront_porch, vback_porch; 265 int hsync_len, vsync_len; 266 267 hfront_porch = dsi->mode.hsync_start - dsi->mode.hdisplay; 268 hsync_len = dsi->mode.hsync_end - dsi->mode.hsync_start; 269 hback_porch = dsi->mode.htotal - dsi->mode.hsync_end; 270 271 vfront_porch = dsi->mode.vsync_start - dsi->mode.vdisplay; 272 vsync_len = dsi->mode.vsync_end - dsi->mode.vsync_start; 273 vback_porch = dsi->mode.vtotal - dsi->mode.vsync_end; 274 275 DRM_DEV_DEBUG_DRIVER(dsi->dev, "hfront_porch = %d\n", hfront_porch); 276 DRM_DEV_DEBUG_DRIVER(dsi->dev, "hback_porch = %d\n", hback_porch); 277 DRM_DEV_DEBUG_DRIVER(dsi->dev, "hsync_len = %d\n", hsync_len); 278 DRM_DEV_DEBUG_DRIVER(dsi->dev, "hdisplay = %d\n", dsi->mode.hdisplay); 279 DRM_DEV_DEBUG_DRIVER(dsi->dev, "vfront_porch = %d\n", vfront_porch); 280 DRM_DEV_DEBUG_DRIVER(dsi->dev, "vback_porch = %d\n", vback_porch); 281 DRM_DEV_DEBUG_DRIVER(dsi->dev, "vsync_len = %d\n", vsync_len); 282 DRM_DEV_DEBUG_DRIVER(dsi->dev, "vactive = %d\n", dsi->mode.vdisplay); 283 DRM_DEV_DEBUG_DRIVER(dsi->dev, "clock = %d kHz\n", dsi->mode.clock); 284 285 color_format = nwl_dsi_get_dpi_pixel_format(dsi->format); 286 if (color_format < 0) { 287 DRM_DEV_ERROR(dsi->dev, "Invalid color format 0x%x\n", 288 dsi->format); 289 return color_format; 290 } 291 DRM_DEV_DEBUG_DRIVER(dsi->dev, "pixel fmt = %d\n", dsi->format); 292 293 nwl_dsi_write(dsi, NWL_DSI_INTERFACE_COLOR_CODING, NWL_DSI_DPI_24_BIT); 294 nwl_dsi_write(dsi, NWL_DSI_PIXEL_FORMAT, color_format); 295 /* 296 * Adjusting input polarity based on the video mode results in 297 * a black screen so always pick active low: 298 */ 299 nwl_dsi_write(dsi, NWL_DSI_VSYNC_POLARITY, 300 NWL_DSI_VSYNC_POLARITY_ACTIVE_LOW); 301 nwl_dsi_write(dsi, NWL_DSI_HSYNC_POLARITY, 302 NWL_DSI_HSYNC_POLARITY_ACTIVE_LOW); 303 304 burst_mode = (dsi->dsi_mode_flags & MIPI_DSI_MODE_VIDEO_BURST) && 305 !(dsi->dsi_mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE); 306 307 if (burst_mode) { 308 nwl_dsi_write(dsi, NWL_DSI_VIDEO_MODE, NWL_DSI_VM_BURST_MODE); 309 nwl_dsi_write(dsi, NWL_DSI_PIXEL_FIFO_SEND_LEVEL, 256); 310 } else { 311 mode = ((dsi->dsi_mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE) ? 312 NWL_DSI_VM_BURST_MODE_WITH_SYNC_PULSES : 313 NWL_DSI_VM_NON_BURST_MODE_WITH_SYNC_EVENTS); 314 nwl_dsi_write(dsi, NWL_DSI_VIDEO_MODE, mode); 315 nwl_dsi_write(dsi, NWL_DSI_PIXEL_FIFO_SEND_LEVEL, 316 dsi->mode.hdisplay); 317 } 318 319 nwl_dsi_write(dsi, NWL_DSI_HFP, hfront_porch); 320 nwl_dsi_write(dsi, NWL_DSI_HBP, hback_porch); 321 nwl_dsi_write(dsi, NWL_DSI_HSA, hsync_len); 322 323 nwl_dsi_write(dsi, NWL_DSI_ENABLE_MULT_PKTS, 0x0); 324 nwl_dsi_write(dsi, NWL_DSI_BLLP_MODE, 0x1); 325 nwl_dsi_write(dsi, NWL_DSI_USE_NULL_PKT_BLLP, 0x0); 326 nwl_dsi_write(dsi, NWL_DSI_VC, 0x0); 327 328 nwl_dsi_write(dsi, NWL_DSI_PIXEL_PAYLOAD_SIZE, dsi->mode.hdisplay); 329 nwl_dsi_write(dsi, NWL_DSI_VACTIVE, dsi->mode.vdisplay - 1); 330 nwl_dsi_write(dsi, NWL_DSI_VBP, vback_porch); 331 nwl_dsi_write(dsi, NWL_DSI_VFP, vfront_porch); 332 333 return nwl_dsi_clear_error(dsi); 334 } 335 336 static int nwl_dsi_init_interrupts(struct nwl_dsi *dsi) 337 { 338 u32 irq_enable; 339 340 nwl_dsi_write(dsi, NWL_DSI_IRQ_MASK, 0xffffffff); 341 nwl_dsi_write(dsi, NWL_DSI_IRQ_MASK2, 0x7); 342 343 irq_enable = ~(u32)(NWL_DSI_TX_PKT_DONE_MASK | 344 NWL_DSI_RX_PKT_HDR_RCVD_MASK | 345 NWL_DSI_TX_FIFO_OVFLW_MASK | 346 NWL_DSI_HS_TX_TIMEOUT_MASK); 347 348 nwl_dsi_write(dsi, NWL_DSI_IRQ_MASK, irq_enable); 349 350 return nwl_dsi_clear_error(dsi); 351 } 352 353 static int nwl_dsi_host_attach(struct mipi_dsi_host *dsi_host, 354 struct mipi_dsi_device *device) 355 { 356 struct nwl_dsi *dsi = container_of(dsi_host, struct nwl_dsi, dsi_host); 357 struct device *dev = dsi->dev; 358 359 DRM_DEV_INFO(dev, "lanes=%u, format=0x%x flags=0x%lx\n", device->lanes, 360 device->format, device->mode_flags); 361 362 if (device->lanes < 1 || device->lanes > 4) 363 return -EINVAL; 364 365 dsi->lanes = device->lanes; 366 dsi->format = device->format; 367 dsi->dsi_mode_flags = device->mode_flags; 368 369 return 0; 370 } 371 372 static bool nwl_dsi_read_packet(struct nwl_dsi *dsi, u32 status) 373 { 374 struct device *dev = dsi->dev; 375 struct nwl_dsi_transfer *xfer = dsi->xfer; 376 int err; 377 u8 *payload = xfer->msg->rx_buf; 378 u32 val; 379 u16 word_count; 380 u8 channel; 381 u8 data_type; 382 383 xfer->status = 0; 384 385 if (xfer->rx_word_count == 0) { 386 if (!(status & NWL_DSI_RX_PKT_HDR_RCVD)) 387 return false; 388 /* Get the RX header and parse it */ 389 val = nwl_dsi_read(dsi, NWL_DSI_RX_PKT_HEADER); 390 err = nwl_dsi_clear_error(dsi); 391 if (err) 392 xfer->status = err; 393 word_count = NWL_DSI_WC(val); 394 channel = NWL_DSI_RX_VC(val); 395 data_type = NWL_DSI_RX_DT(val); 396 397 if (channel != xfer->msg->channel) { 398 DRM_DEV_ERROR(dev, 399 "[%02X] Channel mismatch (%u != %u)\n", 400 xfer->cmd, channel, xfer->msg->channel); 401 xfer->status = -EINVAL; 402 return true; 403 } 404 405 switch (data_type) { 406 case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_2BYTE: 407 case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_2BYTE: 408 if (xfer->msg->rx_len > 1) { 409 /* read second byte */ 410 payload[1] = word_count >> 8; 411 ++xfer->rx_len; 412 } 413 fallthrough; 414 case MIPI_DSI_RX_GENERIC_SHORT_READ_RESPONSE_1BYTE: 415 case MIPI_DSI_RX_DCS_SHORT_READ_RESPONSE_1BYTE: 416 if (xfer->msg->rx_len > 0) { 417 /* read first byte */ 418 payload[0] = word_count & 0xff; 419 ++xfer->rx_len; 420 } 421 xfer->status = xfer->rx_len; 422 return true; 423 case MIPI_DSI_RX_ACKNOWLEDGE_AND_ERROR_REPORT: 424 word_count &= 0xff; 425 DRM_DEV_ERROR(dev, "[%02X] DSI error report: 0x%02x\n", 426 xfer->cmd, word_count); 427 xfer->status = -EPROTO; 428 return true; 429 } 430 431 if (word_count > xfer->msg->rx_len) { 432 DRM_DEV_ERROR(dev, 433 "[%02X] Receive buffer too small: %zu (< %u)\n", 434 xfer->cmd, xfer->msg->rx_len, word_count); 435 xfer->status = -EINVAL; 436 return true; 437 } 438 439 xfer->rx_word_count = word_count; 440 } else { 441 /* Set word_count from previous header read */ 442 word_count = xfer->rx_word_count; 443 } 444 445 /* If RX payload is not yet received, wait for it */ 446 if (!(status & NWL_DSI_RX_PKT_PAYLOAD_DATA_RCVD)) 447 return false; 448 449 /* Read the RX payload */ 450 while (word_count >= 4) { 451 val = nwl_dsi_read(dsi, NWL_DSI_RX_PAYLOAD); 452 payload[0] = (val >> 0) & 0xff; 453 payload[1] = (val >> 8) & 0xff; 454 payload[2] = (val >> 16) & 0xff; 455 payload[3] = (val >> 24) & 0xff; 456 payload += 4; 457 xfer->rx_len += 4; 458 word_count -= 4; 459 } 460 461 if (word_count > 0) { 462 val = nwl_dsi_read(dsi, NWL_DSI_RX_PAYLOAD); 463 switch (word_count) { 464 case 3: 465 payload[2] = (val >> 16) & 0xff; 466 ++xfer->rx_len; 467 fallthrough; 468 case 2: 469 payload[1] = (val >> 8) & 0xff; 470 ++xfer->rx_len; 471 fallthrough; 472 case 1: 473 payload[0] = (val >> 0) & 0xff; 474 ++xfer->rx_len; 475 break; 476 } 477 } 478 479 xfer->status = xfer->rx_len; 480 err = nwl_dsi_clear_error(dsi); 481 if (err) 482 xfer->status = err; 483 484 return true; 485 } 486 487 static void nwl_dsi_finish_transmission(struct nwl_dsi *dsi, u32 status) 488 { 489 struct nwl_dsi_transfer *xfer = dsi->xfer; 490 bool end_packet = false; 491 492 if (!xfer) 493 return; 494 495 if (xfer->direction == DSI_PACKET_SEND && 496 status & NWL_DSI_TX_PKT_DONE) { 497 xfer->status = xfer->tx_len; 498 end_packet = true; 499 } else if (status & NWL_DSI_DPHY_DIRECTION && 500 ((status & (NWL_DSI_RX_PKT_HDR_RCVD | 501 NWL_DSI_RX_PKT_PAYLOAD_DATA_RCVD)))) { 502 end_packet = nwl_dsi_read_packet(dsi, status); 503 } 504 505 if (end_packet) 506 complete(&xfer->completed); 507 } 508 509 static void nwl_dsi_begin_transmission(struct nwl_dsi *dsi) 510 { 511 struct nwl_dsi_transfer *xfer = dsi->xfer; 512 struct mipi_dsi_packet *pkt = &xfer->packet; 513 const u8 *payload; 514 size_t length; 515 u16 word_count; 516 u8 hs_mode; 517 u32 val; 518 u32 hs_workaround = 0; 519 520 /* Send the payload, if any */ 521 length = pkt->payload_length; 522 payload = pkt->payload; 523 524 while (length >= 4) { 525 val = *(u32 *)payload; 526 hs_workaround |= !(val & 0xFFFF00); 527 nwl_dsi_write(dsi, NWL_DSI_TX_PAYLOAD, val); 528 payload += 4; 529 length -= 4; 530 } 531 /* Send the rest of the payload */ 532 val = 0; 533 switch (length) { 534 case 3: 535 val |= payload[2] << 16; 536 fallthrough; 537 case 2: 538 val |= payload[1] << 8; 539 hs_workaround |= !(val & 0xFFFF00); 540 fallthrough; 541 case 1: 542 val |= payload[0]; 543 nwl_dsi_write(dsi, NWL_DSI_TX_PAYLOAD, val); 544 break; 545 } 546 xfer->tx_len = pkt->payload_length; 547 548 /* 549 * Send the header 550 * header[0] = Virtual Channel + Data Type 551 * header[1] = Word Count LSB (LP) or first param (SP) 552 * header[2] = Word Count MSB (LP) or second param (SP) 553 */ 554 word_count = pkt->header[1] | (pkt->header[2] << 8); 555 if (hs_workaround && (dsi->quirks & E11418_HS_MODE_QUIRK)) { 556 DRM_DEV_DEBUG_DRIVER(dsi->dev, 557 "Using hs mode workaround for cmd 0x%x\n", 558 xfer->cmd); 559 hs_mode = 1; 560 } else { 561 hs_mode = (xfer->msg->flags & MIPI_DSI_MSG_USE_LPM) ? 0 : 1; 562 } 563 val = NWL_DSI_WC(word_count) | NWL_DSI_TX_VC(xfer->msg->channel) | 564 NWL_DSI_TX_DT(xfer->msg->type) | NWL_DSI_HS_SEL(hs_mode) | 565 NWL_DSI_BTA_TX(xfer->need_bta); 566 nwl_dsi_write(dsi, NWL_DSI_PKT_CONTROL, val); 567 568 /* Send packet command */ 569 nwl_dsi_write(dsi, NWL_DSI_SEND_PACKET, 0x1); 570 } 571 572 static ssize_t nwl_dsi_host_transfer(struct mipi_dsi_host *dsi_host, 573 const struct mipi_dsi_msg *msg) 574 { 575 struct nwl_dsi *dsi = container_of(dsi_host, struct nwl_dsi, dsi_host); 576 struct nwl_dsi_transfer xfer; 577 ssize_t ret = 0; 578 579 /* Create packet to be sent */ 580 dsi->xfer = &xfer; 581 ret = mipi_dsi_create_packet(&xfer.packet, msg); 582 if (ret < 0) { 583 dsi->xfer = NULL; 584 return ret; 585 } 586 587 if ((msg->type & MIPI_DSI_GENERIC_READ_REQUEST_0_PARAM || 588 msg->type & MIPI_DSI_GENERIC_READ_REQUEST_1_PARAM || 589 msg->type & MIPI_DSI_GENERIC_READ_REQUEST_2_PARAM || 590 msg->type & MIPI_DSI_DCS_READ) && 591 msg->rx_len > 0 && msg->rx_buf) 592 xfer.direction = DSI_PACKET_RECEIVE; 593 else 594 xfer.direction = DSI_PACKET_SEND; 595 596 xfer.need_bta = (xfer.direction == DSI_PACKET_RECEIVE); 597 xfer.need_bta |= (msg->flags & MIPI_DSI_MSG_REQ_ACK) ? 1 : 0; 598 xfer.msg = msg; 599 xfer.status = -ETIMEDOUT; 600 xfer.rx_word_count = 0; 601 xfer.rx_len = 0; 602 xfer.cmd = 0x00; 603 if (msg->tx_len > 0) 604 xfer.cmd = ((u8 *)(msg->tx_buf))[0]; 605 init_completion(&xfer.completed); 606 607 ret = clk_prepare_enable(dsi->rx_esc_clk); 608 if (ret < 0) { 609 DRM_DEV_ERROR(dsi->dev, "Failed to enable rx_esc clk: %zd\n", 610 ret); 611 return ret; 612 } 613 DRM_DEV_DEBUG_DRIVER(dsi->dev, "Enabled rx_esc clk @%lu Hz\n", 614 clk_get_rate(dsi->rx_esc_clk)); 615 616 /* Initiate the DSI packet transmision */ 617 nwl_dsi_begin_transmission(dsi); 618 619 if (!wait_for_completion_timeout(&xfer.completed, 620 NWL_DSI_MIPI_FIFO_TIMEOUT)) { 621 DRM_DEV_ERROR(dsi_host->dev, "[%02X] DSI transfer timed out\n", 622 xfer.cmd); 623 ret = -ETIMEDOUT; 624 } else { 625 ret = xfer.status; 626 } 627 628 clk_disable_unprepare(dsi->rx_esc_clk); 629 630 return ret; 631 } 632 633 static const struct mipi_dsi_host_ops nwl_dsi_host_ops = { 634 .attach = nwl_dsi_host_attach, 635 .transfer = nwl_dsi_host_transfer, 636 }; 637 638 static irqreturn_t nwl_dsi_irq_handler(int irq, void *data) 639 { 640 u32 irq_status; 641 struct nwl_dsi *dsi = data; 642 643 irq_status = nwl_dsi_read(dsi, NWL_DSI_IRQ_STATUS); 644 645 if (irq_status & NWL_DSI_TX_FIFO_OVFLW) 646 DRM_DEV_ERROR_RATELIMITED(dsi->dev, "tx fifo overflow\n"); 647 648 if (irq_status & NWL_DSI_HS_TX_TIMEOUT) 649 DRM_DEV_ERROR_RATELIMITED(dsi->dev, "HS tx timeout\n"); 650 651 if (irq_status & NWL_DSI_TX_PKT_DONE || 652 irq_status & NWL_DSI_RX_PKT_HDR_RCVD || 653 irq_status & NWL_DSI_RX_PKT_PAYLOAD_DATA_RCVD) 654 nwl_dsi_finish_transmission(dsi, irq_status); 655 656 return IRQ_HANDLED; 657 } 658 659 static int nwl_dsi_mode_set(struct nwl_dsi *dsi) 660 { 661 struct device *dev = dsi->dev; 662 union phy_configure_opts *phy_cfg = &dsi->phy_cfg; 663 int ret; 664 665 if (!dsi->lanes) { 666 DRM_DEV_ERROR(dev, "Need DSI lanes: %d\n", dsi->lanes); 667 return -EINVAL; 668 } 669 670 ret = phy_init(dsi->phy); 671 if (ret < 0) { 672 DRM_DEV_ERROR(dev, "Failed to init DSI phy: %d\n", ret); 673 return ret; 674 } 675 676 ret = phy_configure(dsi->phy, phy_cfg); 677 if (ret < 0) { 678 DRM_DEV_ERROR(dev, "Failed to configure DSI phy: %d\n", ret); 679 goto uninit_phy; 680 } 681 682 ret = clk_prepare_enable(dsi->tx_esc_clk); 683 if (ret < 0) { 684 DRM_DEV_ERROR(dsi->dev, "Failed to enable tx_esc clk: %d\n", 685 ret); 686 goto uninit_phy; 687 } 688 DRM_DEV_DEBUG_DRIVER(dsi->dev, "Enabled tx_esc clk @%lu Hz\n", 689 clk_get_rate(dsi->tx_esc_clk)); 690 691 ret = nwl_dsi_config_host(dsi); 692 if (ret < 0) { 693 DRM_DEV_ERROR(dev, "Failed to set up DSI: %d", ret); 694 goto disable_clock; 695 } 696 697 ret = nwl_dsi_config_dpi(dsi); 698 if (ret < 0) { 699 DRM_DEV_ERROR(dev, "Failed to set up DPI: %d", ret); 700 goto disable_clock; 701 } 702 703 ret = phy_power_on(dsi->phy); 704 if (ret < 0) { 705 DRM_DEV_ERROR(dev, "Failed to power on DPHY (%d)\n", ret); 706 goto disable_clock; 707 } 708 709 ret = nwl_dsi_init_interrupts(dsi); 710 if (ret < 0) 711 goto power_off_phy; 712 713 return ret; 714 715 power_off_phy: 716 phy_power_off(dsi->phy); 717 disable_clock: 718 clk_disable_unprepare(dsi->tx_esc_clk); 719 uninit_phy: 720 phy_exit(dsi->phy); 721 722 return ret; 723 } 724 725 static int nwl_dsi_disable(struct nwl_dsi *dsi) 726 { 727 struct device *dev = dsi->dev; 728 729 DRM_DEV_DEBUG_DRIVER(dev, "Disabling clocks and phy\n"); 730 731 phy_power_off(dsi->phy); 732 phy_exit(dsi->phy); 733 734 /* Disabling the clock before the phy breaks enabling dsi again */ 735 clk_disable_unprepare(dsi->tx_esc_clk); 736 737 return 0; 738 } 739 740 static void 741 nwl_dsi_bridge_atomic_disable(struct drm_bridge *bridge, 742 struct drm_bridge_state *old_bridge_state) 743 { 744 struct nwl_dsi *dsi = bridge_to_dsi(bridge); 745 int ret; 746 747 nwl_dsi_disable(dsi); 748 749 ret = reset_control_assert(dsi->rst_dpi); 750 if (ret < 0) { 751 DRM_DEV_ERROR(dsi->dev, "Failed to assert DPI: %d\n", ret); 752 return; 753 } 754 ret = reset_control_assert(dsi->rst_byte); 755 if (ret < 0) { 756 DRM_DEV_ERROR(dsi->dev, "Failed to assert ESC: %d\n", ret); 757 return; 758 } 759 ret = reset_control_assert(dsi->rst_esc); 760 if (ret < 0) { 761 DRM_DEV_ERROR(dsi->dev, "Failed to assert BYTE: %d\n", ret); 762 return; 763 } 764 ret = reset_control_assert(dsi->rst_pclk); 765 if (ret < 0) { 766 DRM_DEV_ERROR(dsi->dev, "Failed to assert PCLK: %d\n", ret); 767 return; 768 } 769 770 clk_disable_unprepare(dsi->core_clk); 771 clk_disable_unprepare(dsi->lcdif_clk); 772 773 pm_runtime_put(dsi->dev); 774 } 775 776 static int nwl_dsi_get_dphy_params(struct nwl_dsi *dsi, 777 const struct drm_display_mode *mode, 778 union phy_configure_opts *phy_opts) 779 { 780 unsigned long rate; 781 int ret; 782 783 if (dsi->lanes < 1 || dsi->lanes > 4) 784 return -EINVAL; 785 786 /* 787 * So far the DPHY spec minimal timings work for both mixel 788 * dphy and nwl dsi host 789 */ 790 ret = phy_mipi_dphy_get_default_config(mode->clock * 1000, 791 mipi_dsi_pixel_format_to_bpp(dsi->format), dsi->lanes, 792 &phy_opts->mipi_dphy); 793 if (ret < 0) 794 return ret; 795 796 rate = clk_get_rate(dsi->tx_esc_clk); 797 DRM_DEV_DEBUG_DRIVER(dsi->dev, "LP clk is @%lu Hz\n", rate); 798 phy_opts->mipi_dphy.lp_clk_rate = rate; 799 800 return 0; 801 } 802 803 static enum drm_mode_status 804 nwl_dsi_bridge_mode_valid(struct drm_bridge *bridge, 805 const struct drm_display_info *info, 806 const struct drm_display_mode *mode) 807 { 808 struct nwl_dsi *dsi = bridge_to_dsi(bridge); 809 int bpp = mipi_dsi_pixel_format_to_bpp(dsi->format); 810 811 if (mode->clock * bpp > 15000000 * dsi->lanes) 812 return MODE_CLOCK_HIGH; 813 814 if (mode->clock * bpp < 80000 * dsi->lanes) 815 return MODE_CLOCK_LOW; 816 817 return MODE_OK; 818 } 819 820 static int nwl_dsi_bridge_atomic_check(struct drm_bridge *bridge, 821 struct drm_bridge_state *bridge_state, 822 struct drm_crtc_state *crtc_state, 823 struct drm_connector_state *conn_state) 824 { 825 struct drm_display_mode *adjusted_mode = &crtc_state->adjusted_mode; 826 827 /* At least LCDIF + NWL needs active high sync */ 828 adjusted_mode->flags |= (DRM_MODE_FLAG_PHSYNC | DRM_MODE_FLAG_PVSYNC); 829 adjusted_mode->flags &= ~(DRM_MODE_FLAG_NHSYNC | DRM_MODE_FLAG_NVSYNC); 830 831 /* 832 * Do a full modeset if crtc_state->active is changed to be true. 833 * This ensures our ->mode_set() is called to get the DSI controller 834 * and the PHY ready to send DCS commands, when only the connector's 835 * DPMS is brought out of "Off" status. 836 */ 837 if (crtc_state->active_changed && crtc_state->active) 838 crtc_state->mode_changed = true; 839 840 return 0; 841 } 842 843 static void 844 nwl_dsi_bridge_mode_set(struct drm_bridge *bridge, 845 const struct drm_display_mode *mode, 846 const struct drm_display_mode *adjusted_mode) 847 { 848 struct nwl_dsi *dsi = bridge_to_dsi(bridge); 849 struct device *dev = dsi->dev; 850 union phy_configure_opts new_cfg; 851 unsigned long phy_ref_rate; 852 int ret; 853 854 ret = nwl_dsi_get_dphy_params(dsi, adjusted_mode, &new_cfg); 855 if (ret < 0) 856 return; 857 858 phy_ref_rate = clk_get_rate(dsi->phy_ref_clk); 859 DRM_DEV_DEBUG_DRIVER(dev, "PHY at ref rate: %lu\n", phy_ref_rate); 860 /* Save the new desired phy config */ 861 memcpy(&dsi->phy_cfg, &new_cfg, sizeof(new_cfg)); 862 863 memcpy(&dsi->mode, adjusted_mode, sizeof(dsi->mode)); 864 drm_mode_debug_printmodeline(adjusted_mode); 865 866 pm_runtime_get_sync(dev); 867 868 if (clk_prepare_enable(dsi->lcdif_clk) < 0) 869 return; 870 if (clk_prepare_enable(dsi->core_clk) < 0) 871 return; 872 873 /* Step 1 from DSI reset-out instructions */ 874 ret = reset_control_deassert(dsi->rst_pclk); 875 if (ret < 0) { 876 DRM_DEV_ERROR(dev, "Failed to deassert PCLK: %d\n", ret); 877 return; 878 } 879 880 /* Step 2 from DSI reset-out instructions */ 881 nwl_dsi_mode_set(dsi); 882 883 /* Step 3 from DSI reset-out instructions */ 884 ret = reset_control_deassert(dsi->rst_esc); 885 if (ret < 0) { 886 DRM_DEV_ERROR(dev, "Failed to deassert ESC: %d\n", ret); 887 return; 888 } 889 ret = reset_control_deassert(dsi->rst_byte); 890 if (ret < 0) { 891 DRM_DEV_ERROR(dev, "Failed to deassert BYTE: %d\n", ret); 892 return; 893 } 894 } 895 896 static void 897 nwl_dsi_bridge_atomic_enable(struct drm_bridge *bridge, 898 struct drm_bridge_state *old_bridge_state) 899 { 900 struct nwl_dsi *dsi = bridge_to_dsi(bridge); 901 int ret; 902 903 /* Step 5 from DSI reset-out instructions */ 904 ret = reset_control_deassert(dsi->rst_dpi); 905 if (ret < 0) 906 DRM_DEV_ERROR(dsi->dev, "Failed to deassert DPI: %d\n", ret); 907 } 908 909 static int nwl_dsi_bridge_attach(struct drm_bridge *bridge, 910 enum drm_bridge_attach_flags flags) 911 { 912 struct nwl_dsi *dsi = bridge_to_dsi(bridge); 913 struct drm_bridge *panel_bridge; 914 struct drm_panel *panel; 915 int ret; 916 917 ret = drm_of_find_panel_or_bridge(dsi->dev->of_node, 1, 0, &panel, 918 &panel_bridge); 919 if (ret) 920 return ret; 921 922 if (panel) { 923 panel_bridge = drm_panel_bridge_add(panel); 924 if (IS_ERR(panel_bridge)) 925 return PTR_ERR(panel_bridge); 926 } 927 dsi->panel_bridge = panel_bridge; 928 929 if (!dsi->panel_bridge) 930 return -EPROBE_DEFER; 931 932 return drm_bridge_attach(bridge->encoder, dsi->panel_bridge, bridge, 933 flags); 934 } 935 936 static void nwl_dsi_bridge_detach(struct drm_bridge *bridge) 937 { struct nwl_dsi *dsi = bridge_to_dsi(bridge); 938 939 drm_of_panel_bridge_remove(dsi->dev->of_node, 1, 0); 940 } 941 942 static const struct drm_bridge_funcs nwl_dsi_bridge_funcs = { 943 .atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state, 944 .atomic_destroy_state = drm_atomic_helper_bridge_destroy_state, 945 .atomic_reset = drm_atomic_helper_bridge_reset, 946 .atomic_check = nwl_dsi_bridge_atomic_check, 947 .atomic_enable = nwl_dsi_bridge_atomic_enable, 948 .atomic_disable = nwl_dsi_bridge_atomic_disable, 949 .mode_set = nwl_dsi_bridge_mode_set, 950 .mode_valid = nwl_dsi_bridge_mode_valid, 951 .attach = nwl_dsi_bridge_attach, 952 .detach = nwl_dsi_bridge_detach, 953 }; 954 955 static int nwl_dsi_parse_dt(struct nwl_dsi *dsi) 956 { 957 struct platform_device *pdev = to_platform_device(dsi->dev); 958 struct clk *clk; 959 void __iomem *base; 960 int ret; 961 962 dsi->phy = devm_phy_get(dsi->dev, "dphy"); 963 if (IS_ERR(dsi->phy)) { 964 ret = PTR_ERR(dsi->phy); 965 if (ret != -EPROBE_DEFER) 966 DRM_DEV_ERROR(dsi->dev, "Could not get PHY: %d\n", ret); 967 return ret; 968 } 969 970 clk = devm_clk_get(dsi->dev, "lcdif"); 971 if (IS_ERR(clk)) { 972 ret = PTR_ERR(clk); 973 DRM_DEV_ERROR(dsi->dev, "Failed to get lcdif clock: %d\n", 974 ret); 975 return ret; 976 } 977 dsi->lcdif_clk = clk; 978 979 clk = devm_clk_get(dsi->dev, "core"); 980 if (IS_ERR(clk)) { 981 ret = PTR_ERR(clk); 982 DRM_DEV_ERROR(dsi->dev, "Failed to get core clock: %d\n", 983 ret); 984 return ret; 985 } 986 dsi->core_clk = clk; 987 988 clk = devm_clk_get(dsi->dev, "phy_ref"); 989 if (IS_ERR(clk)) { 990 ret = PTR_ERR(clk); 991 DRM_DEV_ERROR(dsi->dev, "Failed to get phy_ref clock: %d\n", 992 ret); 993 return ret; 994 } 995 dsi->phy_ref_clk = clk; 996 997 clk = devm_clk_get(dsi->dev, "rx_esc"); 998 if (IS_ERR(clk)) { 999 ret = PTR_ERR(clk); 1000 DRM_DEV_ERROR(dsi->dev, "Failed to get rx_esc clock: %d\n", 1001 ret); 1002 return ret; 1003 } 1004 dsi->rx_esc_clk = clk; 1005 1006 clk = devm_clk_get(dsi->dev, "tx_esc"); 1007 if (IS_ERR(clk)) { 1008 ret = PTR_ERR(clk); 1009 DRM_DEV_ERROR(dsi->dev, "Failed to get tx_esc clock: %d\n", 1010 ret); 1011 return ret; 1012 } 1013 dsi->tx_esc_clk = clk; 1014 1015 dsi->mux = devm_mux_control_get(dsi->dev, NULL); 1016 if (IS_ERR(dsi->mux)) { 1017 ret = PTR_ERR(dsi->mux); 1018 if (ret != -EPROBE_DEFER) 1019 DRM_DEV_ERROR(dsi->dev, "Failed to get mux: %d\n", ret); 1020 return ret; 1021 } 1022 1023 base = devm_platform_ioremap_resource(pdev, 0); 1024 if (IS_ERR(base)) 1025 return PTR_ERR(base); 1026 1027 dsi->regmap = 1028 devm_regmap_init_mmio(dsi->dev, base, &nwl_dsi_regmap_config); 1029 if (IS_ERR(dsi->regmap)) { 1030 ret = PTR_ERR(dsi->regmap); 1031 DRM_DEV_ERROR(dsi->dev, "Failed to create NWL DSI regmap: %d\n", 1032 ret); 1033 return ret; 1034 } 1035 1036 dsi->irq = platform_get_irq(pdev, 0); 1037 if (dsi->irq < 0) { 1038 DRM_DEV_ERROR(dsi->dev, "Failed to get device IRQ: %d\n", 1039 dsi->irq); 1040 return dsi->irq; 1041 } 1042 1043 dsi->rst_pclk = devm_reset_control_get_exclusive(dsi->dev, "pclk"); 1044 if (IS_ERR(dsi->rst_pclk)) { 1045 DRM_DEV_ERROR(dsi->dev, "Failed to get pclk reset: %ld\n", 1046 PTR_ERR(dsi->rst_pclk)); 1047 return PTR_ERR(dsi->rst_pclk); 1048 } 1049 dsi->rst_byte = devm_reset_control_get_exclusive(dsi->dev, "byte"); 1050 if (IS_ERR(dsi->rst_byte)) { 1051 DRM_DEV_ERROR(dsi->dev, "Failed to get byte reset: %ld\n", 1052 PTR_ERR(dsi->rst_byte)); 1053 return PTR_ERR(dsi->rst_byte); 1054 } 1055 dsi->rst_esc = devm_reset_control_get_exclusive(dsi->dev, "esc"); 1056 if (IS_ERR(dsi->rst_esc)) { 1057 DRM_DEV_ERROR(dsi->dev, "Failed to get esc reset: %ld\n", 1058 PTR_ERR(dsi->rst_esc)); 1059 return PTR_ERR(dsi->rst_esc); 1060 } 1061 dsi->rst_dpi = devm_reset_control_get_exclusive(dsi->dev, "dpi"); 1062 if (IS_ERR(dsi->rst_dpi)) { 1063 DRM_DEV_ERROR(dsi->dev, "Failed to get dpi reset: %ld\n", 1064 PTR_ERR(dsi->rst_dpi)); 1065 return PTR_ERR(dsi->rst_dpi); 1066 } 1067 return 0; 1068 } 1069 1070 static int nwl_dsi_select_input(struct nwl_dsi *dsi) 1071 { 1072 struct device_node *remote; 1073 u32 use_dcss = 1; 1074 int ret; 1075 1076 remote = of_graph_get_remote_node(dsi->dev->of_node, 0, 1077 NWL_DSI_ENDPOINT_LCDIF); 1078 if (remote) { 1079 use_dcss = 0; 1080 } else { 1081 remote = of_graph_get_remote_node(dsi->dev->of_node, 0, 1082 NWL_DSI_ENDPOINT_DCSS); 1083 if (!remote) { 1084 DRM_DEV_ERROR(dsi->dev, 1085 "No valid input endpoint found\n"); 1086 return -EINVAL; 1087 } 1088 } 1089 1090 DRM_DEV_INFO(dsi->dev, "Using %s as input source\n", 1091 (use_dcss) ? "DCSS" : "LCDIF"); 1092 ret = mux_control_try_select(dsi->mux, use_dcss); 1093 if (ret < 0) 1094 DRM_DEV_ERROR(dsi->dev, "Failed to select input: %d\n", ret); 1095 1096 of_node_put(remote); 1097 return ret; 1098 } 1099 1100 static int nwl_dsi_deselect_input(struct nwl_dsi *dsi) 1101 { 1102 int ret; 1103 1104 ret = mux_control_deselect(dsi->mux); 1105 if (ret < 0) 1106 DRM_DEV_ERROR(dsi->dev, "Failed to deselect input: %d\n", ret); 1107 1108 return ret; 1109 } 1110 1111 static const struct drm_bridge_timings nwl_dsi_timings = { 1112 .input_bus_flags = DRM_BUS_FLAG_DE_LOW, 1113 }; 1114 1115 static const struct of_device_id nwl_dsi_dt_ids[] = { 1116 { .compatible = "fsl,imx8mq-nwl-dsi", }, 1117 { /* sentinel */ } 1118 }; 1119 MODULE_DEVICE_TABLE(of, nwl_dsi_dt_ids); 1120 1121 static const struct soc_device_attribute nwl_dsi_quirks_match[] = { 1122 { .soc_id = "i.MX8MQ", .revision = "2.0", 1123 .data = (void *)E11418_HS_MODE_QUIRK }, 1124 { /* sentinel. */ }, 1125 }; 1126 1127 static int nwl_dsi_probe(struct platform_device *pdev) 1128 { 1129 struct device *dev = &pdev->dev; 1130 const struct soc_device_attribute *attr; 1131 struct nwl_dsi *dsi; 1132 int ret; 1133 1134 dsi = devm_kzalloc(dev, sizeof(*dsi), GFP_KERNEL); 1135 if (!dsi) 1136 return -ENOMEM; 1137 1138 dsi->dev = dev; 1139 1140 ret = nwl_dsi_parse_dt(dsi); 1141 if (ret) 1142 return ret; 1143 1144 ret = devm_request_irq(dev, dsi->irq, nwl_dsi_irq_handler, 0, 1145 dev_name(dev), dsi); 1146 if (ret < 0) { 1147 DRM_DEV_ERROR(dev, "Failed to request IRQ %d: %d\n", dsi->irq, 1148 ret); 1149 return ret; 1150 } 1151 1152 dsi->dsi_host.ops = &nwl_dsi_host_ops; 1153 dsi->dsi_host.dev = dev; 1154 ret = mipi_dsi_host_register(&dsi->dsi_host); 1155 if (ret) { 1156 DRM_DEV_ERROR(dev, "Failed to register MIPI host: %d\n", ret); 1157 return ret; 1158 } 1159 1160 attr = soc_device_match(nwl_dsi_quirks_match); 1161 if (attr) 1162 dsi->quirks = (uintptr_t)attr->data; 1163 1164 dsi->bridge.driver_private = dsi; 1165 dsi->bridge.funcs = &nwl_dsi_bridge_funcs; 1166 dsi->bridge.of_node = dev->of_node; 1167 dsi->bridge.timings = &nwl_dsi_timings; 1168 1169 dev_set_drvdata(dev, dsi); 1170 pm_runtime_enable(dev); 1171 1172 ret = nwl_dsi_select_input(dsi); 1173 if (ret < 0) { 1174 mipi_dsi_host_unregister(&dsi->dsi_host); 1175 return ret; 1176 } 1177 1178 drm_bridge_add(&dsi->bridge); 1179 return 0; 1180 } 1181 1182 static int nwl_dsi_remove(struct platform_device *pdev) 1183 { 1184 struct nwl_dsi *dsi = platform_get_drvdata(pdev); 1185 1186 nwl_dsi_deselect_input(dsi); 1187 mipi_dsi_host_unregister(&dsi->dsi_host); 1188 drm_bridge_remove(&dsi->bridge); 1189 pm_runtime_disable(&pdev->dev); 1190 return 0; 1191 } 1192 1193 static struct platform_driver nwl_dsi_driver = { 1194 .probe = nwl_dsi_probe, 1195 .remove = nwl_dsi_remove, 1196 .driver = { 1197 .of_match_table = nwl_dsi_dt_ids, 1198 .name = DRV_NAME, 1199 }, 1200 }; 1201 1202 module_platform_driver(nwl_dsi_driver); 1203 1204 MODULE_AUTHOR("NXP Semiconductor"); 1205 MODULE_AUTHOR("Purism SPC"); 1206 MODULE_DESCRIPTION("Northwest Logic MIPI-DSI driver"); 1207 MODULE_LICENSE("GPL"); /* GPLv2 or later */ 1208