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 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257
|
// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (c) 2018, The Linux Foundation. All rights reserved.
* Copyright (c) 2019-2020. Linaro Limited.
*/
#include <linux/gpio/consumer.h>
#include <linux/i2c.h>
#include <linux/interrupt.h>
#include <linux/media-bus-format.h>
#include <linux/module.h>
#include <linux/of_graph.h>
#include <linux/platform_device.h>
#include <linux/regmap.h>
#include <linux/regulator/consumer.h>
#include <sound/hdmi-codec.h>
#include <drm/drm_atomic_helper.h>
#include <drm/drm_bridge.h>
#include <drm/drm_mipi_dsi.h>
#include <drm/drm_print.h>
#include <drm/drm_probe_helper.h>
#define EDID_SEG_SIZE 256
#define EDID_LEN 32
#define EDID_LOOP 8
#define KEY_DDC_ACCS_DONE 0x02
#define DDC_NO_ACK 0x50
#define LT9611_4LANES 0
struct lt9611 {
struct device *dev;
struct drm_bridge bridge;
struct drm_connector connector;
struct regmap *regmap;
struct device_node *dsi0_node;
struct device_node *dsi1_node;
struct mipi_dsi_device *dsi0;
struct mipi_dsi_device *dsi1;
struct platform_device *audio_pdev;
bool ac_mode;
struct gpio_desc *reset_gpio;
struct gpio_desc *enable_gpio;
bool power_on;
bool sleep;
struct regulator_bulk_data supplies[2];
struct i2c_client *client;
enum drm_connector_status status;
u8 edid_buf[EDID_SEG_SIZE];
u32 vic;
};
#define LT9611_PAGE_CONTROL 0xff
static const struct regmap_range_cfg lt9611_ranges[] = {
{
.name = "register_range",
.range_min = 0,
.range_max = 0x85ff,
.selector_reg = LT9611_PAGE_CONTROL,
.selector_mask = 0xff,
.selector_shift = 0,
.window_start = 0,
.window_len = 0x100,
},
};
static const struct regmap_config lt9611_regmap_config = {
.reg_bits = 8,
.val_bits = 8,
.max_register = 0xffff,
.ranges = lt9611_ranges,
.num_ranges = ARRAY_SIZE(lt9611_ranges),
};
struct lt9611_mode {
u16 hdisplay;
u16 vdisplay;
u8 vrefresh;
u8 lanes;
u8 intfs;
};
static struct lt9611_mode lt9611_modes[] = {
{ 3840, 2160, 30, 4, 2 }, /* 3840x2160 24bit 30Hz 4Lane 2ports */
{ 1920, 1080, 60, 4, 1 }, /* 1080P 24bit 60Hz 4lane 1port */
{ 1920, 1080, 30, 3, 1 }, /* 1080P 24bit 30Hz 3lane 1port */
{ 1920, 1080, 24, 3, 1 },
{ 720, 480, 60, 4, 1 },
{ 720, 576, 50, 2, 1 },
{ 640, 480, 60, 2, 1 },
};
static struct lt9611 *bridge_to_lt9611(struct drm_bridge *bridge)
{
return container_of(bridge, struct lt9611, bridge);
}
static struct lt9611 *connector_to_lt9611(struct drm_connector *connector)
{
return container_of(connector, struct lt9611, connector);
}
static int lt9611_mipi_input_analog(struct lt9611 *lt9611)
{
const struct reg_sequence reg_cfg[] = {
{ 0x8106, 0x40 }, /* port A rx current */
{ 0x810a, 0xfe }, /* port A ldo voltage set */
{ 0x810b, 0xbf }, /* enable port A lprx */
{ 0x8111, 0x40 }, /* port B rx current */
{ 0x8115, 0xfe }, /* port B ldo voltage set */
{ 0x8116, 0xbf }, /* enable port B lprx */
{ 0x811c, 0x03 }, /* PortA clk lane no-LP mode */
{ 0x8120, 0x03 }, /* PortB clk lane with-LP mode */
};
return regmap_multi_reg_write(lt9611->regmap, reg_cfg, ARRAY_SIZE(reg_cfg));
}
static int lt9611_mipi_input_digital(struct lt9611 *lt9611,
const struct drm_display_mode *mode)
{
struct reg_sequence reg_cfg[] = {
{ 0x8300, LT9611_4LANES },
{ 0x830a, 0x00 },
{ 0x824f, 0x80 },
{ 0x8250, 0x10 },
{ 0x8302, 0x0a },
{ 0x8306, 0x0a },
};
if (mode->hdisplay == 3840)
reg_cfg[1].def = 0x03;
return regmap_multi_reg_write(lt9611->regmap, reg_cfg, ARRAY_SIZE(reg_cfg));
}
static void lt9611_mipi_video_setup(struct lt9611 *lt9611,
const struct drm_display_mode *mode)
{
u32 h_total, hactive, hsync_len, hfront_porch, hsync_porch;
u32 v_total, vactive, vsync_len, vfront_porch, vsync_porch;
h_total = mode->htotal;
v_total = mode->vtotal;
hactive = mode->hdisplay;
hsync_len = mode->hsync_end - mode->hsync_start;
hfront_porch = mode->hsync_start - mode->hdisplay;
hsync_porch = hsync_len + mode->htotal - mode->hsync_end;
vactive = mode->vdisplay;
vsync_len = mode->vsync_end - mode->vsync_start;
vfront_porch = mode->vsync_start - mode->vdisplay;
vsync_porch = vsync_len + mode->vtotal - mode->vsync_end;
regmap_write(lt9611->regmap, 0x830d, (u8)(v_total / 256));
regmap_write(lt9611->regmap, 0x830e, (u8)(v_total % 256));
regmap_write(lt9611->regmap, 0x830f, (u8)(vactive / 256));
regmap_write(lt9611->regmap, 0x8310, (u8)(vactive % 256));
regmap_write(lt9611->regmap, 0x8311, (u8)(h_total / 256));
regmap_write(lt9611->regmap, 0x8312, (u8)(h_total % 256));
regmap_write(lt9611->regmap, 0x8313, (u8)(hactive / 256));
regmap_write(lt9611->regmap, 0x8314, (u8)(hactive % 256));
regmap_write(lt9611->regmap, 0x8315, (u8)(vsync_len % 256));
regmap_write(lt9611->regmap, 0x8316, (u8)(hsync_len % 256));
regmap_write(lt9611->regmap, 0x8317, (u8)(vfront_porch % 256));
regmap_write(lt9611->regmap, 0x8318, (u8)(vsync_porch % 256));
regmap_write(lt9611->regmap, 0x8319, (u8)(hfront_porch % 256));
regmap_write(lt9611->regmap, 0x831a, (u8)(hsync_porch / 256));
regmap_write(lt9611->regmap, 0x831b, (u8)(hsync_porch % 256));
}
static void lt9611_pcr_setup(struct lt9611 *lt9611, const struct drm_display_mode *mode)
{
const struct reg_sequence reg_cfg[] = {
{ 0x830b, 0x01 },
{ 0x830c, 0x10 },
{ 0x8348, 0x00 },
{ 0x8349, 0x81 },
/* stage 1 */
{ 0x8321, 0x4a },
{ 0x8324, 0x71 },
{ 0x8325, 0x30 },
{ 0x832a, 0x01 },
/* stage 2 */
{ 0x834a, 0x40 },
{ 0x831d, 0x10 },
/* MK limit */
{ 0x832d, 0x38 },
{ 0x8331, 0x08 },
};
const struct reg_sequence reg_cfg2[] = {
{ 0x830b, 0x03 },
{ 0x830c, 0xd0 },
{ 0x8348, 0x03 },
{ 0x8349, 0xe0 },
{ 0x8324, 0x72 },
{ 0x8325, 0x00 },
{ 0x832a, 0x01 },
{ 0x834a, 0x10 },
{ 0x831d, 0x10 },
{ 0x8326, 0x37 },
};
regmap_multi_reg_write(lt9611->regmap, reg_cfg, ARRAY_SIZE(reg_cfg));
switch (mode->hdisplay) {
case 640:
regmap_write(lt9611->regmap, 0x8326, 0x14);
break;
case 1920:
regmap_write(lt9611->regmap, 0x8326, 0x37);
break;
case 3840:
regmap_multi_reg_write(lt9611->regmap, reg_cfg2, ARRAY_SIZE(reg_cfg2));
break;
}
/* pcr rst */
regmap_write(lt9611->regmap, 0x8011, 0x5a);
regmap_write(lt9611->regmap, 0x8011, 0xfa);
}
static int lt9611_pll_setup(struct lt9611 *lt9611, const struct drm_display_mode *mode)
{
unsigned int pclk = mode->clock;
const struct reg_sequence reg_cfg[] = {
/* txpll init */
{ 0x8123, 0x40 },
{ 0x8124, 0x64 },
{ 0x8125, 0x80 },
{ 0x8126, 0x55 },
{ 0x812c, 0x37 },
{ 0x812f, 0x01 },
{ 0x8126, 0x55 },
{ 0x8127, 0x66 },
{ 0x8128, 0x88 },
};
regmap_multi_reg_write(lt9611->regmap, reg_cfg, ARRAY_SIZE(reg_cfg));
if (pclk > 150000)
regmap_write(lt9611->regmap, 0x812d, 0x88);
else if (pclk > 70000)
regmap_write(lt9611->regmap, 0x812d, 0x99);
else
regmap_write(lt9611->regmap, 0x812d, 0xaa);
/*
* first divide pclk by 2 first
* - write divide by 64k to 19:16 bits which means shift by 17
* - write divide by 256 to 15:8 bits which means shift by 9
* - write remainder to 7:0 bits, which means shift by 1
*/
regmap_write(lt9611->regmap, 0x82e3, pclk >> 17); /* pclk[19:16] */
regmap_write(lt9611->regmap, 0x82e4, pclk >> 9); /* pclk[15:8] */
regmap_write(lt9611->regmap, 0x82e5, pclk >> 1); /* pclk[7:0] */
regmap_write(lt9611->regmap, 0x82de, 0x20);
regmap_write(lt9611->regmap, 0x82de, 0xe0);
regmap_write(lt9611->regmap, 0x8016, 0xf1);
regmap_write(lt9611->regmap, 0x8016, 0xf3);
return 0;
}
static int lt9611_read_video_check(struct lt9611 *lt9611, unsigned int reg)
{
unsigned int temp, temp2;
int ret;
ret = regmap_read(lt9611->regmap, reg, &temp);
if (ret)
return ret;
temp <<= 8;
ret = regmap_read(lt9611->regmap, reg + 1, &temp2);
if (ret)
return ret;
return (temp + temp2);
}
static int lt9611_video_check(struct lt9611 *lt9611)
{
u32 v_total, vactive, hactive_a, hactive_b, h_total_sysclk;
int temp;
/* top module video check */
/* vactive */
temp = lt9611_read_video_check(lt9611, 0x8282);
if (temp < 0)
goto end;
vactive = temp;
/* v_total */
temp = lt9611_read_video_check(lt9611, 0x826c);
if (temp < 0)
goto end;
v_total = temp;
/* h_total_sysclk */
temp = lt9611_read_video_check(lt9611, 0x8286);
if (temp < 0)
goto end;
h_total_sysclk = temp;
/* hactive_a */
temp = lt9611_read_video_check(lt9611, 0x8382);
if (temp < 0)
goto end;
hactive_a = temp / 3;
/* hactive_b */
temp = lt9611_read_video_check(lt9611, 0x8386);
if (temp < 0)
goto end;
hactive_b = temp / 3;
dev_info(lt9611->dev,
"video check: hactive_a=%d, hactive_b=%d, vactive=%d, v_total=%d, h_total_sysclk=%d\n",
hactive_a, hactive_b, vactive, v_total, h_total_sysclk);
return 0;
end:
dev_err(lt9611->dev, "read video check error\n");
return temp;
}
static void lt9611_hdmi_tx_digital(struct lt9611 *lt9611)
{
regmap_write(lt9611->regmap, 0x8443, 0x46 - lt9611->vic);
regmap_write(lt9611->regmap, 0x8447, lt9611->vic);
regmap_write(lt9611->regmap, 0x843d, 0x0a); /* UD1 infoframe */
regmap_write(lt9611->regmap, 0x82d6, 0x8c);
regmap_write(lt9611->regmap, 0x82d7, 0x04);
}
static void lt9611_hdmi_tx_phy(struct lt9611 *lt9611)
{
struct reg_sequence reg_cfg[] = {
{ 0x8130, 0x6a },
{ 0x8131, 0x44 }, /* HDMI DC mode */
{ 0x8132, 0x4a },
{ 0x8133, 0x0b },
{ 0x8134, 0x00 },
{ 0x8135, 0x00 },
{ 0x8136, 0x00 },
{ 0x8137, 0x44 },
{ 0x813f, 0x0f },
{ 0x8140, 0xa0 },
{ 0x8141, 0xa0 },
{ 0x8142, 0xa0 },
{ 0x8143, 0xa0 },
{ 0x8144, 0x0a },
};
/* HDMI AC mode */
if (lt9611->ac_mode)
reg_cfg[2].def = 0x73;
regmap_multi_reg_write(lt9611->regmap, reg_cfg, ARRAY_SIZE(reg_cfg));
}
static irqreturn_t lt9611_irq_thread_handler(int irq, void *dev_id)
{
struct lt9611 *lt9611 = dev_id;
unsigned int irq_flag0 = 0;
unsigned int irq_flag3 = 0;
regmap_read(lt9611->regmap, 0x820f, &irq_flag3);
regmap_read(lt9611->regmap, 0x820c, &irq_flag0);
/* hpd changed low */
if (irq_flag3 & 0x80) {
dev_info(lt9611->dev, "hdmi cable disconnected\n");
regmap_write(lt9611->regmap, 0x8207, 0xbf);
regmap_write(lt9611->regmap, 0x8207, 0x3f);
}
/* hpd changed high */
if (irq_flag3 & 0x40) {
dev_info(lt9611->dev, "hdmi cable connected\n");
regmap_write(lt9611->regmap, 0x8207, 0x7f);
regmap_write(lt9611->regmap, 0x8207, 0x3f);
}
if (irq_flag3 & 0xc0 && lt9611->bridge.dev)
drm_kms_helper_hotplug_event(lt9611->bridge.dev);
/* video input changed */
if (irq_flag0 & 0x01) {
dev_info(lt9611->dev, "video input changed\n");
regmap_write(lt9611->regmap, 0x829e, 0xff);
regmap_write(lt9611->regmap, 0x829e, 0xf7);
regmap_write(lt9611->regmap, 0x8204, 0xff);
regmap_write(lt9611->regmap, 0x8204, 0xfe);
}
return IRQ_HANDLED;
}
static void lt9611_enable_hpd_interrupts(struct lt9611 *lt9611)
{
unsigned int val;
regmap_read(lt9611->regmap, 0x8203, &val);
val &= ~0xc0;
regmap_write(lt9611->regmap, 0x8203, val);
regmap_write(lt9611->regmap, 0x8207, 0xff); /* clear */
regmap_write(lt9611->regmap, 0x8207, 0x3f);
}
static void lt9611_sleep_setup(struct lt9611 *lt9611)
{
const struct reg_sequence sleep_setup[] = {
{ 0x8024, 0x76 },
{ 0x8023, 0x01 },
{ 0x8157, 0x03 }, /* set addr pin as output */
{ 0x8149, 0x0b },
{ 0x8151, 0x30 }, /* disable IRQ */
{ 0x8102, 0x48 }, /* MIPI Rx power down */
{ 0x8123, 0x80 },
{ 0x8130, 0x00 },
{ 0x8100, 0x01 }, /* bandgap power down */
{ 0x8101, 0x00 }, /* system clk power down */
};
regmap_multi_reg_write(lt9611->regmap,
sleep_setup, ARRAY_SIZE(sleep_setup));
lt9611->sleep = true;
}
static int lt9611_power_on(struct lt9611 *lt9611)
{
int ret;
const struct reg_sequence seq[] = {
/* LT9611_System_Init */
{ 0x8101, 0x18 }, /* sel xtal clock */
/* timer for frequency meter */
{ 0x821b, 0x69 }, /* timer 2 */
{ 0x821c, 0x78 },
{ 0x82cb, 0x69 }, /* timer 1 */
{ 0x82cc, 0x78 },
/* irq init */
{ 0x8251, 0x01 },
{ 0x8258, 0x0a }, /* hpd irq */
{ 0x8259, 0x80 }, /* hpd debounce width */
{ 0x829e, 0xf7 }, /* video check irq */
/* power consumption for work */
{ 0x8004, 0xf0 },
{ 0x8006, 0xf0 },
{ 0x800a, 0x80 },
{ 0x800b, 0x40 },
{ 0x800d, 0xef },
{ 0x8011, 0xfa },
};
if (lt9611->power_on)
return 0;
ret = regmap_multi_reg_write(lt9611->regmap, seq, ARRAY_SIZE(seq));
if (!ret)
lt9611->power_on = true;
return ret;
}
static int lt9611_power_off(struct lt9611 *lt9611)
{
int ret;
ret = regmap_write(lt9611->regmap, 0x8130, 0x6a);
if (!ret)
lt9611->power_on = false;
return ret;
}
static void lt9611_reset(struct lt9611 *lt9611)
{
gpiod_set_value_cansleep(lt9611->reset_gpio, 1);
msleep(20);
gpiod_set_value_cansleep(lt9611->reset_gpio, 0);
msleep(20);
gpiod_set_value_cansleep(lt9611->reset_gpio, 1);
msleep(100);
}
static void lt9611_assert_5v(struct lt9611 *lt9611)
{
if (!lt9611->enable_gpio)
return;
gpiod_set_value_cansleep(lt9611->enable_gpio, 1);
msleep(20);
}
static int lt9611_regulator_init(struct lt9611 *lt9611)
{
int ret;
lt9611->supplies[0].supply = "vdd";
lt9611->supplies[1].supply = "vcc";
ret = devm_regulator_bulk_get(lt9611->dev, 2, lt9611->supplies);
if (ret < 0)
return ret;
return regulator_set_load(lt9611->supplies[0].consumer, 300000);
}
static int lt9611_regulator_enable(struct lt9611 *lt9611)
{
int ret;
ret = regulator_enable(lt9611->supplies[0].consumer);
if (ret < 0)
return ret;
usleep_range(1000, 10000);
ret = regulator_enable(lt9611->supplies[1].consumer);
if (ret < 0) {
regulator_disable(lt9611->supplies[0].consumer);
return ret;
}
return 0;
}
static struct lt9611_mode *lt9611_find_mode(const struct drm_display_mode *mode)
{
int i;
for (i = 0; i < ARRAY_SIZE(lt9611_modes); i++) {
if (lt9611_modes[i].hdisplay == mode->hdisplay &&
lt9611_modes[i].vdisplay == mode->vdisplay &&
lt9611_modes[i].vrefresh == drm_mode_vrefresh(mode)) {
return <9611_modes[i];
}
}
return NULL;
}
/* connector funcs */
static enum drm_connector_status __lt9611_detect(struct lt9611 *lt9611)
{
unsigned int reg_val = 0;
int connected = 0;
regmap_read(lt9611->regmap, 0x825e, ®_val);
connected = (reg_val & (BIT(2) | BIT(0)));
lt9611->status = connected ? connector_status_connected :
connector_status_disconnected;
return lt9611->status;
}
static enum drm_connector_status
lt9611_connector_detect(struct drm_connector *connector, bool force)
{
return __lt9611_detect(connector_to_lt9611(connector));
}
static int lt9611_read_edid(struct lt9611 *lt9611)
{
unsigned int temp;
int ret = 0;
int i, j;
/* memset to clear old buffer, if any */
memset(lt9611->edid_buf, 0, sizeof(lt9611->edid_buf));
regmap_write(lt9611->regmap, 0x8503, 0xc9);
/* 0xA0 is EDID device address */
regmap_write(lt9611->regmap, 0x8504, 0xa0);
/* 0x00 is EDID offset address */
regmap_write(lt9611->regmap, 0x8505, 0x00);
/* length for read */
regmap_write(lt9611->regmap, 0x8506, EDID_LEN);
regmap_write(lt9611->regmap, 0x8514, 0x7f);
for (i = 0; i < EDID_LOOP; i++) {
/* offset address */
regmap_write(lt9611->regmap, 0x8505, i * EDID_LEN);
regmap_write(lt9611->regmap, 0x8507, 0x36);
regmap_write(lt9611->regmap, 0x8507, 0x31);
regmap_write(lt9611->regmap, 0x8507, 0x37);
usleep_range(5000, 10000);
regmap_read(lt9611->regmap, 0x8540, &temp);
if (temp & KEY_DDC_ACCS_DONE) {
for (j = 0; j < EDID_LEN; j++) {
regmap_read(lt9611->regmap, 0x8583, &temp);
lt9611->edid_buf[i * EDID_LEN + j] = temp;
}
} else if (temp & DDC_NO_ACK) { /* DDC No Ack or Abitration lost */
dev_err(lt9611->dev, "read edid failed: no ack\n");
ret = -EIO;
goto end;
} else {
dev_err(lt9611->dev, "read edid failed: access not done\n");
ret = -EIO;
goto end;
}
}
end:
regmap_write(lt9611->regmap, 0x8507, 0x1f);
return ret;
}
static int
lt9611_get_edid_block(void *data, u8 *buf, unsigned int block, size_t len)
{
struct lt9611 *lt9611 = data;
int ret;
if (len > 128)
return -EINVAL;
/* supports up to 1 extension block */
/* TODO: add support for more extension blocks */
if (block > 1)
return -EINVAL;
if (block == 0) {
ret = lt9611_read_edid(lt9611);
if (ret) {
dev_err(lt9611->dev, "edid read failed\n");
return ret;
}
}
block %= 2;
memcpy(buf, lt9611->edid_buf + (block * 128), len);
return 0;
}
static int lt9611_connector_get_modes(struct drm_connector *connector)
{
struct lt9611 *lt9611 = connector_to_lt9611(connector);
unsigned int count;
struct edid *edid;
lt9611_power_on(lt9611);
edid = drm_do_get_edid(connector, lt9611_get_edid_block, lt9611);
drm_connector_update_edid_property(connector, edid);
count = drm_add_edid_modes(connector, edid);
kfree(edid);
return count;
}
static enum drm_mode_status
lt9611_connector_mode_valid(struct drm_connector *connector,
struct drm_display_mode *mode)
{
struct lt9611_mode *lt9611_mode = lt9611_find_mode(mode);
return lt9611_mode ? MODE_OK : MODE_BAD;
}
/* bridge funcs */
static void
lt9611_bridge_atomic_enable(struct drm_bridge *bridge,
struct drm_bridge_state *old_bridge_state)
{
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
if (lt9611_power_on(lt9611)) {
dev_err(lt9611->dev, "power on failed\n");
return;
}
lt9611_mipi_input_analog(lt9611);
lt9611_hdmi_tx_digital(lt9611);
lt9611_hdmi_tx_phy(lt9611);
msleep(500);
lt9611_video_check(lt9611);
/* Enable HDMI output */
regmap_write(lt9611->regmap, 0x8130, 0xea);
}
static void
lt9611_bridge_atomic_disable(struct drm_bridge *bridge,
struct drm_bridge_state *old_bridge_state)
{
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
int ret;
/* Disable HDMI output */
ret = regmap_write(lt9611->regmap, 0x8130, 0x6a);
if (ret) {
dev_err(lt9611->dev, "video on failed\n");
return;
}
if (lt9611_power_off(lt9611)) {
dev_err(lt9611->dev, "power on failed\n");
return;
}
}
static struct
drm_connector_helper_funcs lt9611_bridge_connector_helper_funcs = {
.get_modes = lt9611_connector_get_modes,
.mode_valid = lt9611_connector_mode_valid,
};
static const struct drm_connector_funcs lt9611_bridge_connector_funcs = {
.fill_modes = drm_helper_probe_single_connector_modes,
.detect = lt9611_connector_detect,
.destroy = drm_connector_cleanup,
.reset = drm_atomic_helper_connector_reset,
.atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
.atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
};
static struct mipi_dsi_device *lt9611_attach_dsi(struct lt9611 *lt9611,
struct device_node *dsi_node)
{
const struct mipi_dsi_device_info info = { "lt9611", 0, NULL };
struct mipi_dsi_device *dsi;
struct mipi_dsi_host *host;
struct device *dev = lt9611->dev;
int ret;
host = of_find_mipi_dsi_host_by_node(dsi_node);
if (!host) {
dev_err(lt9611->dev, "failed to find dsi host\n");
return ERR_PTR(-EPROBE_DEFER);
}
dsi = devm_mipi_dsi_device_register_full(dev, host, &info);
if (IS_ERR(dsi)) {
dev_err(lt9611->dev, "failed to create dsi device\n");
return dsi;
}
dsi->lanes = 4;
dsi->format = MIPI_DSI_FMT_RGB888;
dsi->mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_SYNC_PULSE |
MIPI_DSI_MODE_VIDEO_HSE;
ret = devm_mipi_dsi_attach(dev, dsi);
if (ret < 0) {
dev_err(dev, "failed to attach dsi to host\n");
return ERR_PTR(ret);
}
return dsi;
}
static int lt9611_connector_init(struct drm_bridge *bridge, struct lt9611 *lt9611)
{
int ret;
ret = drm_connector_init(bridge->dev, <9611->connector,
<9611_bridge_connector_funcs,
DRM_MODE_CONNECTOR_HDMIA);
if (ret) {
DRM_ERROR("Failed to initialize connector with drm\n");
return ret;
}
drm_connector_helper_add(<9611->connector,
<9611_bridge_connector_helper_funcs);
if (!bridge->encoder) {
DRM_ERROR("Parent encoder object not found");
return -ENODEV;
}
drm_connector_attach_encoder(<9611->connector, bridge->encoder);
return 0;
}
static int lt9611_bridge_attach(struct drm_bridge *bridge,
enum drm_bridge_attach_flags flags)
{
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
int ret;
if (!(flags & DRM_BRIDGE_ATTACH_NO_CONNECTOR)) {
ret = lt9611_connector_init(bridge, lt9611);
if (ret < 0)
return ret;
}
return 0;
}
static enum drm_mode_status lt9611_bridge_mode_valid(struct drm_bridge *bridge,
const struct drm_display_info *info,
const struct drm_display_mode *mode)
{
struct lt9611_mode *lt9611_mode = lt9611_find_mode(mode);
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
if (!lt9611_mode)
return MODE_BAD;
else if (lt9611_mode->intfs > 1 && !lt9611->dsi1)
return MODE_PANEL;
else
return MODE_OK;
}
static void lt9611_bridge_pre_enable(struct drm_bridge *bridge)
{
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
if (!lt9611->sleep)
return;
lt9611_reset(lt9611);
regmap_write(lt9611->regmap, 0x80ee, 0x01);
lt9611->sleep = false;
}
static void
lt9611_bridge_atomic_post_disable(struct drm_bridge *bridge,
struct drm_bridge_state *old_bridge_state)
{
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
lt9611_sleep_setup(lt9611);
}
static void lt9611_bridge_mode_set(struct drm_bridge *bridge,
const struct drm_display_mode *mode,
const struct drm_display_mode *adj_mode)
{
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
struct hdmi_avi_infoframe avi_frame;
int ret;
lt9611_bridge_pre_enable(bridge);
lt9611_mipi_input_digital(lt9611, mode);
lt9611_pll_setup(lt9611, mode);
lt9611_mipi_video_setup(lt9611, mode);
lt9611_pcr_setup(lt9611, mode);
ret = drm_hdmi_avi_infoframe_from_display_mode(&avi_frame,
<9611->connector,
mode);
if (!ret)
lt9611->vic = avi_frame.video_code;
}
static enum drm_connector_status lt9611_bridge_detect(struct drm_bridge *bridge)
{
return __lt9611_detect(bridge_to_lt9611(bridge));
}
static struct edid *lt9611_bridge_get_edid(struct drm_bridge *bridge,
struct drm_connector *connector)
{
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
lt9611_power_on(lt9611);
return drm_do_get_edid(connector, lt9611_get_edid_block, lt9611);
}
static void lt9611_bridge_hpd_enable(struct drm_bridge *bridge)
{
struct lt9611 *lt9611 = bridge_to_lt9611(bridge);
lt9611_enable_hpd_interrupts(lt9611);
}
#define MAX_INPUT_SEL_FORMATS 1
static u32 *
lt9611_atomic_get_input_bus_fmts(struct drm_bridge *bridge,
struct drm_bridge_state *bridge_state,
struct drm_crtc_state *crtc_state,
struct drm_connector_state *conn_state,
u32 output_fmt,
unsigned int *num_input_fmts)
{
u32 *input_fmts;
*num_input_fmts = 0;
input_fmts = kcalloc(MAX_INPUT_SEL_FORMATS, sizeof(*input_fmts),
GFP_KERNEL);
if (!input_fmts)
return NULL;
/* This is the DSI-end bus format */
input_fmts[0] = MEDIA_BUS_FMT_RGB888_1X24;
*num_input_fmts = 1;
return input_fmts;
}
static const struct drm_bridge_funcs lt9611_bridge_funcs = {
.attach = lt9611_bridge_attach,
.mode_valid = lt9611_bridge_mode_valid,
.mode_set = lt9611_bridge_mode_set,
.detect = lt9611_bridge_detect,
.get_edid = lt9611_bridge_get_edid,
.hpd_enable = lt9611_bridge_hpd_enable,
.atomic_enable = lt9611_bridge_atomic_enable,
.atomic_disable = lt9611_bridge_atomic_disable,
.atomic_post_disable = lt9611_bridge_atomic_post_disable,
.atomic_duplicate_state = drm_atomic_helper_bridge_duplicate_state,
.atomic_destroy_state = drm_atomic_helper_bridge_destroy_state,
.atomic_reset = drm_atomic_helper_bridge_reset,
.atomic_get_input_bus_fmts = lt9611_atomic_get_input_bus_fmts,
};
static int lt9611_parse_dt(struct device *dev,
struct lt9611 *lt9611)
{
lt9611->dsi0_node = of_graph_get_remote_node(dev->of_node, 0, -1);
if (!lt9611->dsi0_node) {
dev_err(lt9611->dev, "failed to get remote node for primary dsi\n");
return -ENODEV;
}
lt9611->dsi1_node = of_graph_get_remote_node(dev->of_node, 1, -1);
lt9611->ac_mode = of_property_read_bool(dev->of_node, "lt,ac-mode");
return 0;
}
static int lt9611_gpio_init(struct lt9611 *lt9611)
{
struct device *dev = lt9611->dev;
lt9611->reset_gpio = devm_gpiod_get(dev, "reset", GPIOD_OUT_HIGH);
if (IS_ERR(lt9611->reset_gpio)) {
dev_err(dev, "failed to acquire reset gpio\n");
return PTR_ERR(lt9611->reset_gpio);
}
lt9611->enable_gpio = devm_gpiod_get_optional(dev, "enable",
GPIOD_OUT_LOW);
if (IS_ERR(lt9611->enable_gpio)) {
dev_err(dev, "failed to acquire enable gpio\n");
return PTR_ERR(lt9611->enable_gpio);
}
return 0;
}
static int lt9611_read_device_rev(struct lt9611 *lt9611)
{
unsigned int rev;
int ret;
regmap_write(lt9611->regmap, 0x80ee, 0x01);
ret = regmap_read(lt9611->regmap, 0x8002, &rev);
if (ret)
dev_err(lt9611->dev, "failed to read revision: %d\n", ret);
else
dev_info(lt9611->dev, "LT9611 revision: 0x%x\n", rev);
return ret;
}
static int lt9611_hdmi_hw_params(struct device *dev, void *data,
struct hdmi_codec_daifmt *fmt,
struct hdmi_codec_params *hparms)
{
struct lt9611 *lt9611 = data;
if (hparms->sample_rate == 48000)
regmap_write(lt9611->regmap, 0x840f, 0x2b);
else if (hparms->sample_rate == 96000)
regmap_write(lt9611->regmap, 0x840f, 0xab);
else
return -EINVAL;
regmap_write(lt9611->regmap, 0x8435, 0x00);
regmap_write(lt9611->regmap, 0x8436, 0x18);
regmap_write(lt9611->regmap, 0x8437, 0x00);
return 0;
}
static int lt9611_audio_startup(struct device *dev, void *data)
{
struct lt9611 *lt9611 = data;
regmap_write(lt9611->regmap, 0x82d6, 0x8c);
regmap_write(lt9611->regmap, 0x82d7, 0x04);
regmap_write(lt9611->regmap, 0x8406, 0x08);
regmap_write(lt9611->regmap, 0x8407, 0x10);
regmap_write(lt9611->regmap, 0x8434, 0xd5);
return 0;
}
static void lt9611_audio_shutdown(struct device *dev, void *data)
{
struct lt9611 *lt9611 = data;
regmap_write(lt9611->regmap, 0x8406, 0x00);
regmap_write(lt9611->regmap, 0x8407, 0x00);
}
static int lt9611_hdmi_i2s_get_dai_id(struct snd_soc_component *component,
struct device_node *endpoint)
{
struct of_endpoint of_ep;
int ret;
ret = of_graph_parse_endpoint(endpoint, &of_ep);
if (ret < 0)
return ret;
/*
* HDMI sound should be located as reg = <2>
* Then, it is sound port 0
*/
if (of_ep.port == 2)
return 0;
return -EINVAL;
}
static const struct hdmi_codec_ops lt9611_codec_ops = {
.hw_params = lt9611_hdmi_hw_params,
.audio_shutdown = lt9611_audio_shutdown,
.audio_startup = lt9611_audio_startup,
.get_dai_id = lt9611_hdmi_i2s_get_dai_id,
};
static struct hdmi_codec_pdata codec_data = {
.ops = <9611_codec_ops,
.max_i2s_channels = 8,
.i2s = 1,
};
static int lt9611_audio_init(struct device *dev, struct lt9611 *lt9611)
{
codec_data.data = lt9611;
lt9611->audio_pdev =
platform_device_register_data(dev, HDMI_CODEC_DRV_NAME,
PLATFORM_DEVID_AUTO,
&codec_data, sizeof(codec_data));
return PTR_ERR_OR_ZERO(lt9611->audio_pdev);
}
static void lt9611_audio_exit(struct lt9611 *lt9611)
{
if (lt9611->audio_pdev) {
platform_device_unregister(lt9611->audio_pdev);
lt9611->audio_pdev = NULL;
}
}
static int lt9611_probe(struct i2c_client *client,
const struct i2c_device_id *id)
{
struct lt9611 *lt9611;
struct device *dev = &client->dev;
int ret;
if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
dev_err(dev, "device doesn't support I2C\n");
return -ENODEV;
}
lt9611 = devm_kzalloc(dev, sizeof(*lt9611), GFP_KERNEL);
if (!lt9611)
return -ENOMEM;
lt9611->dev = dev;
lt9611->client = client;
lt9611->sleep = false;
lt9611->regmap = devm_regmap_init_i2c(client, <9611_regmap_config);
if (IS_ERR(lt9611->regmap)) {
dev_err(lt9611->dev, "regmap i2c init failed\n");
return PTR_ERR(lt9611->regmap);
}
ret = lt9611_parse_dt(dev, lt9611);
if (ret) {
dev_err(dev, "failed to parse device tree\n");
return ret;
}
ret = lt9611_gpio_init(lt9611);
if (ret < 0)
goto err_of_put;
ret = lt9611_regulator_init(lt9611);
if (ret < 0)
goto err_of_put;
lt9611_assert_5v(lt9611);
ret = lt9611_regulator_enable(lt9611);
if (ret)
goto err_of_put;
lt9611_reset(lt9611);
ret = lt9611_read_device_rev(lt9611);
if (ret) {
dev_err(dev, "failed to read chip rev\n");
goto err_disable_regulators;
}
ret = devm_request_threaded_irq(dev, client->irq, NULL,
lt9611_irq_thread_handler,
IRQF_ONESHOT, "lt9611", lt9611);
if (ret) {
dev_err(dev, "failed to request irq\n");
goto err_disable_regulators;
}
i2c_set_clientdata(client, lt9611);
lt9611->bridge.funcs = <9611_bridge_funcs;
lt9611->bridge.of_node = client->dev.of_node;
lt9611->bridge.ops = DRM_BRIDGE_OP_DETECT | DRM_BRIDGE_OP_EDID |
DRM_BRIDGE_OP_HPD | DRM_BRIDGE_OP_MODES;
lt9611->bridge.type = DRM_MODE_CONNECTOR_HDMIA;
drm_bridge_add(<9611->bridge);
/* Attach primary DSI */
lt9611->dsi0 = lt9611_attach_dsi(lt9611, lt9611->dsi0_node);
if (IS_ERR(lt9611->dsi0)) {
ret = PTR_ERR(lt9611->dsi0);
goto err_remove_bridge;
}
/* Attach secondary DSI, if specified */
if (lt9611->dsi1_node) {
lt9611->dsi1 = lt9611_attach_dsi(lt9611, lt9611->dsi1_node);
if (IS_ERR(lt9611->dsi1)) {
ret = PTR_ERR(lt9611->dsi1);
goto err_remove_bridge;
}
}
lt9611_enable_hpd_interrupts(lt9611);
ret = lt9611_audio_init(dev, lt9611);
if (ret)
goto err_remove_bridge;
return 0;
err_remove_bridge:
drm_bridge_remove(<9611->bridge);
err_disable_regulators:
regulator_bulk_disable(ARRAY_SIZE(lt9611->supplies), lt9611->supplies);
err_of_put:
of_node_put(lt9611->dsi1_node);
of_node_put(lt9611->dsi0_node);
return ret;
}
static void lt9611_remove(struct i2c_client *client)
{
struct lt9611 *lt9611 = i2c_get_clientdata(client);
disable_irq(client->irq);
lt9611_audio_exit(lt9611);
drm_bridge_remove(<9611->bridge);
regulator_bulk_disable(ARRAY_SIZE(lt9611->supplies), lt9611->supplies);
of_node_put(lt9611->dsi1_node);
of_node_put(lt9611->dsi0_node);
}
static struct i2c_device_id lt9611_id[] = {
{ "lontium,lt9611", 0 },
{}
};
MODULE_DEVICE_TABLE(i2c, lt9611_id);
static const struct of_device_id lt9611_match_table[] = {
{ .compatible = "lontium,lt9611" },
{ }
};
MODULE_DEVICE_TABLE(of, lt9611_match_table);
static struct i2c_driver lt9611_driver = {
.driver = {
.name = "lt9611",
.of_match_table = lt9611_match_table,
},
.probe = lt9611_probe,
.remove = lt9611_remove,
.id_table = lt9611_id,
};
module_i2c_driver(lt9611_driver);
MODULE_LICENSE("GPL v2");
|