Alper Nebi Yasak | 53f2033 | 2020-10-22 22:43:13 +0300 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2015 Google, Inc |
| 4 | * Copyright 2014 Rockchip Inc. |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <clk.h> |
| 9 | #include <display.h> |
| 10 | #include <dm.h> |
| 11 | #include <edid.h> |
Simon Glass | 0f2af88 | 2020-05-10 11:40:05 -0600 | [diff] [blame] | 12 | #include <log.h> |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 13 | #include <regmap.h> |
| 14 | #include <syscon.h> |
| 15 | #include <video.h> |
Simon Glass | 3ba929a | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 16 | #include <asm/global_data.h> |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 17 | #include <asm/gpio.h> |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 18 | #include <asm/io.h> |
Kever Yang | 9fbe17c | 2019-03-28 11:01:23 +0800 | [diff] [blame] | 19 | #include <asm/arch-rockchip/clock.h> |
| 20 | #include <asm/arch-rockchip/edp_rk3288.h> |
| 21 | #include <asm/arch-rockchip/vop_rk3288.h> |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 22 | #include <dm/device-internal.h> |
| 23 | #include <dm/uclass-internal.h> |
Simon Glass | 4dcacfc | 2020-05-10 11:40:13 -0600 | [diff] [blame] | 24 | #include <linux/bitops.h> |
Simon Glass | d66c5f7 | 2020-02-03 07:36:15 -0700 | [diff] [blame] | 25 | #include <linux/err.h> |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 26 | #include <power/regulator.h> |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 27 | #include "rk_vop.h" |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 28 | |
| 29 | DECLARE_GLOBAL_DATA_PTR; |
| 30 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 31 | enum vop_pol { |
| 32 | HSYNC_POSITIVE = 0, |
| 33 | VSYNC_POSITIVE = 1, |
| 34 | DEN_NEGATIVE = 2, |
| 35 | DCLK_INVERT = 3 |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 36 | }; |
| 37 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 38 | static void rkvop_enable(struct rk3288_vop *regs, ulong fbbase, |
| 39 | int fb_bits_per_pixel, |
| 40 | const struct display_timing *edid) |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 41 | { |
| 42 | u32 lb_mode; |
| 43 | u32 rgb_mode; |
| 44 | u32 hactive = edid->hactive.typ; |
| 45 | u32 vactive = edid->vactive.typ; |
| 46 | |
| 47 | writel(V_ACT_WIDTH(hactive - 1) | V_ACT_HEIGHT(vactive - 1), |
| 48 | ®s->win0_act_info); |
| 49 | |
| 50 | writel(V_DSP_XST(edid->hsync_len.typ + edid->hback_porch.typ) | |
| 51 | V_DSP_YST(edid->vsync_len.typ + edid->vback_porch.typ), |
| 52 | ®s->win0_dsp_st); |
| 53 | |
| 54 | writel(V_DSP_WIDTH(hactive - 1) | |
| 55 | V_DSP_HEIGHT(vactive - 1), |
| 56 | ®s->win0_dsp_info); |
| 57 | |
| 58 | clrsetbits_le32(®s->win0_color_key, M_WIN0_KEY_EN | M_WIN0_KEY_COLOR, |
| 59 | V_WIN0_KEY_EN(0) | V_WIN0_KEY_COLOR(0)); |
| 60 | |
| 61 | switch (fb_bits_per_pixel) { |
| 62 | case 16: |
| 63 | rgb_mode = RGB565; |
| 64 | writel(V_RGB565_VIRWIDTH(hactive), ®s->win0_vir); |
| 65 | break; |
| 66 | case 24: |
| 67 | rgb_mode = RGB888; |
| 68 | writel(V_RGB888_VIRWIDTH(hactive), ®s->win0_vir); |
| 69 | break; |
| 70 | case 32: |
| 71 | default: |
| 72 | rgb_mode = ARGB8888; |
| 73 | writel(V_ARGB888_VIRWIDTH(hactive), ®s->win0_vir); |
| 74 | break; |
| 75 | } |
| 76 | |
| 77 | if (hactive > 2560) |
| 78 | lb_mode = LB_RGB_3840X2; |
| 79 | else if (hactive > 1920) |
| 80 | lb_mode = LB_RGB_2560X4; |
| 81 | else if (hactive > 1280) |
| 82 | lb_mode = LB_RGB_1920X5; |
| 83 | else |
| 84 | lb_mode = LB_RGB_1280X8; |
| 85 | |
| 86 | clrsetbits_le32(®s->win0_ctrl0, |
| 87 | M_WIN0_LB_MODE | M_WIN0_DATA_FMT | M_WIN0_EN, |
| 88 | V_WIN0_LB_MODE(lb_mode) | V_WIN0_DATA_FMT(rgb_mode) | |
| 89 | V_WIN0_EN(1)); |
| 90 | |
| 91 | writel(fbbase, ®s->win0_yrgb_mst); |
| 92 | writel(0x01, ®s->reg_cfg_done); /* enable reg config */ |
| 93 | } |
| 94 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 95 | static void rkvop_set_pin_polarity(struct udevice *dev, |
| 96 | enum vop_modes mode, u32 polarity) |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 97 | { |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 98 | struct rkvop_driverdata *ops = |
| 99 | (struct rkvop_driverdata *)dev_get_driver_data(dev); |
| 100 | |
| 101 | if (ops->set_pin_polarity) |
| 102 | ops->set_pin_polarity(dev, mode, polarity); |
| 103 | } |
| 104 | |
| 105 | static void rkvop_enable_output(struct udevice *dev, enum vop_modes mode) |
| 106 | { |
| 107 | struct rk_vop_priv *priv = dev_get_priv(dev); |
| 108 | struct rk3288_vop *regs = priv->regs; |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 109 | |
Simon Glass | d742950 | 2017-05-31 17:57:29 -0600 | [diff] [blame] | 110 | /* remove from standby */ |
| 111 | clrbits_le32(®s->sys_ctrl, V_STANDBY_EN(1)); |
| 112 | |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 113 | switch (mode) { |
| 114 | case VOP_MODE_HDMI: |
| 115 | clrsetbits_le32(®s->sys_ctrl, M_ALL_OUT_EN, |
| 116 | V_HDMI_OUT_EN(1)); |
| 117 | break; |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 118 | |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 119 | case VOP_MODE_EDP: |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 120 | clrsetbits_le32(®s->sys_ctrl, M_ALL_OUT_EN, |
| 121 | V_EDP_OUT_EN(1)); |
| 122 | break; |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 123 | |
Jagan Teki | 5023ade | 2020-04-02 17:11:22 +0530 | [diff] [blame] | 124 | #if defined(CONFIG_ROCKCHIP_RK3288) |
Jacob Chen | 0b6aee4 | 2016-03-14 11:20:18 +0800 | [diff] [blame] | 125 | case VOP_MODE_LVDS: |
| 126 | clrsetbits_le32(®s->sys_ctrl, M_ALL_OUT_EN, |
| 127 | V_RGB_OUT_EN(1)); |
| 128 | break; |
Jagan Teki | 5023ade | 2020-04-02 17:11:22 +0530 | [diff] [blame] | 129 | #endif |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 130 | |
Eric Gao | 0f49407 | 2017-05-02 18:23:52 +0800 | [diff] [blame] | 131 | case VOP_MODE_MIPI: |
| 132 | clrsetbits_le32(®s->sys_ctrl, M_ALL_OUT_EN, |
| 133 | V_MIPI_OUT_EN(1)); |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 134 | break; |
| 135 | |
| 136 | default: |
| 137 | debug("%s: unsupported output mode %x\n", __func__, mode); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 138 | } |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 139 | } |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 140 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 141 | static void rkvop_mode_set(struct udevice *dev, |
| 142 | const struct display_timing *edid, |
| 143 | enum vop_modes mode) |
| 144 | { |
| 145 | struct rk_vop_priv *priv = dev_get_priv(dev); |
| 146 | struct rk3288_vop *regs = priv->regs; |
| 147 | struct rkvop_driverdata *data = |
| 148 | (struct rkvop_driverdata *)dev_get_driver_data(dev); |
Jacob Chen | 0b6aee4 | 2016-03-14 11:20:18 +0800 | [diff] [blame] | 149 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 150 | u32 hactive = edid->hactive.typ; |
| 151 | u32 vactive = edid->vactive.typ; |
| 152 | u32 hsync_len = edid->hsync_len.typ; |
| 153 | u32 hback_porch = edid->hback_porch.typ; |
| 154 | u32 vsync_len = edid->vsync_len.typ; |
| 155 | u32 vback_porch = edid->vback_porch.typ; |
| 156 | u32 hfront_porch = edid->hfront_porch.typ; |
| 157 | u32 vfront_porch = edid->vfront_porch.typ; |
| 158 | int mode_flags; |
| 159 | u32 pin_polarity; |
| 160 | |
| 161 | pin_polarity = BIT(DCLK_INVERT); |
| 162 | if (edid->flags & DISPLAY_FLAGS_HSYNC_HIGH) |
| 163 | pin_polarity |= BIT(HSYNC_POSITIVE); |
| 164 | if (edid->flags & DISPLAY_FLAGS_VSYNC_HIGH) |
| 165 | pin_polarity |= BIT(VSYNC_POSITIVE); |
| 166 | |
| 167 | rkvop_set_pin_polarity(dev, mode, pin_polarity); |
| 168 | rkvop_enable_output(dev, mode); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 169 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 170 | mode_flags = 0; /* RGB888 */ |
| 171 | if ((data->features & VOP_FEATURE_OUTPUT_10BIT) && |
| 172 | (mode == VOP_MODE_HDMI || mode == VOP_MODE_EDP)) |
| 173 | mode_flags = 15; /* RGBaaa */ |
| 174 | |
| 175 | clrsetbits_le32(®s->dsp_ctrl0, M_DSP_OUT_MODE, |
| 176 | V_DSP_OUT_MODE(mode_flags)); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 177 | |
| 178 | writel(V_HSYNC(hsync_len) | |
| 179 | V_HORPRD(hsync_len + hback_porch + hactive + hfront_porch), |
| 180 | ®s->dsp_htotal_hs_end); |
| 181 | |
| 182 | writel(V_HEAP(hsync_len + hback_porch + hactive) | |
| 183 | V_HASP(hsync_len + hback_porch), |
| 184 | ®s->dsp_hact_st_end); |
| 185 | |
| 186 | writel(V_VSYNC(vsync_len) | |
| 187 | V_VERPRD(vsync_len + vback_porch + vactive + vfront_porch), |
| 188 | ®s->dsp_vtotal_vs_end); |
| 189 | |
| 190 | writel(V_VAEP(vsync_len + vback_porch + vactive)| |
| 191 | V_VASP(vsync_len + vback_porch), |
| 192 | ®s->dsp_vact_st_end); |
| 193 | |
| 194 | writel(V_HEAP(hsync_len + hback_porch + hactive) | |
| 195 | V_HASP(hsync_len + hback_porch), |
| 196 | ®s->post_dsp_hact_info); |
| 197 | |
| 198 | writel(V_VAEP(vsync_len + vback_porch + vactive)| |
| 199 | V_VASP(vsync_len + vback_porch), |
| 200 | ®s->post_dsp_vact_info); |
| 201 | |
| 202 | writel(0x01, ®s->reg_cfg_done); /* enable reg config */ |
| 203 | } |
| 204 | |
| 205 | /** |
| 206 | * rk_display_init() - Try to enable the given display device |
| 207 | * |
| 208 | * This function performs many steps: |
| 209 | * - Finds the display device being referenced by @ep_node |
| 210 | * - Puts the VOP's ID into its uclass platform data |
| 211 | * - Probes the device to set it up |
| 212 | * - Reads the EDID timing information |
| 213 | * - Sets up the VOP clocks, etc. for the selected pixel clock and display mode |
| 214 | * - Enables the display (the display device handles this and will do different |
| 215 | * things depending on the display type) |
| 216 | * - Tells the uclass about the display resolution so that the console will |
| 217 | * appear correctly |
| 218 | * |
| 219 | * @dev: VOP device that we want to connect to the display |
| 220 | * @fbbase: Frame buffer address |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 221 | * @ep_node: Device tree node to process - this is the offset of an endpoint |
| 222 | * node within the VOP's 'port' list. |
| 223 | * @return 0 if OK, -ve if something went wrong |
| 224 | */ |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 225 | static int rk_display_init(struct udevice *dev, ulong fbbase, ofnode ep_node) |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 226 | { |
| 227 | struct video_priv *uc_priv = dev_get_uclass_priv(dev); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 228 | struct rk_vop_priv *priv = dev_get_priv(dev); |
| 229 | int vop_id, remote_vop_id; |
| 230 | struct rk3288_vop *regs = priv->regs; |
| 231 | struct display_timing timing; |
| 232 | struct udevice *disp; |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 233 | int ret; |
| 234 | u32 remote_phandle; |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 235 | struct display_plat *disp_uc_plat; |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 236 | struct clk clk; |
Eric Gao | 58791c3 | 2017-05-02 18:23:53 +0800 | [diff] [blame] | 237 | enum video_log2_bpp l2bpp; |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 238 | ofnode remote; |
Arnaud Patard (Rtp) | 058ffd6 | 2021-03-05 11:27:46 +0100 | [diff] [blame^] | 239 | const char *compat; |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 240 | |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 241 | debug("%s(%s, %lu, %s)\n", __func__, |
| 242 | dev_read_name(dev), fbbase, ofnode_get_name(ep_node)); |
| 243 | |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 244 | ret = ofnode_read_u32(ep_node, "remote-endpoint", &remote_phandle); |
| 245 | if (ret) |
| 246 | return ret; |
| 247 | |
| 248 | remote = ofnode_get_by_phandle(remote_phandle); |
| 249 | if (!ofnode_valid(remote)) |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 250 | return -EINVAL; |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 251 | remote_vop_id = ofnode_read_u32_default(remote, "reg", -1); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 252 | debug("remote vop_id=%d\n", remote_vop_id); |
| 253 | |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 254 | /* |
| 255 | * The remote-endpoint references into a subnode of the encoder |
| 256 | * (i.e. HDMI, MIPI, etc.) with the DTS looking something like |
| 257 | * the following (assume 'hdmi_in_vopl' to be referenced): |
| 258 | * |
| 259 | * hdmi: hdmi@ff940000 { |
| 260 | * ports { |
| 261 | * hdmi_in: port { |
| 262 | * hdmi_in_vopb: endpoint@0 { ... }; |
| 263 | * hdmi_in_vopl: endpoint@1 { ... }; |
| 264 | * } |
| 265 | * } |
| 266 | * } |
| 267 | * |
| 268 | * The original code had 3 steps of "walking the parent", but |
| 269 | * a much better (as in: less likely to break if the DTS |
| 270 | * changes) way of doing this is to "find the enclosing device |
| 271 | * of UCLASS_DISPLAY". |
| 272 | */ |
| 273 | while (ofnode_valid(remote)) { |
| 274 | remote = ofnode_get_parent(remote); |
| 275 | if (!ofnode_valid(remote)) { |
| 276 | debug("%s(%s): no UCLASS_DISPLAY for remote-endpoint\n", |
| 277 | __func__, dev_read_name(dev)); |
| 278 | return -EINVAL; |
| 279 | } |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 280 | |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 281 | uclass_find_device_by_ofnode(UCLASS_DISPLAY, remote, &disp); |
| 282 | if (disp) |
| 283 | break; |
| 284 | }; |
Arnaud Patard (Rtp) | 058ffd6 | 2021-03-05 11:27:46 +0100 | [diff] [blame^] | 285 | compat = ofnode_get_property(remote, "compatible", NULL); |
| 286 | if (!compat) { |
| 287 | debug("%s(%s): Failed to find compatible property\n", |
| 288 | __func__, dev_read_name(dev)); |
| 289 | return -EINVAL; |
| 290 | } |
| 291 | if (strstr(compat, "edp")) { |
| 292 | vop_id = VOP_MODE_EDP; |
| 293 | } else if (strstr(compat, "mipi")) { |
| 294 | vop_id = VOP_MODE_MIPI; |
| 295 | } else if (strstr(compat, "hdmi")) { |
| 296 | vop_id = VOP_MODE_HDMI; |
| 297 | } else if (strstr(compat, "cdn-dp")) { |
| 298 | vop_id = VOP_MODE_DP; |
| 299 | } else if (strstr(compat, "lvds")) { |
| 300 | vop_id = VOP_MODE_LVDS; |
| 301 | } else { |
| 302 | debug("%s(%s): Failed to find vop mode for %s\n", |
| 303 | __func__, dev_read_name(dev), compat); |
| 304 | return -EINVAL; |
| 305 | } |
| 306 | debug("vop_id=%d\n", vop_id); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 307 | |
Simon Glass | 71fa5b4 | 2020-12-03 16:55:18 -0700 | [diff] [blame] | 308 | disp_uc_plat = dev_get_uclass_plat(disp); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 309 | debug("Found device '%s', disp_uc_priv=%p\n", disp->name, disp_uc_plat); |
Simon Glass | 86ad1b6 | 2016-11-13 14:22:08 -0700 | [diff] [blame] | 310 | if (display_in_use(disp)) { |
| 311 | debug(" - device in use\n"); |
| 312 | return -EBUSY; |
| 313 | } |
| 314 | |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 315 | disp_uc_plat->source_id = remote_vop_id; |
| 316 | disp_uc_plat->src_dev = dev; |
| 317 | |
| 318 | ret = device_probe(disp); |
| 319 | if (ret) { |
| 320 | debug("%s: device '%s' display won't probe (ret=%d)\n", |
| 321 | __func__, dev->name, ret); |
| 322 | return ret; |
| 323 | } |
| 324 | |
| 325 | ret = display_read_timing(disp, &timing); |
| 326 | if (ret) { |
| 327 | debug("%s: Failed to read timings\n", __func__); |
| 328 | return ret; |
| 329 | } |
| 330 | |
Simon Glass | 25891bc | 2016-11-13 14:21:56 -0700 | [diff] [blame] | 331 | ret = clk_get_by_index(dev, 1, &clk); |
Stephen Warren | a962243 | 2016-06-17 09:44:00 -0600 | [diff] [blame] | 332 | if (!ret) |
| 333 | ret = clk_set_rate(&clk, timing.pixelclock.typ); |
Eric Gao | 9ada0e6 | 2017-05-02 18:23:51 +0800 | [diff] [blame] | 334 | if (IS_ERR_VALUE(ret)) { |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 335 | debug("%s: Failed to set pixel clock: ret=%d\n", __func__, ret); |
| 336 | return ret; |
| 337 | } |
| 338 | |
Eric Gao | 58791c3 | 2017-05-02 18:23:53 +0800 | [diff] [blame] | 339 | /* Set bitwidth for vop display according to vop mode */ |
| 340 | switch (vop_id) { |
| 341 | case VOP_MODE_EDP: |
Jagan Teki | 5023ade | 2020-04-02 17:11:22 +0530 | [diff] [blame] | 342 | #if defined(CONFIG_ROCKCHIP_RK3288) |
Eric Gao | 58791c3 | 2017-05-02 18:23:53 +0800 | [diff] [blame] | 343 | case VOP_MODE_LVDS: |
Jagan Teki | 5023ade | 2020-04-02 17:11:22 +0530 | [diff] [blame] | 344 | #endif |
Eric Gao | 58791c3 | 2017-05-02 18:23:53 +0800 | [diff] [blame] | 345 | l2bpp = VIDEO_BPP16; |
| 346 | break; |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 347 | case VOP_MODE_HDMI: |
Eric Gao | 58791c3 | 2017-05-02 18:23:53 +0800 | [diff] [blame] | 348 | case VOP_MODE_MIPI: |
| 349 | l2bpp = VIDEO_BPP32; |
| 350 | break; |
| 351 | default: |
| 352 | l2bpp = VIDEO_BPP16; |
| 353 | } |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 354 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 355 | rkvop_mode_set(dev, &timing, vop_id); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 356 | rkvop_enable(regs, fbbase, 1 << l2bpp, &timing); |
| 357 | |
| 358 | ret = display_enable(disp, 1 << l2bpp, &timing); |
| 359 | if (ret) |
| 360 | return ret; |
| 361 | |
| 362 | uc_priv->xsize = timing.hactive.typ; |
| 363 | uc_priv->ysize = timing.vactive.typ; |
| 364 | uc_priv->bpix = l2bpp; |
| 365 | debug("fb=%lx, size=%d %d\n", fbbase, uc_priv->xsize, uc_priv->ysize); |
| 366 | |
| 367 | return 0; |
| 368 | } |
| 369 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 370 | void rk_vop_probe_regulators(struct udevice *dev, |
| 371 | const char * const *names, int cnt) |
| 372 | { |
| 373 | int i, ret; |
| 374 | const char *name; |
| 375 | struct udevice *reg; |
| 376 | |
| 377 | for (i = 0; i < cnt; ++i) { |
| 378 | name = names[i]; |
| 379 | debug("%s: probing regulator '%s'\n", dev->name, name); |
| 380 | |
| 381 | ret = regulator_autoset_by_name(name, ®); |
| 382 | if (!ret) |
| 383 | ret = regulator_set_enable(reg, true); |
| 384 | } |
| 385 | } |
| 386 | |
| 387 | int rk_vop_probe(struct udevice *dev) |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 388 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 389 | struct video_uc_plat *plat = dev_get_uclass_plat(dev); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 390 | struct rk_vop_priv *priv = dev_get_priv(dev); |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 391 | int ret = 0; |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 392 | ofnode port, node; |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 393 | |
| 394 | /* Before relocation we don't need to do anything */ |
| 395 | if (!(gd->flags & GD_FLG_RELOC)) |
| 396 | return 0; |
| 397 | |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 398 | priv->regs = (struct rk3288_vop *)dev_read_addr(dev); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 399 | |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 400 | /* |
| 401 | * Try all the ports until we find one that works. In practice this |
| 402 | * tries EDP first if available, then HDMI. |
Simon Glass | 86ad1b6 | 2016-11-13 14:22:08 -0700 | [diff] [blame] | 403 | * |
| 404 | * Note that rockchip_vop_set_clk() always uses NPLL as the source |
| 405 | * clock so it is currently not possible to use more than one display |
| 406 | * device simultaneously. |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 407 | */ |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 408 | port = dev_read_subnode(dev, "port"); |
| 409 | if (!ofnode_valid(port)) { |
| 410 | debug("%s(%s): 'port' subnode not found\n", |
| 411 | __func__, dev_read_name(dev)); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 412 | return -EINVAL; |
Philipp Tomsich | 13b016d | 2018-02-23 17:38:52 +0100 | [diff] [blame] | 413 | } |
| 414 | |
| 415 | for (node = ofnode_first_subnode(port); |
| 416 | ofnode_valid(node); |
| 417 | node = dev_read_next_subnode(node)) { |
Eric Gao | 58791c3 | 2017-05-02 18:23:53 +0800 | [diff] [blame] | 418 | ret = rk_display_init(dev, plat->base, node); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 419 | if (ret) |
| 420 | debug("Device failed: ret=%d\n", ret); |
| 421 | if (!ret) |
| 422 | break; |
| 423 | } |
Simon Glass | 773ca82 | 2016-05-14 14:03:01 -0600 | [diff] [blame] | 424 | video_set_flush_dcache(dev, 1); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 425 | |
| 426 | return ret; |
| 427 | } |
| 428 | |
Philipp Tomsich | a354c2d | 2017-05-31 17:59:30 +0200 | [diff] [blame] | 429 | int rk_vop_bind(struct udevice *dev) |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 430 | { |
Simon Glass | b75b15b | 2020-12-03 16:55:23 -0700 | [diff] [blame] | 431 | struct video_uc_plat *plat = dev_get_uclass_plat(dev); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 432 | |
Philipp Tomsich | d3a5826 | 2017-05-31 17:59:29 +0200 | [diff] [blame] | 433 | plat->size = 4 * (CONFIG_VIDEO_ROCKCHIP_MAX_XRES * |
| 434 | CONFIG_VIDEO_ROCKCHIP_MAX_YRES); |
Simon Glass | e421bb8 | 2016-01-21 19:45:05 -0700 | [diff] [blame] | 435 | |
| 436 | return 0; |
| 437 | } |