1 // SPDX-License-Identifier: GPL-2.0-only
4 * Versatile family (ARM reference designs) handling for the PL11x.
5 * This is based on code and know-how in the previous frame buffer
6 * driver in drivers/video/fbdev/amba-clcd.c:
7 * Copyright (C) 2001 ARM Limited, by David A Rusling
8 * Updated to 2.5 by Deep Blue Solutions Ltd.
9 * Major contributions and discoveries by Russell King.
12 #include <linux/bitops.h>
13 #include <linux/device.h>
14 #include <linux/mfd/syscon.h>
15 #include <linux/module.h>
17 #include <linux/of_platform.h>
18 #include <linux/regmap.h>
19 #include <linux/vexpress.h>
21 #include <drm/drm_fourcc.h>
23 #include "pl111_versatile.h"
24 #include "pl111_drm.h"
26 static struct regmap *versatile_syscon_map;
29 * We detect the different syscon types from the compatible strings.
43 static const struct of_device_id versatile_clcd_of_match[] = {
45 .compatible = "arm,core-module-integrator",
46 .data = (void *)INTEGRATOR_CLCD_CM,
49 .compatible = "arm,versatile-sysreg",
50 .data = (void *)VERSATILE_CLCD,
53 .compatible = "arm,realview-eb-syscon",
54 .data = (void *)REALVIEW_CLCD_EB,
57 .compatible = "arm,realview-pb1176-syscon",
58 .data = (void *)REALVIEW_CLCD_PB1176,
61 .compatible = "arm,realview-pb11mp-syscon",
62 .data = (void *)REALVIEW_CLCD_PB11MP,
65 .compatible = "arm,realview-pba8-syscon",
66 .data = (void *)REALVIEW_CLCD_PBA8,
69 .compatible = "arm,realview-pbx-syscon",
70 .data = (void *)REALVIEW_CLCD_PBX,
73 .compatible = "arm,vexpress-muxfpga",
74 .data = (void *)VEXPRESS_CLCD_V2M,
79 static const struct of_device_id impd1_clcd_of_match[] = {
81 .compatible = "arm,im-pd1-syscon",
82 .data = (void *)INTEGRATOR_IMPD1,
88 * Core module CLCD control on the Integrator/CP, bits
89 * 8 thru 19 of the CM_CONTROL register controls a bunch
92 #define INTEGRATOR_HDR_CTRL_OFFSET 0x0C
93 #define INTEGRATOR_CLCD_LCDBIASEN BIT(8)
94 #define INTEGRATOR_CLCD_LCDBIASUP BIT(9)
95 #define INTEGRATOR_CLCD_LCDBIASDN BIT(10)
96 /* Bits 11,12,13 controls the LCD or VGA bridge type */
97 #define INTEGRATOR_CLCD_LCDMUX_LCD24 BIT(11)
98 #define INTEGRATOR_CLCD_LCDMUX_SHARP (BIT(11)|BIT(12))
99 #define INTEGRATOR_CLCD_LCDMUX_VGA555 BIT(13)
100 #define INTEGRATOR_CLCD_LCDMUX_VGA24 (BIT(11)|BIT(12)|BIT(13))
101 #define INTEGRATOR_CLCD_LCD0_EN BIT(14)
102 #define INTEGRATOR_CLCD_LCD1_EN BIT(15)
103 /* R/L flip on Sharp */
104 #define INTEGRATOR_CLCD_LCD_STATIC1 BIT(16)
105 /* U/D flip on Sharp */
106 #define INTEGRATOR_CLCD_LCD_STATIC2 BIT(17)
107 /* No connection on Sharp */
108 #define INTEGRATOR_CLCD_LCD_STATIC BIT(18)
109 /* 0 = 24bit VGA, 1 = 18bit VGA */
110 #define INTEGRATOR_CLCD_LCD_N24BITEN BIT(19)
112 #define INTEGRATOR_CLCD_MASK GENMASK(19, 8)
114 static void pl111_integrator_enable(struct drm_device *drm, u32 format)
118 dev_info(drm->dev, "enable Integrator CLCD connectors\n");
120 /* FIXME: really needed? */
121 val = INTEGRATOR_CLCD_LCD_STATIC1 | INTEGRATOR_CLCD_LCD_STATIC2 |
122 INTEGRATOR_CLCD_LCD0_EN | INTEGRATOR_CLCD_LCD1_EN;
125 case DRM_FORMAT_XBGR8888:
126 case DRM_FORMAT_XRGB8888:
128 val |= INTEGRATOR_CLCD_LCDMUX_VGA24;
130 case DRM_FORMAT_XBGR1555:
131 case DRM_FORMAT_XRGB1555:
132 /* Pseudocolor, RGB555, BGR555 */
133 val |= INTEGRATOR_CLCD_LCDMUX_VGA555;
136 dev_err(drm->dev, "unhandled format on Integrator 0x%08x\n",
141 regmap_update_bits(versatile_syscon_map,
142 INTEGRATOR_HDR_CTRL_OFFSET,
143 INTEGRATOR_CLCD_MASK,
147 #define IMPD1_CTRL_OFFSET 0x18
148 #define IMPD1_CTRL_DISP_LCD (0 << 0)
149 #define IMPD1_CTRL_DISP_VGA (1 << 0)
150 #define IMPD1_CTRL_DISP_LCD1 (2 << 0)
151 #define IMPD1_CTRL_DISP_ENABLE (1 << 2)
152 #define IMPD1_CTRL_DISP_MASK (7 << 0)
154 static void pl111_impd1_enable(struct drm_device *drm, u32 format)
158 dev_info(drm->dev, "enable IM-PD1 CLCD connectors\n");
159 val = IMPD1_CTRL_DISP_VGA | IMPD1_CTRL_DISP_ENABLE;
161 regmap_update_bits(versatile_syscon_map,
163 IMPD1_CTRL_DISP_MASK,
167 static void pl111_impd1_disable(struct drm_device *drm)
169 dev_info(drm->dev, "disable IM-PD1 CLCD connectors\n");
171 regmap_update_bits(versatile_syscon_map,
173 IMPD1_CTRL_DISP_MASK,
178 * This configuration register in the Versatile and RealView
179 * family is uniformly present but appears more and more
180 * unutilized starting with the RealView series.
182 #define SYS_CLCD 0x50
183 #define SYS_CLCD_MODE_MASK (BIT(0)|BIT(1))
184 #define SYS_CLCD_MODE_888 0
185 #define SYS_CLCD_MODE_5551 BIT(0)
186 #define SYS_CLCD_MODE_565_R_LSB BIT(1)
187 #define SYS_CLCD_MODE_565_B_LSB (BIT(0)|BIT(1))
188 #define SYS_CLCD_CONNECTOR_MASK (BIT(2)|BIT(3)|BIT(4)|BIT(5))
189 #define SYS_CLCD_NLCDIOON BIT(2)
190 #define SYS_CLCD_VDDPOSSWITCH BIT(3)
191 #define SYS_CLCD_PWR3V5SWITCH BIT(4)
192 #define SYS_CLCD_VDDNEGSWITCH BIT(5)
194 static void pl111_versatile_disable(struct drm_device *drm)
196 dev_info(drm->dev, "disable Versatile CLCD connectors\n");
197 regmap_update_bits(versatile_syscon_map,
199 SYS_CLCD_CONNECTOR_MASK,
203 static void pl111_versatile_enable(struct drm_device *drm, u32 format)
207 dev_info(drm->dev, "enable Versatile CLCD connectors\n");
210 case DRM_FORMAT_ABGR8888:
211 case DRM_FORMAT_XBGR8888:
212 case DRM_FORMAT_ARGB8888:
213 case DRM_FORMAT_XRGB8888:
214 val |= SYS_CLCD_MODE_888;
216 case DRM_FORMAT_BGR565:
217 val |= SYS_CLCD_MODE_565_R_LSB;
219 case DRM_FORMAT_RGB565:
220 val |= SYS_CLCD_MODE_565_B_LSB;
222 case DRM_FORMAT_ABGR1555:
223 case DRM_FORMAT_XBGR1555:
224 case DRM_FORMAT_ARGB1555:
225 case DRM_FORMAT_XRGB1555:
226 val |= SYS_CLCD_MODE_5551;
229 dev_err(drm->dev, "unhandled format on Versatile 0x%08x\n",
235 regmap_update_bits(versatile_syscon_map,
240 /* Then enable the display */
241 regmap_update_bits(versatile_syscon_map,
243 SYS_CLCD_CONNECTOR_MASK,
244 SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH);
247 static void pl111_realview_clcd_disable(struct drm_device *drm)
249 dev_info(drm->dev, "disable RealView CLCD connectors\n");
250 regmap_update_bits(versatile_syscon_map,
252 SYS_CLCD_CONNECTOR_MASK,
256 static void pl111_realview_clcd_enable(struct drm_device *drm, u32 format)
258 dev_info(drm->dev, "enable RealView CLCD connectors\n");
259 regmap_update_bits(versatile_syscon_map,
261 SYS_CLCD_CONNECTOR_MASK,
262 SYS_CLCD_NLCDIOON | SYS_CLCD_PWR3V5SWITCH);
265 /* PL110 pixel formats for Integrator, vanilla PL110 */
266 static const u32 pl110_integrator_pixel_formats[] = {
277 /* Extended PL110 pixel formats for Integrator and Versatile */
278 static const u32 pl110_versatile_pixel_formats[] = {
283 DRM_FORMAT_BGR565, /* Uses external PLD */
284 DRM_FORMAT_RGB565, /* Uses external PLD */
291 static const u32 pl111_realview_pixel_formats[] = {
309 * The Integrator variant is a PL110 with a bunch of broken, or not
310 * yet implemented features
312 static const struct pl111_variant_data pl110_integrator = {
313 .name = "PL110 Integrator",
315 .broken_clockdivider = true,
316 .broken_vblank = true,
317 .formats = pl110_integrator_pixel_formats,
318 .nformats = ARRAY_SIZE(pl110_integrator_pixel_formats),
323 * The IM-PD1 variant is a PL110 with a bunch of broken, or not
324 * yet implemented features
326 static const struct pl111_variant_data pl110_impd1 = {
327 .name = "PL110 IM-PD1",
329 .broken_clockdivider = true,
330 .broken_vblank = true,
331 .formats = pl110_integrator_pixel_formats,
332 .nformats = ARRAY_SIZE(pl110_integrator_pixel_formats),
337 * This is the in-between PL110 variant found in the ARM Versatile,
338 * supporting RGB565/BGR565
340 static const struct pl111_variant_data pl110_versatile = {
341 .name = "PL110 Versatile",
343 .external_bgr = true,
344 .formats = pl110_versatile_pixel_formats,
345 .nformats = ARRAY_SIZE(pl110_versatile_pixel_formats),
350 * RealView PL111 variant, the only real difference from the vanilla
351 * PL111 is that we select 16bpp framebuffer by default to be able
352 * to get 1024x768 without saturating the memory bus.
354 static const struct pl111_variant_data pl111_realview = {
355 .name = "PL111 RealView",
356 .formats = pl111_realview_pixel_formats,
357 .nformats = ARRAY_SIZE(pl111_realview_pixel_formats),
362 * Versatile Express PL111 variant, again we just push the maximum
363 * BPP to 16 to be able to get 1024x768 without saturating the memory
364 * bus. The clockdivider also seems broken on the Versatile Express.
366 static const struct pl111_variant_data pl111_vexpress = {
367 .name = "PL111 Versatile Express",
368 .formats = pl111_realview_pixel_formats,
369 .nformats = ARRAY_SIZE(pl111_realview_pixel_formats),
371 .broken_clockdivider = true,
374 #define VEXPRESS_FPGAMUX_MOTHERBOARD 0x00
375 #define VEXPRESS_FPGAMUX_DAUGHTERBOARD_1 0x01
376 #define VEXPRESS_FPGAMUX_DAUGHTERBOARD_2 0x02
378 static int pl111_vexpress_clcd_init(struct device *dev, struct device_node *np,
379 struct pl111_drm_dev_private *priv)
381 struct platform_device *pdev;
382 struct device_node *root;
383 struct device_node *child;
384 struct device_node *ct_clcd = NULL;
386 bool has_coretile_clcd = false;
387 bool has_coretile_hdlcd = false;
388 bool mux_motherboard = true;
392 if (!IS_ENABLED(CONFIG_VEXPRESS_CONFIG))
396 * Check if we have a CLCD or HDLCD on the core tile by checking if a
397 * CLCD or HDLCD is available in the root of the device tree.
399 root = of_find_node_by_path("/");
403 for_each_available_child_of_node(root, child) {
404 if (of_device_is_compatible(child, "arm,pl111")) {
405 has_coretile_clcd = true;
410 if (of_device_is_compatible(child, "arm,hdlcd")) {
411 has_coretile_hdlcd = true;
420 * If there is a coretile HDLCD and it has a driver,
421 * do not mux the CLCD on the motherboard to the DVI.
423 if (has_coretile_hdlcd && IS_ENABLED(CONFIG_DRM_HDLCD))
424 mux_motherboard = false;
427 * On the Vexpress CA9 we let the CLCD on the coretile
428 * take precedence, so also in this case do not mux the
429 * motherboard to the DVI.
431 if (has_coretile_clcd)
432 mux_motherboard = false;
434 if (mux_motherboard) {
435 dev_info(dev, "DVI muxed to motherboard CLCD\n");
436 val = VEXPRESS_FPGAMUX_MOTHERBOARD;
437 } else if (ct_clcd == dev->of_node) {
439 "DVI muxed to daughterboard 1 (core tile) CLCD\n");
440 val = VEXPRESS_FPGAMUX_DAUGHTERBOARD_1;
442 dev_info(dev, "core tile graphics present\n");
443 dev_info(dev, "this device will be deactivated\n");
447 /* Call into deep Vexpress configuration API */
448 pdev = of_find_device_by_node(np);
450 dev_err(dev, "can't find the sysreg device, deferring\n");
451 return -EPROBE_DEFER;
454 map = devm_regmap_init_vexpress_config(&pdev->dev);
456 platform_device_put(pdev);
460 ret = regmap_write(map, 0, val);
461 platform_device_put(pdev);
463 dev_err(dev, "error setting DVI muxmode\n");
467 priv->variant = &pl111_vexpress;
468 dev_info(dev, "initializing Versatile Express PL111\n");
473 int pl111_versatile_init(struct device *dev, struct pl111_drm_dev_private *priv)
475 const struct of_device_id *clcd_id;
476 enum versatile_clcd versatile_clcd_type;
477 struct device_node *np;
480 np = of_find_matching_node_and_match(NULL, versatile_clcd_of_match,
483 /* Non-ARM reference designs, just bail out */
487 versatile_clcd_type = (enum versatile_clcd)clcd_id->data;
489 /* Versatile Express special handling */
490 if (versatile_clcd_type == VEXPRESS_CLCD_V2M) {
491 int ret = pl111_vexpress_clcd_init(dev, np, priv);
494 dev_err(dev, "Versatile Express init failed - %d", ret);
499 * On the Integrator, check if we should use the IM-PD1 instead,
500 * if we find it, it will take precedence. This is on the Integrator/AP
501 * which only has this option for PL110 graphics.
503 if (versatile_clcd_type == INTEGRATOR_CLCD_CM) {
504 np = of_find_matching_node_and_match(NULL, impd1_clcd_of_match,
507 versatile_clcd_type = (enum versatile_clcd)clcd_id->data;
510 map = syscon_node_to_regmap(np);
513 dev_err(dev, "no Versatile syscon regmap\n");
517 switch (versatile_clcd_type) {
518 case INTEGRATOR_CLCD_CM:
519 versatile_syscon_map = map;
520 priv->variant = &pl110_integrator;
521 priv->variant_display_enable = pl111_integrator_enable;
522 dev_info(dev, "set up callbacks for Integrator PL110\n");
524 case INTEGRATOR_IMPD1:
525 versatile_syscon_map = map;
526 priv->variant = &pl110_impd1;
527 priv->variant_display_enable = pl111_impd1_enable;
528 priv->variant_display_disable = pl111_impd1_disable;
529 dev_info(dev, "set up callbacks for IM-PD1 PL110\n");
532 versatile_syscon_map = map;
533 /* This can do RGB565 with external PLD */
534 priv->variant = &pl110_versatile;
535 priv->variant_display_enable = pl111_versatile_enable;
536 priv->variant_display_disable = pl111_versatile_disable;
538 * The Versatile has a variant halfway between PL110
539 * and PL111 where these two registers have already been
542 priv->ienb = CLCD_PL111_IENB;
543 priv->ctrl = CLCD_PL111_CNTL;
544 dev_info(dev, "set up callbacks for Versatile PL110\n");
546 case REALVIEW_CLCD_EB:
547 case REALVIEW_CLCD_PB1176:
548 case REALVIEW_CLCD_PB11MP:
549 case REALVIEW_CLCD_PBA8:
550 case REALVIEW_CLCD_PBX:
551 versatile_syscon_map = map;
552 priv->variant = &pl111_realview;
553 priv->variant_display_enable = pl111_realview_clcd_enable;
554 priv->variant_display_disable = pl111_realview_clcd_disable;
555 dev_info(dev, "set up callbacks for RealView PL111\n");
558 dev_info(dev, "unknown Versatile system controller\n");
564 EXPORT_SYMBOL_GPL(pl111_versatile_init);