1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) 2013 NVIDIA Corporation
7 #include <linux/clk-provider.h>
8 #include <linux/debugfs.h>
10 #include <linux/module.h>
11 #include <linux/of_device.h>
12 #include <linux/platform_device.h>
13 #include <linux/pm_runtime.h>
14 #include <linux/regulator/consumer.h>
15 #include <linux/reset.h>
17 #include <soc/tegra/pmc.h>
19 #include <drm/display/drm_dp_helper.h>
20 #include <drm/display/drm_scdc_helper.h>
21 #include <drm/drm_atomic_helper.h>
22 #include <drm/drm_debugfs.h>
23 #include <drm/drm_file.h>
24 #include <drm/drm_panel.h>
25 #include <drm/drm_simple_kms_helper.h>
34 #define SOR_REKEY 0x38
36 struct tegra_sor_hdmi_settings {
37 unsigned long frequency;
56 static const struct tegra_sor_hdmi_settings tegra210_sor_hdmi_defaults[] = {
58 .frequency = 54000000,
70 .drive_current = { 0x33, 0x3a, 0x3a, 0x3a },
71 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
73 .frequency = 75000000,
85 .drive_current = { 0x33, 0x3a, 0x3a, 0x3a },
86 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
88 .frequency = 150000000,
100 .drive_current = { 0x33, 0x3a, 0x3a, 0x3a },
101 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
103 .frequency = 300000000,
111 .bg_vref_level = 0xa,
115 .drive_current = { 0x33, 0x3f, 0x3f, 0x3f },
116 .preemphasis = { 0x00, 0x17, 0x17, 0x17 },
118 .frequency = 600000000,
126 .bg_vref_level = 0x8,
130 .drive_current = { 0x33, 0x3f, 0x3f, 0x3f },
131 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
135 static const struct tegra_sor_hdmi_settings tegra210_sor_hdmi_defaults[] = {
137 .frequency = 75000000,
145 .bg_vref_level = 0x8,
149 .drive_current = { 0x29, 0x29, 0x29, 0x29 },
150 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
152 .frequency = 150000000,
160 .bg_vref_level = 0x8,
164 .drive_current = { 0x30, 0x37, 0x37, 0x37 },
165 .preemphasis = { 0x01, 0x02, 0x02, 0x02 },
167 .frequency = 300000000,
175 .bg_vref_level = 0xf,
179 .drive_current = { 0x30, 0x37, 0x37, 0x37 },
180 .preemphasis = { 0x10, 0x3e, 0x3e, 0x3e },
182 .frequency = 600000000,
190 .bg_vref_level = 0xe,
194 .drive_current = { 0x35, 0x3e, 0x3e, 0x3e },
195 .preemphasis = { 0x02, 0x3f, 0x3f, 0x3f },
200 static const struct tegra_sor_hdmi_settings tegra186_sor_hdmi_defaults[] = {
202 .frequency = 54000000,
214 .drive_current = { 0x3a, 0x3a, 0x3a, 0x33 },
215 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
217 .frequency = 75000000,
229 .drive_current = { 0x3a, 0x3a, 0x3a, 0x33 },
230 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
232 .frequency = 150000000,
238 .tx_pu_value = 0x66 /* 0 */,
243 .sparepll = 0x00, /* 0x34 */
244 .drive_current = { 0x3a, 0x3a, 0x3a, 0x37 },
245 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
247 .frequency = 300000000,
259 .drive_current = { 0x3d, 0x3d, 0x3d, 0x33 },
260 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
262 .frequency = 600000000,
274 .drive_current = { 0x3d, 0x3d, 0x3d, 0x33 },
275 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
279 static const struct tegra_sor_hdmi_settings tegra194_sor_hdmi_defaults[] = {
281 .frequency = 54000000,
293 .drive_current = { 0x3a, 0x3a, 0x3a, 0x33 },
294 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
296 .frequency = 75000000,
308 .drive_current = { 0x3a, 0x3a, 0x3a, 0x33 },
309 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
311 .frequency = 150000000,
317 .tx_pu_value = 0x66 /* 0 */,
322 .sparepll = 0x00, /* 0x34 */
323 .drive_current = { 0x3a, 0x3a, 0x3a, 0x37 },
324 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
326 .frequency = 300000000,
338 .drive_current = { 0x3d, 0x3d, 0x3d, 0x33 },
339 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
341 .frequency = 600000000,
353 .drive_current = { 0x3d, 0x3d, 0x3d, 0x33 },
354 .preemphasis = { 0x00, 0x00, 0x00, 0x00 },
358 struct tegra_sor_regs {
359 unsigned int head_state0;
360 unsigned int head_state1;
361 unsigned int head_state2;
362 unsigned int head_state3;
363 unsigned int head_state4;
364 unsigned int head_state5;
369 unsigned int dp_padctl0;
370 unsigned int dp_padctl2;
373 struct tegra_sor_soc {
380 const struct tegra_sor_regs *regs;
383 const struct tegra_sor_hdmi_settings *settings;
384 unsigned int num_settings;
389 const u8 (*voltage_swing)[4][4];
390 const u8 (*pre_emphasis)[4][4];
391 const u8 (*post_cursor)[4][4];
392 const u8 (*tx_pu)[4][4];
397 struct tegra_sor_ops {
399 int (*probe)(struct tegra_sor *sor);
400 void (*audio_enable)(struct tegra_sor *sor);
401 void (*audio_disable)(struct tegra_sor *sor);
405 struct host1x_client client;
406 struct tegra_output output;
409 const struct tegra_sor_soc *soc;
414 struct reset_control *rst;
415 struct clk *clk_parent;
416 struct clk *clk_safe;
424 struct drm_dp_link link;
425 struct drm_dp_aux *aux;
427 struct drm_info_list *debugfs_files;
429 const struct tegra_sor_ops *ops;
430 enum tegra_io_pad pad;
433 struct tegra_sor_hdmi_settings *settings;
434 unsigned int num_settings;
436 struct regulator *avdd_io_supply;
437 struct regulator *vdd_pll_supply;
438 struct regulator *hdmi_supply;
440 struct delayed_work scdc;
443 struct tegra_hda_format format;
446 struct tegra_sor_state {
447 struct drm_connector_state base;
449 unsigned int link_speed;
454 static inline struct tegra_sor_state *
455 to_sor_state(struct drm_connector_state *state)
457 return container_of(state, struct tegra_sor_state, base);
460 struct tegra_sor_config {
473 static inline struct tegra_sor *
474 host1x_client_to_sor(struct host1x_client *client)
476 return container_of(client, struct tegra_sor, client);
479 static inline struct tegra_sor *to_sor(struct tegra_output *output)
481 return container_of(output, struct tegra_sor, output);
484 static inline u32 tegra_sor_readl(struct tegra_sor *sor, unsigned int offset)
486 u32 value = readl(sor->regs + (offset << 2));
488 trace_sor_readl(sor->dev, offset, value);
493 static inline void tegra_sor_writel(struct tegra_sor *sor, u32 value,
496 trace_sor_writel(sor->dev, offset, value);
497 writel(value, sor->regs + (offset << 2));
500 static int tegra_sor_set_parent_clock(struct tegra_sor *sor, struct clk *parent)
504 clk_disable_unprepare(sor->clk);
506 err = clk_set_parent(sor->clk_out, parent);
510 err = clk_prepare_enable(sor->clk);
517 struct tegra_clk_sor_pad {
519 struct tegra_sor *sor;
522 static inline struct tegra_clk_sor_pad *to_pad(struct clk_hw *hw)
524 return container_of(hw, struct tegra_clk_sor_pad, hw);
527 static const char * const tegra_clk_sor_pad_parents[2][2] = {
528 { "pll_d_out0", "pll_dp" },
529 { "pll_d2_out0", "pll_dp" },
533 * Implementing ->set_parent() here isn't really required because the parent
534 * will be explicitly selected in the driver code via the DP_CLK_SEL mux in
535 * the SOR_CLK_CNTRL register. This is primarily for compatibility with the
536 * Tegra186 and later SoC generations where the BPMP implements this clock
537 * and doesn't expose the mux via the common clock framework.
540 static int tegra_clk_sor_pad_set_parent(struct clk_hw *hw, u8 index)
542 struct tegra_clk_sor_pad *pad = to_pad(hw);
543 struct tegra_sor *sor = pad->sor;
546 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
547 value &= ~SOR_CLK_CNTRL_DP_CLK_SEL_MASK;
551 value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_PCLK;
555 value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_DPCLK;
559 tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
564 static u8 tegra_clk_sor_pad_get_parent(struct clk_hw *hw)
566 struct tegra_clk_sor_pad *pad = to_pad(hw);
567 struct tegra_sor *sor = pad->sor;
571 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
573 switch (value & SOR_CLK_CNTRL_DP_CLK_SEL_MASK) {
574 case SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_PCLK:
575 case SOR_CLK_CNTRL_DP_CLK_SEL_DIFF_PCLK:
579 case SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_DPCLK:
580 case SOR_CLK_CNTRL_DP_CLK_SEL_DIFF_DPCLK:
588 static const struct clk_ops tegra_clk_sor_pad_ops = {
589 .set_parent = tegra_clk_sor_pad_set_parent,
590 .get_parent = tegra_clk_sor_pad_get_parent,
593 static struct clk *tegra_clk_sor_pad_register(struct tegra_sor *sor,
596 struct tegra_clk_sor_pad *pad;
597 struct clk_init_data init;
600 pad = devm_kzalloc(sor->dev, sizeof(*pad), GFP_KERNEL);
602 return ERR_PTR(-ENOMEM);
608 init.parent_names = tegra_clk_sor_pad_parents[sor->index];
609 init.num_parents = ARRAY_SIZE(tegra_clk_sor_pad_parents[sor->index]);
610 init.ops = &tegra_clk_sor_pad_ops;
612 pad->hw.init = &init;
614 clk = devm_clk_register(sor->dev, &pad->hw);
619 static void tegra_sor_filter_rates(struct tegra_sor *sor)
621 struct drm_dp_link *link = &sor->link;
624 /* Tegra only supports RBR, HBR and HBR2 */
625 for (i = 0; i < link->num_rates; i++) {
626 switch (link->rates[i]) {
633 DRM_DEBUG_KMS("link rate %lu kHz not supported\n",
640 drm_dp_link_update_rates(link);
643 static int tegra_sor_power_up_lanes(struct tegra_sor *sor, unsigned int lanes)
645 unsigned long timeout;
649 * Clear or set the PD_TXD bit corresponding to each lane, depending
650 * on whether it is used or not.
652 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
655 value &= ~(SOR_DP_PADCTL_PD_TXD(sor->soc->lane_map[3]) |
656 SOR_DP_PADCTL_PD_TXD(sor->soc->lane_map[2]));
658 value |= SOR_DP_PADCTL_PD_TXD(sor->soc->lane_map[3]) |
659 SOR_DP_PADCTL_PD_TXD(sor->soc->lane_map[2]);
662 value &= ~SOR_DP_PADCTL_PD_TXD(sor->soc->lane_map[1]);
664 value |= SOR_DP_PADCTL_PD_TXD(sor->soc->lane_map[1]);
667 value &= ~SOR_DP_PADCTL_PD_TXD(sor->soc->lane_map[0]);
669 value |= SOR_DP_PADCTL_PD_TXD(sor->soc->lane_map[0]);
671 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
673 /* start lane sequencer */
674 value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_DOWN |
675 SOR_LANE_SEQ_CTL_POWER_STATE_UP;
676 tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL);
678 timeout = jiffies + msecs_to_jiffies(250);
680 while (time_before(jiffies, timeout)) {
681 value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
682 if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0)
685 usleep_range(250, 1000);
688 if ((value & SOR_LANE_SEQ_CTL_TRIGGER) != 0)
694 static int tegra_sor_power_down_lanes(struct tegra_sor *sor)
696 unsigned long timeout;
699 /* power down all lanes */
700 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
701 value &= ~(SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_0 |
702 SOR_DP_PADCTL_PD_TXD_1 | SOR_DP_PADCTL_PD_TXD_2);
703 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
705 /* start lane sequencer */
706 value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_UP |
707 SOR_LANE_SEQ_CTL_POWER_STATE_DOWN;
708 tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL);
710 timeout = jiffies + msecs_to_jiffies(250);
712 while (time_before(jiffies, timeout)) {
713 value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
714 if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0)
717 usleep_range(25, 100);
720 if ((value & SOR_LANE_SEQ_CTL_TRIGGER) != 0)
726 static void tegra_sor_dp_precharge(struct tegra_sor *sor, unsigned int lanes)
730 /* pre-charge all used lanes */
731 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
734 value &= ~(SOR_DP_PADCTL_CM_TXD(sor->soc->lane_map[3]) |
735 SOR_DP_PADCTL_CM_TXD(sor->soc->lane_map[2]));
737 value |= SOR_DP_PADCTL_CM_TXD(sor->soc->lane_map[3]) |
738 SOR_DP_PADCTL_CM_TXD(sor->soc->lane_map[2]);
741 value &= ~SOR_DP_PADCTL_CM_TXD(sor->soc->lane_map[1]);
743 value |= SOR_DP_PADCTL_CM_TXD(sor->soc->lane_map[1]);
746 value &= ~SOR_DP_PADCTL_CM_TXD(sor->soc->lane_map[0]);
748 value |= SOR_DP_PADCTL_CM_TXD(sor->soc->lane_map[0]);
750 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
752 usleep_range(15, 100);
754 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
755 value &= ~(SOR_DP_PADCTL_CM_TXD_3 | SOR_DP_PADCTL_CM_TXD_2 |
756 SOR_DP_PADCTL_CM_TXD_1 | SOR_DP_PADCTL_CM_TXD_0);
757 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
760 static void tegra_sor_dp_term_calibrate(struct tegra_sor *sor)
762 u32 mask = 0x08, adj = 0, value;
764 /* enable pad calibration logic */
765 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
766 value &= ~SOR_DP_PADCTL_PAD_CAL_PD;
767 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
769 value = tegra_sor_readl(sor, sor->soc->regs->pll1);
770 value |= SOR_PLL1_TMDS_TERM;
771 tegra_sor_writel(sor, value, sor->soc->regs->pll1);
776 value = tegra_sor_readl(sor, sor->soc->regs->pll1);
777 value &= ~SOR_PLL1_TMDS_TERMADJ_MASK;
778 value |= SOR_PLL1_TMDS_TERMADJ(adj);
779 tegra_sor_writel(sor, value, sor->soc->regs->pll1);
781 usleep_range(100, 200);
783 value = tegra_sor_readl(sor, sor->soc->regs->pll1);
784 if (value & SOR_PLL1_TERM_COMPOUT)
790 value = tegra_sor_readl(sor, sor->soc->regs->pll1);
791 value &= ~SOR_PLL1_TMDS_TERMADJ_MASK;
792 value |= SOR_PLL1_TMDS_TERMADJ(adj);
793 tegra_sor_writel(sor, value, sor->soc->regs->pll1);
795 /* disable pad calibration logic */
796 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
797 value |= SOR_DP_PADCTL_PAD_CAL_PD;
798 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
801 static int tegra_sor_dp_link_apply_training(struct drm_dp_link *link)
803 struct tegra_sor *sor = container_of(link, struct tegra_sor, link);
804 u32 voltage_swing = 0, pre_emphasis = 0, post_cursor = 0;
805 const struct tegra_sor_soc *soc = sor->soc;
806 u32 pattern = 0, tx_pu = 0, value;
809 for (value = 0, i = 0; i < link->lanes; i++) {
810 u8 vs = link->train.request.voltage_swing[i];
811 u8 pe = link->train.request.pre_emphasis[i];
812 u8 pc = link->train.request.post_cursor[i];
813 u8 shift = sor->soc->lane_map[i] << 3;
815 voltage_swing |= soc->voltage_swing[pc][vs][pe] << shift;
816 pre_emphasis |= soc->pre_emphasis[pc][vs][pe] << shift;
817 post_cursor |= soc->post_cursor[pc][vs][pe] << shift;
819 if (sor->soc->tx_pu[pc][vs][pe] > tx_pu)
820 tx_pu = sor->soc->tx_pu[pc][vs][pe];
822 switch (link->train.pattern) {
823 case DP_TRAINING_PATTERN_DISABLE:
824 value = SOR_DP_TPG_SCRAMBLER_GALIOS |
825 SOR_DP_TPG_PATTERN_NONE;
828 case DP_TRAINING_PATTERN_1:
829 value = SOR_DP_TPG_SCRAMBLER_NONE |
830 SOR_DP_TPG_PATTERN_TRAIN1;
833 case DP_TRAINING_PATTERN_2:
834 value = SOR_DP_TPG_SCRAMBLER_NONE |
835 SOR_DP_TPG_PATTERN_TRAIN2;
838 case DP_TRAINING_PATTERN_3:
839 value = SOR_DP_TPG_SCRAMBLER_NONE |
840 SOR_DP_TPG_PATTERN_TRAIN3;
847 if (link->caps.channel_coding)
848 value |= SOR_DP_TPG_CHANNEL_CODING;
850 pattern = pattern << 8 | value;
853 tegra_sor_writel(sor, voltage_swing, SOR_LANE_DRIVE_CURRENT0);
854 tegra_sor_writel(sor, pre_emphasis, SOR_LANE_PREEMPHASIS0);
856 if (link->caps.tps3_supported)
857 tegra_sor_writel(sor, post_cursor, SOR_LANE_POSTCURSOR0);
859 tegra_sor_writel(sor, pattern, SOR_DP_TPG);
861 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
862 value &= ~SOR_DP_PADCTL_TX_PU_MASK;
863 value |= SOR_DP_PADCTL_TX_PU_ENABLE;
864 value |= SOR_DP_PADCTL_TX_PU(tx_pu);
865 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
867 usleep_range(20, 100);
872 static int tegra_sor_dp_link_configure(struct drm_dp_link *link)
874 struct tegra_sor *sor = container_of(link, struct tegra_sor, link);
875 unsigned int rate, lanes;
879 rate = drm_dp_link_rate_to_bw_code(link->rate);
882 /* configure link speed and lane count */
883 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
884 value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
885 value |= SOR_CLK_CNTRL_DP_LINK_SPEED(rate);
886 tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
888 value = tegra_sor_readl(sor, SOR_DP_LINKCTL0);
889 value &= ~SOR_DP_LINKCTL_LANE_COUNT_MASK;
890 value |= SOR_DP_LINKCTL_LANE_COUNT(lanes);
892 if (link->caps.enhanced_framing)
893 value |= SOR_DP_LINKCTL_ENHANCED_FRAME;
895 tegra_sor_writel(sor, value, SOR_DP_LINKCTL0);
897 usleep_range(400, 1000);
899 /* configure load pulse position adjustment */
900 value = tegra_sor_readl(sor, sor->soc->regs->pll1);
901 value &= ~SOR_PLL1_LOADADJ_MASK;
904 case DP_LINK_BW_1_62:
905 value |= SOR_PLL1_LOADADJ(0x3);
909 value |= SOR_PLL1_LOADADJ(0x4);
913 value |= SOR_PLL1_LOADADJ(0x6);
917 tegra_sor_writel(sor, value, sor->soc->regs->pll1);
919 /* use alternate scrambler reset for eDP */
920 value = tegra_sor_readl(sor, SOR_DP_SPARE0);
923 value &= ~SOR_DP_SPARE_PANEL_INTERNAL;
925 value |= SOR_DP_SPARE_PANEL_INTERNAL;
927 tegra_sor_writel(sor, value, SOR_DP_SPARE0);
929 err = tegra_sor_power_down_lanes(sor);
931 dev_err(sor->dev, "failed to power down lanes: %d\n", err);
935 /* power up and pre-charge lanes */
936 err = tegra_sor_power_up_lanes(sor, lanes);
938 dev_err(sor->dev, "failed to power up %u lane%s: %d\n",
939 lanes, (lanes != 1) ? "s" : "", err);
943 tegra_sor_dp_precharge(sor, lanes);
948 static const struct drm_dp_link_ops tegra_sor_dp_link_ops = {
949 .apply_training = tegra_sor_dp_link_apply_training,
950 .configure = tegra_sor_dp_link_configure,
953 static void tegra_sor_super_update(struct tegra_sor *sor)
955 tegra_sor_writel(sor, 0, SOR_SUPER_STATE0);
956 tegra_sor_writel(sor, 1, SOR_SUPER_STATE0);
957 tegra_sor_writel(sor, 0, SOR_SUPER_STATE0);
960 static void tegra_sor_update(struct tegra_sor *sor)
962 tegra_sor_writel(sor, 0, SOR_STATE0);
963 tegra_sor_writel(sor, 1, SOR_STATE0);
964 tegra_sor_writel(sor, 0, SOR_STATE0);
967 static int tegra_sor_setup_pwm(struct tegra_sor *sor, unsigned long timeout)
971 value = tegra_sor_readl(sor, SOR_PWM_DIV);
972 value &= ~SOR_PWM_DIV_MASK;
973 value |= 0x400; /* period */
974 tegra_sor_writel(sor, value, SOR_PWM_DIV);
976 value = tegra_sor_readl(sor, SOR_PWM_CTL);
977 value &= ~SOR_PWM_CTL_DUTY_CYCLE_MASK;
978 value |= 0x400; /* duty cycle */
979 value &= ~SOR_PWM_CTL_CLK_SEL; /* clock source: PCLK */
980 value |= SOR_PWM_CTL_TRIGGER;
981 tegra_sor_writel(sor, value, SOR_PWM_CTL);
983 timeout = jiffies + msecs_to_jiffies(timeout);
985 while (time_before(jiffies, timeout)) {
986 value = tegra_sor_readl(sor, SOR_PWM_CTL);
987 if ((value & SOR_PWM_CTL_TRIGGER) == 0)
990 usleep_range(25, 100);
996 static int tegra_sor_attach(struct tegra_sor *sor)
998 unsigned long value, timeout;
1000 /* wake up in normal mode */
1001 value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
1002 value |= SOR_SUPER_STATE_HEAD_MODE_AWAKE;
1003 value |= SOR_SUPER_STATE_MODE_NORMAL;
1004 tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
1005 tegra_sor_super_update(sor);
1008 value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
1009 value |= SOR_SUPER_STATE_ATTACHED;
1010 tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
1011 tegra_sor_super_update(sor);
1013 timeout = jiffies + msecs_to_jiffies(250);
1015 while (time_before(jiffies, timeout)) {
1016 value = tegra_sor_readl(sor, SOR_TEST);
1017 if ((value & SOR_TEST_ATTACHED) != 0)
1020 usleep_range(25, 100);
1026 static int tegra_sor_wakeup(struct tegra_sor *sor)
1028 unsigned long value, timeout;
1030 timeout = jiffies + msecs_to_jiffies(250);
1032 /* wait for head to wake up */
1033 while (time_before(jiffies, timeout)) {
1034 value = tegra_sor_readl(sor, SOR_TEST);
1035 value &= SOR_TEST_HEAD_MODE_MASK;
1037 if (value == SOR_TEST_HEAD_MODE_AWAKE)
1040 usleep_range(25, 100);
1046 static int tegra_sor_power_up(struct tegra_sor *sor, unsigned long timeout)
1050 value = tegra_sor_readl(sor, SOR_PWR);
1051 value |= SOR_PWR_TRIGGER | SOR_PWR_NORMAL_STATE_PU;
1052 tegra_sor_writel(sor, value, SOR_PWR);
1054 timeout = jiffies + msecs_to_jiffies(timeout);
1056 while (time_before(jiffies, timeout)) {
1057 value = tegra_sor_readl(sor, SOR_PWR);
1058 if ((value & SOR_PWR_TRIGGER) == 0)
1061 usleep_range(25, 100);
1067 struct tegra_sor_params {
1068 /* number of link clocks per line */
1069 unsigned int num_clocks;
1070 /* ratio between input and output */
1072 /* precision factor */
1075 unsigned int active_polarity;
1076 unsigned int active_count;
1077 unsigned int active_frac;
1078 unsigned int tu_size;
1082 static int tegra_sor_compute_params(struct tegra_sor *sor,
1083 struct tegra_sor_params *params,
1084 unsigned int tu_size)
1086 u64 active_sym, active_count, frac, approx;
1087 u32 active_polarity, active_frac = 0;
1088 const u64 f = params->precision;
1091 active_sym = params->ratio * tu_size;
1092 active_count = div_u64(active_sym, f) * f;
1093 frac = active_sym - active_count;
1095 /* fraction < 0.5 */
1096 if (frac >= (f / 2)) {
1097 active_polarity = 1;
1100 active_polarity = 0;
1104 frac = div_u64(f * f, frac); /* 1/fraction */
1105 if (frac <= (15 * f)) {
1106 active_frac = div_u64(frac, f);
1109 if (active_polarity)
1112 active_frac = active_polarity ? 1 : 15;
1116 if (active_frac == 1)
1117 active_polarity = 0;
1119 if (active_polarity == 1) {
1121 approx = active_count + (active_frac * (f - 1)) * f;
1122 approx = div_u64(approx, active_frac * f);
1124 approx = active_count + f;
1128 approx = active_count + div_u64(f, active_frac);
1130 approx = active_count;
1133 error = div_s64(active_sym - approx, tu_size);
1134 error *= params->num_clocks;
1136 if (error <= 0 && abs(error) < params->error) {
1137 params->active_count = div_u64(active_count, f);
1138 params->active_polarity = active_polarity;
1139 params->active_frac = active_frac;
1140 params->error = abs(error);
1141 params->tu_size = tu_size;
1150 static int tegra_sor_compute_config(struct tegra_sor *sor,
1151 const struct drm_display_mode *mode,
1152 struct tegra_sor_config *config,
1153 struct drm_dp_link *link)
1155 const u64 f = 100000, link_rate = link->rate * 1000;
1156 const u64 pclk = (u64)mode->clock * 1000;
1157 u64 input, output, watermark, num;
1158 struct tegra_sor_params params;
1159 u32 num_syms_per_line;
1162 if (!link_rate || !link->lanes || !pclk || !config->bits_per_pixel)
1165 input = pclk * config->bits_per_pixel;
1166 output = link_rate * 8 * link->lanes;
1168 if (input >= output)
1171 memset(¶ms, 0, sizeof(params));
1172 params.ratio = div64_u64(input * f, output);
1173 params.num_clocks = div_u64(link_rate * mode->hdisplay, pclk);
1174 params.precision = f;
1175 params.error = 64 * f;
1176 params.tu_size = 64;
1178 for (i = params.tu_size; i >= 32; i--)
1179 if (tegra_sor_compute_params(sor, ¶ms, i))
1182 if (params.active_frac == 0) {
1183 config->active_polarity = 0;
1184 config->active_count = params.active_count;
1186 if (!params.active_polarity)
1187 config->active_count--;
1189 config->tu_size = params.tu_size;
1190 config->active_frac = 1;
1192 config->active_polarity = params.active_polarity;
1193 config->active_count = params.active_count;
1194 config->active_frac = params.active_frac;
1195 config->tu_size = params.tu_size;
1199 "polarity: %d active count: %d tu size: %d active frac: %d\n",
1200 config->active_polarity, config->active_count,
1201 config->tu_size, config->active_frac);
1203 watermark = params.ratio * config->tu_size * (f - params.ratio);
1204 watermark = div_u64(watermark, f);
1206 watermark = div_u64(watermark + params.error, f);
1207 config->watermark = watermark + (config->bits_per_pixel / 8) + 2;
1208 num_syms_per_line = (mode->hdisplay * config->bits_per_pixel) *
1211 if (config->watermark > 30) {
1212 config->watermark = 30;
1214 "unable to compute TU size, forcing watermark to %u\n",
1216 } else if (config->watermark > num_syms_per_line) {
1217 config->watermark = num_syms_per_line;
1218 dev_err(sor->dev, "watermark too high, forcing to %u\n",
1222 /* compute the number of symbols per horizontal blanking interval */
1223 num = ((mode->htotal - mode->hdisplay) - 7) * link_rate;
1224 config->hblank_symbols = div_u64(num, pclk);
1226 if (link->caps.enhanced_framing)
1227 config->hblank_symbols -= 3;
1229 config->hblank_symbols -= 12 / link->lanes;
1231 /* compute the number of symbols per vertical blanking interval */
1232 num = (mode->hdisplay - 25) * link_rate;
1233 config->vblank_symbols = div_u64(num, pclk);
1234 config->vblank_symbols -= 36 / link->lanes + 4;
1236 dev_dbg(sor->dev, "blank symbols: H:%u V:%u\n", config->hblank_symbols,
1237 config->vblank_symbols);
1242 static void tegra_sor_apply_config(struct tegra_sor *sor,
1243 const struct tegra_sor_config *config)
1247 value = tegra_sor_readl(sor, SOR_DP_LINKCTL0);
1248 value &= ~SOR_DP_LINKCTL_TU_SIZE_MASK;
1249 value |= SOR_DP_LINKCTL_TU_SIZE(config->tu_size);
1250 tegra_sor_writel(sor, value, SOR_DP_LINKCTL0);
1252 value = tegra_sor_readl(sor, SOR_DP_CONFIG0);
1253 value &= ~SOR_DP_CONFIG_WATERMARK_MASK;
1254 value |= SOR_DP_CONFIG_WATERMARK(config->watermark);
1256 value &= ~SOR_DP_CONFIG_ACTIVE_SYM_COUNT_MASK;
1257 value |= SOR_DP_CONFIG_ACTIVE_SYM_COUNT(config->active_count);
1259 value &= ~SOR_DP_CONFIG_ACTIVE_SYM_FRAC_MASK;
1260 value |= SOR_DP_CONFIG_ACTIVE_SYM_FRAC(config->active_frac);
1262 if (config->active_polarity)
1263 value |= SOR_DP_CONFIG_ACTIVE_SYM_POLARITY;
1265 value &= ~SOR_DP_CONFIG_ACTIVE_SYM_POLARITY;
1267 value |= SOR_DP_CONFIG_ACTIVE_SYM_ENABLE;
1268 value |= SOR_DP_CONFIG_DISPARITY_NEGATIVE;
1269 tegra_sor_writel(sor, value, SOR_DP_CONFIG0);
1271 value = tegra_sor_readl(sor, SOR_DP_AUDIO_HBLANK_SYMBOLS);
1272 value &= ~SOR_DP_AUDIO_HBLANK_SYMBOLS_MASK;
1273 value |= config->hblank_symbols & 0xffff;
1274 tegra_sor_writel(sor, value, SOR_DP_AUDIO_HBLANK_SYMBOLS);
1276 value = tegra_sor_readl(sor, SOR_DP_AUDIO_VBLANK_SYMBOLS);
1277 value &= ~SOR_DP_AUDIO_VBLANK_SYMBOLS_MASK;
1278 value |= config->vblank_symbols & 0xffff;
1279 tegra_sor_writel(sor, value, SOR_DP_AUDIO_VBLANK_SYMBOLS);
1282 static void tegra_sor_mode_set(struct tegra_sor *sor,
1283 const struct drm_display_mode *mode,
1284 struct tegra_sor_state *state)
1286 struct tegra_dc *dc = to_tegra_dc(sor->output.encoder.crtc);
1287 unsigned int vbe, vse, hbe, hse, vbs, hbs;
1290 value = tegra_sor_readl(sor, SOR_STATE1);
1291 value &= ~SOR_STATE_ASY_PIXELDEPTH_MASK;
1292 value &= ~SOR_STATE_ASY_CRC_MODE_MASK;
1293 value &= ~SOR_STATE_ASY_OWNER_MASK;
1295 value |= SOR_STATE_ASY_CRC_MODE_COMPLETE |
1296 SOR_STATE_ASY_OWNER(dc->pipe + 1);
1298 if (mode->flags & DRM_MODE_FLAG_PHSYNC)
1299 value &= ~SOR_STATE_ASY_HSYNCPOL;
1301 if (mode->flags & DRM_MODE_FLAG_NHSYNC)
1302 value |= SOR_STATE_ASY_HSYNCPOL;
1304 if (mode->flags & DRM_MODE_FLAG_PVSYNC)
1305 value &= ~SOR_STATE_ASY_VSYNCPOL;
1307 if (mode->flags & DRM_MODE_FLAG_NVSYNC)
1308 value |= SOR_STATE_ASY_VSYNCPOL;
1310 switch (state->bpc) {
1312 value |= SOR_STATE_ASY_PIXELDEPTH_BPP_48_444;
1316 value |= SOR_STATE_ASY_PIXELDEPTH_BPP_36_444;
1320 value |= SOR_STATE_ASY_PIXELDEPTH_BPP_30_444;
1324 value |= SOR_STATE_ASY_PIXELDEPTH_BPP_24_444;
1328 value |= SOR_STATE_ASY_PIXELDEPTH_BPP_18_444;
1332 value |= SOR_STATE_ASY_PIXELDEPTH_BPP_24_444;
1336 tegra_sor_writel(sor, value, SOR_STATE1);
1339 * TODO: The video timing programming below doesn't seem to match the
1340 * register definitions.
1343 value = ((mode->vtotal & 0x7fff) << 16) | (mode->htotal & 0x7fff);
1344 tegra_sor_writel(sor, value, sor->soc->regs->head_state1 + dc->pipe);
1346 /* sync end = sync width - 1 */
1347 vse = mode->vsync_end - mode->vsync_start - 1;
1348 hse = mode->hsync_end - mode->hsync_start - 1;
1350 value = ((vse & 0x7fff) << 16) | (hse & 0x7fff);
1351 tegra_sor_writel(sor, value, sor->soc->regs->head_state2 + dc->pipe);
1353 /* blank end = sync end + back porch */
1354 vbe = vse + (mode->vtotal - mode->vsync_end);
1355 hbe = hse + (mode->htotal - mode->hsync_end);
1357 value = ((vbe & 0x7fff) << 16) | (hbe & 0x7fff);
1358 tegra_sor_writel(sor, value, sor->soc->regs->head_state3 + dc->pipe);
1360 /* blank start = blank end + active */
1361 vbs = vbe + mode->vdisplay;
1362 hbs = hbe + mode->hdisplay;
1364 value = ((vbs & 0x7fff) << 16) | (hbs & 0x7fff);
1365 tegra_sor_writel(sor, value, sor->soc->regs->head_state4 + dc->pipe);
1367 /* XXX interlacing support */
1368 tegra_sor_writel(sor, 0x001, sor->soc->regs->head_state5 + dc->pipe);
1371 static int tegra_sor_detach(struct tegra_sor *sor)
1373 unsigned long value, timeout;
1375 /* switch to safe mode */
1376 value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
1377 value &= ~SOR_SUPER_STATE_MODE_NORMAL;
1378 tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
1379 tegra_sor_super_update(sor);
1381 timeout = jiffies + msecs_to_jiffies(250);
1383 while (time_before(jiffies, timeout)) {
1384 value = tegra_sor_readl(sor, SOR_PWR);
1385 if (value & SOR_PWR_MODE_SAFE)
1389 if ((value & SOR_PWR_MODE_SAFE) == 0)
1393 value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
1394 value &= ~SOR_SUPER_STATE_HEAD_MODE_MASK;
1395 tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
1396 tegra_sor_super_update(sor);
1399 value = tegra_sor_readl(sor, SOR_SUPER_STATE1);
1400 value &= ~SOR_SUPER_STATE_ATTACHED;
1401 tegra_sor_writel(sor, value, SOR_SUPER_STATE1);
1402 tegra_sor_super_update(sor);
1404 timeout = jiffies + msecs_to_jiffies(250);
1406 while (time_before(jiffies, timeout)) {
1407 value = tegra_sor_readl(sor, SOR_TEST);
1408 if ((value & SOR_TEST_ATTACHED) == 0)
1411 usleep_range(25, 100);
1414 if ((value & SOR_TEST_ATTACHED) != 0)
1420 static int tegra_sor_power_down(struct tegra_sor *sor)
1422 unsigned long value, timeout;
1425 value = tegra_sor_readl(sor, SOR_PWR);
1426 value &= ~SOR_PWR_NORMAL_STATE_PU;
1427 value |= SOR_PWR_TRIGGER;
1428 tegra_sor_writel(sor, value, SOR_PWR);
1430 timeout = jiffies + msecs_to_jiffies(250);
1432 while (time_before(jiffies, timeout)) {
1433 value = tegra_sor_readl(sor, SOR_PWR);
1434 if ((value & SOR_PWR_TRIGGER) == 0)
1437 usleep_range(25, 100);
1440 if ((value & SOR_PWR_TRIGGER) != 0)
1443 /* switch to safe parent clock */
1444 err = tegra_sor_set_parent_clock(sor, sor->clk_safe);
1446 dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
1450 value = tegra_sor_readl(sor, sor->soc->regs->pll2);
1451 value |= SOR_PLL2_PORT_POWERDOWN;
1452 tegra_sor_writel(sor, value, sor->soc->regs->pll2);
1454 usleep_range(20, 100);
1456 value = tegra_sor_readl(sor, sor->soc->regs->pll0);
1457 value |= SOR_PLL0_VCOPD | SOR_PLL0_PWR;
1458 tegra_sor_writel(sor, value, sor->soc->regs->pll0);
1460 value = tegra_sor_readl(sor, sor->soc->regs->pll2);
1461 value |= SOR_PLL2_SEQ_PLLCAPPD;
1462 value |= SOR_PLL2_SEQ_PLLCAPPD_ENFORCE;
1463 tegra_sor_writel(sor, value, sor->soc->regs->pll2);
1465 usleep_range(20, 100);
1470 static int tegra_sor_crc_wait(struct tegra_sor *sor, unsigned long timeout)
1474 timeout = jiffies + msecs_to_jiffies(timeout);
1476 while (time_before(jiffies, timeout)) {
1477 value = tegra_sor_readl(sor, SOR_CRCA);
1478 if (value & SOR_CRCA_VALID)
1481 usleep_range(100, 200);
1487 static int tegra_sor_show_crc(struct seq_file *s, void *data)
1489 struct drm_info_node *node = s->private;
1490 struct tegra_sor *sor = node->info_ent->data;
1491 struct drm_crtc *crtc = sor->output.encoder.crtc;
1492 struct drm_device *drm = node->minor->dev;
1496 drm_modeset_lock_all(drm);
1498 if (!crtc || !crtc->state->active) {
1503 value = tegra_sor_readl(sor, SOR_STATE1);
1504 value &= ~SOR_STATE_ASY_CRC_MODE_MASK;
1505 tegra_sor_writel(sor, value, SOR_STATE1);
1507 value = tegra_sor_readl(sor, SOR_CRC_CNTRL);
1508 value |= SOR_CRC_CNTRL_ENABLE;
1509 tegra_sor_writel(sor, value, SOR_CRC_CNTRL);
1511 value = tegra_sor_readl(sor, SOR_TEST);
1512 value &= ~SOR_TEST_CRC_POST_SERIALIZE;
1513 tegra_sor_writel(sor, value, SOR_TEST);
1515 err = tegra_sor_crc_wait(sor, 100);
1519 tegra_sor_writel(sor, SOR_CRCA_RESET, SOR_CRCA);
1520 value = tegra_sor_readl(sor, SOR_CRCB);
1522 seq_printf(s, "%08x\n", value);
1525 drm_modeset_unlock_all(drm);
1529 #define DEBUGFS_REG32(_name) { .name = #_name, .offset = _name }
1531 static const struct debugfs_reg32 tegra_sor_regs[] = {
1532 DEBUGFS_REG32(SOR_CTXSW),
1533 DEBUGFS_REG32(SOR_SUPER_STATE0),
1534 DEBUGFS_REG32(SOR_SUPER_STATE1),
1535 DEBUGFS_REG32(SOR_STATE0),
1536 DEBUGFS_REG32(SOR_STATE1),
1537 DEBUGFS_REG32(SOR_HEAD_STATE0(0)),
1538 DEBUGFS_REG32(SOR_HEAD_STATE0(1)),
1539 DEBUGFS_REG32(SOR_HEAD_STATE1(0)),
1540 DEBUGFS_REG32(SOR_HEAD_STATE1(1)),
1541 DEBUGFS_REG32(SOR_HEAD_STATE2(0)),
1542 DEBUGFS_REG32(SOR_HEAD_STATE2(1)),
1543 DEBUGFS_REG32(SOR_HEAD_STATE3(0)),
1544 DEBUGFS_REG32(SOR_HEAD_STATE3(1)),
1545 DEBUGFS_REG32(SOR_HEAD_STATE4(0)),
1546 DEBUGFS_REG32(SOR_HEAD_STATE4(1)),
1547 DEBUGFS_REG32(SOR_HEAD_STATE5(0)),
1548 DEBUGFS_REG32(SOR_HEAD_STATE5(1)),
1549 DEBUGFS_REG32(SOR_CRC_CNTRL),
1550 DEBUGFS_REG32(SOR_DP_DEBUG_MVID),
1551 DEBUGFS_REG32(SOR_CLK_CNTRL),
1552 DEBUGFS_REG32(SOR_CAP),
1553 DEBUGFS_REG32(SOR_PWR),
1554 DEBUGFS_REG32(SOR_TEST),
1555 DEBUGFS_REG32(SOR_PLL0),
1556 DEBUGFS_REG32(SOR_PLL1),
1557 DEBUGFS_REG32(SOR_PLL2),
1558 DEBUGFS_REG32(SOR_PLL3),
1559 DEBUGFS_REG32(SOR_CSTM),
1560 DEBUGFS_REG32(SOR_LVDS),
1561 DEBUGFS_REG32(SOR_CRCA),
1562 DEBUGFS_REG32(SOR_CRCB),
1563 DEBUGFS_REG32(SOR_BLANK),
1564 DEBUGFS_REG32(SOR_SEQ_CTL),
1565 DEBUGFS_REG32(SOR_LANE_SEQ_CTL),
1566 DEBUGFS_REG32(SOR_SEQ_INST(0)),
1567 DEBUGFS_REG32(SOR_SEQ_INST(1)),
1568 DEBUGFS_REG32(SOR_SEQ_INST(2)),
1569 DEBUGFS_REG32(SOR_SEQ_INST(3)),
1570 DEBUGFS_REG32(SOR_SEQ_INST(4)),
1571 DEBUGFS_REG32(SOR_SEQ_INST(5)),
1572 DEBUGFS_REG32(SOR_SEQ_INST(6)),
1573 DEBUGFS_REG32(SOR_SEQ_INST(7)),
1574 DEBUGFS_REG32(SOR_SEQ_INST(8)),
1575 DEBUGFS_REG32(SOR_SEQ_INST(9)),
1576 DEBUGFS_REG32(SOR_SEQ_INST(10)),
1577 DEBUGFS_REG32(SOR_SEQ_INST(11)),
1578 DEBUGFS_REG32(SOR_SEQ_INST(12)),
1579 DEBUGFS_REG32(SOR_SEQ_INST(13)),
1580 DEBUGFS_REG32(SOR_SEQ_INST(14)),
1581 DEBUGFS_REG32(SOR_SEQ_INST(15)),
1582 DEBUGFS_REG32(SOR_PWM_DIV),
1583 DEBUGFS_REG32(SOR_PWM_CTL),
1584 DEBUGFS_REG32(SOR_VCRC_A0),
1585 DEBUGFS_REG32(SOR_VCRC_A1),
1586 DEBUGFS_REG32(SOR_VCRC_B0),
1587 DEBUGFS_REG32(SOR_VCRC_B1),
1588 DEBUGFS_REG32(SOR_CCRC_A0),
1589 DEBUGFS_REG32(SOR_CCRC_A1),
1590 DEBUGFS_REG32(SOR_CCRC_B0),
1591 DEBUGFS_REG32(SOR_CCRC_B1),
1592 DEBUGFS_REG32(SOR_EDATA_A0),
1593 DEBUGFS_REG32(SOR_EDATA_A1),
1594 DEBUGFS_REG32(SOR_EDATA_B0),
1595 DEBUGFS_REG32(SOR_EDATA_B1),
1596 DEBUGFS_REG32(SOR_COUNT_A0),
1597 DEBUGFS_REG32(SOR_COUNT_A1),
1598 DEBUGFS_REG32(SOR_COUNT_B0),
1599 DEBUGFS_REG32(SOR_COUNT_B1),
1600 DEBUGFS_REG32(SOR_DEBUG_A0),
1601 DEBUGFS_REG32(SOR_DEBUG_A1),
1602 DEBUGFS_REG32(SOR_DEBUG_B0),
1603 DEBUGFS_REG32(SOR_DEBUG_B1),
1604 DEBUGFS_REG32(SOR_TRIG),
1605 DEBUGFS_REG32(SOR_MSCHECK),
1606 DEBUGFS_REG32(SOR_XBAR_CTRL),
1607 DEBUGFS_REG32(SOR_XBAR_POL),
1608 DEBUGFS_REG32(SOR_DP_LINKCTL0),
1609 DEBUGFS_REG32(SOR_DP_LINKCTL1),
1610 DEBUGFS_REG32(SOR_LANE_DRIVE_CURRENT0),
1611 DEBUGFS_REG32(SOR_LANE_DRIVE_CURRENT1),
1612 DEBUGFS_REG32(SOR_LANE4_DRIVE_CURRENT0),
1613 DEBUGFS_REG32(SOR_LANE4_DRIVE_CURRENT1),
1614 DEBUGFS_REG32(SOR_LANE_PREEMPHASIS0),
1615 DEBUGFS_REG32(SOR_LANE_PREEMPHASIS1),
1616 DEBUGFS_REG32(SOR_LANE4_PREEMPHASIS0),
1617 DEBUGFS_REG32(SOR_LANE4_PREEMPHASIS1),
1618 DEBUGFS_REG32(SOR_LANE_POSTCURSOR0),
1619 DEBUGFS_REG32(SOR_LANE_POSTCURSOR1),
1620 DEBUGFS_REG32(SOR_DP_CONFIG0),
1621 DEBUGFS_REG32(SOR_DP_CONFIG1),
1622 DEBUGFS_REG32(SOR_DP_MN0),
1623 DEBUGFS_REG32(SOR_DP_MN1),
1624 DEBUGFS_REG32(SOR_DP_PADCTL0),
1625 DEBUGFS_REG32(SOR_DP_PADCTL1),
1626 DEBUGFS_REG32(SOR_DP_PADCTL2),
1627 DEBUGFS_REG32(SOR_DP_DEBUG0),
1628 DEBUGFS_REG32(SOR_DP_DEBUG1),
1629 DEBUGFS_REG32(SOR_DP_SPARE0),
1630 DEBUGFS_REG32(SOR_DP_SPARE1),
1631 DEBUGFS_REG32(SOR_DP_AUDIO_CTRL),
1632 DEBUGFS_REG32(SOR_DP_AUDIO_HBLANK_SYMBOLS),
1633 DEBUGFS_REG32(SOR_DP_AUDIO_VBLANK_SYMBOLS),
1634 DEBUGFS_REG32(SOR_DP_GENERIC_INFOFRAME_HEADER),
1635 DEBUGFS_REG32(SOR_DP_GENERIC_INFOFRAME_SUBPACK0),
1636 DEBUGFS_REG32(SOR_DP_GENERIC_INFOFRAME_SUBPACK1),
1637 DEBUGFS_REG32(SOR_DP_GENERIC_INFOFRAME_SUBPACK2),
1638 DEBUGFS_REG32(SOR_DP_GENERIC_INFOFRAME_SUBPACK3),
1639 DEBUGFS_REG32(SOR_DP_GENERIC_INFOFRAME_SUBPACK4),
1640 DEBUGFS_REG32(SOR_DP_GENERIC_INFOFRAME_SUBPACK5),
1641 DEBUGFS_REG32(SOR_DP_GENERIC_INFOFRAME_SUBPACK6),
1642 DEBUGFS_REG32(SOR_DP_TPG),
1643 DEBUGFS_REG32(SOR_DP_TPG_CONFIG),
1644 DEBUGFS_REG32(SOR_DP_LQ_CSTM0),
1645 DEBUGFS_REG32(SOR_DP_LQ_CSTM1),
1646 DEBUGFS_REG32(SOR_DP_LQ_CSTM2),
1649 static int tegra_sor_show_regs(struct seq_file *s, void *data)
1651 struct drm_info_node *node = s->private;
1652 struct tegra_sor *sor = node->info_ent->data;
1653 struct drm_crtc *crtc = sor->output.encoder.crtc;
1654 struct drm_device *drm = node->minor->dev;
1658 drm_modeset_lock_all(drm);
1660 if (!crtc || !crtc->state->active) {
1665 for (i = 0; i < ARRAY_SIZE(tegra_sor_regs); i++) {
1666 unsigned int offset = tegra_sor_regs[i].offset;
1668 seq_printf(s, "%-38s %#05x %08x\n", tegra_sor_regs[i].name,
1669 offset, tegra_sor_readl(sor, offset));
1673 drm_modeset_unlock_all(drm);
1677 static const struct drm_info_list debugfs_files[] = {
1678 { "crc", tegra_sor_show_crc, 0, NULL },
1679 { "regs", tegra_sor_show_regs, 0, NULL },
1682 static int tegra_sor_late_register(struct drm_connector *connector)
1684 struct tegra_output *output = connector_to_output(connector);
1685 unsigned int i, count = ARRAY_SIZE(debugfs_files);
1686 struct drm_minor *minor = connector->dev->primary;
1687 struct dentry *root = connector->debugfs_entry;
1688 struct tegra_sor *sor = to_sor(output);
1690 sor->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files),
1692 if (!sor->debugfs_files)
1695 for (i = 0; i < count; i++)
1696 sor->debugfs_files[i].data = sor;
1698 drm_debugfs_create_files(sor->debugfs_files, count, root, minor);
1703 static void tegra_sor_early_unregister(struct drm_connector *connector)
1705 struct tegra_output *output = connector_to_output(connector);
1706 unsigned int count = ARRAY_SIZE(debugfs_files);
1707 struct tegra_sor *sor = to_sor(output);
1709 drm_debugfs_remove_files(sor->debugfs_files, count,
1710 connector->dev->primary);
1711 kfree(sor->debugfs_files);
1712 sor->debugfs_files = NULL;
1715 static void tegra_sor_connector_reset(struct drm_connector *connector)
1717 struct tegra_sor_state *state;
1719 state = kzalloc(sizeof(*state), GFP_KERNEL);
1723 if (connector->state) {
1724 __drm_atomic_helper_connector_destroy_state(connector->state);
1725 kfree(connector->state);
1728 __drm_atomic_helper_connector_reset(connector, &state->base);
1731 static enum drm_connector_status
1732 tegra_sor_connector_detect(struct drm_connector *connector, bool force)
1734 struct tegra_output *output = connector_to_output(connector);
1735 struct tegra_sor *sor = to_sor(output);
1738 return drm_dp_aux_detect(sor->aux);
1740 return tegra_output_connector_detect(connector, force);
1743 static struct drm_connector_state *
1744 tegra_sor_connector_duplicate_state(struct drm_connector *connector)
1746 struct tegra_sor_state *state = to_sor_state(connector->state);
1747 struct tegra_sor_state *copy;
1749 copy = kmemdup(state, sizeof(*state), GFP_KERNEL);
1753 __drm_atomic_helper_connector_duplicate_state(connector, ©->base);
1758 static const struct drm_connector_funcs tegra_sor_connector_funcs = {
1759 .reset = tegra_sor_connector_reset,
1760 .detect = tegra_sor_connector_detect,
1761 .fill_modes = drm_helper_probe_single_connector_modes,
1762 .destroy = tegra_output_connector_destroy,
1763 .atomic_duplicate_state = tegra_sor_connector_duplicate_state,
1764 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
1765 .late_register = tegra_sor_late_register,
1766 .early_unregister = tegra_sor_early_unregister,
1769 static int tegra_sor_connector_get_modes(struct drm_connector *connector)
1771 struct tegra_output *output = connector_to_output(connector);
1772 struct tegra_sor *sor = to_sor(output);
1776 drm_dp_aux_enable(sor->aux);
1778 err = tegra_output_connector_get_modes(connector);
1781 drm_dp_aux_disable(sor->aux);
1786 static enum drm_mode_status
1787 tegra_sor_connector_mode_valid(struct drm_connector *connector,
1788 struct drm_display_mode *mode)
1793 static const struct drm_connector_helper_funcs tegra_sor_connector_helper_funcs = {
1794 .get_modes = tegra_sor_connector_get_modes,
1795 .mode_valid = tegra_sor_connector_mode_valid,
1799 tegra_sor_encoder_atomic_check(struct drm_encoder *encoder,
1800 struct drm_crtc_state *crtc_state,
1801 struct drm_connector_state *conn_state)
1803 struct tegra_output *output = encoder_to_output(encoder);
1804 struct tegra_sor_state *state = to_sor_state(conn_state);
1805 struct tegra_dc *dc = to_tegra_dc(conn_state->crtc);
1806 unsigned long pclk = crtc_state->mode.clock * 1000;
1807 struct tegra_sor *sor = to_sor(output);
1808 struct drm_display_info *info;
1811 info = &output->connector.display_info;
1814 * For HBR2 modes, the SOR brick needs to use the x20 multiplier, so
1815 * the pixel clock must be corrected accordingly.
1817 if (pclk >= 340000000) {
1818 state->link_speed = 20;
1819 state->pclk = pclk / 2;
1821 state->link_speed = 10;
1825 err = tegra_dc_state_setup_clock(dc, crtc_state, sor->clk_parent,
1828 dev_err(output->dev, "failed to setup CRTC state: %d\n", err);
1832 switch (info->bpc) {
1835 state->bpc = info->bpc;
1839 DRM_DEBUG_KMS("%u bits-per-color not supported\n", info->bpc);
1847 static inline u32 tegra_sor_hdmi_subpack(const u8 *ptr, size_t size)
1852 for (i = size; i > 0; i--)
1853 value = (value << 8) | ptr[i - 1];
1858 static void tegra_sor_hdmi_write_infopack(struct tegra_sor *sor,
1859 const void *data, size_t size)
1861 const u8 *ptr = data;
1862 unsigned long offset;
1867 case HDMI_INFOFRAME_TYPE_AVI:
1868 offset = SOR_HDMI_AVI_INFOFRAME_HEADER;
1871 case HDMI_INFOFRAME_TYPE_AUDIO:
1872 offset = SOR_HDMI_AUDIO_INFOFRAME_HEADER;
1875 case HDMI_INFOFRAME_TYPE_VENDOR:
1876 offset = SOR_HDMI_VSI_INFOFRAME_HEADER;
1880 dev_err(sor->dev, "unsupported infoframe type: %02x\n",
1885 value = INFOFRAME_HEADER_TYPE(ptr[0]) |
1886 INFOFRAME_HEADER_VERSION(ptr[1]) |
1887 INFOFRAME_HEADER_LEN(ptr[2]);
1888 tegra_sor_writel(sor, value, offset);
1892 * Each subpack contains 7 bytes, divided into:
1893 * - subpack_low: bytes 0 - 3
1894 * - subpack_high: bytes 4 - 6 (with byte 7 padded to 0x00)
1896 for (i = 3, j = 0; i < size; i += 7, j += 8) {
1897 size_t rem = size - i, num = min_t(size_t, rem, 4);
1899 value = tegra_sor_hdmi_subpack(&ptr[i], num);
1900 tegra_sor_writel(sor, value, offset++);
1902 num = min_t(size_t, rem - num, 3);
1904 value = tegra_sor_hdmi_subpack(&ptr[i + 4], num);
1905 tegra_sor_writel(sor, value, offset++);
1910 tegra_sor_hdmi_setup_avi_infoframe(struct tegra_sor *sor,
1911 const struct drm_display_mode *mode)
1913 u8 buffer[HDMI_INFOFRAME_SIZE(AVI)];
1914 struct hdmi_avi_infoframe frame;
1918 /* disable AVI infoframe */
1919 value = tegra_sor_readl(sor, SOR_HDMI_AVI_INFOFRAME_CTRL);
1920 value &= ~INFOFRAME_CTRL_SINGLE;
1921 value &= ~INFOFRAME_CTRL_OTHER;
1922 value &= ~INFOFRAME_CTRL_ENABLE;
1923 tegra_sor_writel(sor, value, SOR_HDMI_AVI_INFOFRAME_CTRL);
1925 err = drm_hdmi_avi_infoframe_from_display_mode(&frame,
1926 &sor->output.connector, mode);
1928 dev_err(sor->dev, "failed to setup AVI infoframe: %d\n", err);
1932 err = hdmi_avi_infoframe_pack(&frame, buffer, sizeof(buffer));
1934 dev_err(sor->dev, "failed to pack AVI infoframe: %d\n", err);
1938 tegra_sor_hdmi_write_infopack(sor, buffer, err);
1940 /* enable AVI infoframe */
1941 value = tegra_sor_readl(sor, SOR_HDMI_AVI_INFOFRAME_CTRL);
1942 value |= INFOFRAME_CTRL_CHECKSUM_ENABLE;
1943 value |= INFOFRAME_CTRL_ENABLE;
1944 tegra_sor_writel(sor, value, SOR_HDMI_AVI_INFOFRAME_CTRL);
1949 static void tegra_sor_write_eld(struct tegra_sor *sor)
1951 size_t length = drm_eld_size(sor->output.connector.eld), i;
1953 for (i = 0; i < length; i++)
1954 tegra_sor_writel(sor, i << 8 | sor->output.connector.eld[i],
1955 SOR_AUDIO_HDA_ELD_BUFWR);
1958 * The HDA codec will always report an ELD buffer size of 96 bytes and
1959 * the HDA codec driver will check that each byte read from the buffer
1960 * is valid. Therefore every byte must be written, even if no 96 bytes
1961 * were parsed from EDID.
1963 for (i = length; i < 96; i++)
1964 tegra_sor_writel(sor, i << 8 | 0, SOR_AUDIO_HDA_ELD_BUFWR);
1967 static void tegra_sor_audio_prepare(struct tegra_sor *sor)
1972 * Enable and unmask the HDA codec SCRATCH0 register interrupt. This
1973 * is used for interoperability between the HDA codec driver and the
1976 value = SOR_INT_CODEC_SCRATCH1 | SOR_INT_CODEC_SCRATCH0;
1977 tegra_sor_writel(sor, value, SOR_INT_ENABLE);
1978 tegra_sor_writel(sor, value, SOR_INT_MASK);
1980 tegra_sor_write_eld(sor);
1982 value = SOR_AUDIO_HDA_PRESENSE_ELDV | SOR_AUDIO_HDA_PRESENSE_PD;
1983 tegra_sor_writel(sor, value, SOR_AUDIO_HDA_PRESENSE);
1986 static void tegra_sor_audio_unprepare(struct tegra_sor *sor)
1988 tegra_sor_writel(sor, 0, SOR_AUDIO_HDA_PRESENSE);
1989 tegra_sor_writel(sor, 0, SOR_INT_MASK);
1990 tegra_sor_writel(sor, 0, SOR_INT_ENABLE);
1993 static void tegra_sor_audio_enable(struct tegra_sor *sor)
1997 value = tegra_sor_readl(sor, SOR_AUDIO_CNTRL);
1999 /* select HDA audio input */
2000 value &= ~SOR_AUDIO_CNTRL_SOURCE_SELECT(SOURCE_SELECT_MASK);
2001 value |= SOR_AUDIO_CNTRL_SOURCE_SELECT(SOURCE_SELECT_HDA);
2003 /* inject null samples */
2004 if (sor->format.channels != 2)
2005 value &= ~SOR_AUDIO_CNTRL_INJECT_NULLSMPL;
2007 value |= SOR_AUDIO_CNTRL_INJECT_NULLSMPL;
2009 value |= SOR_AUDIO_CNTRL_AFIFO_FLUSH;
2011 tegra_sor_writel(sor, value, SOR_AUDIO_CNTRL);
2013 /* enable advertising HBR capability */
2014 tegra_sor_writel(sor, SOR_AUDIO_SPARE_HBR_ENABLE, SOR_AUDIO_SPARE);
2017 static int tegra_sor_hdmi_enable_audio_infoframe(struct tegra_sor *sor)
2019 u8 buffer[HDMI_INFOFRAME_SIZE(AUDIO)];
2020 struct hdmi_audio_infoframe frame;
2024 err = hdmi_audio_infoframe_init(&frame);
2026 dev_err(sor->dev, "failed to setup audio infoframe: %d\n", err);
2030 frame.channels = sor->format.channels;
2032 err = hdmi_audio_infoframe_pack(&frame, buffer, sizeof(buffer));
2034 dev_err(sor->dev, "failed to pack audio infoframe: %d\n", err);
2038 tegra_sor_hdmi_write_infopack(sor, buffer, err);
2040 value = tegra_sor_readl(sor, SOR_HDMI_AUDIO_INFOFRAME_CTRL);
2041 value |= INFOFRAME_CTRL_CHECKSUM_ENABLE;
2042 value |= INFOFRAME_CTRL_ENABLE;
2043 tegra_sor_writel(sor, value, SOR_HDMI_AUDIO_INFOFRAME_CTRL);
2048 static void tegra_sor_hdmi_audio_enable(struct tegra_sor *sor)
2052 tegra_sor_audio_enable(sor);
2054 tegra_sor_writel(sor, 0, SOR_HDMI_ACR_CTRL);
2056 value = SOR_HDMI_SPARE_ACR_PRIORITY_HIGH |
2057 SOR_HDMI_SPARE_CTS_RESET(1) |
2058 SOR_HDMI_SPARE_HW_CTS_ENABLE;
2059 tegra_sor_writel(sor, value, SOR_HDMI_SPARE);
2062 value = SOR_HDMI_ACR_SUBPACK_LOW_SB1(0);
2063 tegra_sor_writel(sor, value, SOR_HDMI_ACR_0441_SUBPACK_LOW);
2065 /* allow packet to be sent */
2066 value = SOR_HDMI_ACR_SUBPACK_HIGH_ENABLE;
2067 tegra_sor_writel(sor, value, SOR_HDMI_ACR_0441_SUBPACK_HIGH);
2069 /* reset N counter and enable lookup */
2070 value = SOR_HDMI_AUDIO_N_RESET | SOR_HDMI_AUDIO_N_LOOKUP;
2071 tegra_sor_writel(sor, value, SOR_HDMI_AUDIO_N);
2073 value = (24000 * 4096) / (128 * sor->format.sample_rate / 1000);
2074 tegra_sor_writel(sor, value, SOR_AUDIO_AVAL_0320);
2075 tegra_sor_writel(sor, 4096, SOR_AUDIO_NVAL_0320);
2077 tegra_sor_writel(sor, 20000, SOR_AUDIO_AVAL_0441);
2078 tegra_sor_writel(sor, 4704, SOR_AUDIO_NVAL_0441);
2080 tegra_sor_writel(sor, 20000, SOR_AUDIO_AVAL_0882);
2081 tegra_sor_writel(sor, 9408, SOR_AUDIO_NVAL_0882);
2083 tegra_sor_writel(sor, 20000, SOR_AUDIO_AVAL_1764);
2084 tegra_sor_writel(sor, 18816, SOR_AUDIO_NVAL_1764);
2086 value = (24000 * 6144) / (128 * sor->format.sample_rate / 1000);
2087 tegra_sor_writel(sor, value, SOR_AUDIO_AVAL_0480);
2088 tegra_sor_writel(sor, 6144, SOR_AUDIO_NVAL_0480);
2090 value = (24000 * 12288) / (128 * sor->format.sample_rate / 1000);
2091 tegra_sor_writel(sor, value, SOR_AUDIO_AVAL_0960);
2092 tegra_sor_writel(sor, 12288, SOR_AUDIO_NVAL_0960);
2094 value = (24000 * 24576) / (128 * sor->format.sample_rate / 1000);
2095 tegra_sor_writel(sor, value, SOR_AUDIO_AVAL_1920);
2096 tegra_sor_writel(sor, 24576, SOR_AUDIO_NVAL_1920);
2098 value = tegra_sor_readl(sor, SOR_HDMI_AUDIO_N);
2099 value &= ~SOR_HDMI_AUDIO_N_RESET;
2100 tegra_sor_writel(sor, value, SOR_HDMI_AUDIO_N);
2102 tegra_sor_hdmi_enable_audio_infoframe(sor);
2105 static void tegra_sor_hdmi_disable_audio_infoframe(struct tegra_sor *sor)
2109 value = tegra_sor_readl(sor, SOR_HDMI_AUDIO_INFOFRAME_CTRL);
2110 value &= ~INFOFRAME_CTRL_ENABLE;
2111 tegra_sor_writel(sor, value, SOR_HDMI_AUDIO_INFOFRAME_CTRL);
2114 static void tegra_sor_hdmi_audio_disable(struct tegra_sor *sor)
2116 tegra_sor_hdmi_disable_audio_infoframe(sor);
2119 static struct tegra_sor_hdmi_settings *
2120 tegra_sor_hdmi_find_settings(struct tegra_sor *sor, unsigned long frequency)
2124 for (i = 0; i < sor->num_settings; i++)
2125 if (frequency <= sor->settings[i].frequency)
2126 return &sor->settings[i];
2131 static void tegra_sor_hdmi_disable_scrambling(struct tegra_sor *sor)
2135 value = tegra_sor_readl(sor, SOR_HDMI2_CTRL);
2136 value &= ~SOR_HDMI2_CTRL_CLOCK_MODE_DIV_BY_4;
2137 value &= ~SOR_HDMI2_CTRL_SCRAMBLE;
2138 tegra_sor_writel(sor, value, SOR_HDMI2_CTRL);
2141 static void tegra_sor_hdmi_scdc_disable(struct tegra_sor *sor)
2143 drm_scdc_set_high_tmds_clock_ratio(&sor->output.connector, false);
2144 drm_scdc_set_scrambling(&sor->output.connector, false);
2146 tegra_sor_hdmi_disable_scrambling(sor);
2149 static void tegra_sor_hdmi_scdc_stop(struct tegra_sor *sor)
2151 if (sor->scdc_enabled) {
2152 cancel_delayed_work_sync(&sor->scdc);
2153 tegra_sor_hdmi_scdc_disable(sor);
2157 static void tegra_sor_hdmi_enable_scrambling(struct tegra_sor *sor)
2161 value = tegra_sor_readl(sor, SOR_HDMI2_CTRL);
2162 value |= SOR_HDMI2_CTRL_CLOCK_MODE_DIV_BY_4;
2163 value |= SOR_HDMI2_CTRL_SCRAMBLE;
2164 tegra_sor_writel(sor, value, SOR_HDMI2_CTRL);
2167 static void tegra_sor_hdmi_scdc_enable(struct tegra_sor *sor)
2169 drm_scdc_set_high_tmds_clock_ratio(&sor->output.connector, true);
2170 drm_scdc_set_scrambling(&sor->output.connector, true);
2172 tegra_sor_hdmi_enable_scrambling(sor);
2175 static void tegra_sor_hdmi_scdc_work(struct work_struct *work)
2177 struct tegra_sor *sor = container_of(work, struct tegra_sor, scdc.work);
2179 if (!drm_scdc_get_scrambling_status(&sor->output.connector)) {
2180 DRM_DEBUG_KMS("SCDC not scrambled\n");
2181 tegra_sor_hdmi_scdc_enable(sor);
2184 schedule_delayed_work(&sor->scdc, msecs_to_jiffies(5000));
2187 static void tegra_sor_hdmi_scdc_start(struct tegra_sor *sor)
2189 struct drm_scdc *scdc = &sor->output.connector.display_info.hdmi.scdc;
2190 struct drm_display_mode *mode;
2192 mode = &sor->output.encoder.crtc->state->adjusted_mode;
2194 if (mode->clock >= 340000 && scdc->supported) {
2195 schedule_delayed_work(&sor->scdc, msecs_to_jiffies(5000));
2196 tegra_sor_hdmi_scdc_enable(sor);
2197 sor->scdc_enabled = true;
2201 static void tegra_sor_hdmi_disable(struct drm_encoder *encoder)
2203 struct tegra_output *output = encoder_to_output(encoder);
2204 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
2205 struct tegra_sor *sor = to_sor(output);
2209 tegra_sor_audio_unprepare(sor);
2210 tegra_sor_hdmi_scdc_stop(sor);
2212 err = tegra_sor_detach(sor);
2214 dev_err(sor->dev, "failed to detach SOR: %d\n", err);
2216 tegra_sor_writel(sor, 0, SOR_STATE1);
2217 tegra_sor_update(sor);
2219 /* disable display to SOR clock */
2220 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
2222 if (!sor->soc->has_nvdisplay)
2223 value &= ~SOR1_TIMING_CYA;
2225 value &= ~SOR_ENABLE(sor->index);
2227 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
2229 tegra_dc_commit(dc);
2231 err = tegra_sor_power_down(sor);
2233 dev_err(sor->dev, "failed to power down SOR: %d\n", err);
2235 err = tegra_io_pad_power_disable(sor->pad);
2237 dev_err(sor->dev, "failed to power off I/O pad: %d\n", err);
2239 host1x_client_suspend(&sor->client);
2242 static void tegra_sor_hdmi_enable(struct drm_encoder *encoder)
2244 struct tegra_output *output = encoder_to_output(encoder);
2245 unsigned int h_ref_to_sync = 1, pulse_start, max_ac;
2246 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
2247 struct tegra_sor_hdmi_settings *settings;
2248 struct tegra_sor *sor = to_sor(output);
2249 struct tegra_sor_state *state;
2250 struct drm_display_mode *mode;
2251 unsigned long rate, pclk;
2252 unsigned int div, i;
2256 state = to_sor_state(output->connector.state);
2257 mode = &encoder->crtc->state->adjusted_mode;
2258 pclk = mode->clock * 1000;
2260 err = host1x_client_resume(&sor->client);
2262 dev_err(sor->dev, "failed to resume: %d\n", err);
2266 /* switch to safe parent clock */
2267 err = tegra_sor_set_parent_clock(sor, sor->clk_safe);
2269 dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
2273 div = clk_get_rate(sor->clk) / 1000000 * 4;
2275 err = tegra_io_pad_power_enable(sor->pad);
2277 dev_err(sor->dev, "failed to power on I/O pad: %d\n", err);
2279 usleep_range(20, 100);
2281 value = tegra_sor_readl(sor, sor->soc->regs->pll2);
2282 value &= ~SOR_PLL2_BANDGAP_POWERDOWN;
2283 tegra_sor_writel(sor, value, sor->soc->regs->pll2);
2285 usleep_range(20, 100);
2287 value = tegra_sor_readl(sor, sor->soc->regs->pll3);
2288 value &= ~SOR_PLL3_PLL_VDD_MODE_3V3;
2289 tegra_sor_writel(sor, value, sor->soc->regs->pll3);
2291 value = tegra_sor_readl(sor, sor->soc->regs->pll0);
2292 value &= ~SOR_PLL0_VCOPD;
2293 value &= ~SOR_PLL0_PWR;
2294 tegra_sor_writel(sor, value, sor->soc->regs->pll0);
2296 value = tegra_sor_readl(sor, sor->soc->regs->pll2);
2297 value &= ~SOR_PLL2_SEQ_PLLCAPPD_ENFORCE;
2298 tegra_sor_writel(sor, value, sor->soc->regs->pll2);
2300 usleep_range(200, 400);
2302 value = tegra_sor_readl(sor, sor->soc->regs->pll2);
2303 value &= ~SOR_PLL2_POWERDOWN_OVERRIDE;
2304 value &= ~SOR_PLL2_PORT_POWERDOWN;
2305 tegra_sor_writel(sor, value, sor->soc->regs->pll2);
2307 usleep_range(20, 100);
2309 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
2310 value |= SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_0 |
2311 SOR_DP_PADCTL_PD_TXD_1 | SOR_DP_PADCTL_PD_TXD_2;
2312 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
2315 value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
2316 if ((value & SOR_LANE_SEQ_CTL_STATE_BUSY) == 0)
2319 usleep_range(250, 1000);
2322 value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_DOWN |
2323 SOR_LANE_SEQ_CTL_POWER_STATE_UP | SOR_LANE_SEQ_CTL_DELAY(5);
2324 tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL);
2327 value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL);
2328 if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0)
2331 usleep_range(250, 1000);
2334 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
2335 value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK;
2336 value &= ~SOR_CLK_CNTRL_DP_CLK_SEL_MASK;
2338 if (mode->clock < 340000) {
2339 DRM_DEBUG_KMS("setting 2.7 GHz link speed\n");
2340 value |= SOR_CLK_CNTRL_DP_LINK_SPEED_G2_70;
2342 DRM_DEBUG_KMS("setting 5.4 GHz link speed\n");
2343 value |= SOR_CLK_CNTRL_DP_LINK_SPEED_G5_40;
2346 value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_PCLK;
2347 tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
2349 /* SOR pad PLL stabilization time */
2350 usleep_range(250, 1000);
2352 value = tegra_sor_readl(sor, SOR_DP_LINKCTL0);
2353 value &= ~SOR_DP_LINKCTL_LANE_COUNT_MASK;
2354 value |= SOR_DP_LINKCTL_LANE_COUNT(4);
2355 tegra_sor_writel(sor, value, SOR_DP_LINKCTL0);
2357 value = tegra_sor_readl(sor, SOR_DP_SPARE0);
2358 value &= ~SOR_DP_SPARE_DISP_VIDEO_PREAMBLE;
2359 value &= ~SOR_DP_SPARE_PANEL_INTERNAL;
2360 value &= ~SOR_DP_SPARE_SEQ_ENABLE;
2361 value &= ~SOR_DP_SPARE_MACRO_SOR_CLK;
2362 tegra_sor_writel(sor, value, SOR_DP_SPARE0);
2364 value = SOR_SEQ_CTL_PU_PC(0) | SOR_SEQ_CTL_PU_PC_ALT(0) |
2365 SOR_SEQ_CTL_PD_PC(8) | SOR_SEQ_CTL_PD_PC_ALT(8);
2366 tegra_sor_writel(sor, value, SOR_SEQ_CTL);
2368 value = SOR_SEQ_INST_DRIVE_PWM_OUT_LO | SOR_SEQ_INST_HALT |
2369 SOR_SEQ_INST_WAIT_VSYNC | SOR_SEQ_INST_WAIT(1);
2370 tegra_sor_writel(sor, value, SOR_SEQ_INST(0));
2371 tegra_sor_writel(sor, value, SOR_SEQ_INST(8));
2373 if (!sor->soc->has_nvdisplay) {
2374 /* program the reference clock */
2375 value = SOR_REFCLK_DIV_INT(div) | SOR_REFCLK_DIV_FRAC(div);
2376 tegra_sor_writel(sor, value, SOR_REFCLK);
2379 /* XXX not in TRM */
2380 for (value = 0, i = 0; i < 5; i++)
2381 value |= SOR_XBAR_CTRL_LINK0_XSEL(i, sor->xbar_cfg[i]) |
2382 SOR_XBAR_CTRL_LINK1_XSEL(i, i);
2384 tegra_sor_writel(sor, 0x00000000, SOR_XBAR_POL);
2385 tegra_sor_writel(sor, value, SOR_XBAR_CTRL);
2388 * Switch the pad clock to the DP clock. Note that we cannot actually
2389 * do this because Tegra186 and later don't support clk_set_parent()
2390 * on the sorX_pad_clkout clocks. We already do the equivalent above
2391 * using the DP_CLK_SEL mux of the SOR_CLK_CNTRL register.
2394 err = clk_set_parent(sor->clk_pad, sor->clk_dp);
2396 dev_err(sor->dev, "failed to select pad parent clock: %d\n",
2402 /* switch the SOR clock to the pad clock */
2403 err = tegra_sor_set_parent_clock(sor, sor->clk_pad);
2405 dev_err(sor->dev, "failed to select SOR parent clock: %d\n",
2410 /* switch the output clock to the parent pixel clock */
2411 err = clk_set_parent(sor->clk, sor->clk_parent);
2413 dev_err(sor->dev, "failed to select output parent clock: %d\n",
2418 /* adjust clock rate for HDMI 2.0 modes */
2419 rate = clk_get_rate(sor->clk_parent);
2421 if (mode->clock >= 340000)
2424 DRM_DEBUG_KMS("setting clock to %lu Hz, mode: %lu Hz\n", rate, pclk);
2426 clk_set_rate(sor->clk, rate);
2428 if (!sor->soc->has_nvdisplay) {
2429 value = SOR_INPUT_CONTROL_HDMI_SRC_SELECT(dc->pipe);
2431 /* XXX is this the proper check? */
2432 if (mode->clock < 75000)
2433 value |= SOR_INPUT_CONTROL_ARM_VIDEO_RANGE_LIMITED;
2435 tegra_sor_writel(sor, value, SOR_INPUT_CONTROL);
2438 max_ac = ((mode->htotal - mode->hdisplay) - SOR_REKEY - 18) / 32;
2440 value = SOR_HDMI_CTRL_ENABLE | SOR_HDMI_CTRL_MAX_AC_PACKET(max_ac) |
2441 SOR_HDMI_CTRL_AUDIO_LAYOUT | SOR_HDMI_CTRL_REKEY(SOR_REKEY);
2442 tegra_sor_writel(sor, value, SOR_HDMI_CTRL);
2444 if (!dc->soc->has_nvdisplay) {
2445 /* H_PULSE2 setup */
2446 pulse_start = h_ref_to_sync +
2447 (mode->hsync_end - mode->hsync_start) +
2448 (mode->htotal - mode->hsync_end) - 10;
2450 value = PULSE_LAST_END_A | PULSE_QUAL_VACTIVE |
2451 PULSE_POLARITY_HIGH | PULSE_MODE_NORMAL;
2452 tegra_dc_writel(dc, value, DC_DISP_H_PULSE2_CONTROL);
2454 value = PULSE_END(pulse_start + 8) | PULSE_START(pulse_start);
2455 tegra_dc_writel(dc, value, DC_DISP_H_PULSE2_POSITION_A);
2457 value = tegra_dc_readl(dc, DC_DISP_DISP_SIGNAL_OPTIONS0);
2458 value |= H_PULSE2_ENABLE;
2459 tegra_dc_writel(dc, value, DC_DISP_DISP_SIGNAL_OPTIONS0);
2462 /* infoframe setup */
2463 err = tegra_sor_hdmi_setup_avi_infoframe(sor, mode);
2465 dev_err(sor->dev, "failed to setup AVI infoframe: %d\n", err);
2467 /* XXX HDMI audio support not implemented yet */
2468 tegra_sor_hdmi_disable_audio_infoframe(sor);
2470 /* use single TMDS protocol */
2471 value = tegra_sor_readl(sor, SOR_STATE1);
2472 value &= ~SOR_STATE_ASY_PROTOCOL_MASK;
2473 value |= SOR_STATE_ASY_PROTOCOL_SINGLE_TMDS_A;
2474 tegra_sor_writel(sor, value, SOR_STATE1);
2476 /* power up pad calibration */
2477 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
2478 value &= ~SOR_DP_PADCTL_PAD_CAL_PD;
2479 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
2481 /* production settings */
2482 settings = tegra_sor_hdmi_find_settings(sor, mode->clock * 1000);
2484 dev_err(sor->dev, "no settings for pixel clock %d Hz\n",
2485 mode->clock * 1000);
2489 value = tegra_sor_readl(sor, sor->soc->regs->pll0);
2490 value &= ~SOR_PLL0_ICHPMP_MASK;
2491 value &= ~SOR_PLL0_FILTER_MASK;
2492 value &= ~SOR_PLL0_VCOCAP_MASK;
2493 value |= SOR_PLL0_ICHPMP(settings->ichpmp);
2494 value |= SOR_PLL0_FILTER(settings->filter);
2495 value |= SOR_PLL0_VCOCAP(settings->vcocap);
2496 tegra_sor_writel(sor, value, sor->soc->regs->pll0);
2498 /* XXX not in TRM */
2499 value = tegra_sor_readl(sor, sor->soc->regs->pll1);
2500 value &= ~SOR_PLL1_LOADADJ_MASK;
2501 value &= ~SOR_PLL1_TMDS_TERMADJ_MASK;
2502 value |= SOR_PLL1_LOADADJ(settings->loadadj);
2503 value |= SOR_PLL1_TMDS_TERMADJ(settings->tmds_termadj);
2504 value |= SOR_PLL1_TMDS_TERM;
2505 tegra_sor_writel(sor, value, sor->soc->regs->pll1);
2507 value = tegra_sor_readl(sor, sor->soc->regs->pll3);
2508 value &= ~SOR_PLL3_BG_TEMP_COEF_MASK;
2509 value &= ~SOR_PLL3_BG_VREF_LEVEL_MASK;
2510 value &= ~SOR_PLL3_AVDD10_LEVEL_MASK;
2511 value &= ~SOR_PLL3_AVDD14_LEVEL_MASK;
2512 value |= SOR_PLL3_BG_TEMP_COEF(settings->bg_temp_coef);
2513 value |= SOR_PLL3_BG_VREF_LEVEL(settings->bg_vref_level);
2514 value |= SOR_PLL3_AVDD10_LEVEL(settings->avdd10_level);
2515 value |= SOR_PLL3_AVDD14_LEVEL(settings->avdd14_level);
2516 tegra_sor_writel(sor, value, sor->soc->regs->pll3);
2518 value = settings->drive_current[3] << 24 |
2519 settings->drive_current[2] << 16 |
2520 settings->drive_current[1] << 8 |
2521 settings->drive_current[0] << 0;
2522 tegra_sor_writel(sor, value, SOR_LANE_DRIVE_CURRENT0);
2524 value = settings->preemphasis[3] << 24 |
2525 settings->preemphasis[2] << 16 |
2526 settings->preemphasis[1] << 8 |
2527 settings->preemphasis[0] << 0;
2528 tegra_sor_writel(sor, value, SOR_LANE_PREEMPHASIS0);
2530 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
2531 value &= ~SOR_DP_PADCTL_TX_PU_MASK;
2532 value |= SOR_DP_PADCTL_TX_PU_ENABLE;
2533 value |= SOR_DP_PADCTL_TX_PU(settings->tx_pu_value);
2534 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
2536 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl2);
2537 value &= ~SOR_DP_PADCTL_SPAREPLL_MASK;
2538 value |= SOR_DP_PADCTL_SPAREPLL(settings->sparepll);
2539 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl2);
2541 /* power down pad calibration */
2542 value = tegra_sor_readl(sor, sor->soc->regs->dp_padctl0);
2543 value |= SOR_DP_PADCTL_PAD_CAL_PD;
2544 tegra_sor_writel(sor, value, sor->soc->regs->dp_padctl0);
2546 if (!dc->soc->has_nvdisplay) {
2547 /* miscellaneous display controller settings */
2548 value = VSYNC_H_POSITION(1);
2549 tegra_dc_writel(dc, value, DC_DISP_DISP_TIMING_OPTIONS);
2552 value = tegra_dc_readl(dc, DC_DISP_DISP_COLOR_CONTROL);
2553 value &= ~DITHER_CONTROL_MASK;
2554 value &= ~BASE_COLOR_SIZE_MASK;
2556 switch (state->bpc) {
2558 value |= BASE_COLOR_SIZE_666;
2562 value |= BASE_COLOR_SIZE_888;
2566 value |= BASE_COLOR_SIZE_101010;
2570 value |= BASE_COLOR_SIZE_121212;
2574 WARN(1, "%u bits-per-color not supported\n", state->bpc);
2575 value |= BASE_COLOR_SIZE_888;
2579 tegra_dc_writel(dc, value, DC_DISP_DISP_COLOR_CONTROL);
2581 /* XXX set display head owner */
2582 value = tegra_sor_readl(sor, SOR_STATE1);
2583 value &= ~SOR_STATE_ASY_OWNER_MASK;
2584 value |= SOR_STATE_ASY_OWNER(1 + dc->pipe);
2585 tegra_sor_writel(sor, value, SOR_STATE1);
2587 err = tegra_sor_power_up(sor, 250);
2589 dev_err(sor->dev, "failed to power up SOR: %d\n", err);
2591 /* configure dynamic range of output */
2592 value = tegra_sor_readl(sor, sor->soc->regs->head_state0 + dc->pipe);
2593 value &= ~SOR_HEAD_STATE_RANGECOMPRESS_MASK;
2594 value &= ~SOR_HEAD_STATE_DYNRANGE_MASK;
2595 tegra_sor_writel(sor, value, sor->soc->regs->head_state0 + dc->pipe);
2597 /* configure colorspace */
2598 value = tegra_sor_readl(sor, sor->soc->regs->head_state0 + dc->pipe);
2599 value &= ~SOR_HEAD_STATE_COLORSPACE_MASK;
2600 value |= SOR_HEAD_STATE_COLORSPACE_RGB;
2601 tegra_sor_writel(sor, value, sor->soc->regs->head_state0 + dc->pipe);
2603 tegra_sor_mode_set(sor, mode, state);
2605 tegra_sor_update(sor);
2607 /* program preamble timing in SOR (XXX) */
2608 value = tegra_sor_readl(sor, SOR_DP_SPARE0);
2609 value &= ~SOR_DP_SPARE_DISP_VIDEO_PREAMBLE;
2610 tegra_sor_writel(sor, value, SOR_DP_SPARE0);
2612 err = tegra_sor_attach(sor);
2614 dev_err(sor->dev, "failed to attach SOR: %d\n", err);
2616 /* enable display to SOR clock and generate HDMI preamble */
2617 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
2619 if (!sor->soc->has_nvdisplay)
2620 value |= SOR1_TIMING_CYA;
2622 value |= SOR_ENABLE(sor->index);
2624 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
2626 if (dc->soc->has_nvdisplay) {
2627 value = tegra_dc_readl(dc, DC_DISP_CORE_SOR_SET_CONTROL(sor->index));
2628 value &= ~PROTOCOL_MASK;
2629 value |= PROTOCOL_SINGLE_TMDS_A;
2630 tegra_dc_writel(dc, value, DC_DISP_CORE_SOR_SET_CONTROL(sor->index));
2633 tegra_dc_commit(dc);
2635 err = tegra_sor_wakeup(sor);
2637 dev_err(sor->dev, "failed to wakeup SOR: %d\n", err);
2639 tegra_sor_hdmi_scdc_start(sor);
2640 tegra_sor_audio_prepare(sor);
2643 static const struct drm_encoder_helper_funcs tegra_sor_hdmi_helpers = {
2644 .disable = tegra_sor_hdmi_disable,
2645 .enable = tegra_sor_hdmi_enable,
2646 .atomic_check = tegra_sor_encoder_atomic_check,
2649 static void tegra_sor_dp_disable(struct drm_encoder *encoder)
2651 struct tegra_output *output = encoder_to_output(encoder);
2652 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
2653 struct tegra_sor *sor = to_sor(output);
2658 drm_panel_disable(output->panel);
2661 * Do not attempt to power down a DP link if we're not connected since
2662 * the AUX transactions would just be timing out.
2664 if (output->connector.status != connector_status_disconnected) {
2665 err = drm_dp_link_power_down(sor->aux, &sor->link);
2667 dev_err(sor->dev, "failed to power down link: %d\n",
2671 err = tegra_sor_detach(sor);
2673 dev_err(sor->dev, "failed to detach SOR: %d\n", err);
2675 tegra_sor_writel(sor, 0, SOR_STATE1);
2676 tegra_sor_update(sor);
2678 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
2679 value &= ~SOR_ENABLE(sor->index);
2680 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
2681 tegra_dc_commit(dc);
2683 value = tegra_sor_readl(sor, SOR_STATE1);
2684 value &= ~SOR_STATE_ASY_PROTOCOL_MASK;
2685 value &= ~SOR_STATE_ASY_SUBOWNER_MASK;
2686 value &= ~SOR_STATE_ASY_OWNER_MASK;
2687 tegra_sor_writel(sor, value, SOR_STATE1);
2688 tegra_sor_update(sor);
2690 /* switch to safe parent clock */
2691 err = tegra_sor_set_parent_clock(sor, sor->clk_safe);
2693 dev_err(sor->dev, "failed to set safe clock: %d\n", err);
2695 err = tegra_sor_power_down(sor);
2697 dev_err(sor->dev, "failed to power down SOR: %d\n", err);
2699 err = tegra_io_pad_power_disable(sor->pad);
2701 dev_err(sor->dev, "failed to power off I/O pad: %d\n", err);
2703 err = drm_dp_aux_disable(sor->aux);
2705 dev_err(sor->dev, "failed disable DPAUX: %d\n", err);
2708 drm_panel_unprepare(output->panel);
2710 host1x_client_suspend(&sor->client);
2713 static void tegra_sor_dp_enable(struct drm_encoder *encoder)
2715 struct tegra_output *output = encoder_to_output(encoder);
2716 struct tegra_dc *dc = to_tegra_dc(encoder->crtc);
2717 struct tegra_sor *sor = to_sor(output);
2718 struct tegra_sor_config config;
2719 struct tegra_sor_state *state;
2720 struct drm_display_mode *mode;
2721 struct drm_display_info *info;
2726 state = to_sor_state(output->connector.state);
2727 mode = &encoder->crtc->state->adjusted_mode;
2728 info = &output->connector.display_info;
2730 err = host1x_client_resume(&sor->client);
2732 dev_err(sor->dev, "failed to resume: %d\n", err);
2736 /* switch to safe parent clock */
2737 err = tegra_sor_set_parent_clock(sor, sor->clk_safe);
2739 dev_err(sor->dev, "failed to set safe parent clock: %d\n", err);
2741 err = tegra_io_pad_power_enable(sor->pad);
2743 dev_err(sor->dev, "failed to power on LVDS rail: %d\n", err);
2745 usleep_range(20, 100);
2747 err = drm_dp_aux_enable(sor->aux);
2749 dev_err(sor->dev, "failed to enable DPAUX: %d\n", err);
2751 err = drm_dp_link_probe(sor->aux, &sor->link);
2753 dev_err(sor->dev, "failed to probe DP link: %d\n", err);
2755 tegra_sor_filter_rates(sor);
2757 err = drm_dp_link_choose(&sor->link, mode, info);
2759 dev_err(sor->dev, "failed to choose link: %d\n", err);
2762 drm_panel_prepare(output->panel);
2764 value = tegra_sor_readl(sor, sor->soc->regs->pll2);
2765 value &= ~SOR_PLL2_BANDGAP_POWERDOWN;
2766 tegra_sor_writel(sor, value, sor->soc->regs->pll2);
2768 usleep_range(20, 40);
2770 value = tegra_sor_readl(sor, sor->soc->regs->pll3);
2771 value |= SOR_PLL3_PLL_VDD_MODE_3V3;
2772 tegra_sor_writel(sor, value, sor->soc->regs->pll3);
2774 value = tegra_sor_readl(sor, sor->soc->regs->pll0);
2775 value &= ~(SOR_PLL0_VCOPD | SOR_PLL0_PWR);
2776 tegra_sor_writel(sor, value, sor->soc->regs->pll0);
2778 value = tegra_sor_readl(sor, sor->soc->regs->pll2);
2779 value &= ~SOR_PLL2_SEQ_PLLCAPPD_ENFORCE;
2780 value |= SOR_PLL2_SEQ_PLLCAPPD;
2781 tegra_sor_writel(sor, value, sor->soc->regs->pll2);
2783 usleep_range(200, 400);
2785 value = tegra_sor_readl(sor, sor->soc->regs->pll2);
2786 value &= ~SOR_PLL2_POWERDOWN_OVERRIDE;
2787 value &= ~SOR_PLL2_PORT_POWERDOWN;
2788 tegra_sor_writel(sor, value, sor->soc->regs->pll2);
2790 value = tegra_sor_readl(sor, SOR_CLK_CNTRL);
2791 value &= ~SOR_CLK_CNTRL_DP_CLK_SEL_MASK;
2794 value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_DPCLK;
2796 value |= SOR_CLK_CNTRL_DP_CLK_SEL_DIFF_DPCLK;
2798 tegra_sor_writel(sor, value, SOR_CLK_CNTRL);
2800 usleep_range(200, 400);
2802 value = tegra_sor_readl(sor, SOR_DP_SPARE0);
2803 /* XXX not in TRM */
2805 value |= SOR_DP_SPARE_PANEL_INTERNAL;
2807 value &= ~SOR_DP_SPARE_PANEL_INTERNAL;
2809 value |= SOR_DP_SPARE_SEQ_ENABLE;
2810 tegra_sor_writel(sor, value, SOR_DP_SPARE0);
2812 /* XXX not in TRM */
2813 tegra_sor_writel(sor, 0, SOR_LVDS);
2815 value = tegra_sor_readl(sor, sor->soc->regs->pll0);
2816 value &= ~SOR_PLL0_ICHPMP_MASK;
2817 value &= ~SOR_PLL0_VCOCAP_MASK;
2818 value |= SOR_PLL0_ICHPMP(0x1);
2819 value |= SOR_PLL0_VCOCAP(0x3);
2820 value |= SOR_PLL0_RESISTOR_EXT;
2821 tegra_sor_writel(sor, value, sor->soc->regs->pll0);
2823 /* XXX not in TRM */
2824 for (value = 0, i = 0; i < 5; i++)
2825 value |= SOR_XBAR_CTRL_LINK0_XSEL(i, sor->soc->xbar_cfg[i]) |
2826 SOR_XBAR_CTRL_LINK1_XSEL(i, i);
2828 tegra_sor_writel(sor, 0x00000000, SOR_XBAR_POL);
2829 tegra_sor_writel(sor, value, SOR_XBAR_CTRL);
2832 * Switch the pad clock to the DP clock. Note that we cannot actually
2833 * do this because Tegra186 and later don't support clk_set_parent()
2834 * on the sorX_pad_clkout clocks. We already do the equivalent above
2835 * using the DP_CLK_SEL mux of the SOR_CLK_CNTRL register.
2838 err = clk_set_parent(sor->clk_pad, sor->clk_parent);
2840 dev_err(sor->dev, "failed to select pad parent clock: %d\n",
2846 /* switch the SOR clock to the pad clock */
2847 err = tegra_sor_set_parent_clock(sor, sor->clk_pad);
2849 dev_err(sor->dev, "failed to select SOR parent clock: %d\n",
2854 /* switch the output clock to the parent pixel clock */
2855 err = clk_set_parent(sor->clk, sor->clk_parent);
2857 dev_err(sor->dev, "failed to select output parent clock: %d\n",
2862 /* use DP-A protocol */
2863 value = tegra_sor_readl(sor, SOR_STATE1);
2864 value &= ~SOR_STATE_ASY_PROTOCOL_MASK;
2865 value |= SOR_STATE_ASY_PROTOCOL_DP_A;
2866 tegra_sor_writel(sor, value, SOR_STATE1);
2869 value = tegra_sor_readl(sor, SOR_DP_LINKCTL0);
2870 value |= SOR_DP_LINKCTL_ENABLE;
2871 tegra_sor_writel(sor, value, SOR_DP_LINKCTL0);
2873 tegra_sor_dp_term_calibrate(sor);
2875 err = drm_dp_link_train(&sor->link);
2877 dev_err(sor->dev, "link training failed: %d\n", err);
2879 dev_dbg(sor->dev, "link training succeeded\n");
2881 err = drm_dp_link_power_up(sor->aux, &sor->link);
2883 dev_err(sor->dev, "failed to power up DP link: %d\n", err);
2885 /* compute configuration */
2886 memset(&config, 0, sizeof(config));
2887 config.bits_per_pixel = state->bpc * 3;
2889 err = tegra_sor_compute_config(sor, mode, &config, &sor->link);
2891 dev_err(sor->dev, "failed to compute configuration: %d\n", err);
2893 tegra_sor_apply_config(sor, &config);
2894 tegra_sor_mode_set(sor, mode, state);
2896 if (output->panel) {
2897 /* CSTM (LVDS, link A/B, upper) */
2898 value = SOR_CSTM_LVDS | SOR_CSTM_LINK_ACT_A | SOR_CSTM_LINK_ACT_B |
2900 tegra_sor_writel(sor, value, SOR_CSTM);
2903 err = tegra_sor_setup_pwm(sor, 250);
2905 dev_err(sor->dev, "failed to setup PWM: %d\n", err);
2908 tegra_sor_update(sor);
2910 err = tegra_sor_power_up(sor, 250);
2912 dev_err(sor->dev, "failed to power up SOR: %d\n", err);
2914 /* attach and wake up */
2915 err = tegra_sor_attach(sor);
2917 dev_err(sor->dev, "failed to attach SOR: %d\n", err);
2919 value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS);
2920 value |= SOR_ENABLE(sor->index);
2921 tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS);
2923 tegra_dc_commit(dc);
2925 err = tegra_sor_wakeup(sor);
2927 dev_err(sor->dev, "failed to wakeup SOR: %d\n", err);
2930 drm_panel_enable(output->panel);
2933 static const struct drm_encoder_helper_funcs tegra_sor_dp_helpers = {
2934 .disable = tegra_sor_dp_disable,
2935 .enable = tegra_sor_dp_enable,
2936 .atomic_check = tegra_sor_encoder_atomic_check,
2939 static void tegra_sor_disable_regulator(void *data)
2941 struct regulator *reg = data;
2943 regulator_disable(reg);
2946 static int tegra_sor_enable_regulator(struct tegra_sor *sor, struct regulator *reg)
2950 err = regulator_enable(reg);
2954 return devm_add_action_or_reset(sor->dev, tegra_sor_disable_regulator, reg);
2957 static int tegra_sor_hdmi_probe(struct tegra_sor *sor)
2961 sor->avdd_io_supply = devm_regulator_get(sor->dev, "avdd-io-hdmi-dp");
2962 if (IS_ERR(sor->avdd_io_supply))
2963 return dev_err_probe(sor->dev, PTR_ERR(sor->avdd_io_supply),
2964 "cannot get AVDD I/O supply\n");
2966 err = tegra_sor_enable_regulator(sor, sor->avdd_io_supply);
2968 dev_err(sor->dev, "failed to enable AVDD I/O supply: %d\n",
2973 sor->vdd_pll_supply = devm_regulator_get(sor->dev, "vdd-hdmi-dp-pll");
2974 if (IS_ERR(sor->vdd_pll_supply))
2975 return dev_err_probe(sor->dev, PTR_ERR(sor->vdd_pll_supply),
2976 "cannot get VDD PLL supply\n");
2978 err = tegra_sor_enable_regulator(sor, sor->vdd_pll_supply);
2980 dev_err(sor->dev, "failed to enable VDD PLL supply: %d\n",
2985 sor->hdmi_supply = devm_regulator_get(sor->dev, "hdmi");
2986 if (IS_ERR(sor->hdmi_supply))
2987 return dev_err_probe(sor->dev, PTR_ERR(sor->hdmi_supply),
2988 "cannot get HDMI supply\n");
2990 err = tegra_sor_enable_regulator(sor, sor->hdmi_supply);
2992 dev_err(sor->dev, "failed to enable HDMI supply: %d\n", err);
2996 INIT_DELAYED_WORK(&sor->scdc, tegra_sor_hdmi_scdc_work);
3001 static const struct tegra_sor_ops tegra_sor_hdmi_ops = {
3003 .probe = tegra_sor_hdmi_probe,
3004 .audio_enable = tegra_sor_hdmi_audio_enable,
3005 .audio_disable = tegra_sor_hdmi_audio_disable,
3008 static int tegra_sor_dp_probe(struct tegra_sor *sor)
3012 sor->avdd_io_supply = devm_regulator_get(sor->dev, "avdd-io-hdmi-dp");
3013 if (IS_ERR(sor->avdd_io_supply))
3014 return PTR_ERR(sor->avdd_io_supply);
3016 err = tegra_sor_enable_regulator(sor, sor->avdd_io_supply);
3020 sor->vdd_pll_supply = devm_regulator_get(sor->dev, "vdd-hdmi-dp-pll");
3021 if (IS_ERR(sor->vdd_pll_supply))
3022 return PTR_ERR(sor->vdd_pll_supply);
3024 err = tegra_sor_enable_regulator(sor, sor->vdd_pll_supply);
3031 static const struct tegra_sor_ops tegra_sor_dp_ops = {
3033 .probe = tegra_sor_dp_probe,
3036 static int tegra_sor_init(struct host1x_client *client)
3038 struct drm_device *drm = dev_get_drvdata(client->host);
3039 const struct drm_encoder_helper_funcs *helpers = NULL;
3040 struct tegra_sor *sor = host1x_client_to_sor(client);
3041 int connector = DRM_MODE_CONNECTOR_Unknown;
3042 int encoder = DRM_MODE_ENCODER_NONE;
3046 if (sor->ops == &tegra_sor_hdmi_ops) {
3047 connector = DRM_MODE_CONNECTOR_HDMIA;
3048 encoder = DRM_MODE_ENCODER_TMDS;
3049 helpers = &tegra_sor_hdmi_helpers;
3050 } else if (sor->soc->supports_lvds) {
3051 connector = DRM_MODE_CONNECTOR_LVDS;
3052 encoder = DRM_MODE_ENCODER_LVDS;
3055 if (sor->output.panel) {
3056 connector = DRM_MODE_CONNECTOR_eDP;
3057 encoder = DRM_MODE_ENCODER_TMDS;
3058 helpers = &tegra_sor_dp_helpers;
3060 connector = DRM_MODE_CONNECTOR_DisplayPort;
3061 encoder = DRM_MODE_ENCODER_TMDS;
3062 helpers = &tegra_sor_dp_helpers;
3065 sor->link.ops = &tegra_sor_dp_link_ops;
3066 sor->link.aux = sor->aux;
3069 sor->output.dev = sor->dev;
3071 drm_connector_init_with_ddc(drm, &sor->output.connector,
3072 &tegra_sor_connector_funcs,
3075 drm_connector_helper_add(&sor->output.connector,
3076 &tegra_sor_connector_helper_funcs);
3077 sor->output.connector.dpms = DRM_MODE_DPMS_OFF;
3079 drm_simple_encoder_init(drm, &sor->output.encoder, encoder);
3080 drm_encoder_helper_add(&sor->output.encoder, helpers);
3082 drm_connector_attach_encoder(&sor->output.connector,
3083 &sor->output.encoder);
3084 drm_connector_register(&sor->output.connector);
3086 err = tegra_output_init(drm, &sor->output);
3088 dev_err(client->dev, "failed to initialize output: %d\n", err);
3092 tegra_output_find_possible_crtcs(&sor->output, drm);
3095 err = drm_dp_aux_attach(sor->aux, &sor->output);
3097 dev_err(sor->dev, "failed to attach DP: %d\n", err);
3103 * XXX: Remove this reset once proper hand-over from firmware to
3104 * kernel is possible.
3107 err = pm_runtime_resume_and_get(sor->dev);
3109 dev_err(sor->dev, "failed to get runtime PM: %d\n", err);
3113 err = reset_control_acquire(sor->rst);
3115 dev_err(sor->dev, "failed to acquire SOR reset: %d\n",
3120 err = reset_control_assert(sor->rst);
3122 dev_err(sor->dev, "failed to assert SOR reset: %d\n",
3128 err = clk_prepare_enable(sor->clk);
3130 dev_err(sor->dev, "failed to enable clock: %d\n", err);
3134 usleep_range(1000, 3000);
3137 err = reset_control_deassert(sor->rst);
3139 dev_err(sor->dev, "failed to deassert SOR reset: %d\n",
3141 clk_disable_unprepare(sor->clk);
3145 reset_control_release(sor->rst);
3146 pm_runtime_put(sor->dev);
3149 err = clk_prepare_enable(sor->clk_safe);
3151 clk_disable_unprepare(sor->clk);
3155 err = clk_prepare_enable(sor->clk_dp);
3157 clk_disable_unprepare(sor->clk_safe);
3158 clk_disable_unprepare(sor->clk);
3166 pm_runtime_put(sor->dev);
3171 static int tegra_sor_exit(struct host1x_client *client)
3173 struct tegra_sor *sor = host1x_client_to_sor(client);
3176 tegra_output_exit(&sor->output);
3179 err = drm_dp_aux_detach(sor->aux);
3181 dev_err(sor->dev, "failed to detach DP: %d\n", err);
3186 clk_disable_unprepare(sor->clk_safe);
3187 clk_disable_unprepare(sor->clk_dp);
3188 clk_disable_unprepare(sor->clk);
3193 static int tegra_sor_runtime_suspend(struct host1x_client *client)
3195 struct tegra_sor *sor = host1x_client_to_sor(client);
3196 struct device *dev = client->dev;
3200 err = reset_control_assert(sor->rst);
3202 dev_err(dev, "failed to assert reset: %d\n", err);
3206 reset_control_release(sor->rst);
3209 usleep_range(1000, 2000);
3211 clk_disable_unprepare(sor->clk);
3212 pm_runtime_put_sync(dev);
3217 static int tegra_sor_runtime_resume(struct host1x_client *client)
3219 struct tegra_sor *sor = host1x_client_to_sor(client);
3220 struct device *dev = client->dev;
3223 err = pm_runtime_resume_and_get(dev);
3225 dev_err(dev, "failed to get runtime PM: %d\n", err);
3229 err = clk_prepare_enable(sor->clk);
3231 dev_err(dev, "failed to enable clock: %d\n", err);
3235 usleep_range(1000, 2000);
3238 err = reset_control_acquire(sor->rst);
3240 dev_err(dev, "failed to acquire reset: %d\n", err);
3244 err = reset_control_deassert(sor->rst);
3246 dev_err(dev, "failed to deassert reset: %d\n", err);
3254 reset_control_release(sor->rst);
3256 clk_disable_unprepare(sor->clk);
3258 pm_runtime_put_sync(dev);
3262 static const struct host1x_client_ops sor_client_ops = {
3263 .init = tegra_sor_init,
3264 .exit = tegra_sor_exit,
3265 .suspend = tegra_sor_runtime_suspend,
3266 .resume = tegra_sor_runtime_resume,
3269 static const u8 tegra124_sor_xbar_cfg[5] = {
3273 static const struct tegra_sor_regs tegra124_sor_regs = {
3274 .head_state0 = 0x05,
3275 .head_state1 = 0x07,
3276 .head_state2 = 0x09,
3277 .head_state3 = 0x0b,
3278 .head_state4 = 0x0d,
3279 .head_state5 = 0x0f,
3288 /* Tegra124 and Tegra132 have lanes 0 and 2 swapped. */
3289 static const u8 tegra124_sor_lane_map[4] = {
3293 static const u8 tegra124_sor_voltage_swing[4][4][4] = {
3295 { 0x13, 0x19, 0x1e, 0x28 },
3296 { 0x1e, 0x25, 0x2d, },
3300 { 0x12, 0x17, 0x1b, 0x25 },
3301 { 0x1c, 0x23, 0x2a, },
3305 { 0x12, 0x16, 0x1a, 0x22 },
3306 { 0x1b, 0x20, 0x27, },
3310 { 0x11, 0x14, 0x17, 0x1f },
3311 { 0x19, 0x1e, 0x24, },
3317 static const u8 tegra124_sor_pre_emphasis[4][4][4] = {
3319 { 0x00, 0x09, 0x13, 0x25 },
3320 { 0x00, 0x0f, 0x1e, },
3324 { 0x00, 0x0a, 0x14, 0x28 },
3325 { 0x00, 0x0f, 0x1e, },
3329 { 0x00, 0x0a, 0x14, 0x28 },
3330 { 0x00, 0x0f, 0x1e, },
3334 { 0x00, 0x0a, 0x14, 0x28 },
3335 { 0x00, 0x0f, 0x1e, },
3341 static const u8 tegra124_sor_post_cursor[4][4][4] = {
3343 { 0x00, 0x00, 0x00, 0x00 },
3344 { 0x00, 0x00, 0x00, },
3348 { 0x02, 0x02, 0x04, 0x05 },
3349 { 0x02, 0x04, 0x05, },
3353 { 0x04, 0x05, 0x08, 0x0b },
3354 { 0x05, 0x09, 0x0b, },
3358 { 0x05, 0x09, 0x0b, 0x12 },
3359 { 0x09, 0x0d, 0x12, },
3365 static const u8 tegra124_sor_tx_pu[4][4][4] = {
3367 { 0x20, 0x30, 0x40, 0x60 },
3368 { 0x30, 0x40, 0x60, },
3372 { 0x20, 0x20, 0x30, 0x50 },
3373 { 0x30, 0x40, 0x50, },
3377 { 0x20, 0x20, 0x30, 0x40, },
3378 { 0x30, 0x30, 0x40, },
3382 { 0x20, 0x20, 0x20, 0x40, },
3383 { 0x30, 0x30, 0x40, },
3389 static const struct tegra_sor_soc tegra124_sor = {
3390 .supports_lvds = true,
3391 .supports_hdmi = false,
3392 .supports_dp = true,
3393 .supports_audio = false,
3394 .supports_hdcp = false,
3395 .regs = &tegra124_sor_regs,
3396 .has_nvdisplay = false,
3397 .xbar_cfg = tegra124_sor_xbar_cfg,
3398 .lane_map = tegra124_sor_lane_map,
3399 .voltage_swing = tegra124_sor_voltage_swing,
3400 .pre_emphasis = tegra124_sor_pre_emphasis,
3401 .post_cursor = tegra124_sor_post_cursor,
3402 .tx_pu = tegra124_sor_tx_pu,
3405 static const u8 tegra132_sor_pre_emphasis[4][4][4] = {
3407 { 0x00, 0x08, 0x12, 0x24 },
3408 { 0x01, 0x0e, 0x1d, },
3412 { 0x00, 0x08, 0x12, 0x24 },
3413 { 0x00, 0x0e, 0x1d, },
3417 { 0x00, 0x08, 0x12, 0x24 },
3418 { 0x00, 0x0e, 0x1d, },
3422 { 0x00, 0x08, 0x12, 0x24 },
3423 { 0x00, 0x0e, 0x1d, },
3429 static const struct tegra_sor_soc tegra132_sor = {
3430 .supports_lvds = true,
3431 .supports_hdmi = false,
3432 .supports_dp = true,
3433 .supports_audio = false,
3434 .supports_hdcp = false,
3435 .regs = &tegra124_sor_regs,
3436 .has_nvdisplay = false,
3437 .xbar_cfg = tegra124_sor_xbar_cfg,
3438 .lane_map = tegra124_sor_lane_map,
3439 .voltage_swing = tegra124_sor_voltage_swing,
3440 .pre_emphasis = tegra132_sor_pre_emphasis,
3441 .post_cursor = tegra124_sor_post_cursor,
3442 .tx_pu = tegra124_sor_tx_pu,
3445 static const struct tegra_sor_regs tegra210_sor_regs = {
3446 .head_state0 = 0x05,
3447 .head_state1 = 0x07,
3448 .head_state2 = 0x09,
3449 .head_state3 = 0x0b,
3450 .head_state4 = 0x0d,
3451 .head_state5 = 0x0f,
3460 static const u8 tegra210_sor_xbar_cfg[5] = {
3464 static const u8 tegra210_sor_lane_map[4] = {
3468 static const struct tegra_sor_soc tegra210_sor = {
3469 .supports_lvds = false,
3470 .supports_hdmi = false,
3471 .supports_dp = true,
3472 .supports_audio = false,
3473 .supports_hdcp = false,
3475 .regs = &tegra210_sor_regs,
3476 .has_nvdisplay = false,
3478 .xbar_cfg = tegra210_sor_xbar_cfg,
3479 .lane_map = tegra210_sor_lane_map,
3480 .voltage_swing = tegra124_sor_voltage_swing,
3481 .pre_emphasis = tegra124_sor_pre_emphasis,
3482 .post_cursor = tegra124_sor_post_cursor,
3483 .tx_pu = tegra124_sor_tx_pu,
3486 static const struct tegra_sor_soc tegra210_sor1 = {
3487 .supports_lvds = false,
3488 .supports_hdmi = true,
3489 .supports_dp = true,
3490 .supports_audio = true,
3491 .supports_hdcp = true,
3493 .regs = &tegra210_sor_regs,
3494 .has_nvdisplay = false,
3496 .num_settings = ARRAY_SIZE(tegra210_sor_hdmi_defaults),
3497 .settings = tegra210_sor_hdmi_defaults,
3498 .xbar_cfg = tegra210_sor_xbar_cfg,
3499 .lane_map = tegra210_sor_lane_map,
3500 .voltage_swing = tegra124_sor_voltage_swing,
3501 .pre_emphasis = tegra124_sor_pre_emphasis,
3502 .post_cursor = tegra124_sor_post_cursor,
3503 .tx_pu = tegra124_sor_tx_pu,
3506 static const struct tegra_sor_regs tegra186_sor_regs = {
3507 .head_state0 = 0x151,
3508 .head_state1 = 0x154,
3509 .head_state2 = 0x157,
3510 .head_state3 = 0x15a,
3511 .head_state4 = 0x15d,
3512 .head_state5 = 0x160,
3517 .dp_padctl0 = 0x168,
3518 .dp_padctl2 = 0x16a,
3521 static const u8 tegra186_sor_voltage_swing[4][4][4] = {
3523 { 0x13, 0x19, 0x1e, 0x28 },
3524 { 0x1e, 0x25, 0x2d, },
3528 { 0x12, 0x16, 0x1b, 0x25 },
3529 { 0x1c, 0x23, 0x2a, },
3533 { 0x12, 0x16, 0x1a, 0x22 },
3534 { 0x1b, 0x20, 0x27, },
3538 { 0x11, 0x14, 0x17, 0x1f },
3539 { 0x19, 0x1e, 0x24, },
3545 static const u8 tegra186_sor_pre_emphasis[4][4][4] = {
3547 { 0x00, 0x08, 0x12, 0x24 },
3548 { 0x01, 0x0e, 0x1d, },
3552 { 0x00, 0x08, 0x12, 0x24 },
3553 { 0x00, 0x0e, 0x1d, },
3557 { 0x00, 0x08, 0x14, 0x24 },
3558 { 0x00, 0x0e, 0x1d, },
3562 { 0x00, 0x08, 0x12, 0x24 },
3563 { 0x00, 0x0e, 0x1d, },
3569 static const struct tegra_sor_soc tegra186_sor = {
3570 .supports_lvds = false,
3571 .supports_hdmi = true,
3572 .supports_dp = true,
3573 .supports_audio = true,
3574 .supports_hdcp = true,
3576 .regs = &tegra186_sor_regs,
3577 .has_nvdisplay = true,
3579 .num_settings = ARRAY_SIZE(tegra186_sor_hdmi_defaults),
3580 .settings = tegra186_sor_hdmi_defaults,
3581 .xbar_cfg = tegra124_sor_xbar_cfg,
3582 .lane_map = tegra124_sor_lane_map,
3583 .voltage_swing = tegra186_sor_voltage_swing,
3584 .pre_emphasis = tegra186_sor_pre_emphasis,
3585 .post_cursor = tegra124_sor_post_cursor,
3586 .tx_pu = tegra124_sor_tx_pu,
3589 static const struct tegra_sor_regs tegra194_sor_regs = {
3590 .head_state0 = 0x151,
3591 .head_state1 = 0x155,
3592 .head_state2 = 0x159,
3593 .head_state3 = 0x15d,
3594 .head_state4 = 0x161,
3595 .head_state5 = 0x165,
3600 .dp_padctl0 = 0x16e,
3601 .dp_padctl2 = 0x16f,
3604 static const struct tegra_sor_soc tegra194_sor = {
3605 .supports_lvds = false,
3606 .supports_hdmi = true,
3607 .supports_dp = true,
3608 .supports_audio = true,
3609 .supports_hdcp = true,
3611 .regs = &tegra194_sor_regs,
3612 .has_nvdisplay = true,
3614 .num_settings = ARRAY_SIZE(tegra194_sor_hdmi_defaults),
3615 .settings = tegra194_sor_hdmi_defaults,
3617 .xbar_cfg = tegra210_sor_xbar_cfg,
3618 .lane_map = tegra124_sor_lane_map,
3619 .voltage_swing = tegra186_sor_voltage_swing,
3620 .pre_emphasis = tegra186_sor_pre_emphasis,
3621 .post_cursor = tegra124_sor_post_cursor,
3622 .tx_pu = tegra124_sor_tx_pu,
3625 static const struct of_device_id tegra_sor_of_match[] = {
3626 { .compatible = "nvidia,tegra194-sor", .data = &tegra194_sor },
3627 { .compatible = "nvidia,tegra186-sor", .data = &tegra186_sor },
3628 { .compatible = "nvidia,tegra210-sor1", .data = &tegra210_sor1 },
3629 { .compatible = "nvidia,tegra210-sor", .data = &tegra210_sor },
3630 { .compatible = "nvidia,tegra132-sor", .data = &tegra132_sor },
3631 { .compatible = "nvidia,tegra124-sor", .data = &tegra124_sor },
3634 MODULE_DEVICE_TABLE(of, tegra_sor_of_match);
3636 static int tegra_sor_parse_dt(struct tegra_sor *sor)
3638 struct device_node *np = sor->dev->of_node;
3644 if (sor->soc->has_nvdisplay) {
3645 err = of_property_read_u32(np, "nvidia,interface", &value);
3652 * override the default that we already set for Tegra210 and
3655 sor->pad = TEGRA_IO_PAD_HDMI_DP0 + sor->index;
3657 if (!sor->soc->supports_audio)
3663 err = of_property_read_u32_array(np, "nvidia,xbar-cfg", xbar_cfg, 5);
3665 /* fall back to default per-SoC XBAR configuration */
3666 for (i = 0; i < 5; i++)
3667 sor->xbar_cfg[i] = sor->soc->xbar_cfg[i];
3669 /* copy cells to SOR XBAR configuration */
3670 for (i = 0; i < 5; i++)
3671 sor->xbar_cfg[i] = xbar_cfg[i];
3677 static irqreturn_t tegra_sor_irq(int irq, void *data)
3679 struct tegra_sor *sor = data;
3682 value = tegra_sor_readl(sor, SOR_INT_STATUS);
3683 tegra_sor_writel(sor, value, SOR_INT_STATUS);
3685 if (value & SOR_INT_CODEC_SCRATCH0) {
3686 value = tegra_sor_readl(sor, SOR_AUDIO_HDA_CODEC_SCRATCH0);
3688 if (value & SOR_AUDIO_HDA_CODEC_SCRATCH0_VALID) {
3689 unsigned int format;
3691 format = value & SOR_AUDIO_HDA_CODEC_SCRATCH0_FMT_MASK;
3693 tegra_hda_parse_format(format, &sor->format);
3695 if (sor->ops->audio_enable)
3696 sor->ops->audio_enable(sor);
3698 if (sor->ops->audio_disable)
3699 sor->ops->audio_disable(sor);
3706 static int tegra_sor_probe(struct platform_device *pdev)
3708 struct device_node *np;
3709 struct tegra_sor *sor;
3710 struct resource *regs;
3713 sor = devm_kzalloc(&pdev->dev, sizeof(*sor), GFP_KERNEL);
3717 sor->soc = of_device_get_match_data(&pdev->dev);
3718 sor->output.dev = sor->dev = &pdev->dev;
3720 sor->settings = devm_kmemdup(&pdev->dev, sor->soc->settings,
3721 sor->soc->num_settings *
3722 sizeof(*sor->settings),
3727 sor->num_settings = sor->soc->num_settings;
3729 np = of_parse_phandle(pdev->dev.of_node, "nvidia,dpaux", 0);
3731 sor->aux = drm_dp_aux_find_by_of_node(np);
3735 return -EPROBE_DEFER;
3737 if (get_device(sor->aux->dev))
3738 sor->output.ddc = &sor->aux->ddc;
3742 if (sor->soc->supports_hdmi) {
3743 sor->ops = &tegra_sor_hdmi_ops;
3744 sor->pad = TEGRA_IO_PAD_HDMI;
3745 } else if (sor->soc->supports_lvds) {
3746 dev_err(&pdev->dev, "LVDS not supported yet\n");
3749 dev_err(&pdev->dev, "unknown (non-DP) support\n");
3753 np = of_parse_phandle(pdev->dev.of_node, "nvidia,panel", 0);
3755 * No need to keep this around since we only use it as a check
3756 * to see if a panel is connected (eDP) or not (DP).
3760 sor->ops = &tegra_sor_dp_ops;
3761 sor->pad = TEGRA_IO_PAD_LVDS;
3764 err = tegra_sor_parse_dt(sor);
3768 err = tegra_output_probe(&sor->output);
3770 dev_err_probe(&pdev->dev, err, "failed to probe output\n");
3774 if (sor->ops && sor->ops->probe) {
3775 err = sor->ops->probe(sor);
3777 dev_err(&pdev->dev, "failed to probe %s: %d\n",
3778 sor->ops->name, err);
3783 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
3784 sor->regs = devm_ioremap_resource(&pdev->dev, regs);
3785 if (IS_ERR(sor->regs)) {
3786 err = PTR_ERR(sor->regs);
3790 err = platform_get_irq(pdev, 0);
3796 err = devm_request_irq(sor->dev, sor->irq, tegra_sor_irq, 0,
3797 dev_name(sor->dev), sor);
3799 dev_err(&pdev->dev, "failed to request IRQ: %d\n", err);
3803 sor->rst = devm_reset_control_get_exclusive_released(&pdev->dev, "sor");
3804 if (IS_ERR(sor->rst)) {
3805 err = PTR_ERR(sor->rst);
3807 if (err != -EBUSY || WARN_ON(!pdev->dev.pm_domain)) {
3808 dev_err(&pdev->dev, "failed to get reset control: %d\n",
3814 * At this point, the reset control is most likely being used
3815 * by the generic power domain implementation. With any luck
3816 * the power domain will have taken care of resetting the SOR
3817 * and we don't have to do anything.
3822 sor->clk = devm_clk_get(&pdev->dev, NULL);
3823 if (IS_ERR(sor->clk)) {
3824 err = PTR_ERR(sor->clk);
3825 dev_err(&pdev->dev, "failed to get module clock: %d\n", err);
3829 if (sor->soc->supports_hdmi || sor->soc->supports_dp) {
3830 struct device_node *np = pdev->dev.of_node;
3834 * For backwards compatibility with Tegra210 device trees,
3835 * fall back to the old clock name "source" if the new "out"
3836 * clock is not available.
3838 if (of_property_match_string(np, "clock-names", "out") < 0)
3843 sor->clk_out = devm_clk_get(&pdev->dev, name);
3844 if (IS_ERR(sor->clk_out)) {
3845 err = PTR_ERR(sor->clk_out);
3846 dev_err(sor->dev, "failed to get %s clock: %d\n",
3851 /* fall back to the module clock on SOR0 (eDP/LVDS only) */
3852 sor->clk_out = sor->clk;
3855 sor->clk_parent = devm_clk_get(&pdev->dev, "parent");
3856 if (IS_ERR(sor->clk_parent)) {
3857 err = PTR_ERR(sor->clk_parent);
3858 dev_err(&pdev->dev, "failed to get parent clock: %d\n", err);
3862 sor->clk_safe = devm_clk_get(&pdev->dev, "safe");
3863 if (IS_ERR(sor->clk_safe)) {
3864 err = PTR_ERR(sor->clk_safe);
3865 dev_err(&pdev->dev, "failed to get safe clock: %d\n", err);
3869 sor->clk_dp = devm_clk_get(&pdev->dev, "dp");
3870 if (IS_ERR(sor->clk_dp)) {
3871 err = PTR_ERR(sor->clk_dp);
3872 dev_err(&pdev->dev, "failed to get DP clock: %d\n", err);
3877 * Starting with Tegra186, the BPMP provides an implementation for
3878 * the pad output clock, so we have to look it up from device tree.
3880 sor->clk_pad = devm_clk_get(&pdev->dev, "pad");
3881 if (IS_ERR(sor->clk_pad)) {
3882 if (sor->clk_pad != ERR_PTR(-ENOENT)) {
3883 err = PTR_ERR(sor->clk_pad);
3888 * If the pad output clock is not available, then we assume
3889 * we're on Tegra210 or earlier and have to provide our own
3892 sor->clk_pad = NULL;
3896 * The bootloader may have set up the SOR such that it's module clock
3897 * is sourced by one of the display PLLs. However, that doesn't work
3898 * without properly having set up other bits of the SOR.
3900 err = clk_set_parent(sor->clk_out, sor->clk_safe);
3902 dev_err(&pdev->dev, "failed to use safe clock: %d\n", err);
3906 platform_set_drvdata(pdev, sor);
3907 pm_runtime_enable(&pdev->dev);
3909 host1x_client_init(&sor->client);
3910 sor->client.ops = &sor_client_ops;
3911 sor->client.dev = &pdev->dev;
3914 * On Tegra210 and earlier, provide our own implementation for the
3917 if (!sor->clk_pad) {
3920 name = devm_kasprintf(sor->dev, GFP_KERNEL, "sor%u_pad_clkout",
3927 err = host1x_client_resume(&sor->client);
3929 dev_err(sor->dev, "failed to resume: %d\n", err);
3933 sor->clk_pad = tegra_clk_sor_pad_register(sor, name);
3934 host1x_client_suspend(&sor->client);
3937 if (IS_ERR(sor->clk_pad)) {
3938 err = PTR_ERR(sor->clk_pad);
3939 dev_err(sor->dev, "failed to register SOR pad clock: %d\n",
3944 err = __host1x_client_register(&sor->client);
3946 dev_err(&pdev->dev, "failed to register host1x client: %d\n",
3954 host1x_client_exit(&sor->client);
3955 pm_runtime_disable(&pdev->dev);
3958 sor->output.ddc = NULL;
3960 tegra_output_remove(&sor->output);
3963 put_device(sor->aux->dev);
3968 static void tegra_sor_remove(struct platform_device *pdev)
3970 struct tegra_sor *sor = platform_get_drvdata(pdev);
3972 host1x_client_unregister(&sor->client);
3974 pm_runtime_disable(&pdev->dev);
3977 put_device(sor->aux->dev);
3978 sor->output.ddc = NULL;
3981 tegra_output_remove(&sor->output);
3984 static int __maybe_unused tegra_sor_suspend(struct device *dev)
3986 struct tegra_sor *sor = dev_get_drvdata(dev);
3989 err = tegra_output_suspend(&sor->output);
3991 dev_err(dev, "failed to suspend output: %d\n", err);
3995 if (sor->hdmi_supply) {
3996 err = regulator_disable(sor->hdmi_supply);
3998 tegra_output_resume(&sor->output);
4006 static int __maybe_unused tegra_sor_resume(struct device *dev)
4008 struct tegra_sor *sor = dev_get_drvdata(dev);
4011 if (sor->hdmi_supply) {
4012 err = regulator_enable(sor->hdmi_supply);
4017 err = tegra_output_resume(&sor->output);
4019 dev_err(dev, "failed to resume output: %d\n", err);
4021 if (sor->hdmi_supply)
4022 regulator_disable(sor->hdmi_supply);
4030 static const struct dev_pm_ops tegra_sor_pm_ops = {
4031 SET_SYSTEM_SLEEP_PM_OPS(tegra_sor_suspend, tegra_sor_resume)
4034 struct platform_driver tegra_sor_driver = {
4036 .name = "tegra-sor",
4037 .of_match_table = tegra_sor_of_match,
4038 .pm = &tegra_sor_pm_ops,
4040 .probe = tegra_sor_probe,
4041 .remove_new = tegra_sor_remove,