Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2013 NVIDIA Corporation |
| 3 | * |
| 4 | * This program is free software; you can redistribute it and/or modify |
| 5 | * it under the terms of the GNU General Public License version 2 as |
| 6 | * published by the Free Software Foundation. |
| 7 | */ |
| 8 | |
| 9 | #include <linux/clk.h> |
Thierry Reding | a82752e | 2014-01-31 10:02:15 +0100 | [diff] [blame] | 10 | #include <linux/debugfs.h> |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 11 | #include <linux/gpio.h> |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 12 | #include <linux/io.h> |
| 13 | #include <linux/platform_device.h> |
| 14 | #include <linux/reset.h> |
Thierry Reding | 306a7f9 | 2014-07-17 13:17:24 +0200 | [diff] [blame] | 15 | |
Thierry Reding | 7232398 | 2014-07-11 13:19:06 +0200 | [diff] [blame] | 16 | #include <soc/tegra/pmc.h> |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 17 | |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 18 | #include <drm/drm_atomic_helper.h> |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 19 | #include <drm/drm_dp_helper.h> |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 20 | #include <drm/drm_panel.h> |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 21 | |
| 22 | #include "dc.h" |
| 23 | #include "drm.h" |
| 24 | #include "sor.h" |
| 25 | |
| 26 | struct tegra_sor { |
| 27 | struct host1x_client client; |
| 28 | struct tegra_output output; |
| 29 | struct device *dev; |
| 30 | |
| 31 | void __iomem *regs; |
| 32 | |
| 33 | struct reset_control *rst; |
| 34 | struct clk *clk_parent; |
| 35 | struct clk *clk_safe; |
| 36 | struct clk *clk_dp; |
| 37 | struct clk *clk; |
| 38 | |
| 39 | struct tegra_dpaux *dpaux; |
| 40 | |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 41 | struct mutex lock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 42 | bool enabled; |
Thierry Reding | a82752e | 2014-01-31 10:02:15 +0100 | [diff] [blame] | 43 | |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 44 | struct drm_info_list *debugfs_files; |
| 45 | struct drm_minor *minor; |
Thierry Reding | a82752e | 2014-01-31 10:02:15 +0100 | [diff] [blame] | 46 | struct dentry *debugfs; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 47 | }; |
| 48 | |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 49 | struct tegra_sor_config { |
| 50 | u32 bits_per_pixel; |
| 51 | |
| 52 | u32 active_polarity; |
| 53 | u32 active_count; |
| 54 | u32 tu_size; |
| 55 | u32 active_frac; |
| 56 | u32 watermark; |
Thierry Reding | 7890b57 | 2014-06-05 16:12:46 +0200 | [diff] [blame] | 57 | |
| 58 | u32 hblank_symbols; |
| 59 | u32 vblank_symbols; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 60 | }; |
| 61 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 62 | static inline struct tegra_sor * |
| 63 | host1x_client_to_sor(struct host1x_client *client) |
| 64 | { |
| 65 | return container_of(client, struct tegra_sor, client); |
| 66 | } |
| 67 | |
| 68 | static inline struct tegra_sor *to_sor(struct tegra_output *output) |
| 69 | { |
| 70 | return container_of(output, struct tegra_sor, output); |
| 71 | } |
| 72 | |
Thierry Reding | 28fe207 | 2015-01-26 16:02:48 +0100 | [diff] [blame] | 73 | static inline u32 tegra_sor_readl(struct tegra_sor *sor, unsigned long offset) |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 74 | { |
| 75 | return readl(sor->regs + (offset << 2)); |
| 76 | } |
| 77 | |
Thierry Reding | 28fe207 | 2015-01-26 16:02:48 +0100 | [diff] [blame] | 78 | static inline void tegra_sor_writel(struct tegra_sor *sor, u32 value, |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 79 | unsigned long offset) |
| 80 | { |
| 81 | writel(value, sor->regs + (offset << 2)); |
| 82 | } |
| 83 | |
| 84 | static int tegra_sor_dp_train_fast(struct tegra_sor *sor, |
| 85 | struct drm_dp_link *link) |
| 86 | { |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 87 | unsigned int i; |
| 88 | u8 pattern; |
Thierry Reding | 28fe207 | 2015-01-26 16:02:48 +0100 | [diff] [blame] | 89 | u32 value; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 90 | int err; |
| 91 | |
| 92 | /* setup lane parameters */ |
| 93 | value = SOR_LANE_DRIVE_CURRENT_LANE3(0x40) | |
| 94 | SOR_LANE_DRIVE_CURRENT_LANE2(0x40) | |
| 95 | SOR_LANE_DRIVE_CURRENT_LANE1(0x40) | |
| 96 | SOR_LANE_DRIVE_CURRENT_LANE0(0x40); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 97 | tegra_sor_writel(sor, value, SOR_LANE_DRIVE_CURRENT0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 98 | |
| 99 | value = SOR_LANE_PREEMPHASIS_LANE3(0x0f) | |
| 100 | SOR_LANE_PREEMPHASIS_LANE2(0x0f) | |
| 101 | SOR_LANE_PREEMPHASIS_LANE1(0x0f) | |
| 102 | SOR_LANE_PREEMPHASIS_LANE0(0x0f); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 103 | tegra_sor_writel(sor, value, SOR_LANE_PREEMPHASIS0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 104 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 105 | value = SOR_LANE_POSTCURSOR_LANE3(0x00) | |
| 106 | SOR_LANE_POSTCURSOR_LANE2(0x00) | |
| 107 | SOR_LANE_POSTCURSOR_LANE1(0x00) | |
| 108 | SOR_LANE_POSTCURSOR_LANE0(0x00); |
| 109 | tegra_sor_writel(sor, value, SOR_LANE_POSTCURSOR0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 110 | |
| 111 | /* disable LVDS mode */ |
| 112 | tegra_sor_writel(sor, 0, SOR_LVDS); |
| 113 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 114 | value = tegra_sor_readl(sor, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 115 | value |= SOR_DP_PADCTL_TX_PU_ENABLE; |
| 116 | value &= ~SOR_DP_PADCTL_TX_PU_MASK; |
| 117 | value |= SOR_DP_PADCTL_TX_PU(2); /* XXX: don't hardcode? */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 118 | tegra_sor_writel(sor, value, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 119 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 120 | value = tegra_sor_readl(sor, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 121 | value |= SOR_DP_PADCTL_CM_TXD_3 | SOR_DP_PADCTL_CM_TXD_2 | |
| 122 | SOR_DP_PADCTL_CM_TXD_1 | SOR_DP_PADCTL_CM_TXD_0; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 123 | tegra_sor_writel(sor, value, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 124 | |
| 125 | usleep_range(10, 100); |
| 126 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 127 | value = tegra_sor_readl(sor, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 128 | value &= ~(SOR_DP_PADCTL_CM_TXD_3 | SOR_DP_PADCTL_CM_TXD_2 | |
| 129 | SOR_DP_PADCTL_CM_TXD_1 | SOR_DP_PADCTL_CM_TXD_0); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 130 | tegra_sor_writel(sor, value, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 131 | |
| 132 | err = tegra_dpaux_prepare(sor->dpaux, DP_SET_ANSI_8B10B); |
| 133 | if (err < 0) |
| 134 | return err; |
| 135 | |
| 136 | for (i = 0, value = 0; i < link->num_lanes; i++) { |
| 137 | unsigned long lane = SOR_DP_TPG_CHANNEL_CODING | |
| 138 | SOR_DP_TPG_SCRAMBLER_NONE | |
| 139 | SOR_DP_TPG_PATTERN_TRAIN1; |
| 140 | value = (value << 8) | lane; |
| 141 | } |
| 142 | |
| 143 | tegra_sor_writel(sor, value, SOR_DP_TPG); |
| 144 | |
| 145 | pattern = DP_TRAINING_PATTERN_1; |
| 146 | |
| 147 | err = tegra_dpaux_train(sor->dpaux, link, pattern); |
| 148 | if (err < 0) |
| 149 | return err; |
| 150 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 151 | value = tegra_sor_readl(sor, SOR_DP_SPARE0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 152 | value |= SOR_DP_SPARE_SEQ_ENABLE; |
| 153 | value &= ~SOR_DP_SPARE_PANEL_INTERNAL; |
| 154 | value |= SOR_DP_SPARE_MACRO_SOR_CLK; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 155 | tegra_sor_writel(sor, value, SOR_DP_SPARE0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 156 | |
| 157 | for (i = 0, value = 0; i < link->num_lanes; i++) { |
| 158 | unsigned long lane = SOR_DP_TPG_CHANNEL_CODING | |
| 159 | SOR_DP_TPG_SCRAMBLER_NONE | |
| 160 | SOR_DP_TPG_PATTERN_TRAIN2; |
| 161 | value = (value << 8) | lane; |
| 162 | } |
| 163 | |
| 164 | tegra_sor_writel(sor, value, SOR_DP_TPG); |
| 165 | |
| 166 | pattern = DP_LINK_SCRAMBLING_DISABLE | DP_TRAINING_PATTERN_2; |
| 167 | |
| 168 | err = tegra_dpaux_train(sor->dpaux, link, pattern); |
| 169 | if (err < 0) |
| 170 | return err; |
| 171 | |
| 172 | for (i = 0, value = 0; i < link->num_lanes; i++) { |
| 173 | unsigned long lane = SOR_DP_TPG_CHANNEL_CODING | |
| 174 | SOR_DP_TPG_SCRAMBLER_GALIOS | |
| 175 | SOR_DP_TPG_PATTERN_NONE; |
| 176 | value = (value << 8) | lane; |
| 177 | } |
| 178 | |
| 179 | tegra_sor_writel(sor, value, SOR_DP_TPG); |
| 180 | |
| 181 | pattern = DP_TRAINING_PATTERN_DISABLE; |
| 182 | |
| 183 | err = tegra_dpaux_train(sor->dpaux, link, pattern); |
| 184 | if (err < 0) |
| 185 | return err; |
| 186 | |
| 187 | return 0; |
| 188 | } |
| 189 | |
| 190 | static void tegra_sor_super_update(struct tegra_sor *sor) |
| 191 | { |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 192 | tegra_sor_writel(sor, 0, SOR_SUPER_STATE0); |
| 193 | tegra_sor_writel(sor, 1, SOR_SUPER_STATE0); |
| 194 | tegra_sor_writel(sor, 0, SOR_SUPER_STATE0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 195 | } |
| 196 | |
| 197 | static void tegra_sor_update(struct tegra_sor *sor) |
| 198 | { |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 199 | tegra_sor_writel(sor, 0, SOR_STATE0); |
| 200 | tegra_sor_writel(sor, 1, SOR_STATE0); |
| 201 | tegra_sor_writel(sor, 0, SOR_STATE0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 202 | } |
| 203 | |
| 204 | static int tegra_sor_setup_pwm(struct tegra_sor *sor, unsigned long timeout) |
| 205 | { |
Thierry Reding | 28fe207 | 2015-01-26 16:02:48 +0100 | [diff] [blame] | 206 | u32 value; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 207 | |
| 208 | value = tegra_sor_readl(sor, SOR_PWM_DIV); |
| 209 | value &= ~SOR_PWM_DIV_MASK; |
| 210 | value |= 0x400; /* period */ |
| 211 | tegra_sor_writel(sor, value, SOR_PWM_DIV); |
| 212 | |
| 213 | value = tegra_sor_readl(sor, SOR_PWM_CTL); |
| 214 | value &= ~SOR_PWM_CTL_DUTY_CYCLE_MASK; |
| 215 | value |= 0x400; /* duty cycle */ |
| 216 | value &= ~SOR_PWM_CTL_CLK_SEL; /* clock source: PCLK */ |
| 217 | value |= SOR_PWM_CTL_TRIGGER; |
| 218 | tegra_sor_writel(sor, value, SOR_PWM_CTL); |
| 219 | |
| 220 | timeout = jiffies + msecs_to_jiffies(timeout); |
| 221 | |
| 222 | while (time_before(jiffies, timeout)) { |
| 223 | value = tegra_sor_readl(sor, SOR_PWM_CTL); |
| 224 | if ((value & SOR_PWM_CTL_TRIGGER) == 0) |
| 225 | return 0; |
| 226 | |
| 227 | usleep_range(25, 100); |
| 228 | } |
| 229 | |
| 230 | return -ETIMEDOUT; |
| 231 | } |
| 232 | |
| 233 | static int tegra_sor_attach(struct tegra_sor *sor) |
| 234 | { |
| 235 | unsigned long value, timeout; |
| 236 | |
| 237 | /* wake up in normal mode */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 238 | value = tegra_sor_readl(sor, SOR_SUPER_STATE1); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 239 | value |= SOR_SUPER_STATE_HEAD_MODE_AWAKE; |
| 240 | value |= SOR_SUPER_STATE_MODE_NORMAL; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 241 | tegra_sor_writel(sor, value, SOR_SUPER_STATE1); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 242 | tegra_sor_super_update(sor); |
| 243 | |
| 244 | /* attach */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 245 | value = tegra_sor_readl(sor, SOR_SUPER_STATE1); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 246 | value |= SOR_SUPER_STATE_ATTACHED; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 247 | tegra_sor_writel(sor, value, SOR_SUPER_STATE1); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 248 | tegra_sor_super_update(sor); |
| 249 | |
| 250 | timeout = jiffies + msecs_to_jiffies(250); |
| 251 | |
| 252 | while (time_before(jiffies, timeout)) { |
| 253 | value = tegra_sor_readl(sor, SOR_TEST); |
| 254 | if ((value & SOR_TEST_ATTACHED) != 0) |
| 255 | return 0; |
| 256 | |
| 257 | usleep_range(25, 100); |
| 258 | } |
| 259 | |
| 260 | return -ETIMEDOUT; |
| 261 | } |
| 262 | |
| 263 | static int tegra_sor_wakeup(struct tegra_sor *sor) |
| 264 | { |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 265 | unsigned long value, timeout; |
| 266 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 267 | timeout = jiffies + msecs_to_jiffies(250); |
| 268 | |
| 269 | /* wait for head to wake up */ |
| 270 | while (time_before(jiffies, timeout)) { |
| 271 | value = tegra_sor_readl(sor, SOR_TEST); |
| 272 | value &= SOR_TEST_HEAD_MODE_MASK; |
| 273 | |
| 274 | if (value == SOR_TEST_HEAD_MODE_AWAKE) |
| 275 | return 0; |
| 276 | |
| 277 | usleep_range(25, 100); |
| 278 | } |
| 279 | |
| 280 | return -ETIMEDOUT; |
| 281 | } |
| 282 | |
| 283 | static int tegra_sor_power_up(struct tegra_sor *sor, unsigned long timeout) |
| 284 | { |
Thierry Reding | 28fe207 | 2015-01-26 16:02:48 +0100 | [diff] [blame] | 285 | u32 value; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 286 | |
| 287 | value = tegra_sor_readl(sor, SOR_PWR); |
| 288 | value |= SOR_PWR_TRIGGER | SOR_PWR_NORMAL_STATE_PU; |
| 289 | tegra_sor_writel(sor, value, SOR_PWR); |
| 290 | |
| 291 | timeout = jiffies + msecs_to_jiffies(timeout); |
| 292 | |
| 293 | while (time_before(jiffies, timeout)) { |
| 294 | value = tegra_sor_readl(sor, SOR_PWR); |
| 295 | if ((value & SOR_PWR_TRIGGER) == 0) |
| 296 | return 0; |
| 297 | |
| 298 | usleep_range(25, 100); |
| 299 | } |
| 300 | |
| 301 | return -ETIMEDOUT; |
| 302 | } |
| 303 | |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 304 | struct tegra_sor_params { |
| 305 | /* number of link clocks per line */ |
| 306 | unsigned int num_clocks; |
| 307 | /* ratio between input and output */ |
| 308 | u64 ratio; |
| 309 | /* precision factor */ |
| 310 | u64 precision; |
| 311 | |
| 312 | unsigned int active_polarity; |
| 313 | unsigned int active_count; |
| 314 | unsigned int active_frac; |
| 315 | unsigned int tu_size; |
| 316 | unsigned int error; |
| 317 | }; |
| 318 | |
| 319 | static int tegra_sor_compute_params(struct tegra_sor *sor, |
| 320 | struct tegra_sor_params *params, |
| 321 | unsigned int tu_size) |
| 322 | { |
| 323 | u64 active_sym, active_count, frac, approx; |
| 324 | u32 active_polarity, active_frac = 0; |
| 325 | const u64 f = params->precision; |
| 326 | s64 error; |
| 327 | |
| 328 | active_sym = params->ratio * tu_size; |
| 329 | active_count = div_u64(active_sym, f) * f; |
| 330 | frac = active_sym - active_count; |
| 331 | |
| 332 | /* fraction < 0.5 */ |
| 333 | if (frac >= (f / 2)) { |
| 334 | active_polarity = 1; |
| 335 | frac = f - frac; |
| 336 | } else { |
| 337 | active_polarity = 0; |
| 338 | } |
| 339 | |
| 340 | if (frac != 0) { |
| 341 | frac = div_u64(f * f, frac); /* 1/fraction */ |
| 342 | if (frac <= (15 * f)) { |
| 343 | active_frac = div_u64(frac, f); |
| 344 | |
| 345 | /* round up */ |
| 346 | if (active_polarity) |
| 347 | active_frac++; |
| 348 | } else { |
| 349 | active_frac = active_polarity ? 1 : 15; |
| 350 | } |
| 351 | } |
| 352 | |
| 353 | if (active_frac == 1) |
| 354 | active_polarity = 0; |
| 355 | |
| 356 | if (active_polarity == 1) { |
| 357 | if (active_frac) { |
| 358 | approx = active_count + (active_frac * (f - 1)) * f; |
| 359 | approx = div_u64(approx, active_frac * f); |
| 360 | } else { |
| 361 | approx = active_count + f; |
| 362 | } |
| 363 | } else { |
| 364 | if (active_frac) |
| 365 | approx = active_count + div_u64(f, active_frac); |
| 366 | else |
| 367 | approx = active_count; |
| 368 | } |
| 369 | |
| 370 | error = div_s64(active_sym - approx, tu_size); |
| 371 | error *= params->num_clocks; |
| 372 | |
| 373 | if (error <= 0 && abs64(error) < params->error) { |
| 374 | params->active_count = div_u64(active_count, f); |
| 375 | params->active_polarity = active_polarity; |
| 376 | params->active_frac = active_frac; |
| 377 | params->error = abs64(error); |
| 378 | params->tu_size = tu_size; |
| 379 | |
| 380 | if (error == 0) |
| 381 | return true; |
| 382 | } |
| 383 | |
| 384 | return false; |
| 385 | } |
| 386 | |
| 387 | static int tegra_sor_calc_config(struct tegra_sor *sor, |
Thierry Reding | 8044449 | 2015-07-29 18:20:01 +0200 | [diff] [blame] | 388 | const struct drm_display_mode *mode, |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 389 | struct tegra_sor_config *config, |
| 390 | struct drm_dp_link *link) |
| 391 | { |
| 392 | const u64 f = 100000, link_rate = link->rate * 1000; |
| 393 | const u64 pclk = mode->clock * 1000; |
Thierry Reding | 7890b57 | 2014-06-05 16:12:46 +0200 | [diff] [blame] | 394 | u64 input, output, watermark, num; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 395 | struct tegra_sor_params params; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 396 | u32 num_syms_per_line; |
| 397 | unsigned int i; |
| 398 | |
| 399 | if (!link_rate || !link->num_lanes || !pclk || !config->bits_per_pixel) |
| 400 | return -EINVAL; |
| 401 | |
| 402 | output = link_rate * 8 * link->num_lanes; |
| 403 | input = pclk * config->bits_per_pixel; |
| 404 | |
| 405 | if (input >= output) |
| 406 | return -ERANGE; |
| 407 | |
| 408 | memset(¶ms, 0, sizeof(params)); |
| 409 | params.ratio = div64_u64(input * f, output); |
| 410 | params.num_clocks = div_u64(link_rate * mode->hdisplay, pclk); |
| 411 | params.precision = f; |
| 412 | params.error = 64 * f; |
| 413 | params.tu_size = 64; |
| 414 | |
| 415 | for (i = params.tu_size; i >= 32; i--) |
| 416 | if (tegra_sor_compute_params(sor, ¶ms, i)) |
| 417 | break; |
| 418 | |
| 419 | if (params.active_frac == 0) { |
| 420 | config->active_polarity = 0; |
| 421 | config->active_count = params.active_count; |
| 422 | |
| 423 | if (!params.active_polarity) |
| 424 | config->active_count--; |
| 425 | |
| 426 | config->tu_size = params.tu_size; |
| 427 | config->active_frac = 1; |
| 428 | } else { |
| 429 | config->active_polarity = params.active_polarity; |
| 430 | config->active_count = params.active_count; |
| 431 | config->active_frac = params.active_frac; |
| 432 | config->tu_size = params.tu_size; |
| 433 | } |
| 434 | |
| 435 | dev_dbg(sor->dev, |
| 436 | "polarity: %d active count: %d tu size: %d active frac: %d\n", |
| 437 | config->active_polarity, config->active_count, |
| 438 | config->tu_size, config->active_frac); |
| 439 | |
| 440 | watermark = params.ratio * config->tu_size * (f - params.ratio); |
| 441 | watermark = div_u64(watermark, f); |
| 442 | |
| 443 | watermark = div_u64(watermark + params.error, f); |
| 444 | config->watermark = watermark + (config->bits_per_pixel / 8) + 2; |
| 445 | num_syms_per_line = (mode->hdisplay * config->bits_per_pixel) * |
| 446 | (link->num_lanes * 8); |
| 447 | |
| 448 | if (config->watermark > 30) { |
| 449 | config->watermark = 30; |
| 450 | dev_err(sor->dev, |
| 451 | "unable to compute TU size, forcing watermark to %u\n", |
| 452 | config->watermark); |
| 453 | } else if (config->watermark > num_syms_per_line) { |
| 454 | config->watermark = num_syms_per_line; |
| 455 | dev_err(sor->dev, "watermark too high, forcing to %u\n", |
| 456 | config->watermark); |
| 457 | } |
| 458 | |
Thierry Reding | 7890b57 | 2014-06-05 16:12:46 +0200 | [diff] [blame] | 459 | /* compute the number of symbols per horizontal blanking interval */ |
| 460 | num = ((mode->htotal - mode->hdisplay) - 7) * link_rate; |
| 461 | config->hblank_symbols = div_u64(num, pclk); |
| 462 | |
| 463 | if (link->capabilities & DP_LINK_CAP_ENHANCED_FRAMING) |
| 464 | config->hblank_symbols -= 3; |
| 465 | |
| 466 | config->hblank_symbols -= 12 / link->num_lanes; |
| 467 | |
| 468 | /* compute the number of symbols per vertical blanking interval */ |
| 469 | num = (mode->hdisplay - 25) * link_rate; |
| 470 | config->vblank_symbols = div_u64(num, pclk); |
| 471 | config->vblank_symbols -= 36 / link->num_lanes + 4; |
| 472 | |
| 473 | dev_dbg(sor->dev, "blank symbols: H:%u V:%u\n", config->hblank_symbols, |
| 474 | config->vblank_symbols); |
| 475 | |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 476 | return 0; |
| 477 | } |
| 478 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 479 | static int tegra_sor_detach(struct tegra_sor *sor) |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 480 | { |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 481 | unsigned long value, timeout; |
| 482 | |
| 483 | /* switch to safe mode */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 484 | value = tegra_sor_readl(sor, SOR_SUPER_STATE1); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 485 | value &= ~SOR_SUPER_STATE_MODE_NORMAL; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 486 | tegra_sor_writel(sor, value, SOR_SUPER_STATE1); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 487 | tegra_sor_super_update(sor); |
| 488 | |
| 489 | timeout = jiffies + msecs_to_jiffies(250); |
| 490 | |
| 491 | while (time_before(jiffies, timeout)) { |
| 492 | value = tegra_sor_readl(sor, SOR_PWR); |
| 493 | if (value & SOR_PWR_MODE_SAFE) |
| 494 | break; |
| 495 | } |
| 496 | |
| 497 | if ((value & SOR_PWR_MODE_SAFE) == 0) |
| 498 | return -ETIMEDOUT; |
| 499 | |
| 500 | /* go to sleep */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 501 | value = tegra_sor_readl(sor, SOR_SUPER_STATE1); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 502 | value &= ~SOR_SUPER_STATE_HEAD_MODE_MASK; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 503 | tegra_sor_writel(sor, value, SOR_SUPER_STATE1); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 504 | tegra_sor_super_update(sor); |
| 505 | |
| 506 | /* detach */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 507 | value = tegra_sor_readl(sor, SOR_SUPER_STATE1); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 508 | value &= ~SOR_SUPER_STATE_ATTACHED; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 509 | tegra_sor_writel(sor, value, SOR_SUPER_STATE1); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 510 | tegra_sor_super_update(sor); |
| 511 | |
| 512 | timeout = jiffies + msecs_to_jiffies(250); |
| 513 | |
| 514 | while (time_before(jiffies, timeout)) { |
| 515 | value = tegra_sor_readl(sor, SOR_TEST); |
| 516 | if ((value & SOR_TEST_ATTACHED) == 0) |
| 517 | break; |
| 518 | |
| 519 | usleep_range(25, 100); |
| 520 | } |
| 521 | |
| 522 | if ((value & SOR_TEST_ATTACHED) != 0) |
| 523 | return -ETIMEDOUT; |
| 524 | |
| 525 | return 0; |
| 526 | } |
| 527 | |
| 528 | static int tegra_sor_power_down(struct tegra_sor *sor) |
| 529 | { |
| 530 | unsigned long value, timeout; |
| 531 | int err; |
| 532 | |
| 533 | value = tegra_sor_readl(sor, SOR_PWR); |
| 534 | value &= ~SOR_PWR_NORMAL_STATE_PU; |
| 535 | value |= SOR_PWR_TRIGGER; |
| 536 | tegra_sor_writel(sor, value, SOR_PWR); |
| 537 | |
| 538 | timeout = jiffies + msecs_to_jiffies(250); |
| 539 | |
| 540 | while (time_before(jiffies, timeout)) { |
| 541 | value = tegra_sor_readl(sor, SOR_PWR); |
| 542 | if ((value & SOR_PWR_TRIGGER) == 0) |
| 543 | return 0; |
| 544 | |
| 545 | usleep_range(25, 100); |
| 546 | } |
| 547 | |
| 548 | if ((value & SOR_PWR_TRIGGER) != 0) |
| 549 | return -ETIMEDOUT; |
| 550 | |
| 551 | err = clk_set_parent(sor->clk, sor->clk_safe); |
| 552 | if (err < 0) |
| 553 | dev_err(sor->dev, "failed to set safe parent clock: %d\n", err); |
| 554 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 555 | value = tegra_sor_readl(sor, SOR_DP_PADCTL0); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 556 | value &= ~(SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_0 | |
| 557 | SOR_DP_PADCTL_PD_TXD_1 | SOR_DP_PADCTL_PD_TXD_2); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 558 | tegra_sor_writel(sor, value, SOR_DP_PADCTL0); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 559 | |
| 560 | /* stop lane sequencer */ |
| 561 | value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_UP | |
| 562 | SOR_LANE_SEQ_CTL_POWER_STATE_DOWN; |
| 563 | tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL); |
| 564 | |
| 565 | timeout = jiffies + msecs_to_jiffies(250); |
| 566 | |
| 567 | while (time_before(jiffies, timeout)) { |
| 568 | value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL); |
| 569 | if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0) |
| 570 | break; |
| 571 | |
| 572 | usleep_range(25, 100); |
| 573 | } |
| 574 | |
| 575 | if ((value & SOR_LANE_SEQ_CTL_TRIGGER) != 0) |
| 576 | return -ETIMEDOUT; |
| 577 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 578 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 579 | value |= SOR_PLL2_PORT_POWERDOWN; |
| 580 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 581 | |
| 582 | usleep_range(20, 100); |
| 583 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 584 | value = tegra_sor_readl(sor, SOR_PLL0); |
| 585 | value |= SOR_PLL0_VCOPD | SOR_PLL0_PWR; |
| 586 | tegra_sor_writel(sor, value, SOR_PLL0); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 587 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 588 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 589 | value |= SOR_PLL2_SEQ_PLLCAPPD; |
| 590 | value |= SOR_PLL2_SEQ_PLLCAPPD_ENFORCE; |
| 591 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 592 | |
| 593 | usleep_range(20, 100); |
| 594 | |
| 595 | return 0; |
| 596 | } |
| 597 | |
| 598 | static int tegra_sor_crc_open(struct inode *inode, struct file *file) |
| 599 | { |
| 600 | file->private_data = inode->i_private; |
| 601 | |
| 602 | return 0; |
| 603 | } |
| 604 | |
| 605 | static int tegra_sor_crc_release(struct inode *inode, struct file *file) |
| 606 | { |
| 607 | return 0; |
| 608 | } |
| 609 | |
| 610 | static int tegra_sor_crc_wait(struct tegra_sor *sor, unsigned long timeout) |
| 611 | { |
| 612 | u32 value; |
| 613 | |
| 614 | timeout = jiffies + msecs_to_jiffies(timeout); |
| 615 | |
| 616 | while (time_before(jiffies, timeout)) { |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 617 | value = tegra_sor_readl(sor, SOR_CRCA); |
| 618 | if (value & SOR_CRCA_VALID) |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 619 | return 0; |
| 620 | |
| 621 | usleep_range(100, 200); |
| 622 | } |
| 623 | |
| 624 | return -ETIMEDOUT; |
| 625 | } |
| 626 | |
| 627 | static ssize_t tegra_sor_crc_read(struct file *file, char __user *buffer, |
| 628 | size_t size, loff_t *ppos) |
| 629 | { |
| 630 | struct tegra_sor *sor = file->private_data; |
| 631 | ssize_t num, err; |
| 632 | char buf[10]; |
| 633 | u32 value; |
| 634 | |
| 635 | mutex_lock(&sor->lock); |
| 636 | |
| 637 | if (!sor->enabled) { |
| 638 | err = -EAGAIN; |
| 639 | goto unlock; |
| 640 | } |
| 641 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 642 | value = tegra_sor_readl(sor, SOR_STATE1); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 643 | value &= ~SOR_STATE_ASY_CRC_MODE_MASK; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 644 | tegra_sor_writel(sor, value, SOR_STATE1); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 645 | |
| 646 | value = tegra_sor_readl(sor, SOR_CRC_CNTRL); |
| 647 | value |= SOR_CRC_CNTRL_ENABLE; |
| 648 | tegra_sor_writel(sor, value, SOR_CRC_CNTRL); |
| 649 | |
| 650 | value = tegra_sor_readl(sor, SOR_TEST); |
| 651 | value &= ~SOR_TEST_CRC_POST_SERIALIZE; |
| 652 | tegra_sor_writel(sor, value, SOR_TEST); |
| 653 | |
| 654 | err = tegra_sor_crc_wait(sor, 100); |
| 655 | if (err < 0) |
| 656 | goto unlock; |
| 657 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 658 | tegra_sor_writel(sor, SOR_CRCA_RESET, SOR_CRCA); |
| 659 | value = tegra_sor_readl(sor, SOR_CRCB); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 660 | |
| 661 | num = scnprintf(buf, sizeof(buf), "%08x\n", value); |
| 662 | |
| 663 | err = simple_read_from_buffer(buffer, size, ppos, buf, num); |
| 664 | |
| 665 | unlock: |
| 666 | mutex_unlock(&sor->lock); |
| 667 | return err; |
| 668 | } |
| 669 | |
| 670 | static const struct file_operations tegra_sor_crc_fops = { |
| 671 | .owner = THIS_MODULE, |
| 672 | .open = tegra_sor_crc_open, |
| 673 | .read = tegra_sor_crc_read, |
| 674 | .release = tegra_sor_crc_release, |
| 675 | }; |
| 676 | |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 677 | static int tegra_sor_show_regs(struct seq_file *s, void *data) |
| 678 | { |
| 679 | struct drm_info_node *node = s->private; |
| 680 | struct tegra_sor *sor = node->info_ent->data; |
| 681 | |
| 682 | #define DUMP_REG(name) \ |
| 683 | seq_printf(s, "%-38s %#05x %08x\n", #name, name, \ |
| 684 | tegra_sor_readl(sor, name)) |
| 685 | |
| 686 | DUMP_REG(SOR_CTXSW); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 687 | DUMP_REG(SOR_SUPER_STATE0); |
| 688 | DUMP_REG(SOR_SUPER_STATE1); |
| 689 | DUMP_REG(SOR_STATE0); |
| 690 | DUMP_REG(SOR_STATE1); |
| 691 | DUMP_REG(SOR_HEAD_STATE0(0)); |
| 692 | DUMP_REG(SOR_HEAD_STATE0(1)); |
| 693 | DUMP_REG(SOR_HEAD_STATE1(0)); |
| 694 | DUMP_REG(SOR_HEAD_STATE1(1)); |
| 695 | DUMP_REG(SOR_HEAD_STATE2(0)); |
| 696 | DUMP_REG(SOR_HEAD_STATE2(1)); |
| 697 | DUMP_REG(SOR_HEAD_STATE3(0)); |
| 698 | DUMP_REG(SOR_HEAD_STATE3(1)); |
| 699 | DUMP_REG(SOR_HEAD_STATE4(0)); |
| 700 | DUMP_REG(SOR_HEAD_STATE4(1)); |
| 701 | DUMP_REG(SOR_HEAD_STATE5(0)); |
| 702 | DUMP_REG(SOR_HEAD_STATE5(1)); |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 703 | DUMP_REG(SOR_CRC_CNTRL); |
| 704 | DUMP_REG(SOR_DP_DEBUG_MVID); |
| 705 | DUMP_REG(SOR_CLK_CNTRL); |
| 706 | DUMP_REG(SOR_CAP); |
| 707 | DUMP_REG(SOR_PWR); |
| 708 | DUMP_REG(SOR_TEST); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 709 | DUMP_REG(SOR_PLL0); |
| 710 | DUMP_REG(SOR_PLL1); |
| 711 | DUMP_REG(SOR_PLL2); |
| 712 | DUMP_REG(SOR_PLL3); |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 713 | DUMP_REG(SOR_CSTM); |
| 714 | DUMP_REG(SOR_LVDS); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 715 | DUMP_REG(SOR_CRCA); |
| 716 | DUMP_REG(SOR_CRCB); |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 717 | DUMP_REG(SOR_BLANK); |
| 718 | DUMP_REG(SOR_SEQ_CTL); |
| 719 | DUMP_REG(SOR_LANE_SEQ_CTL); |
| 720 | DUMP_REG(SOR_SEQ_INST(0)); |
| 721 | DUMP_REG(SOR_SEQ_INST(1)); |
| 722 | DUMP_REG(SOR_SEQ_INST(2)); |
| 723 | DUMP_REG(SOR_SEQ_INST(3)); |
| 724 | DUMP_REG(SOR_SEQ_INST(4)); |
| 725 | DUMP_REG(SOR_SEQ_INST(5)); |
| 726 | DUMP_REG(SOR_SEQ_INST(6)); |
| 727 | DUMP_REG(SOR_SEQ_INST(7)); |
| 728 | DUMP_REG(SOR_SEQ_INST(8)); |
| 729 | DUMP_REG(SOR_SEQ_INST(9)); |
| 730 | DUMP_REG(SOR_SEQ_INST(10)); |
| 731 | DUMP_REG(SOR_SEQ_INST(11)); |
| 732 | DUMP_REG(SOR_SEQ_INST(12)); |
| 733 | DUMP_REG(SOR_SEQ_INST(13)); |
| 734 | DUMP_REG(SOR_SEQ_INST(14)); |
| 735 | DUMP_REG(SOR_SEQ_INST(15)); |
| 736 | DUMP_REG(SOR_PWM_DIV); |
| 737 | DUMP_REG(SOR_PWM_CTL); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 738 | DUMP_REG(SOR_VCRC_A0); |
| 739 | DUMP_REG(SOR_VCRC_A1); |
| 740 | DUMP_REG(SOR_VCRC_B0); |
| 741 | DUMP_REG(SOR_VCRC_B1); |
| 742 | DUMP_REG(SOR_CCRC_A0); |
| 743 | DUMP_REG(SOR_CCRC_A1); |
| 744 | DUMP_REG(SOR_CCRC_B0); |
| 745 | DUMP_REG(SOR_CCRC_B1); |
| 746 | DUMP_REG(SOR_EDATA_A0); |
| 747 | DUMP_REG(SOR_EDATA_A1); |
| 748 | DUMP_REG(SOR_EDATA_B0); |
| 749 | DUMP_REG(SOR_EDATA_B1); |
| 750 | DUMP_REG(SOR_COUNT_A0); |
| 751 | DUMP_REG(SOR_COUNT_A1); |
| 752 | DUMP_REG(SOR_COUNT_B0); |
| 753 | DUMP_REG(SOR_COUNT_B1); |
| 754 | DUMP_REG(SOR_DEBUG_A0); |
| 755 | DUMP_REG(SOR_DEBUG_A1); |
| 756 | DUMP_REG(SOR_DEBUG_B0); |
| 757 | DUMP_REG(SOR_DEBUG_B1); |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 758 | DUMP_REG(SOR_TRIG); |
| 759 | DUMP_REG(SOR_MSCHECK); |
| 760 | DUMP_REG(SOR_XBAR_CTRL); |
| 761 | DUMP_REG(SOR_XBAR_POL); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 762 | DUMP_REG(SOR_DP_LINKCTL0); |
| 763 | DUMP_REG(SOR_DP_LINKCTL1); |
| 764 | DUMP_REG(SOR_LANE_DRIVE_CURRENT0); |
| 765 | DUMP_REG(SOR_LANE_DRIVE_CURRENT1); |
| 766 | DUMP_REG(SOR_LANE4_DRIVE_CURRENT0); |
| 767 | DUMP_REG(SOR_LANE4_DRIVE_CURRENT1); |
| 768 | DUMP_REG(SOR_LANE_PREEMPHASIS0); |
| 769 | DUMP_REG(SOR_LANE_PREEMPHASIS1); |
| 770 | DUMP_REG(SOR_LANE4_PREEMPHASIS0); |
| 771 | DUMP_REG(SOR_LANE4_PREEMPHASIS1); |
| 772 | DUMP_REG(SOR_LANE_POSTCURSOR0); |
| 773 | DUMP_REG(SOR_LANE_POSTCURSOR1); |
| 774 | DUMP_REG(SOR_DP_CONFIG0); |
| 775 | DUMP_REG(SOR_DP_CONFIG1); |
| 776 | DUMP_REG(SOR_DP_MN0); |
| 777 | DUMP_REG(SOR_DP_MN1); |
| 778 | DUMP_REG(SOR_DP_PADCTL0); |
| 779 | DUMP_REG(SOR_DP_PADCTL1); |
| 780 | DUMP_REG(SOR_DP_DEBUG0); |
| 781 | DUMP_REG(SOR_DP_DEBUG1); |
| 782 | DUMP_REG(SOR_DP_SPARE0); |
| 783 | DUMP_REG(SOR_DP_SPARE1); |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 784 | DUMP_REG(SOR_DP_AUDIO_CTRL); |
| 785 | DUMP_REG(SOR_DP_AUDIO_HBLANK_SYMBOLS); |
| 786 | DUMP_REG(SOR_DP_AUDIO_VBLANK_SYMBOLS); |
| 787 | DUMP_REG(SOR_DP_GENERIC_INFOFRAME_HEADER); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 788 | DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK0); |
| 789 | DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK1); |
| 790 | DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK2); |
| 791 | DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK3); |
| 792 | DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK4); |
| 793 | DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK5); |
| 794 | DUMP_REG(SOR_DP_GENERIC_INFOFRAME_SUBPACK6); |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 795 | DUMP_REG(SOR_DP_TPG); |
| 796 | DUMP_REG(SOR_DP_TPG_CONFIG); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 797 | DUMP_REG(SOR_DP_LQ_CSTM0); |
| 798 | DUMP_REG(SOR_DP_LQ_CSTM1); |
| 799 | DUMP_REG(SOR_DP_LQ_CSTM2); |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 800 | |
| 801 | #undef DUMP_REG |
| 802 | |
| 803 | return 0; |
| 804 | } |
| 805 | |
| 806 | static const struct drm_info_list debugfs_files[] = { |
| 807 | { "regs", tegra_sor_show_regs, 0, NULL }, |
| 808 | }; |
| 809 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 810 | static int tegra_sor_debugfs_init(struct tegra_sor *sor, |
| 811 | struct drm_minor *minor) |
| 812 | { |
| 813 | struct dentry *entry; |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 814 | unsigned int i; |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 815 | int err = 0; |
| 816 | |
| 817 | sor->debugfs = debugfs_create_dir("sor", minor->debugfs_root); |
| 818 | if (!sor->debugfs) |
| 819 | return -ENOMEM; |
| 820 | |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 821 | sor->debugfs_files = kmemdup(debugfs_files, sizeof(debugfs_files), |
| 822 | GFP_KERNEL); |
| 823 | if (!sor->debugfs_files) { |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 824 | err = -ENOMEM; |
| 825 | goto remove; |
| 826 | } |
| 827 | |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 828 | for (i = 0; i < ARRAY_SIZE(debugfs_files); i++) |
| 829 | sor->debugfs_files[i].data = sor; |
| 830 | |
| 831 | err = drm_debugfs_create_files(sor->debugfs_files, |
| 832 | ARRAY_SIZE(debugfs_files), |
| 833 | sor->debugfs, minor); |
| 834 | if (err < 0) |
| 835 | goto free; |
| 836 | |
| 837 | entry = debugfs_create_file("crc", 0644, sor->debugfs, sor, |
| 838 | &tegra_sor_crc_fops); |
| 839 | if (!entry) { |
| 840 | err = -ENOMEM; |
| 841 | goto free; |
| 842 | } |
| 843 | |
Thierry Reding | 3ff1f22 | 2015-07-03 14:14:29 +0200 | [diff] [blame] | 844 | sor->minor = minor; |
| 845 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 846 | return err; |
| 847 | |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 848 | free: |
| 849 | kfree(sor->debugfs_files); |
| 850 | sor->debugfs_files = NULL; |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 851 | remove: |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 852 | debugfs_remove_recursive(sor->debugfs); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 853 | sor->debugfs = NULL; |
| 854 | return err; |
| 855 | } |
| 856 | |
Thierry Reding | 4009c22 | 2014-12-19 15:47:30 +0100 | [diff] [blame] | 857 | static void tegra_sor_debugfs_exit(struct tegra_sor *sor) |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 858 | { |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 859 | drm_debugfs_remove_files(sor->debugfs_files, ARRAY_SIZE(debugfs_files), |
| 860 | sor->minor); |
| 861 | sor->minor = NULL; |
| 862 | |
| 863 | kfree(sor->debugfs_files); |
Thierry Reding | 066d30f | 2015-07-03 14:16:30 +0200 | [diff] [blame] | 864 | sor->debugfs_files = NULL; |
Thierry Reding | dab1633 | 2015-01-26 16:04:08 +0100 | [diff] [blame] | 865 | |
| 866 | debugfs_remove_recursive(sor->debugfs); |
Thierry Reding | 066d30f | 2015-07-03 14:16:30 +0200 | [diff] [blame] | 867 | sor->debugfs = NULL; |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 868 | } |
| 869 | |
| 870 | static void tegra_sor_connector_dpms(struct drm_connector *connector, int mode) |
| 871 | { |
| 872 | } |
| 873 | |
| 874 | static enum drm_connector_status |
| 875 | tegra_sor_connector_detect(struct drm_connector *connector, bool force) |
| 876 | { |
| 877 | struct tegra_output *output = connector_to_output(connector); |
| 878 | struct tegra_sor *sor = to_sor(output); |
| 879 | |
| 880 | if (sor->dpaux) |
| 881 | return tegra_dpaux_detect(sor->dpaux); |
| 882 | |
| 883 | return connector_status_unknown; |
| 884 | } |
| 885 | |
| 886 | static const struct drm_connector_funcs tegra_sor_connector_funcs = { |
| 887 | .dpms = tegra_sor_connector_dpms, |
Thierry Reding | 9d44189 | 2014-11-24 17:02:53 +0100 | [diff] [blame] | 888 | .reset = drm_atomic_helper_connector_reset, |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 889 | .detect = tegra_sor_connector_detect, |
| 890 | .fill_modes = drm_helper_probe_single_connector_modes, |
| 891 | .destroy = tegra_output_connector_destroy, |
Thierry Reding | 9d44189 | 2014-11-24 17:02:53 +0100 | [diff] [blame] | 892 | .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state, |
Thierry Reding | 4aa3df7 | 2014-11-24 16:27:13 +0100 | [diff] [blame] | 893 | .atomic_destroy_state = drm_atomic_helper_connector_destroy_state, |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 894 | }; |
| 895 | |
| 896 | static int tegra_sor_connector_get_modes(struct drm_connector *connector) |
| 897 | { |
| 898 | struct tegra_output *output = connector_to_output(connector); |
| 899 | struct tegra_sor *sor = to_sor(output); |
| 900 | int err; |
| 901 | |
| 902 | if (sor->dpaux) |
| 903 | tegra_dpaux_enable(sor->dpaux); |
| 904 | |
| 905 | err = tegra_output_connector_get_modes(connector); |
| 906 | |
| 907 | if (sor->dpaux) |
| 908 | tegra_dpaux_disable(sor->dpaux); |
| 909 | |
| 910 | return err; |
| 911 | } |
| 912 | |
| 913 | static enum drm_mode_status |
| 914 | tegra_sor_connector_mode_valid(struct drm_connector *connector, |
| 915 | struct drm_display_mode *mode) |
| 916 | { |
| 917 | return MODE_OK; |
| 918 | } |
| 919 | |
| 920 | static const struct drm_connector_helper_funcs tegra_sor_connector_helper_funcs = { |
| 921 | .get_modes = tegra_sor_connector_get_modes, |
| 922 | .mode_valid = tegra_sor_connector_mode_valid, |
| 923 | .best_encoder = tegra_output_connector_best_encoder, |
| 924 | }; |
| 925 | |
| 926 | static const struct drm_encoder_funcs tegra_sor_encoder_funcs = { |
| 927 | .destroy = tegra_output_encoder_destroy, |
| 928 | }; |
| 929 | |
| 930 | static void tegra_sor_encoder_dpms(struct drm_encoder *encoder, int mode) |
| 931 | { |
| 932 | } |
| 933 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 934 | static void tegra_sor_encoder_prepare(struct drm_encoder *encoder) |
| 935 | { |
| 936 | } |
| 937 | |
| 938 | static void tegra_sor_encoder_commit(struct drm_encoder *encoder) |
| 939 | { |
| 940 | } |
| 941 | |
| 942 | static void tegra_sor_encoder_mode_set(struct drm_encoder *encoder, |
| 943 | struct drm_display_mode *mode, |
| 944 | struct drm_display_mode *adjusted) |
| 945 | { |
| 946 | struct tegra_output *output = encoder_to_output(encoder); |
| 947 | struct tegra_dc *dc = to_tegra_dc(encoder->crtc); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 948 | unsigned int vbe, vse, hbe, hse, vbs, hbs, i; |
| 949 | struct tegra_sor *sor = to_sor(output); |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 950 | struct tegra_sor_config config; |
| 951 | struct drm_dp_link link; |
| 952 | struct drm_dp_aux *aux; |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 953 | int err = 0; |
Thierry Reding | 28fe207 | 2015-01-26 16:02:48 +0100 | [diff] [blame] | 954 | u32 value; |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 955 | |
| 956 | mutex_lock(&sor->lock); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 957 | |
| 958 | if (sor->enabled) |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 959 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 960 | |
| 961 | err = clk_prepare_enable(sor->clk); |
| 962 | if (err < 0) |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 963 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 964 | |
| 965 | reset_control_deassert(sor->rst); |
| 966 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 967 | if (output->panel) |
| 968 | drm_panel_prepare(output->panel); |
| 969 | |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 970 | /* FIXME: properly convert to struct drm_dp_aux */ |
| 971 | aux = (struct drm_dp_aux *)sor->dpaux; |
| 972 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 973 | if (sor->dpaux) { |
| 974 | err = tegra_dpaux_enable(sor->dpaux); |
| 975 | if (err < 0) |
| 976 | dev_err(sor->dev, "failed to enable DP: %d\n", err); |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 977 | |
| 978 | err = drm_dp_link_probe(aux, &link); |
| 979 | if (err < 0) { |
| 980 | dev_err(sor->dev, "failed to probe eDP link: %d\n", |
| 981 | err); |
Dan Carpenter | 2263c46 | 2014-06-11 10:06:09 +0300 | [diff] [blame] | 982 | goto unlock; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 983 | } |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 984 | } |
| 985 | |
| 986 | err = clk_set_parent(sor->clk, sor->clk_safe); |
| 987 | if (err < 0) |
| 988 | dev_err(sor->dev, "failed to set safe parent clock: %d\n", err); |
| 989 | |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 990 | memset(&config, 0, sizeof(config)); |
Stéphane Marchesin | 054b1bd | 2014-06-19 18:18:29 -0700 | [diff] [blame] | 991 | config.bits_per_pixel = output->connector.display_info.bpc * 3; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 992 | |
| 993 | err = tegra_sor_calc_config(sor, mode, &config, &link); |
| 994 | if (err < 0) |
| 995 | dev_err(sor->dev, "failed to compute link configuration: %d\n", |
| 996 | err); |
| 997 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 998 | value = tegra_sor_readl(sor, SOR_CLK_CNTRL); |
| 999 | value &= ~SOR_CLK_CNTRL_DP_CLK_SEL_MASK; |
| 1000 | value |= SOR_CLK_CNTRL_DP_CLK_SEL_SINGLE_DPCLK; |
| 1001 | tegra_sor_writel(sor, value, SOR_CLK_CNTRL); |
| 1002 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1003 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 1004 | value &= ~SOR_PLL2_BANDGAP_POWERDOWN; |
| 1005 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1006 | usleep_range(20, 100); |
| 1007 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1008 | value = tegra_sor_readl(sor, SOR_PLL3); |
| 1009 | value |= SOR_PLL3_PLL_VDD_MODE_3V3; |
| 1010 | tegra_sor_writel(sor, value, SOR_PLL3); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1011 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1012 | value = SOR_PLL0_ICHPMP(0xf) | SOR_PLL0_VCOCAP_RST | |
| 1013 | SOR_PLL0_PLLREG_LEVEL_V45 | SOR_PLL0_RESISTOR_EXT; |
| 1014 | tegra_sor_writel(sor, value, SOR_PLL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1015 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1016 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 1017 | value |= SOR_PLL2_SEQ_PLLCAPPD; |
| 1018 | value &= ~SOR_PLL2_SEQ_PLLCAPPD_ENFORCE; |
| 1019 | value |= SOR_PLL2_LVDS_ENABLE; |
| 1020 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1021 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1022 | value = SOR_PLL1_TERM_COMPOUT | SOR_PLL1_TMDS_TERM; |
| 1023 | tegra_sor_writel(sor, value, SOR_PLL1); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1024 | |
| 1025 | while (true) { |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1026 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 1027 | if ((value & SOR_PLL2_SEQ_PLLCAPPD_ENFORCE) == 0) |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1028 | break; |
| 1029 | |
| 1030 | usleep_range(250, 1000); |
| 1031 | } |
| 1032 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1033 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 1034 | value &= ~SOR_PLL2_POWERDOWN_OVERRIDE; |
| 1035 | value &= ~SOR_PLL2_PORT_POWERDOWN; |
| 1036 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1037 | |
| 1038 | /* |
| 1039 | * power up |
| 1040 | */ |
| 1041 | |
| 1042 | /* set safe link bandwidth (1.62 Gbps) */ |
| 1043 | value = tegra_sor_readl(sor, SOR_CLK_CNTRL); |
| 1044 | value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK; |
| 1045 | value |= SOR_CLK_CNTRL_DP_LINK_SPEED_G1_62; |
| 1046 | tegra_sor_writel(sor, value, SOR_CLK_CNTRL); |
| 1047 | |
| 1048 | /* step 1 */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1049 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 1050 | value |= SOR_PLL2_SEQ_PLLCAPPD_ENFORCE | SOR_PLL2_PORT_POWERDOWN | |
| 1051 | SOR_PLL2_BANDGAP_POWERDOWN; |
| 1052 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1053 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1054 | value = tegra_sor_readl(sor, SOR_PLL0); |
| 1055 | value |= SOR_PLL0_VCOPD | SOR_PLL0_PWR; |
| 1056 | tegra_sor_writel(sor, value, SOR_PLL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1057 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1058 | value = tegra_sor_readl(sor, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1059 | value &= ~SOR_DP_PADCTL_PAD_CAL_PD; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1060 | tegra_sor_writel(sor, value, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1061 | |
| 1062 | /* step 2 */ |
| 1063 | err = tegra_io_rail_power_on(TEGRA_IO_RAIL_LVDS); |
| 1064 | if (err < 0) { |
| 1065 | dev_err(sor->dev, "failed to power on I/O rail: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1066 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1067 | } |
| 1068 | |
| 1069 | usleep_range(5, 100); |
| 1070 | |
| 1071 | /* step 3 */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1072 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 1073 | value &= ~SOR_PLL2_BANDGAP_POWERDOWN; |
| 1074 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1075 | |
| 1076 | usleep_range(20, 100); |
| 1077 | |
| 1078 | /* step 4 */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1079 | value = tegra_sor_readl(sor, SOR_PLL0); |
| 1080 | value &= ~SOR_PLL0_VCOPD; |
| 1081 | value &= ~SOR_PLL0_PWR; |
| 1082 | tegra_sor_writel(sor, value, SOR_PLL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1083 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1084 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 1085 | value &= ~SOR_PLL2_SEQ_PLLCAPPD_ENFORCE; |
| 1086 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1087 | |
| 1088 | usleep_range(200, 1000); |
| 1089 | |
| 1090 | /* step 5 */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1091 | value = tegra_sor_readl(sor, SOR_PLL2); |
| 1092 | value &= ~SOR_PLL2_PORT_POWERDOWN; |
| 1093 | tegra_sor_writel(sor, value, SOR_PLL2); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1094 | |
| 1095 | /* switch to DP clock */ |
| 1096 | err = clk_set_parent(sor->clk, sor->clk_dp); |
| 1097 | if (err < 0) |
| 1098 | dev_err(sor->dev, "failed to set DP parent clock: %d\n", err); |
| 1099 | |
Thierry Reding | 899451b | 2014-06-05 16:19:48 +0200 | [diff] [blame] | 1100 | /* power DP lanes */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1101 | value = tegra_sor_readl(sor, SOR_DP_PADCTL0); |
Thierry Reding | 899451b | 2014-06-05 16:19:48 +0200 | [diff] [blame] | 1102 | |
| 1103 | if (link.num_lanes <= 2) |
| 1104 | value &= ~(SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_2); |
| 1105 | else |
| 1106 | value |= SOR_DP_PADCTL_PD_TXD_3 | SOR_DP_PADCTL_PD_TXD_2; |
| 1107 | |
| 1108 | if (link.num_lanes <= 1) |
| 1109 | value &= ~SOR_DP_PADCTL_PD_TXD_1; |
| 1110 | else |
| 1111 | value |= SOR_DP_PADCTL_PD_TXD_1; |
| 1112 | |
| 1113 | if (link.num_lanes == 0) |
| 1114 | value &= ~SOR_DP_PADCTL_PD_TXD_0; |
| 1115 | else |
| 1116 | value |= SOR_DP_PADCTL_PD_TXD_0; |
| 1117 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1118 | tegra_sor_writel(sor, value, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1119 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1120 | value = tegra_sor_readl(sor, SOR_DP_LINKCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1121 | value &= ~SOR_DP_LINKCTL_LANE_COUNT_MASK; |
Thierry Reding | 0c90a18 | 2014-06-05 16:29:46 +0200 | [diff] [blame] | 1122 | value |= SOR_DP_LINKCTL_LANE_COUNT(link.num_lanes); |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1123 | tegra_sor_writel(sor, value, SOR_DP_LINKCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1124 | |
| 1125 | /* start lane sequencer */ |
| 1126 | value = SOR_LANE_SEQ_CTL_TRIGGER | SOR_LANE_SEQ_CTL_SEQUENCE_DOWN | |
| 1127 | SOR_LANE_SEQ_CTL_POWER_STATE_UP; |
| 1128 | tegra_sor_writel(sor, value, SOR_LANE_SEQ_CTL); |
| 1129 | |
| 1130 | while (true) { |
| 1131 | value = tegra_sor_readl(sor, SOR_LANE_SEQ_CTL); |
| 1132 | if ((value & SOR_LANE_SEQ_CTL_TRIGGER) == 0) |
| 1133 | break; |
| 1134 | |
| 1135 | usleep_range(250, 1000); |
| 1136 | } |
| 1137 | |
Thierry Reding | a4263fe | 2014-06-05 16:16:23 +0200 | [diff] [blame] | 1138 | /* set link bandwidth */ |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1139 | value = tegra_sor_readl(sor, SOR_CLK_CNTRL); |
| 1140 | value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK; |
Thierry Reding | a4263fe | 2014-06-05 16:16:23 +0200 | [diff] [blame] | 1141 | value |= drm_dp_link_rate_to_bw_code(link.rate) << 2; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1142 | tegra_sor_writel(sor, value, SOR_CLK_CNTRL); |
| 1143 | |
| 1144 | /* set linkctl */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1145 | value = tegra_sor_readl(sor, SOR_DP_LINKCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1146 | value |= SOR_DP_LINKCTL_ENABLE; |
| 1147 | |
| 1148 | value &= ~SOR_DP_LINKCTL_TU_SIZE_MASK; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 1149 | value |= SOR_DP_LINKCTL_TU_SIZE(config.tu_size); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1150 | |
| 1151 | value |= SOR_DP_LINKCTL_ENHANCED_FRAME; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1152 | tegra_sor_writel(sor, value, SOR_DP_LINKCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1153 | |
| 1154 | for (i = 0, value = 0; i < 4; i++) { |
| 1155 | unsigned long lane = SOR_DP_TPG_CHANNEL_CODING | |
| 1156 | SOR_DP_TPG_SCRAMBLER_GALIOS | |
| 1157 | SOR_DP_TPG_PATTERN_NONE; |
| 1158 | value = (value << 8) | lane; |
| 1159 | } |
| 1160 | |
| 1161 | tegra_sor_writel(sor, value, SOR_DP_TPG); |
| 1162 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1163 | value = tegra_sor_readl(sor, SOR_DP_CONFIG0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1164 | value &= ~SOR_DP_CONFIG_WATERMARK_MASK; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 1165 | value |= SOR_DP_CONFIG_WATERMARK(config.watermark); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1166 | |
| 1167 | value &= ~SOR_DP_CONFIG_ACTIVE_SYM_COUNT_MASK; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 1168 | value |= SOR_DP_CONFIG_ACTIVE_SYM_COUNT(config.active_count); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1169 | |
| 1170 | value &= ~SOR_DP_CONFIG_ACTIVE_SYM_FRAC_MASK; |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 1171 | value |= SOR_DP_CONFIG_ACTIVE_SYM_FRAC(config.active_frac); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1172 | |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 1173 | if (config.active_polarity) |
| 1174 | value |= SOR_DP_CONFIG_ACTIVE_SYM_POLARITY; |
| 1175 | else |
| 1176 | value &= ~SOR_DP_CONFIG_ACTIVE_SYM_POLARITY; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1177 | |
| 1178 | value |= SOR_DP_CONFIG_ACTIVE_SYM_ENABLE; |
Thierry Reding | 1f64ae7 | 2014-06-05 16:20:27 +0200 | [diff] [blame] | 1179 | value |= SOR_DP_CONFIG_DISPARITY_NEGATIVE; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1180 | tegra_sor_writel(sor, value, SOR_DP_CONFIG0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1181 | |
| 1182 | value = tegra_sor_readl(sor, SOR_DP_AUDIO_HBLANK_SYMBOLS); |
| 1183 | value &= ~SOR_DP_AUDIO_HBLANK_SYMBOLS_MASK; |
Thierry Reding | 7890b57 | 2014-06-05 16:12:46 +0200 | [diff] [blame] | 1184 | value |= config.hblank_symbols & 0xffff; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1185 | tegra_sor_writel(sor, value, SOR_DP_AUDIO_HBLANK_SYMBOLS); |
| 1186 | |
| 1187 | value = tegra_sor_readl(sor, SOR_DP_AUDIO_VBLANK_SYMBOLS); |
| 1188 | value &= ~SOR_DP_AUDIO_VBLANK_SYMBOLS_MASK; |
Thierry Reding | 7890b57 | 2014-06-05 16:12:46 +0200 | [diff] [blame] | 1189 | value |= config.vblank_symbols & 0xffff; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1190 | tegra_sor_writel(sor, value, SOR_DP_AUDIO_VBLANK_SYMBOLS); |
| 1191 | |
| 1192 | /* enable pad calibration logic */ |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1193 | value = tegra_sor_readl(sor, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1194 | value |= SOR_DP_PADCTL_PAD_CAL_PD; |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1195 | tegra_sor_writel(sor, value, SOR_DP_PADCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1196 | |
| 1197 | if (sor->dpaux) { |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1198 | u8 rate, lanes; |
| 1199 | |
| 1200 | err = drm_dp_link_probe(aux, &link); |
| 1201 | if (err < 0) { |
| 1202 | dev_err(sor->dev, "failed to probe eDP link: %d\n", |
| 1203 | err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1204 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1205 | } |
| 1206 | |
| 1207 | err = drm_dp_link_power_up(aux, &link); |
| 1208 | if (err < 0) { |
| 1209 | dev_err(sor->dev, "failed to power up eDP link: %d\n", |
| 1210 | err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1211 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1212 | } |
| 1213 | |
| 1214 | err = drm_dp_link_configure(aux, &link); |
| 1215 | if (err < 0) { |
| 1216 | dev_err(sor->dev, "failed to configure eDP link: %d\n", |
| 1217 | err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1218 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1219 | } |
| 1220 | |
| 1221 | rate = drm_dp_link_rate_to_bw_code(link.rate); |
| 1222 | lanes = link.num_lanes; |
| 1223 | |
| 1224 | value = tegra_sor_readl(sor, SOR_CLK_CNTRL); |
| 1225 | value &= ~SOR_CLK_CNTRL_DP_LINK_SPEED_MASK; |
| 1226 | value |= SOR_CLK_CNTRL_DP_LINK_SPEED(rate); |
| 1227 | tegra_sor_writel(sor, value, SOR_CLK_CNTRL); |
| 1228 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1229 | value = tegra_sor_readl(sor, SOR_DP_LINKCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1230 | value &= ~SOR_DP_LINKCTL_LANE_COUNT_MASK; |
| 1231 | value |= SOR_DP_LINKCTL_LANE_COUNT(lanes); |
| 1232 | |
| 1233 | if (link.capabilities & DP_LINK_CAP_ENHANCED_FRAMING) |
| 1234 | value |= SOR_DP_LINKCTL_ENHANCED_FRAME; |
| 1235 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1236 | tegra_sor_writel(sor, value, SOR_DP_LINKCTL0); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1237 | |
| 1238 | /* disable training pattern generator */ |
| 1239 | |
| 1240 | for (i = 0; i < link.num_lanes; i++) { |
| 1241 | unsigned long lane = SOR_DP_TPG_CHANNEL_CODING | |
| 1242 | SOR_DP_TPG_SCRAMBLER_GALIOS | |
| 1243 | SOR_DP_TPG_PATTERN_NONE; |
| 1244 | value = (value << 8) | lane; |
| 1245 | } |
| 1246 | |
| 1247 | tegra_sor_writel(sor, value, SOR_DP_TPG); |
| 1248 | |
| 1249 | err = tegra_sor_dp_train_fast(sor, &link); |
| 1250 | if (err < 0) { |
| 1251 | dev_err(sor->dev, "DP fast link training failed: %d\n", |
| 1252 | err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1253 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1254 | } |
| 1255 | |
| 1256 | dev_dbg(sor->dev, "fast link training succeeded\n"); |
| 1257 | } |
| 1258 | |
| 1259 | err = tegra_sor_power_up(sor, 250); |
| 1260 | if (err < 0) { |
| 1261 | dev_err(sor->dev, "failed to power up SOR: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1262 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1263 | } |
| 1264 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1265 | /* |
| 1266 | * configure panel (24bpp, vsync-, hsync-, DP-A protocol, complete |
| 1267 | * raster, associate with display controller) |
| 1268 | */ |
Thierry Reding | 3f4f3b5 | 2014-07-07 15:35:06 +0200 | [diff] [blame] | 1269 | value = SOR_STATE_ASY_PROTOCOL_DP_A | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1270 | SOR_STATE_ASY_CRC_MODE_COMPLETE | |
| 1271 | SOR_STATE_ASY_OWNER(dc->pipe + 1); |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 1272 | |
Thierry Reding | 3f4f3b5 | 2014-07-07 15:35:06 +0200 | [diff] [blame] | 1273 | if (mode->flags & DRM_MODE_FLAG_PHSYNC) |
| 1274 | value &= ~SOR_STATE_ASY_HSYNCPOL; |
| 1275 | |
| 1276 | if (mode->flags & DRM_MODE_FLAG_NHSYNC) |
| 1277 | value |= SOR_STATE_ASY_HSYNCPOL; |
| 1278 | |
| 1279 | if (mode->flags & DRM_MODE_FLAG_PVSYNC) |
| 1280 | value &= ~SOR_STATE_ASY_VSYNCPOL; |
| 1281 | |
| 1282 | if (mode->flags & DRM_MODE_FLAG_NVSYNC) |
| 1283 | value |= SOR_STATE_ASY_VSYNCPOL; |
| 1284 | |
Thierry Reding | 34fa183 | 2014-06-05 16:31:10 +0200 | [diff] [blame] | 1285 | switch (config.bits_per_pixel) { |
| 1286 | case 24: |
| 1287 | value |= SOR_STATE_ASY_PIXELDEPTH_BPP_24_444; |
| 1288 | break; |
| 1289 | |
| 1290 | case 18: |
| 1291 | value |= SOR_STATE_ASY_PIXELDEPTH_BPP_18_444; |
| 1292 | break; |
| 1293 | |
| 1294 | default: |
| 1295 | BUG(); |
| 1296 | break; |
| 1297 | } |
| 1298 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1299 | tegra_sor_writel(sor, value, SOR_STATE1); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1300 | |
| 1301 | /* |
| 1302 | * TODO: The video timing programming below doesn't seem to match the |
| 1303 | * register definitions. |
| 1304 | */ |
| 1305 | |
| 1306 | value = ((mode->vtotal & 0x7fff) << 16) | (mode->htotal & 0x7fff); |
Thierry Reding | 51511d0 | 2015-07-30 18:47:07 +0200 | [diff] [blame^] | 1307 | tegra_sor_writel(sor, value, SOR_HEAD_STATE1(dc->pipe)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1308 | |
| 1309 | vse = mode->vsync_end - mode->vsync_start - 1; |
| 1310 | hse = mode->hsync_end - mode->hsync_start - 1; |
| 1311 | |
| 1312 | value = ((vse & 0x7fff) << 16) | (hse & 0x7fff); |
Thierry Reding | 51511d0 | 2015-07-30 18:47:07 +0200 | [diff] [blame^] | 1313 | tegra_sor_writel(sor, value, SOR_HEAD_STATE2(dc->pipe)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1314 | |
| 1315 | vbe = vse + (mode->vsync_start - mode->vdisplay); |
| 1316 | hbe = hse + (mode->hsync_start - mode->hdisplay); |
| 1317 | |
| 1318 | value = ((vbe & 0x7fff) << 16) | (hbe & 0x7fff); |
Thierry Reding | 51511d0 | 2015-07-30 18:47:07 +0200 | [diff] [blame^] | 1319 | tegra_sor_writel(sor, value, SOR_HEAD_STATE3(dc->pipe)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1320 | |
| 1321 | vbs = vbe + mode->vdisplay; |
| 1322 | hbs = hbe + mode->hdisplay; |
| 1323 | |
| 1324 | value = ((vbs & 0x7fff) << 16) | (hbs & 0x7fff); |
Thierry Reding | 51511d0 | 2015-07-30 18:47:07 +0200 | [diff] [blame^] | 1325 | tegra_sor_writel(sor, value, SOR_HEAD_STATE4(dc->pipe)); |
| 1326 | |
| 1327 | tegra_sor_writel(sor, 0x1, SOR_HEAD_STATE5(dc->pipe)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1328 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1329 | /* CSTM (LVDS, link A/B, upper) */ |
Stéphane Marchesin | 143b1df | 2014-05-22 20:32:47 -0700 | [diff] [blame] | 1330 | value = SOR_CSTM_LVDS | SOR_CSTM_LINK_ACT_A | SOR_CSTM_LINK_ACT_B | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1331 | SOR_CSTM_UPPER; |
| 1332 | tegra_sor_writel(sor, value, SOR_CSTM); |
| 1333 | |
| 1334 | /* PWM setup */ |
| 1335 | err = tegra_sor_setup_pwm(sor, 250); |
| 1336 | if (err < 0) { |
| 1337 | dev_err(sor->dev, "failed to setup PWM: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1338 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1339 | } |
| 1340 | |
Thierry Reding | 666cb87 | 2014-12-08 16:32:47 +0100 | [diff] [blame] | 1341 | tegra_sor_update(sor); |
| 1342 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1343 | value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS); |
| 1344 | value |= SOR_ENABLE; |
| 1345 | tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS); |
| 1346 | |
Thierry Reding | 666cb87 | 2014-12-08 16:32:47 +0100 | [diff] [blame] | 1347 | tegra_dc_commit(dc); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1348 | |
| 1349 | err = tegra_sor_attach(sor); |
| 1350 | if (err < 0) { |
| 1351 | dev_err(sor->dev, "failed to attach SOR: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1352 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1353 | } |
| 1354 | |
| 1355 | err = tegra_sor_wakeup(sor); |
| 1356 | if (err < 0) { |
| 1357 | dev_err(sor->dev, "failed to enable DC: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1358 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1359 | } |
| 1360 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1361 | if (output->panel) |
| 1362 | drm_panel_enable(output->panel); |
| 1363 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1364 | sor->enabled = true; |
| 1365 | |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1366 | unlock: |
| 1367 | mutex_unlock(&sor->lock); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1368 | } |
| 1369 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1370 | static void tegra_sor_encoder_disable(struct drm_encoder *encoder) |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1371 | { |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1372 | struct tegra_output *output = encoder_to_output(encoder); |
| 1373 | struct tegra_dc *dc = to_tegra_dc(encoder->crtc); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1374 | struct tegra_sor *sor = to_sor(output); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1375 | u32 value; |
| 1376 | int err; |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1377 | |
| 1378 | mutex_lock(&sor->lock); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1379 | |
| 1380 | if (!sor->enabled) |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1381 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1382 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1383 | if (output->panel) |
| 1384 | drm_panel_disable(output->panel); |
| 1385 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1386 | err = tegra_sor_detach(sor); |
| 1387 | if (err < 0) { |
| 1388 | dev_err(sor->dev, "failed to detach SOR: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1389 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1390 | } |
| 1391 | |
Thierry Reding | a9a9e4f | 2015-04-27 15:01:14 +0200 | [diff] [blame] | 1392 | tegra_sor_writel(sor, 0, SOR_STATE1); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1393 | tegra_sor_update(sor); |
| 1394 | |
| 1395 | /* |
| 1396 | * The following accesses registers of the display controller, so make |
| 1397 | * sure it's only executed when the output is attached to one. |
| 1398 | */ |
| 1399 | if (dc) { |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1400 | value = tegra_dc_readl(dc, DC_DISP_DISP_WIN_OPTIONS); |
| 1401 | value &= ~SOR_ENABLE; |
| 1402 | tegra_dc_writel(dc, value, DC_DISP_DISP_WIN_OPTIONS); |
| 1403 | |
Thierry Reding | 62b9e06 | 2014-11-21 17:33:33 +0100 | [diff] [blame] | 1404 | tegra_dc_commit(dc); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1405 | } |
| 1406 | |
| 1407 | err = tegra_sor_power_down(sor); |
| 1408 | if (err < 0) { |
| 1409 | dev_err(sor->dev, "failed to power down SOR: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1410 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1411 | } |
| 1412 | |
| 1413 | if (sor->dpaux) { |
| 1414 | err = tegra_dpaux_disable(sor->dpaux); |
| 1415 | if (err < 0) { |
| 1416 | dev_err(sor->dev, "failed to disable DP: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1417 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1418 | } |
| 1419 | } |
| 1420 | |
| 1421 | err = tegra_io_rail_power_off(TEGRA_IO_RAIL_LVDS); |
| 1422 | if (err < 0) { |
| 1423 | dev_err(sor->dev, "failed to power off I/O rail: %d\n", err); |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1424 | goto unlock; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1425 | } |
| 1426 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1427 | if (output->panel) |
| 1428 | drm_panel_unprepare(output->panel); |
| 1429 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1430 | clk_disable_unprepare(sor->clk); |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1431 | reset_control_assert(sor->rst); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1432 | |
| 1433 | sor->enabled = false; |
| 1434 | |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1435 | unlock: |
| 1436 | mutex_unlock(&sor->lock); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1437 | } |
| 1438 | |
Thierry Reding | 82f1511 | 2014-12-08 17:26:46 +0100 | [diff] [blame] | 1439 | static int |
| 1440 | tegra_sor_encoder_atomic_check(struct drm_encoder *encoder, |
| 1441 | struct drm_crtc_state *crtc_state, |
| 1442 | struct drm_connector_state *conn_state) |
| 1443 | { |
| 1444 | struct tegra_output *output = encoder_to_output(encoder); |
| 1445 | struct tegra_dc *dc = to_tegra_dc(conn_state->crtc); |
| 1446 | unsigned long pclk = crtc_state->mode.clock * 1000; |
| 1447 | struct tegra_sor *sor = to_sor(output); |
| 1448 | int err; |
| 1449 | |
| 1450 | err = tegra_dc_state_setup_clock(dc, crtc_state, sor->clk_parent, |
| 1451 | pclk, 0); |
| 1452 | if (err < 0) { |
| 1453 | dev_err(output->dev, "failed to setup CRTC state: %d\n", err); |
| 1454 | return err; |
| 1455 | } |
| 1456 | |
| 1457 | return 0; |
| 1458 | } |
| 1459 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1460 | static const struct drm_encoder_helper_funcs tegra_sor_encoder_helper_funcs = { |
| 1461 | .dpms = tegra_sor_encoder_dpms, |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1462 | .prepare = tegra_sor_encoder_prepare, |
| 1463 | .commit = tegra_sor_encoder_commit, |
| 1464 | .mode_set = tegra_sor_encoder_mode_set, |
| 1465 | .disable = tegra_sor_encoder_disable, |
Thierry Reding | 82f1511 | 2014-12-08 17:26:46 +0100 | [diff] [blame] | 1466 | .atomic_check = tegra_sor_encoder_atomic_check, |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1467 | }; |
| 1468 | |
| 1469 | static int tegra_sor_init(struct host1x_client *client) |
| 1470 | { |
Thierry Reding | 9910f5c | 2014-05-22 09:57:15 +0200 | [diff] [blame] | 1471 | struct drm_device *drm = dev_get_drvdata(client->parent); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1472 | struct tegra_sor *sor = host1x_client_to_sor(client); |
| 1473 | int err; |
| 1474 | |
| 1475 | if (!sor->dpaux) |
| 1476 | return -ENODEV; |
| 1477 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1478 | sor->output.dev = sor->dev; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1479 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1480 | drm_connector_init(drm, &sor->output.connector, |
| 1481 | &tegra_sor_connector_funcs, |
| 1482 | DRM_MODE_CONNECTOR_eDP); |
| 1483 | drm_connector_helper_add(&sor->output.connector, |
| 1484 | &tegra_sor_connector_helper_funcs); |
| 1485 | sor->output.connector.dpms = DRM_MODE_DPMS_OFF; |
| 1486 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1487 | drm_encoder_init(drm, &sor->output.encoder, &tegra_sor_encoder_funcs, |
| 1488 | DRM_MODE_ENCODER_TMDS); |
| 1489 | drm_encoder_helper_add(&sor->output.encoder, |
| 1490 | &tegra_sor_encoder_helper_funcs); |
| 1491 | |
| 1492 | drm_mode_connector_attach_encoder(&sor->output.connector, |
| 1493 | &sor->output.encoder); |
| 1494 | drm_connector_register(&sor->output.connector); |
| 1495 | |
Thierry Reding | ea130b2 | 2014-12-19 15:51:35 +0100 | [diff] [blame] | 1496 | err = tegra_output_init(drm, &sor->output); |
| 1497 | if (err < 0) { |
| 1498 | dev_err(client->dev, "failed to initialize output: %d\n", err); |
| 1499 | return err; |
| 1500 | } |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1501 | |
Thierry Reding | ea130b2 | 2014-12-19 15:51:35 +0100 | [diff] [blame] | 1502 | sor->output.encoder.possible_crtcs = 0x3; |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1503 | |
Thierry Reding | a82752e | 2014-01-31 10:02:15 +0100 | [diff] [blame] | 1504 | if (IS_ENABLED(CONFIG_DEBUG_FS)) { |
Thierry Reding | 1b0c7b4 | 2014-05-28 13:46:12 +0200 | [diff] [blame] | 1505 | err = tegra_sor_debugfs_init(sor, drm->primary); |
Thierry Reding | a82752e | 2014-01-31 10:02:15 +0100 | [diff] [blame] | 1506 | if (err < 0) |
| 1507 | dev_err(sor->dev, "debugfs setup failed: %d\n", err); |
| 1508 | } |
| 1509 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1510 | if (sor->dpaux) { |
| 1511 | err = tegra_dpaux_attach(sor->dpaux, &sor->output); |
| 1512 | if (err < 0) { |
| 1513 | dev_err(sor->dev, "failed to attach DP: %d\n", err); |
| 1514 | return err; |
| 1515 | } |
| 1516 | } |
| 1517 | |
Tomeu Vizoso | 535a65d | 2015-03-30 10:33:03 +0200 | [diff] [blame] | 1518 | /* |
| 1519 | * XXX: Remove this reset once proper hand-over from firmware to |
| 1520 | * kernel is possible. |
| 1521 | */ |
| 1522 | err = reset_control_assert(sor->rst); |
| 1523 | if (err < 0) { |
| 1524 | dev_err(sor->dev, "failed to assert SOR reset: %d\n", err); |
| 1525 | return err; |
| 1526 | } |
| 1527 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1528 | err = clk_prepare_enable(sor->clk); |
| 1529 | if (err < 0) { |
| 1530 | dev_err(sor->dev, "failed to enable clock: %d\n", err); |
| 1531 | return err; |
| 1532 | } |
| 1533 | |
Tomeu Vizoso | 535a65d | 2015-03-30 10:33:03 +0200 | [diff] [blame] | 1534 | usleep_range(1000, 3000); |
| 1535 | |
| 1536 | err = reset_control_deassert(sor->rst); |
| 1537 | if (err < 0) { |
| 1538 | dev_err(sor->dev, "failed to deassert SOR reset: %d\n", err); |
| 1539 | return err; |
| 1540 | } |
| 1541 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1542 | err = clk_prepare_enable(sor->clk_safe); |
| 1543 | if (err < 0) |
| 1544 | return err; |
| 1545 | |
| 1546 | err = clk_prepare_enable(sor->clk_dp); |
| 1547 | if (err < 0) |
| 1548 | return err; |
| 1549 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1550 | return 0; |
| 1551 | } |
| 1552 | |
| 1553 | static int tegra_sor_exit(struct host1x_client *client) |
| 1554 | { |
| 1555 | struct tegra_sor *sor = host1x_client_to_sor(client); |
| 1556 | int err; |
| 1557 | |
Thierry Reding | 328ec69 | 2014-12-19 15:55:08 +0100 | [diff] [blame] | 1558 | tegra_output_exit(&sor->output); |
| 1559 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1560 | if (sor->dpaux) { |
| 1561 | err = tegra_dpaux_detach(sor->dpaux); |
| 1562 | if (err < 0) { |
| 1563 | dev_err(sor->dev, "failed to detach DP: %d\n", err); |
| 1564 | return err; |
| 1565 | } |
| 1566 | } |
| 1567 | |
Thierry Reding | 6fad8f6 | 2014-11-28 15:41:34 +0100 | [diff] [blame] | 1568 | clk_disable_unprepare(sor->clk_safe); |
| 1569 | clk_disable_unprepare(sor->clk_dp); |
| 1570 | clk_disable_unprepare(sor->clk); |
| 1571 | |
Thierry Reding | 4009c22 | 2014-12-19 15:47:30 +0100 | [diff] [blame] | 1572 | if (IS_ENABLED(CONFIG_DEBUG_FS)) |
| 1573 | tegra_sor_debugfs_exit(sor); |
Thierry Reding | a82752e | 2014-01-31 10:02:15 +0100 | [diff] [blame] | 1574 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1575 | return 0; |
| 1576 | } |
| 1577 | |
| 1578 | static const struct host1x_client_ops sor_client_ops = { |
| 1579 | .init = tegra_sor_init, |
| 1580 | .exit = tegra_sor_exit, |
| 1581 | }; |
| 1582 | |
| 1583 | static int tegra_sor_probe(struct platform_device *pdev) |
| 1584 | { |
| 1585 | struct device_node *np; |
| 1586 | struct tegra_sor *sor; |
| 1587 | struct resource *regs; |
| 1588 | int err; |
| 1589 | |
| 1590 | sor = devm_kzalloc(&pdev->dev, sizeof(*sor), GFP_KERNEL); |
| 1591 | if (!sor) |
| 1592 | return -ENOMEM; |
| 1593 | |
| 1594 | sor->output.dev = sor->dev = &pdev->dev; |
| 1595 | |
| 1596 | np = of_parse_phandle(pdev->dev.of_node, "nvidia,dpaux", 0); |
| 1597 | if (np) { |
| 1598 | sor->dpaux = tegra_dpaux_find_by_of_node(np); |
| 1599 | of_node_put(np); |
| 1600 | |
| 1601 | if (!sor->dpaux) |
| 1602 | return -EPROBE_DEFER; |
| 1603 | } |
| 1604 | |
| 1605 | err = tegra_output_probe(&sor->output); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1606 | if (err < 0) { |
| 1607 | dev_err(&pdev->dev, "failed to probe output: %d\n", err); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1608 | return err; |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1609 | } |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1610 | |
| 1611 | regs = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 1612 | sor->regs = devm_ioremap_resource(&pdev->dev, regs); |
| 1613 | if (IS_ERR(sor->regs)) |
| 1614 | return PTR_ERR(sor->regs); |
| 1615 | |
| 1616 | sor->rst = devm_reset_control_get(&pdev->dev, "sor"); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1617 | if (IS_ERR(sor->rst)) { |
| 1618 | dev_err(&pdev->dev, "failed to get reset control: %ld\n", |
| 1619 | PTR_ERR(sor->rst)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1620 | return PTR_ERR(sor->rst); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1621 | } |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1622 | |
| 1623 | sor->clk = devm_clk_get(&pdev->dev, NULL); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1624 | if (IS_ERR(sor->clk)) { |
| 1625 | dev_err(&pdev->dev, "failed to get module clock: %ld\n", |
| 1626 | PTR_ERR(sor->clk)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1627 | return PTR_ERR(sor->clk); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1628 | } |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1629 | |
| 1630 | sor->clk_parent = devm_clk_get(&pdev->dev, "parent"); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1631 | if (IS_ERR(sor->clk_parent)) { |
| 1632 | dev_err(&pdev->dev, "failed to get parent clock: %ld\n", |
| 1633 | PTR_ERR(sor->clk_parent)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1634 | return PTR_ERR(sor->clk_parent); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1635 | } |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1636 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1637 | sor->clk_safe = devm_clk_get(&pdev->dev, "safe"); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1638 | if (IS_ERR(sor->clk_safe)) { |
| 1639 | dev_err(&pdev->dev, "failed to get safe clock: %ld\n", |
| 1640 | PTR_ERR(sor->clk_safe)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1641 | return PTR_ERR(sor->clk_safe); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1642 | } |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1643 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1644 | sor->clk_dp = devm_clk_get(&pdev->dev, "dp"); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1645 | if (IS_ERR(sor->clk_dp)) { |
| 1646 | dev_err(&pdev->dev, "failed to get DP clock: %ld\n", |
| 1647 | PTR_ERR(sor->clk_dp)); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1648 | return PTR_ERR(sor->clk_dp); |
Thierry Reding | 4dbdc74 | 2015-04-27 15:04:26 +0200 | [diff] [blame] | 1649 | } |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1650 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1651 | INIT_LIST_HEAD(&sor->client.list); |
| 1652 | sor->client.ops = &sor_client_ops; |
| 1653 | sor->client.dev = &pdev->dev; |
| 1654 | |
Thierry Reding | 86f5c52 | 2014-03-26 11:13:16 +0100 | [diff] [blame] | 1655 | mutex_init(&sor->lock); |
| 1656 | |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1657 | err = host1x_client_register(&sor->client); |
| 1658 | if (err < 0) { |
| 1659 | dev_err(&pdev->dev, "failed to register host1x client: %d\n", |
| 1660 | err); |
| 1661 | return err; |
| 1662 | } |
| 1663 | |
| 1664 | platform_set_drvdata(pdev, sor); |
| 1665 | |
| 1666 | return 0; |
| 1667 | } |
| 1668 | |
| 1669 | static int tegra_sor_remove(struct platform_device *pdev) |
| 1670 | { |
| 1671 | struct tegra_sor *sor = platform_get_drvdata(pdev); |
| 1672 | int err; |
| 1673 | |
| 1674 | err = host1x_client_unregister(&sor->client); |
| 1675 | if (err < 0) { |
| 1676 | dev_err(&pdev->dev, "failed to unregister host1x client: %d\n", |
| 1677 | err); |
| 1678 | return err; |
| 1679 | } |
| 1680 | |
Thierry Reding | 328ec69 | 2014-12-19 15:55:08 +0100 | [diff] [blame] | 1681 | tegra_output_remove(&sor->output); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1682 | |
| 1683 | return 0; |
| 1684 | } |
| 1685 | |
| 1686 | static const struct of_device_id tegra_sor_of_match[] = { |
| 1687 | { .compatible = "nvidia,tegra124-sor", }, |
| 1688 | { }, |
| 1689 | }; |
Stephen Warren | ef70728 | 2014-06-18 16:21:55 -0600 | [diff] [blame] | 1690 | MODULE_DEVICE_TABLE(of, tegra_sor_of_match); |
Thierry Reding | 6b6b604 | 2013-11-15 16:06:05 +0100 | [diff] [blame] | 1691 | |
| 1692 | struct platform_driver tegra_sor_driver = { |
| 1693 | .driver = { |
| 1694 | .name = "tegra-sor", |
| 1695 | .of_match_table = tegra_sor_of_match, |
| 1696 | }, |
| 1697 | .probe = tegra_sor_probe, |
| 1698 | .remove = tegra_sor_remove, |
| 1699 | }; |