Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Display driver for Allwinner SoCs. |
| 3 | * |
| 4 | * (C) Copyright 2013-2014 Luc Verhaegen <libv@skynet.be> |
| 5 | * (C) Copyright 2014 Hans de Goede <hdegoede@redhat.com> |
| 6 | * |
| 7 | * SPDX-License-Identifier: GPL-2.0+ |
| 8 | */ |
| 9 | |
| 10 | #include <common.h> |
| 11 | |
| 12 | #include <asm/arch/clock.h> |
| 13 | #include <asm/arch/display.h> |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 14 | #include <asm/arch/gpio.h> |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 15 | #include <asm/global_data.h> |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 16 | #include <asm/gpio.h> |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 17 | #include <asm/io.h> |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 18 | #include <errno.h> |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 19 | #include <fdtdec.h> |
| 20 | #include <fdt_support.h> |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 21 | #include <video_fb.h> |
Hans de Goede | be8ec63 | 2014-12-19 13:46:33 +0100 | [diff] [blame] | 22 | #include "videomodes.h" |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 23 | |
| 24 | DECLARE_GLOBAL_DATA_PTR; |
| 25 | |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 26 | enum sunxi_monitor { |
| 27 | sunxi_monitor_none, |
| 28 | sunxi_monitor_dvi, |
| 29 | sunxi_monitor_hdmi, |
| 30 | sunxi_monitor_lcd, |
| 31 | sunxi_monitor_vga, |
| 32 | }; |
| 33 | #define SUNXI_MONITOR_LAST sunxi_monitor_vga |
| 34 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 35 | struct sunxi_display { |
| 36 | GraphicDevice graphic_device; |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 37 | enum sunxi_monitor monitor; |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 38 | unsigned int depth; |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 39 | } sunxi_display; |
| 40 | |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 41 | #ifdef CONFIG_VIDEO_HDMI |
| 42 | |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 43 | /* |
| 44 | * Wait up to 200ms for value to be set in given part of reg. |
| 45 | */ |
| 46 | static int await_completion(u32 *reg, u32 mask, u32 val) |
| 47 | { |
| 48 | unsigned long tmo = timer_get_us() + 200000; |
| 49 | |
| 50 | while ((readl(reg) & mask) != val) { |
| 51 | if (timer_get_us() > tmo) { |
| 52 | printf("DDC: timeout reading EDID\n"); |
| 53 | return -ETIME; |
| 54 | } |
| 55 | } |
| 56 | return 0; |
| 57 | } |
| 58 | |
Hans de Goede | 7fad8a9 | 2014-12-28 09:13:21 +0100 | [diff] [blame^] | 59 | static int sunxi_hdmi_hpd_detect(int hpd_delay) |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 60 | { |
| 61 | struct sunxi_ccm_reg * const ccm = |
| 62 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
| 63 | struct sunxi_hdmi_reg * const hdmi = |
| 64 | (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE; |
Hans de Goede | 7fad8a9 | 2014-12-28 09:13:21 +0100 | [diff] [blame^] | 65 | unsigned long tmo = timer_get_us() + hpd_delay * 1000; |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 66 | |
| 67 | /* Set pll3 to 300MHz */ |
| 68 | clock_set_pll3(300000000); |
| 69 | |
| 70 | /* Set hdmi parent to pll3 */ |
| 71 | clrsetbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_PLL_MASK, |
| 72 | CCM_HDMI_CTRL_PLL3); |
| 73 | |
| 74 | /* Set ahb gating to pass */ |
Hans de Goede | 211717a | 2014-11-14 17:42:14 +0100 | [diff] [blame] | 75 | #ifdef CONFIG_MACH_SUN6I |
| 76 | setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_HDMI); |
| 77 | #endif |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 78 | setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_HDMI); |
| 79 | |
| 80 | /* Clock on */ |
| 81 | setbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_GATE); |
| 82 | |
| 83 | writel(SUNXI_HDMI_CTRL_ENABLE, &hdmi->ctrl); |
| 84 | writel(SUNXI_HDMI_PAD_CTRL0_HDP, &hdmi->pad_ctrl0); |
| 85 | |
Hans de Goede | 40f1b87 | 2014-12-20 15:15:23 +0100 | [diff] [blame] | 86 | while (timer_get_us() < tmo) { |
| 87 | if (readl(&hdmi->hpd) & SUNXI_HDMI_HPD_DETECT) |
| 88 | return 1; |
| 89 | } |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 90 | |
Hans de Goede | 40f1b87 | 2014-12-20 15:15:23 +0100 | [diff] [blame] | 91 | return 0; |
Hans de Goede | 518cef2 | 2014-12-19 15:13:57 +0100 | [diff] [blame] | 92 | } |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 93 | |
Hans de Goede | 518cef2 | 2014-12-19 15:13:57 +0100 | [diff] [blame] | 94 | static void sunxi_hdmi_shutdown(void) |
| 95 | { |
| 96 | struct sunxi_ccm_reg * const ccm = |
| 97 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
| 98 | struct sunxi_hdmi_reg * const hdmi = |
| 99 | (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE; |
| 100 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 101 | clrbits_le32(&hdmi->ctrl, SUNXI_HDMI_CTRL_ENABLE); |
| 102 | clrbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_GATE); |
| 103 | clrbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_HDMI); |
Hans de Goede | 211717a | 2014-11-14 17:42:14 +0100 | [diff] [blame] | 104 | #ifdef CONFIG_MACH_SUN6I |
| 105 | clrbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_HDMI); |
| 106 | #endif |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 107 | clock_set_pll3(0); |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 108 | } |
| 109 | |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 110 | static int sunxi_hdmi_ddc_do_command(u32 cmnd, int offset, int n) |
| 111 | { |
| 112 | struct sunxi_hdmi_reg * const hdmi = |
| 113 | (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE; |
| 114 | |
| 115 | setbits_le32(&hdmi->ddc_fifo_ctrl, SUNXI_HDMI_DDC_FIFO_CTRL_CLEAR); |
| 116 | writel(SUNXI_HMDI_DDC_ADDR_EDDC_SEGMENT(offset >> 8) | |
| 117 | SUNXI_HMDI_DDC_ADDR_EDDC_ADDR | |
| 118 | SUNXI_HMDI_DDC_ADDR_OFFSET(offset) | |
| 119 | SUNXI_HMDI_DDC_ADDR_SLAVE_ADDR, &hdmi->ddc_addr); |
| 120 | #ifndef CONFIG_MACH_SUN6I |
| 121 | writel(n, &hdmi->ddc_byte_count); |
| 122 | writel(cmnd, &hdmi->ddc_cmnd); |
| 123 | #else |
| 124 | writel(n << 16 | cmnd, &hdmi->ddc_cmnd); |
| 125 | #endif |
| 126 | setbits_le32(&hdmi->ddc_ctrl, SUNXI_HMDI_DDC_CTRL_START); |
| 127 | |
| 128 | return await_completion(&hdmi->ddc_ctrl, SUNXI_HMDI_DDC_CTRL_START, 0); |
| 129 | } |
| 130 | |
| 131 | static int sunxi_hdmi_ddc_read(int offset, u8 *buf, int count) |
| 132 | { |
| 133 | struct sunxi_hdmi_reg * const hdmi = |
| 134 | (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE; |
| 135 | int i, n; |
| 136 | |
| 137 | while (count > 0) { |
| 138 | if (count > 16) |
| 139 | n = 16; |
| 140 | else |
| 141 | n = count; |
| 142 | |
| 143 | if (sunxi_hdmi_ddc_do_command( |
| 144 | SUNXI_HDMI_DDC_CMND_EXPLICIT_EDDC_READ, |
| 145 | offset, n)) |
| 146 | return -ETIME; |
| 147 | |
| 148 | for (i = 0; i < n; i++) |
| 149 | *buf++ = readb(&hdmi->ddc_fifo_data); |
| 150 | |
| 151 | offset += n; |
| 152 | count -= n; |
| 153 | } |
| 154 | |
| 155 | return 0; |
| 156 | } |
| 157 | |
Hans de Goede | 63c5fbd | 2014-12-20 14:01:48 +0100 | [diff] [blame] | 158 | static int sunxi_hdmi_edid_get_block(int block, u8 *buf) |
| 159 | { |
| 160 | int r, retries = 2; |
| 161 | |
| 162 | do { |
| 163 | r = sunxi_hdmi_ddc_read(block * 128, buf, 128); |
| 164 | if (r) |
| 165 | continue; |
| 166 | r = edid_check_checksum(buf); |
| 167 | if (r) { |
| 168 | printf("EDID block %d: checksum error%s\n", |
| 169 | block, retries ? ", retrying" : ""); |
| 170 | } |
| 171 | } while (r && retries--); |
| 172 | |
| 173 | return r; |
| 174 | } |
| 175 | |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 176 | static int sunxi_hdmi_edid_get_mode(struct ctfb_res_modes *mode) |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 177 | { |
| 178 | struct edid1_info edid1; |
Hans de Goede | f300068 | 2014-12-20 14:31:45 +0100 | [diff] [blame] | 179 | struct edid_cea861_info cea681[4]; |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 180 | struct edid_detailed_timing *t = |
| 181 | (struct edid_detailed_timing *)edid1.monitor_details.timing; |
| 182 | struct sunxi_hdmi_reg * const hdmi = |
| 183 | (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE; |
| 184 | struct sunxi_ccm_reg * const ccm = |
| 185 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
Hans de Goede | f300068 | 2014-12-20 14:31:45 +0100 | [diff] [blame] | 186 | int i, r, ext_blocks = 0; |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 187 | |
| 188 | /* SUNXI_HDMI_CTRL_ENABLE & PAD_CTRL0 are already set by hpd_detect */ |
| 189 | writel(SUNXI_HDMI_PAD_CTRL1 | SUNXI_HDMI_PAD_CTRL1_HALVE, |
| 190 | &hdmi->pad_ctrl1); |
| 191 | writel(SUNXI_HDMI_PLL_CTRL | SUNXI_HDMI_PLL_CTRL_DIV(15), |
| 192 | &hdmi->pll_ctrl); |
| 193 | writel(SUNXI_HDMI_PLL_DBG0_PLL3, &hdmi->pll_dbg0); |
| 194 | |
| 195 | /* Reset i2c controller */ |
| 196 | setbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_DDC_GATE); |
| 197 | writel(SUNXI_HMDI_DDC_CTRL_ENABLE | |
| 198 | SUNXI_HMDI_DDC_CTRL_SDA_ENABLE | |
| 199 | SUNXI_HMDI_DDC_CTRL_SCL_ENABLE | |
| 200 | SUNXI_HMDI_DDC_CTRL_RESET, &hdmi->ddc_ctrl); |
| 201 | if (await_completion(&hdmi->ddc_ctrl, SUNXI_HMDI_DDC_CTRL_RESET, 0)) |
| 202 | return -EIO; |
| 203 | |
| 204 | writel(SUNXI_HDMI_DDC_CLOCK, &hdmi->ddc_clock); |
| 205 | #ifndef CONFIG_MACH_SUN6I |
| 206 | writel(SUNXI_HMDI_DDC_LINE_CTRL_SDA_ENABLE | |
| 207 | SUNXI_HMDI_DDC_LINE_CTRL_SCL_ENABLE, &hdmi->ddc_line_ctrl); |
| 208 | #endif |
| 209 | |
Hans de Goede | 63c5fbd | 2014-12-20 14:01:48 +0100 | [diff] [blame] | 210 | r = sunxi_hdmi_edid_get_block(0, (u8 *)&edid1); |
Hans de Goede | f300068 | 2014-12-20 14:31:45 +0100 | [diff] [blame] | 211 | if (r == 0) { |
| 212 | r = edid_check_info(&edid1); |
| 213 | if (r) { |
| 214 | printf("EDID: invalid EDID data\n"); |
| 215 | r = -EINVAL; |
| 216 | } |
| 217 | } |
| 218 | if (r == 0) { |
| 219 | ext_blocks = edid1.extension_flag; |
| 220 | if (ext_blocks > 4) |
| 221 | ext_blocks = 4; |
| 222 | for (i = 0; i < ext_blocks; i++) { |
| 223 | if (sunxi_hdmi_edid_get_block(1 + i, |
| 224 | (u8 *)&cea681[i]) != 0) { |
| 225 | ext_blocks = i; |
| 226 | break; |
| 227 | } |
| 228 | } |
| 229 | } |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 230 | |
| 231 | /* Disable DDC engine, no longer needed */ |
| 232 | clrbits_le32(&hdmi->ddc_ctrl, SUNXI_HMDI_DDC_CTRL_ENABLE); |
| 233 | clrbits_le32(&ccm->hdmi_clk_cfg, CCM_HDMI_CTRL_DDC_GATE); |
| 234 | |
| 235 | if (r) |
| 236 | return r; |
| 237 | |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 238 | /* We want version 1.3 or 1.2 with detailed timing info */ |
| 239 | if (edid1.version != 1 || (edid1.revision < 3 && |
| 240 | !EDID1_INFO_FEATURE_PREFERRED_TIMING_MODE(edid1))) { |
| 241 | printf("EDID: unsupported version %d.%d\n", |
| 242 | edid1.version, edid1.revision); |
| 243 | return -EINVAL; |
| 244 | } |
| 245 | |
| 246 | /* Take the first usable detailed timing */ |
| 247 | for (i = 0; i < 4; i++, t++) { |
| 248 | r = video_edid_dtd_to_ctfb_res_modes(t, mode); |
| 249 | if (r == 0) |
| 250 | break; |
| 251 | } |
| 252 | if (i == 4) { |
| 253 | printf("EDID: no usable detailed timing found\n"); |
| 254 | return -ENOENT; |
| 255 | } |
| 256 | |
Hans de Goede | f300068 | 2014-12-20 14:31:45 +0100 | [diff] [blame] | 257 | /* Check for basic audio support, if found enable hdmi output */ |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 258 | sunxi_display.monitor = sunxi_monitor_dvi; |
Hans de Goede | f300068 | 2014-12-20 14:31:45 +0100 | [diff] [blame] | 259 | for (i = 0; i < ext_blocks; i++) { |
| 260 | if (cea681[i].extension_tag != EDID_CEA861_EXTENSION_TAG || |
| 261 | cea681[i].revision < 2) |
| 262 | continue; |
| 263 | |
| 264 | if (EDID_CEA861_SUPPORTS_BASIC_AUDIO(cea681[i])) |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 265 | sunxi_display.monitor = sunxi_monitor_hdmi; |
Hans de Goede | f300068 | 2014-12-20 14:31:45 +0100 | [diff] [blame] | 266 | } |
| 267 | |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 268 | return 0; |
| 269 | } |
| 270 | |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 271 | #endif /* CONFIG_VIDEO_HDMI */ |
| 272 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 273 | /* |
| 274 | * This is the entity that mixes and matches the different layers and inputs. |
| 275 | * Allwinner calls it the back-end, but i like composer better. |
| 276 | */ |
| 277 | static void sunxi_composer_init(void) |
| 278 | { |
| 279 | struct sunxi_ccm_reg * const ccm = |
| 280 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
| 281 | struct sunxi_de_be_reg * const de_be = |
| 282 | (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE; |
| 283 | int i; |
| 284 | |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 285 | #if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I |
Hans de Goede | 211717a | 2014-11-14 17:42:14 +0100 | [diff] [blame] | 286 | /* Reset off */ |
| 287 | setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_DE_BE0); |
| 288 | #endif |
| 289 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 290 | /* Clocks on */ |
| 291 | setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_DE_BE0); |
| 292 | setbits_le32(&ccm->dram_clk_gate, 1 << CCM_DRAM_GATE_OFFSET_DE_BE0); |
| 293 | clock_set_de_mod_clock(&ccm->be0_clk_cfg, 300000000); |
| 294 | |
| 295 | /* Engine bug, clear registers after reset */ |
| 296 | for (i = 0x0800; i < 0x1000; i += 4) |
| 297 | writel(0, SUNXI_DE_BE0_BASE + i); |
| 298 | |
| 299 | setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_ENABLE); |
| 300 | } |
| 301 | |
Hans de Goede | be8ec63 | 2014-12-19 13:46:33 +0100 | [diff] [blame] | 302 | static void sunxi_composer_mode_set(const struct ctfb_res_modes *mode, |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 303 | unsigned int address) |
| 304 | { |
| 305 | struct sunxi_de_be_reg * const de_be = |
| 306 | (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE; |
| 307 | |
| 308 | writel(SUNXI_DE_BE_HEIGHT(mode->yres) | SUNXI_DE_BE_WIDTH(mode->xres), |
| 309 | &de_be->disp_size); |
| 310 | writel(SUNXI_DE_BE_HEIGHT(mode->yres) | SUNXI_DE_BE_WIDTH(mode->xres), |
| 311 | &de_be->layer0_size); |
| 312 | writel(SUNXI_DE_BE_LAYER_STRIDE(mode->xres), &de_be->layer0_stride); |
| 313 | writel(address << 3, &de_be->layer0_addr_low32b); |
| 314 | writel(address >> 29, &de_be->layer0_addr_high4b); |
| 315 | writel(SUNXI_DE_BE_LAYER_ATTR1_FMT_XRGB8888, &de_be->layer0_attr1_ctrl); |
| 316 | |
| 317 | setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_LAYER0_ENABLE); |
| 318 | } |
| 319 | |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 320 | static void sunxi_composer_enable(void) |
| 321 | { |
| 322 | struct sunxi_de_be_reg * const de_be = |
| 323 | (struct sunxi_de_be_reg *)SUNXI_DE_BE0_BASE; |
| 324 | |
| 325 | setbits_le32(&de_be->reg_ctrl, SUNXI_DE_BE_REG_CTRL_LOAD_REGS); |
| 326 | setbits_le32(&de_be->mode, SUNXI_DE_BE_MODE_START); |
| 327 | } |
| 328 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 329 | /* |
| 330 | * LCDC, what allwinner calls a CRTC, so timing controller and serializer. |
| 331 | */ |
Hans de Goede | 5489ebc | 2014-12-21 16:27:45 +0100 | [diff] [blame] | 332 | static void sunxi_lcdc_pll_set(int tcon, int dotclock, |
| 333 | int *clk_div, int *clk_double) |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 334 | { |
| 335 | struct sunxi_ccm_reg * const ccm = |
| 336 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
Hans de Goede | 5489ebc | 2014-12-21 16:27:45 +0100 | [diff] [blame] | 337 | int value, n, m, min_m, max_m, diff; |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 338 | int best_n = 0, best_m = 0, best_diff = 0x0FFFFFFF; |
| 339 | int best_double = 0; |
| 340 | |
Hans de Goede | 5489ebc | 2014-12-21 16:27:45 +0100 | [diff] [blame] | 341 | if (tcon == 0) { |
| 342 | min_m = 6; |
| 343 | max_m = 127; |
| 344 | } else { |
| 345 | min_m = 1; |
| 346 | max_m = 15; |
| 347 | } |
| 348 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 349 | /* |
| 350 | * Find the lowest divider resulting in a matching clock, if there |
| 351 | * is no match, pick the closest lower clock, as monitors tend to |
| 352 | * not sync to higher frequencies. |
| 353 | */ |
Hans de Goede | 5489ebc | 2014-12-21 16:27:45 +0100 | [diff] [blame] | 354 | for (m = min_m; m <= max_m; m++) { |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 355 | n = (m * dotclock) / 3000; |
| 356 | |
| 357 | if ((n >= 9) && (n <= 127)) { |
| 358 | value = (3000 * n) / m; |
| 359 | diff = dotclock - value; |
| 360 | if (diff < best_diff) { |
| 361 | best_diff = diff; |
| 362 | best_m = m; |
| 363 | best_n = n; |
| 364 | best_double = 0; |
| 365 | } |
| 366 | } |
| 367 | |
| 368 | /* These are just duplicates */ |
| 369 | if (!(m & 1)) |
| 370 | continue; |
| 371 | |
| 372 | n = (m * dotclock) / 6000; |
| 373 | if ((n >= 9) && (n <= 127)) { |
| 374 | value = (6000 * n) / m; |
| 375 | diff = dotclock - value; |
| 376 | if (diff < best_diff) { |
| 377 | best_diff = diff; |
| 378 | best_m = m; |
| 379 | best_n = n; |
| 380 | best_double = 1; |
| 381 | } |
| 382 | } |
| 383 | } |
| 384 | |
| 385 | debug("dotclock: %dkHz = %dkHz: (%d * 3MHz * %d) / %d\n", |
| 386 | dotclock, (best_double + 1) * 3000 * best_n / best_m, |
| 387 | best_double + 1, best_n, best_m); |
| 388 | |
| 389 | clock_set_pll3(best_n * 3000000); |
| 390 | |
Hans de Goede | 5489ebc | 2014-12-21 16:27:45 +0100 | [diff] [blame] | 391 | if (tcon == 0) { |
| 392 | writel(CCM_LCD_CH0_CTRL_GATE | CCM_LCD_CH0_CTRL_RST | |
| 393 | (best_double ? CCM_LCD_CH0_CTRL_PLL3_2X : |
| 394 | CCM_LCD_CH0_CTRL_PLL3), |
| 395 | &ccm->lcd0_ch0_clk_cfg); |
| 396 | } else { |
| 397 | writel(CCM_LCD_CH1_CTRL_GATE | |
| 398 | (best_double ? CCM_LCD_CH1_CTRL_PLL3_2X : |
| 399 | CCM_LCD_CH1_CTRL_PLL3) | |
| 400 | CCM_LCD_CH1_CTRL_M(best_m), &ccm->lcd0_ch1_clk_cfg); |
| 401 | } |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 402 | |
| 403 | *clk_div = best_m; |
| 404 | *clk_double = best_double; |
| 405 | } |
| 406 | |
| 407 | static void sunxi_lcdc_init(void) |
| 408 | { |
| 409 | struct sunxi_ccm_reg * const ccm = |
| 410 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
| 411 | struct sunxi_lcdc_reg * const lcdc = |
| 412 | (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE; |
| 413 | |
| 414 | /* Reset off */ |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 415 | #if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I |
Hans de Goede | 211717a | 2014-11-14 17:42:14 +0100 | [diff] [blame] | 416 | setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_LCD0); |
| 417 | #else |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 418 | setbits_le32(&ccm->lcd0_ch0_clk_cfg, CCM_LCD_CH0_CTRL_RST); |
Hans de Goede | 211717a | 2014-11-14 17:42:14 +0100 | [diff] [blame] | 419 | #endif |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 420 | |
| 421 | /* Clock on */ |
| 422 | setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_LCD0); |
| 423 | |
| 424 | /* Init lcdc */ |
| 425 | writel(0, &lcdc->ctrl); /* Disable tcon */ |
| 426 | writel(0, &lcdc->int0); /* Disable all interrupts */ |
| 427 | |
| 428 | /* Disable tcon0 dot clock */ |
| 429 | clrbits_le32(&lcdc->tcon0_dclk, SUNXI_LCDC_TCON0_DCLK_ENABLE); |
| 430 | |
| 431 | /* Set all io lines to tristate */ |
| 432 | writel(0xffffffff, &lcdc->tcon0_io_tristate); |
| 433 | writel(0xffffffff, &lcdc->tcon1_io_tristate); |
| 434 | } |
| 435 | |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 436 | static void sunxi_lcdc_enable(void) |
| 437 | { |
| 438 | struct sunxi_lcdc_reg * const lcdc = |
| 439 | (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE; |
| 440 | |
| 441 | setbits_le32(&lcdc->ctrl, SUNXI_LCDC_CTRL_TCON_ENABLE); |
| 442 | } |
| 443 | |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 444 | static void sunxi_lcdc_panel_enable(void) |
| 445 | { |
| 446 | int pin; |
| 447 | |
| 448 | /* |
| 449 | * Start with backlight disabled to avoid the screen flashing to |
| 450 | * white while the lcd inits. |
| 451 | */ |
| 452 | pin = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_BL_EN); |
| 453 | if (pin != -1) { |
| 454 | gpio_request(pin, "lcd_backlight_enable"); |
| 455 | gpio_direction_output(pin, 0); |
| 456 | } |
| 457 | |
| 458 | pin = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_BL_PWM); |
| 459 | if (pin != -1) { |
| 460 | gpio_request(pin, "lcd_backlight_pwm"); |
| 461 | /* backlight pwm is inverted, set to 1 to disable backlight */ |
| 462 | gpio_direction_output(pin, 1); |
| 463 | } |
| 464 | |
| 465 | /* Give the backlight some time to turn off and power up the panel. */ |
| 466 | mdelay(40); |
| 467 | pin = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_POWER); |
| 468 | if (pin != -1) { |
| 469 | gpio_request(pin, "lcd_power"); |
| 470 | gpio_direction_output(pin, 1); |
| 471 | } |
| 472 | } |
| 473 | |
| 474 | static void sunxi_lcdc_backlight_enable(void) |
| 475 | { |
| 476 | int pin; |
| 477 | |
| 478 | /* |
| 479 | * We want to have scanned out at least one frame before enabling the |
| 480 | * backlight to avoid the screen flashing to white when we enable it. |
| 481 | */ |
| 482 | mdelay(40); |
| 483 | |
| 484 | pin = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_BL_EN); |
| 485 | if (pin != -1) |
| 486 | gpio_direction_output(pin, 1); |
| 487 | |
| 488 | pin = sunxi_name_to_gpio(CONFIG_VIDEO_LCD_BL_PWM); |
| 489 | if (pin != -1) { |
| 490 | /* backlight pwm is inverted, set to 0 to enable backlight */ |
| 491 | gpio_direction_output(pin, 0); |
| 492 | } |
| 493 | } |
| 494 | |
| 495 | static int sunxi_lcdc_get_clk_delay(const struct ctfb_res_modes *mode) |
| 496 | { |
| 497 | int delay; |
| 498 | |
| 499 | delay = mode->lower_margin + mode->vsync_len + mode->upper_margin - 2; |
| 500 | return (delay > 30) ? 30 : delay; |
| 501 | } |
| 502 | |
| 503 | static void sunxi_lcdc_tcon0_mode_set(const struct ctfb_res_modes *mode) |
| 504 | { |
| 505 | struct sunxi_lcdc_reg * const lcdc = |
| 506 | (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE; |
| 507 | int bp, clk_delay, clk_div, clk_double, pin, total, val; |
| 508 | |
| 509 | for (pin = SUNXI_GPD(0); pin <= SUNXI_GPD(27); pin++) |
| 510 | sunxi_gpio_set_cfgpin(pin, SUNXI_GPD0_LCD0); |
| 511 | |
| 512 | sunxi_lcdc_pll_set(0, mode->pixclock_khz, &clk_div, &clk_double); |
| 513 | |
| 514 | /* Use tcon0 */ |
| 515 | clrsetbits_le32(&lcdc->ctrl, SUNXI_LCDC_CTRL_IO_MAP_MASK, |
| 516 | SUNXI_LCDC_CTRL_IO_MAP_TCON0); |
| 517 | |
| 518 | clk_delay = sunxi_lcdc_get_clk_delay(mode); |
| 519 | writel(SUNXI_LCDC_TCON0_CTRL_ENABLE | |
| 520 | SUNXI_LCDC_TCON0_CTRL_CLK_DELAY(clk_delay), &lcdc->tcon0_ctrl); |
| 521 | |
| 522 | writel(SUNXI_LCDC_TCON0_DCLK_ENABLE | |
| 523 | SUNXI_LCDC_TCON0_DCLK_DIV(clk_div), &lcdc->tcon0_dclk); |
| 524 | |
| 525 | writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres), |
| 526 | &lcdc->tcon0_timing_active); |
| 527 | |
| 528 | bp = mode->hsync_len + mode->left_margin; |
| 529 | total = mode->xres + mode->right_margin + bp; |
| 530 | writel(SUNXI_LCDC_TCON0_TIMING_H_TOTAL(total) | |
| 531 | SUNXI_LCDC_TCON0_TIMING_H_BP(bp), &lcdc->tcon0_timing_h); |
| 532 | |
| 533 | bp = mode->vsync_len + mode->upper_margin; |
| 534 | total = mode->yres + mode->lower_margin + bp; |
| 535 | writel(SUNXI_LCDC_TCON0_TIMING_V_TOTAL(total) | |
| 536 | SUNXI_LCDC_TCON0_TIMING_V_BP(bp), &lcdc->tcon0_timing_v); |
| 537 | |
| 538 | writel(SUNXI_LCDC_X(mode->hsync_len) | SUNXI_LCDC_Y(mode->vsync_len), |
| 539 | &lcdc->tcon0_timing_sync); |
| 540 | |
| 541 | /* We only support hv-sync parallel lcd-s for now */ |
| 542 | writel(0, &lcdc->tcon0_hv_intf); |
| 543 | writel(0, &lcdc->tcon0_cpu_intf); |
| 544 | |
| 545 | if (sunxi_display.depth == 18 || sunxi_display.depth == 16) { |
| 546 | writel(SUNXI_LCDC_TCON0_FRM_SEED, &lcdc->tcon0_frm_seed[0]); |
| 547 | writel(SUNXI_LCDC_TCON0_FRM_SEED, &lcdc->tcon0_frm_seed[1]); |
| 548 | writel(SUNXI_LCDC_TCON0_FRM_SEED, &lcdc->tcon0_frm_seed[2]); |
| 549 | writel(SUNXI_LCDC_TCON0_FRM_SEED, &lcdc->tcon0_frm_seed[3]); |
| 550 | writel(SUNXI_LCDC_TCON0_FRM_SEED, &lcdc->tcon0_frm_seed[4]); |
| 551 | writel(SUNXI_LCDC_TCON0_FRM_SEED, &lcdc->tcon0_frm_seed[5]); |
| 552 | writel(SUNXI_LCDC_TCON0_FRM_TAB0, &lcdc->tcon0_frm_table[0]); |
| 553 | writel(SUNXI_LCDC_TCON0_FRM_TAB1, &lcdc->tcon0_frm_table[1]); |
| 554 | writel(SUNXI_LCDC_TCON0_FRM_TAB2, &lcdc->tcon0_frm_table[2]); |
| 555 | writel(SUNXI_LCDC_TCON0_FRM_TAB3, &lcdc->tcon0_frm_table[3]); |
| 556 | writel(((sunxi_display.depth == 18) ? |
| 557 | SUNXI_LCDC_TCON0_FRM_CTRL_RGB666 : |
| 558 | SUNXI_LCDC_TCON0_FRM_CTRL_RGB565), |
| 559 | &lcdc->tcon0_frm_ctrl); |
| 560 | } |
| 561 | |
| 562 | val = 0; |
| 563 | if (!(mode->sync & FB_SYNC_HOR_HIGH_ACT)) |
| 564 | val |= SUNXI_LCDC_TCON_HSYNC_MASK; |
| 565 | if (!(mode->sync & FB_SYNC_VERT_HIGH_ACT)) |
| 566 | val |= SUNXI_LCDC_TCON_VSYNC_MASK; |
| 567 | writel(val, &lcdc->tcon0_io_polarity); |
| 568 | |
| 569 | writel(0, &lcdc->tcon0_io_tristate); |
| 570 | } |
| 571 | |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 572 | #if defined CONFIG_VIDEO_HDMI || defined CONFIG_VIDEO_VGA |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 573 | static void sunxi_lcdc_tcon1_mode_set(const struct ctfb_res_modes *mode, |
Hans de Goede | 3ffbe47 | 2014-12-27 15:19:23 +0100 | [diff] [blame] | 574 | int *clk_div, int *clk_double, |
| 575 | bool use_portd_hvsync) |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 576 | { |
| 577 | struct sunxi_lcdc_reg * const lcdc = |
| 578 | (struct sunxi_lcdc_reg *)SUNXI_LCD0_BASE; |
Hans de Goede | 3ffbe47 | 2014-12-27 15:19:23 +0100 | [diff] [blame] | 579 | int bp, clk_delay, total, val; |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 580 | |
| 581 | /* Use tcon1 */ |
| 582 | clrsetbits_le32(&lcdc->ctrl, SUNXI_LCDC_CTRL_IO_MAP_MASK, |
| 583 | SUNXI_LCDC_CTRL_IO_MAP_TCON1); |
| 584 | |
Hans de Goede | 6741cc7 | 2014-12-24 19:50:11 +0100 | [diff] [blame] | 585 | clk_delay = sunxi_lcdc_get_clk_delay(mode); |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 586 | writel(SUNXI_LCDC_TCON1_CTRL_ENABLE | |
Hans de Goede | 6741cc7 | 2014-12-24 19:50:11 +0100 | [diff] [blame] | 587 | SUNXI_LCDC_TCON1_CTRL_CLK_DELAY(clk_delay), &lcdc->tcon1_ctrl); |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 588 | |
| 589 | writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres), |
| 590 | &lcdc->tcon1_timing_source); |
| 591 | writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres), |
| 592 | &lcdc->tcon1_timing_scale); |
| 593 | writel(SUNXI_LCDC_X(mode->xres) | SUNXI_LCDC_Y(mode->yres), |
| 594 | &lcdc->tcon1_timing_out); |
| 595 | |
| 596 | bp = mode->hsync_len + mode->left_margin; |
| 597 | total = mode->xres + mode->right_margin + bp; |
| 598 | writel(SUNXI_LCDC_TCON1_TIMING_H_TOTAL(total) | |
| 599 | SUNXI_LCDC_TCON1_TIMING_H_BP(bp), &lcdc->tcon1_timing_h); |
| 600 | |
| 601 | bp = mode->vsync_len + mode->upper_margin; |
| 602 | total = mode->yres + mode->lower_margin + bp; |
| 603 | writel(SUNXI_LCDC_TCON1_TIMING_V_TOTAL(total) | |
| 604 | SUNXI_LCDC_TCON1_TIMING_V_BP(bp), &lcdc->tcon1_timing_v); |
| 605 | |
| 606 | writel(SUNXI_LCDC_X(mode->hsync_len) | SUNXI_LCDC_Y(mode->vsync_len), |
| 607 | &lcdc->tcon1_timing_sync); |
| 608 | |
Hans de Goede | 3ffbe47 | 2014-12-27 15:19:23 +0100 | [diff] [blame] | 609 | if (use_portd_hvsync) { |
| 610 | sunxi_gpio_set_cfgpin(SUNXI_GPD(26), SUNXI_GPD0_LCD0); |
| 611 | sunxi_gpio_set_cfgpin(SUNXI_GPD(27), SUNXI_GPD0_LCD0); |
| 612 | |
| 613 | val = 0; |
| 614 | if (mode->sync & FB_SYNC_HOR_HIGH_ACT) |
| 615 | val |= SUNXI_LCDC_TCON_HSYNC_MASK; |
| 616 | if (mode->sync & FB_SYNC_VERT_HIGH_ACT) |
| 617 | val |= SUNXI_LCDC_TCON_VSYNC_MASK; |
| 618 | writel(val, &lcdc->tcon1_io_polarity); |
| 619 | |
| 620 | clrbits_le32(&lcdc->tcon1_io_tristate, |
| 621 | SUNXI_LCDC_TCON_VSYNC_MASK | |
| 622 | SUNXI_LCDC_TCON_HSYNC_MASK); |
| 623 | } |
Hans de Goede | 5489ebc | 2014-12-21 16:27:45 +0100 | [diff] [blame] | 624 | sunxi_lcdc_pll_set(1, mode->pixclock_khz, clk_div, clk_double); |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 625 | } |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 626 | #endif /* CONFIG_VIDEO_HDMI || defined CONFIG_VIDEO_VGA */ |
| 627 | |
| 628 | #ifdef CONFIG_VIDEO_HDMI |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 629 | |
Hans de Goede | 5ee0bea | 2014-12-20 13:38:06 +0100 | [diff] [blame] | 630 | static void sunxi_hdmi_setup_info_frames(const struct ctfb_res_modes *mode) |
| 631 | { |
| 632 | struct sunxi_hdmi_reg * const hdmi = |
| 633 | (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE; |
| 634 | u8 checksum = 0; |
| 635 | u8 avi_info_frame[17] = { |
| 636 | 0x82, 0x02, 0x0d, 0x00, 0x12, 0x00, 0x88, 0x00, |
| 637 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 638 | 0x00 |
| 639 | }; |
| 640 | u8 vendor_info_frame[19] = { |
| 641 | 0x81, 0x01, 0x06, 0x29, 0x03, 0x0c, 0x00, 0x40, |
| 642 | 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, |
| 643 | 0x00, 0x00, 0x00 |
| 644 | }; |
| 645 | int i; |
| 646 | |
| 647 | if (mode->pixclock_khz <= 27000) |
| 648 | avi_info_frame[5] = 0x40; /* SD-modes, ITU601 colorspace */ |
| 649 | else |
| 650 | avi_info_frame[5] = 0x80; /* HD-modes, ITU709 colorspace */ |
| 651 | |
| 652 | if (mode->xres * 100 / mode->yres < 156) |
| 653 | avi_info_frame[5] |= 0x18; /* 4 : 3 */ |
| 654 | else |
| 655 | avi_info_frame[5] |= 0x28; /* 16 : 9 */ |
| 656 | |
| 657 | for (i = 0; i < ARRAY_SIZE(avi_info_frame); i++) |
| 658 | checksum += avi_info_frame[i]; |
| 659 | |
| 660 | avi_info_frame[3] = 0x100 - checksum; |
| 661 | |
| 662 | for (i = 0; i < ARRAY_SIZE(avi_info_frame); i++) |
| 663 | writeb(avi_info_frame[i], &hdmi->avi_info_frame[i]); |
| 664 | |
| 665 | writel(SUNXI_HDMI_QCP_PACKET0, &hdmi->qcp_packet0); |
| 666 | writel(SUNXI_HDMI_QCP_PACKET1, &hdmi->qcp_packet1); |
| 667 | |
| 668 | for (i = 0; i < ARRAY_SIZE(vendor_info_frame); i++) |
| 669 | writeb(vendor_info_frame[i], &hdmi->vendor_info_frame[i]); |
| 670 | |
| 671 | writel(SUNXI_HDMI_PKT_CTRL0, &hdmi->pkt_ctrl0); |
| 672 | writel(SUNXI_HDMI_PKT_CTRL1, &hdmi->pkt_ctrl1); |
| 673 | |
| 674 | setbits_le32(&hdmi->video_ctrl, SUNXI_HDMI_VIDEO_CTRL_HDMI); |
| 675 | } |
| 676 | |
Hans de Goede | be8ec63 | 2014-12-19 13:46:33 +0100 | [diff] [blame] | 677 | static void sunxi_hdmi_mode_set(const struct ctfb_res_modes *mode, |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 678 | int clk_div, int clk_double) |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 679 | { |
| 680 | struct sunxi_hdmi_reg * const hdmi = |
| 681 | (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE; |
| 682 | int x, y; |
| 683 | |
| 684 | /* Write clear interrupt status bits */ |
| 685 | writel(SUNXI_HDMI_IRQ_STATUS_BITS, &hdmi->irq); |
| 686 | |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 687 | if (sunxi_display.monitor == sunxi_monitor_hdmi) |
Hans de Goede | 5ee0bea | 2014-12-20 13:38:06 +0100 | [diff] [blame] | 688 | sunxi_hdmi_setup_info_frames(mode); |
| 689 | |
Hans de Goede | 876aaaf | 2014-12-20 13:51:16 +0100 | [diff] [blame] | 690 | /* Set input sync enable */ |
| 691 | writel(SUNXI_HDMI_UNKNOWN_INPUT_SYNC, &hdmi->unknown); |
| 692 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 693 | /* Init various registers, select pll3 as clock source */ |
| 694 | writel(SUNXI_HDMI_VIDEO_POL_TX_CLK, &hdmi->video_polarity); |
| 695 | writel(SUNXI_HDMI_PAD_CTRL0_RUN, &hdmi->pad_ctrl0); |
| 696 | writel(SUNXI_HDMI_PAD_CTRL1, &hdmi->pad_ctrl1); |
| 697 | writel(SUNXI_HDMI_PLL_CTRL, &hdmi->pll_ctrl); |
| 698 | writel(SUNXI_HDMI_PLL_DBG0_PLL3, &hdmi->pll_dbg0); |
| 699 | |
| 700 | /* Setup clk div and doubler */ |
| 701 | clrsetbits_le32(&hdmi->pll_ctrl, SUNXI_HDMI_PLL_CTRL_DIV_MASK, |
| 702 | SUNXI_HDMI_PLL_CTRL_DIV(clk_div)); |
| 703 | if (!clk_double) |
| 704 | setbits_le32(&hdmi->pad_ctrl1, SUNXI_HDMI_PAD_CTRL1_HALVE); |
| 705 | |
| 706 | /* Setup timing registers */ |
| 707 | writel(SUNXI_HDMI_Y(mode->yres) | SUNXI_HDMI_X(mode->xres), |
| 708 | &hdmi->video_size); |
| 709 | |
| 710 | x = mode->hsync_len + mode->left_margin; |
| 711 | y = mode->vsync_len + mode->upper_margin; |
| 712 | writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_bp); |
| 713 | |
| 714 | x = mode->right_margin; |
| 715 | y = mode->lower_margin; |
| 716 | writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_fp); |
| 717 | |
| 718 | x = mode->hsync_len; |
| 719 | y = mode->vsync_len; |
| 720 | writel(SUNXI_HDMI_Y(y) | SUNXI_HDMI_X(x), &hdmi->video_spw); |
| 721 | |
| 722 | if (mode->sync & FB_SYNC_HOR_HIGH_ACT) |
| 723 | setbits_le32(&hdmi->video_polarity, SUNXI_HDMI_VIDEO_POL_HOR); |
| 724 | |
| 725 | if (mode->sync & FB_SYNC_VERT_HIGH_ACT) |
| 726 | setbits_le32(&hdmi->video_polarity, SUNXI_HDMI_VIDEO_POL_VER); |
| 727 | } |
| 728 | |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 729 | static void sunxi_hdmi_enable(void) |
| 730 | { |
| 731 | struct sunxi_hdmi_reg * const hdmi = |
| 732 | (struct sunxi_hdmi_reg *)SUNXI_HDMI_BASE; |
| 733 | |
| 734 | udelay(100); |
| 735 | setbits_le32(&hdmi->video_ctrl, SUNXI_HDMI_VIDEO_CTRL_ENABLE); |
| 736 | } |
| 737 | |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 738 | #endif /* CONFIG_VIDEO_HDMI */ |
| 739 | |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 740 | #ifdef CONFIG_VIDEO_VGA |
| 741 | |
| 742 | static void sunxi_vga_mode_set(void) |
| 743 | { |
| 744 | struct sunxi_ccm_reg * const ccm = |
| 745 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
| 746 | struct sunxi_tve_reg * const tve = |
| 747 | (struct sunxi_tve_reg *)SUNXI_TVE0_BASE; |
| 748 | |
| 749 | /* Clock on */ |
| 750 | setbits_le32(&ccm->ahb_gate1, 1 << AHB_GATE_OFFSET_TVE0); |
| 751 | |
| 752 | /* Set TVE in VGA mode */ |
| 753 | writel(SUNXI_TVE_GCTRL_DAC_INPUT(0, 1) | |
| 754 | SUNXI_TVE_GCTRL_DAC_INPUT(1, 2) | |
| 755 | SUNXI_TVE_GCTRL_DAC_INPUT(2, 3), &tve->gctrl); |
| 756 | writel(SUNXI_TVE_GCTRL_CFG0_VGA, &tve->cfg0); |
| 757 | writel(SUNXI_TVE_GCTRL_DAC_CFG0_VGA, &tve->dac_cfg0); |
| 758 | writel(SUNXI_TVE_GCTRL_UNKNOWN1_VGA, &tve->unknown1); |
| 759 | } |
| 760 | |
| 761 | static void sunxi_vga_enable(void) |
| 762 | { |
| 763 | struct sunxi_tve_reg * const tve = |
| 764 | (struct sunxi_tve_reg *)SUNXI_TVE0_BASE; |
| 765 | |
| 766 | setbits_le32(&tve->gctrl, SUNXI_TVE_GCTRL_ENABLE); |
| 767 | } |
| 768 | |
| 769 | #endif /* CONFIG_VIDEO_VGA */ |
| 770 | |
Hans de Goede | e840079 | 2014-12-23 18:39:52 +0100 | [diff] [blame] | 771 | static void sunxi_drc_init(void) |
| 772 | { |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 773 | #if defined CONFIG_MACH_SUN6I || defined CONFIG_MACH_SUN8I |
Hans de Goede | e840079 | 2014-12-23 18:39:52 +0100 | [diff] [blame] | 774 | struct sunxi_ccm_reg * const ccm = |
| 775 | (struct sunxi_ccm_reg *)SUNXI_CCM_BASE; |
| 776 | |
| 777 | /* On sun6i the drc must be clocked even when in pass-through mode */ |
| 778 | setbits_le32(&ccm->ahb_reset1_cfg, 1 << AHB_RESET_OFFSET_DRC0); |
| 779 | clock_set_de_mod_clock(&ccm->iep_drc0_clk_cfg, 300000000); |
| 780 | #endif |
| 781 | } |
| 782 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 783 | static void sunxi_engines_init(void) |
| 784 | { |
| 785 | sunxi_composer_init(); |
| 786 | sunxi_lcdc_init(); |
Hans de Goede | 211717a | 2014-11-14 17:42:14 +0100 | [diff] [blame] | 787 | sunxi_drc_init(); |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 788 | } |
| 789 | |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 790 | static void sunxi_mode_set(const struct ctfb_res_modes *mode, |
Hans de Goede | 5ee0bea | 2014-12-20 13:38:06 +0100 | [diff] [blame] | 791 | unsigned int address) |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 792 | { |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 793 | int __maybe_unused clk_div, clk_double; |
| 794 | |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 795 | switch (sunxi_display.monitor) { |
| 796 | case sunxi_monitor_none: |
| 797 | break; |
| 798 | case sunxi_monitor_dvi: |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 799 | case sunxi_monitor_hdmi: |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 800 | #ifdef CONFIG_VIDEO_HDMI |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 801 | sunxi_composer_mode_set(mode, address); |
Hans de Goede | 3ffbe47 | 2014-12-27 15:19:23 +0100 | [diff] [blame] | 802 | sunxi_lcdc_tcon1_mode_set(mode, &clk_div, &clk_double, 0); |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 803 | sunxi_hdmi_mode_set(mode, clk_div, clk_double); |
| 804 | sunxi_composer_enable(); |
| 805 | sunxi_lcdc_enable(); |
| 806 | sunxi_hdmi_enable(); |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 807 | #endif |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 808 | break; |
| 809 | case sunxi_monitor_lcd: |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 810 | sunxi_lcdc_panel_enable(); |
| 811 | sunxi_composer_mode_set(mode, address); |
| 812 | sunxi_lcdc_tcon0_mode_set(mode); |
| 813 | sunxi_composer_enable(); |
| 814 | sunxi_lcdc_enable(); |
| 815 | sunxi_lcdc_backlight_enable(); |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 816 | break; |
| 817 | case sunxi_monitor_vga: |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 818 | #ifdef CONFIG_VIDEO_VGA |
| 819 | sunxi_composer_mode_set(mode, address); |
| 820 | sunxi_lcdc_tcon1_mode_set(mode, &clk_div, &clk_double, 1); |
| 821 | sunxi_vga_mode_set(); |
| 822 | sunxi_composer_enable(); |
| 823 | sunxi_lcdc_enable(); |
| 824 | sunxi_vga_enable(); |
| 825 | #elif defined CONFIG_VIDEO_VGA_VIA_LCD |
Hans de Goede | e2bbdfb | 2014-12-24 12:17:07 +0100 | [diff] [blame] | 826 | sunxi_composer_mode_set(mode, address); |
| 827 | sunxi_lcdc_tcon0_mode_set(mode); |
| 828 | sunxi_composer_enable(); |
| 829 | sunxi_lcdc_enable(); |
| 830 | #endif |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 831 | break; |
| 832 | } |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 833 | } |
| 834 | |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 835 | static const char *sunxi_get_mon_desc(enum sunxi_monitor monitor) |
| 836 | { |
| 837 | switch (monitor) { |
| 838 | case sunxi_monitor_none: return "none"; |
| 839 | case sunxi_monitor_dvi: return "dvi"; |
| 840 | case sunxi_monitor_hdmi: return "hdmi"; |
| 841 | case sunxi_monitor_lcd: return "lcd"; |
| 842 | case sunxi_monitor_vga: return "vga"; |
| 843 | } |
| 844 | return NULL; /* never reached */ |
| 845 | } |
| 846 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 847 | void *video_hw_init(void) |
| 848 | { |
| 849 | static GraphicDevice *graphic_device = &sunxi_display.graphic_device; |
Hans de Goede | 5f33993 | 2014-12-19 14:03:40 +0100 | [diff] [blame] | 850 | const struct ctfb_res_modes *mode; |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 851 | struct ctfb_res_modes custom; |
Hans de Goede | 5f33993 | 2014-12-19 14:03:40 +0100 | [diff] [blame] | 852 | const char *options; |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 853 | #ifdef CONFIG_VIDEO_HDMI |
Hans de Goede | 7fad8a9 | 2014-12-28 09:13:21 +0100 | [diff] [blame^] | 854 | int ret, hpd, hpd_delay, edid; |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 855 | #endif |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 856 | char mon[16]; |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 857 | char *lcd_mode = CONFIG_VIDEO_LCD_MODE; |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 858 | int i; |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 859 | |
| 860 | memset(&sunxi_display, 0, sizeof(struct sunxi_display)); |
| 861 | |
| 862 | printf("Reserved %dkB of RAM for Framebuffer.\n", |
| 863 | CONFIG_SUNXI_FB_SIZE >> 10); |
| 864 | gd->fb_base = gd->ram_top; |
| 865 | |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 866 | video_get_ctfb_res_modes(RES_MODE_1024x768, 24, &mode, |
| 867 | &sunxi_display.depth, &options); |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 868 | #ifdef CONFIG_VIDEO_HDMI |
Hans de Goede | 518cef2 | 2014-12-19 15:13:57 +0100 | [diff] [blame] | 869 | hpd = video_get_option_int(options, "hpd", 1); |
Hans de Goede | 7fad8a9 | 2014-12-28 09:13:21 +0100 | [diff] [blame^] | 870 | hpd_delay = video_get_option_int(options, "hpd_delay", 500); |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 871 | edid = video_get_option_int(options, "edid", 1); |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 872 | sunxi_display.monitor = sunxi_monitor_dvi; |
Hans de Goede | e2bbdfb | 2014-12-24 12:17:07 +0100 | [diff] [blame] | 873 | #elif defined CONFIG_VIDEO_VGA_VIA_LCD |
| 874 | sunxi_display.monitor = sunxi_monitor_vga; |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 875 | #else |
| 876 | sunxi_display.monitor = sunxi_monitor_lcd; |
| 877 | #endif |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 878 | video_get_option_string(options, "monitor", mon, sizeof(mon), |
| 879 | sunxi_get_mon_desc(sunxi_display.monitor)); |
| 880 | for (i = 0; i <= SUNXI_MONITOR_LAST; i++) { |
| 881 | if (strcmp(mon, sunxi_get_mon_desc(i)) == 0) { |
| 882 | sunxi_display.monitor = i; |
| 883 | break; |
| 884 | } |
| 885 | } |
| 886 | if (i > SUNXI_MONITOR_LAST) |
| 887 | printf("Unknown monitor: '%s', falling back to '%s'\n", |
| 888 | mon, sunxi_get_mon_desc(sunxi_display.monitor)); |
Hans de Goede | 5f33993 | 2014-12-19 14:03:40 +0100 | [diff] [blame] | 889 | |
Hans de Goede | 49d2703 | 2014-12-25 13:52:04 +0100 | [diff] [blame] | 890 | #ifdef CONFIG_VIDEO_HDMI |
| 891 | /* If HDMI/DVI is selected do HPD & EDID, and handle fallback */ |
| 892 | if (sunxi_display.monitor == sunxi_monitor_dvi || |
| 893 | sunxi_display.monitor == sunxi_monitor_hdmi) { |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 894 | /* Always call hdp_detect, as it also enables clocks, etc. */ |
Hans de Goede | 7fad8a9 | 2014-12-28 09:13:21 +0100 | [diff] [blame^] | 895 | ret = sunxi_hdmi_hpd_detect(hpd_delay); |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 896 | if (ret) { |
| 897 | printf("HDMI connected: "); |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 898 | if (edid && sunxi_hdmi_edid_get_mode(&custom) == 0) |
| 899 | mode = &custom; |
Hans de Goede | 49d2703 | 2014-12-25 13:52:04 +0100 | [diff] [blame] | 900 | } else if (hpd) { |
| 901 | sunxi_hdmi_shutdown(); |
| 902 | /* Fallback to lcd / vga / none */ |
| 903 | if (lcd_mode[0]) { |
| 904 | sunxi_display.monitor = sunxi_monitor_lcd; |
| 905 | } else { |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 906 | #if defined CONFIG_VIDEO_VGA_VIA_LCD || defined CONFIG_VIDEO_VGA |
Hans de Goede | 49d2703 | 2014-12-25 13:52:04 +0100 | [diff] [blame] | 907 | sunxi_display.monitor = sunxi_monitor_vga; |
| 908 | #else |
| 909 | sunxi_display.monitor = sunxi_monitor_none; |
| 910 | #endif |
| 911 | } |
| 912 | } /* else continue with hdmi/dvi without a cable connected */ |
| 913 | } |
| 914 | #endif |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 915 | |
Hans de Goede | 49d2703 | 2014-12-25 13:52:04 +0100 | [diff] [blame] | 916 | switch (sunxi_display.monitor) { |
| 917 | case sunxi_monitor_none: |
| 918 | return NULL; |
| 919 | case sunxi_monitor_dvi: |
| 920 | case sunxi_monitor_hdmi: |
| 921 | #ifdef CONFIG_VIDEO_HDMI |
| 922 | break; |
| 923 | #else |
| 924 | printf("HDMI/DVI not supported on this board\n"); |
| 925 | sunxi_display.monitor = sunxi_monitor_none; |
| 926 | return NULL; |
Hans de Goede | 2fbf091 | 2014-12-23 23:04:35 +0100 | [diff] [blame] | 927 | #endif |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 928 | case sunxi_monitor_lcd: |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 929 | if (lcd_mode[0]) { |
| 930 | sunxi_display.depth = video_get_params(&custom, lcd_mode); |
| 931 | mode = &custom; |
| 932 | break; |
| 933 | } |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 934 | printf("LCD not supported on this board\n"); |
Hans de Goede | b98d048 | 2014-12-24 19:47:14 +0100 | [diff] [blame] | 935 | sunxi_display.monitor = sunxi_monitor_none; |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 936 | return NULL; |
| 937 | case sunxi_monitor_vga: |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 938 | #if defined CONFIG_VIDEO_VGA_VIA_LCD || defined CONFIG_VIDEO_VGA |
Hans de Goede | e2bbdfb | 2014-12-24 12:17:07 +0100 | [diff] [blame] | 939 | sunxi_display.depth = 18; |
| 940 | break; |
| 941 | #else |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 942 | printf("VGA not supported on this board\n"); |
Hans de Goede | b98d048 | 2014-12-24 19:47:14 +0100 | [diff] [blame] | 943 | sunxi_display.monitor = sunxi_monitor_none; |
Hans de Goede | 0e04521 | 2014-12-21 14:49:34 +0100 | [diff] [blame] | 944 | return NULL; |
Hans de Goede | e2bbdfb | 2014-12-24 12:17:07 +0100 | [diff] [blame] | 945 | #endif |
Hans de Goede | 7548160 | 2014-12-19 16:05:12 +0100 | [diff] [blame] | 946 | } |
| 947 | |
Hans de Goede | 5f33993 | 2014-12-19 14:03:40 +0100 | [diff] [blame] | 948 | if (mode->vmode != FB_VMODE_NONINTERLACED) { |
| 949 | printf("Only non-interlaced modes supported, falling back to 1024x768\n"); |
| 950 | mode = &res_mode_init[RES_MODE_1024x768]; |
| 951 | } else { |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 952 | printf("Setting up a %dx%d %s console\n", mode->xres, |
| 953 | mode->yres, sunxi_get_mon_desc(sunxi_display.monitor)); |
Hans de Goede | 5f33993 | 2014-12-19 14:03:40 +0100 | [diff] [blame] | 954 | } |
| 955 | |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 956 | sunxi_engines_init(); |
Hans de Goede | 1c09220 | 2014-12-21 14:37:45 +0100 | [diff] [blame] | 957 | sunxi_mode_set(mode, gd->fb_base - CONFIG_SYS_SDRAM_BASE); |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 958 | |
| 959 | /* |
| 960 | * These are the only members of this structure that are used. All the |
| 961 | * others are driver specific. There is nothing to decribe pitch or |
| 962 | * stride, but we are lucky with our hw. |
| 963 | */ |
| 964 | graphic_device->frameAdrs = gd->fb_base; |
| 965 | graphic_device->gdfIndex = GDF_32BIT_X888RGB; |
| 966 | graphic_device->gdfBytesPP = 4; |
Hans de Goede | be8ec63 | 2014-12-19 13:46:33 +0100 | [diff] [blame] | 967 | graphic_device->winSizeX = mode->xres; |
| 968 | graphic_device->winSizeY = mode->yres; |
Luc Verhaegen | 7f2c521 | 2014-08-13 07:55:06 +0200 | [diff] [blame] | 969 | |
| 970 | return graphic_device; |
| 971 | } |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 972 | |
| 973 | /* |
| 974 | * Simplefb support. |
| 975 | */ |
| 976 | #if defined(CONFIG_OF_BOARD_SETUP) && defined(CONFIG_VIDEO_DT_SIMPLEFB) |
| 977 | int sunxi_simplefb_setup(void *blob) |
| 978 | { |
| 979 | static GraphicDevice *graphic_device = &sunxi_display.graphic_device; |
| 980 | int offset, ret; |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 981 | const char *pipeline = NULL; |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 982 | |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 983 | switch (sunxi_display.monitor) { |
| 984 | case sunxi_monitor_none: |
| 985 | return 0; |
| 986 | case sunxi_monitor_dvi: |
| 987 | case sunxi_monitor_hdmi: |
| 988 | pipeline = "de_be0-lcd0-hdmi"; |
| 989 | break; |
| 990 | case sunxi_monitor_lcd: |
| 991 | pipeline = "de_be0-lcd0"; |
| 992 | break; |
| 993 | case sunxi_monitor_vga: |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 994 | #ifdef CONFIG_VIDEO_VGA |
| 995 | pipeline = "de_be0-lcd0-tve0"; |
| 996 | #elif defined CONFIG_VIDEO_VGA_VIA_LCD |
Hans de Goede | e2bbdfb | 2014-12-24 12:17:07 +0100 | [diff] [blame] | 997 | pipeline = "de_be0-lcd0"; |
Hans de Goede | d9786d2 | 2014-12-25 13:58:06 +0100 | [diff] [blame] | 998 | #endif |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 999 | break; |
| 1000 | } |
| 1001 | |
| 1002 | /* Find a prefilled simpefb node, matching out pipeline config */ |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 1003 | offset = fdt_node_offset_by_compatible(blob, -1, |
| 1004 | "allwinner,simple-framebuffer"); |
| 1005 | while (offset >= 0) { |
| 1006 | ret = fdt_find_string(blob, offset, "allwinner,pipeline", |
Hans de Goede | 2dae800 | 2014-12-21 16:28:32 +0100 | [diff] [blame] | 1007 | pipeline); |
Luc Verhaegen | 2d7a084 | 2014-08-13 07:55:07 +0200 | [diff] [blame] | 1008 | if (ret == 0) |
| 1009 | break; |
| 1010 | offset = fdt_node_offset_by_compatible(blob, offset, |
| 1011 | "allwinner,simple-framebuffer"); |
| 1012 | } |
| 1013 | if (offset < 0) { |
| 1014 | eprintf("Cannot setup simplefb: node not found\n"); |
| 1015 | return 0; /* Keep older kernels working */ |
| 1016 | } |
| 1017 | |
| 1018 | ret = fdt_setup_simplefb_node(blob, offset, gd->fb_base, |
| 1019 | graphic_device->winSizeX, graphic_device->winSizeY, |
| 1020 | graphic_device->winSizeX * graphic_device->gdfBytesPP, |
| 1021 | "x8r8g8b8"); |
| 1022 | if (ret) |
| 1023 | eprintf("Cannot setup simplefb: Error setting properties\n"); |
| 1024 | |
| 1025 | return ret; |
| 1026 | } |
| 1027 | #endif /* CONFIG_OF_BOARD_SETUP && CONFIG_VIDEO_DT_SIMPLEFB */ |