mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-21 22:47:56 +00:00
2e715fb4fc
Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
145 lines
5.0 KiB
Diff
145 lines
5.0 KiB
Diff
From 000f1b7d4dc5b515c755ee25db301e26bded00e1 Mon Sep 17 00:00:00 2001
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
Date: Fri, 17 Feb 2023 15:33:23 +0100
|
|
Subject: [PATCH] drm/vc4: crtc: Add support for BCM2712 PixelValves
|
|
|
|
The PixelValves found on the BCM2712 are similar to the ones found in
|
|
the previous generation.
|
|
|
|
Compared to BCM2711, the pixelvalves only drive one HDMI controller each
|
|
and HDMI1 PixelValve has a FIFO long enough to support 4k at 60Hz.
|
|
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_crtc.c | 53 ++++++++++++++++++++++++++++++++--
|
|
drivers/gpu/drm/vc4/vc4_drv.h | 2 ++
|
|
drivers/gpu/drm/vc4/vc4_regs.h | 5 ++++
|
|
3 files changed, 58 insertions(+), 2 deletions(-)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_crtc.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_crtc.c
|
|
@@ -239,6 +239,11 @@ static u32 vc4_get_fifo_full_level(struc
|
|
const struct vc4_crtc_data *crtc_data = vc4_crtc_to_vc4_crtc_data(vc4_crtc);
|
|
const struct vc4_pv_data *pv_data = vc4_crtc_to_vc4_pv_data(vc4_crtc);
|
|
struct vc4_dev *vc4 = to_vc4_dev(vc4_crtc->base.dev);
|
|
+
|
|
+ /*
|
|
+ * NOTE: Could we use register 0x68 (PV_HW_CFG1) to get the FIFO
|
|
+ * size?
|
|
+ */
|
|
u32 fifo_len_bytes = pv_data->fifo_depth;
|
|
|
|
/*
|
|
@@ -393,6 +398,12 @@ static void vc4_crtc_config_pv(struct dr
|
|
|
|
vc4_crtc_pixelvalve_reset(crtc);
|
|
|
|
+ /*
|
|
+ * NOTE: The BCM2712 has a H_OTE (Horizontal Odd Timing Enable)
|
|
+ * bit that, when set, will allow to specify the timings in
|
|
+ * pixels instead of cycles, thus allowing to specify odd
|
|
+ * timings.
|
|
+ */
|
|
CRTC_WRITE(PV_HORZA,
|
|
VC4_SET_FIELD((mode->htotal - mode->hsync_end) * pixel_rep / ppc,
|
|
PV_HORZA_HBP) |
|
|
@@ -462,11 +473,17 @@ static void vc4_crtc_config_pv(struct dr
|
|
if (is_dsi)
|
|
CRTC_WRITE(PV_HACT_ACT, mode->hdisplay * pixel_rep);
|
|
|
|
- if (vc4->gen == VC4_GEN_5)
|
|
+ if (vc4->gen >= VC4_GEN_5)
|
|
CRTC_WRITE(PV_MUX_CFG,
|
|
VC4_SET_FIELD(PV_MUX_CFG_RGB_PIXEL_MUX_MODE_NO_SWAP,
|
|
PV_MUX_CFG_RGB_PIXEL_MUX_MODE));
|
|
|
|
+ if (vc4->gen >= VC4_GEN_6)
|
|
+ CRTC_WRITE(PV_PIPE_INIT_CTRL,
|
|
+ VC4_SET_FIELD(1, PV_PIPE_INIT_CTRL_PV_INIT_WIDTH) |
|
|
+ VC4_SET_FIELD(1, PV_PIPE_INIT_CTRL_PV_INIT_IDLE) |
|
|
+ PV_PIPE_INIT_CTRL_PV_INIT_EN);
|
|
+
|
|
CRTC_WRITE(PV_CONTROL, PV_CONTROL_FIFO_CLR |
|
|
vc4_crtc_get_fifo_full_level_bits(vc4_crtc, format) |
|
|
VC4_SET_FIELD(format, PV_CONTROL_FORMAT) |
|
|
@@ -565,7 +582,11 @@ int vc4_crtc_disable_at_boot(struct drm_
|
|
if (!(of_device_is_compatible(vc4_crtc->pdev->dev.of_node,
|
|
"brcm,bcm2711-pixelvalve2") ||
|
|
of_device_is_compatible(vc4_crtc->pdev->dev.of_node,
|
|
- "brcm,bcm2711-pixelvalve4")))
|
|
+ "brcm,bcm2711-pixelvalve4") ||
|
|
+ of_device_is_compatible(vc4_crtc->pdev->dev.of_node,
|
|
+ "brcm,bcm2712-pixelvalve0") ||
|
|
+ of_device_is_compatible(vc4_crtc->pdev->dev.of_node,
|
|
+ "brcm,bcm2712-pixelvalve1")))
|
|
return 0;
|
|
|
|
if (!(CRTC_READ(PV_CONTROL) & PV_CONTROL_EN))
|
|
@@ -1304,6 +1325,32 @@ const struct vc4_pv_data bcm2711_pv4_dat
|
|
},
|
|
};
|
|
|
|
+const struct vc4_pv_data bcm2712_pv0_data = {
|
|
+ .base = {
|
|
+ .debugfs_name = "crtc0_regs",
|
|
+ .hvs_available_channels = BIT(0),
|
|
+ .hvs_output = 0,
|
|
+ },
|
|
+ .fifo_depth = 64,
|
|
+ .pixels_per_clock = 2,
|
|
+ .encoder_types = {
|
|
+ [0] = VC4_ENCODER_TYPE_HDMI0,
|
|
+ },
|
|
+};
|
|
+
|
|
+const struct vc4_pv_data bcm2712_pv1_data = {
|
|
+ .base = {
|
|
+ .debugfs_name = "crtc1_regs",
|
|
+ .hvs_available_channels = BIT(1),
|
|
+ .hvs_output = 1,
|
|
+ },
|
|
+ .fifo_depth = 64,
|
|
+ .pixels_per_clock = 2,
|
|
+ .encoder_types = {
|
|
+ [0] = VC4_ENCODER_TYPE_HDMI1,
|
|
+ },
|
|
+};
|
|
+
|
|
static const struct of_device_id vc4_crtc_dt_match[] = {
|
|
{ .compatible = "brcm,bcm2835-pixelvalve0", .data = &bcm2835_pv0_data },
|
|
{ .compatible = "brcm,bcm2835-pixelvalve1", .data = &bcm2835_pv1_data },
|
|
@@ -1313,6 +1360,8 @@ static const struct of_device_id vc4_crt
|
|
{ .compatible = "brcm,bcm2711-pixelvalve2", .data = &bcm2711_pv2_data },
|
|
{ .compatible = "brcm,bcm2711-pixelvalve3", .data = &bcm2711_pv3_data },
|
|
{ .compatible = "brcm,bcm2711-pixelvalve4", .data = &bcm2711_pv4_data },
|
|
+ { .compatible = "brcm,bcm2712-pixelvalve0", .data = &bcm2712_pv0_data },
|
|
+ { .compatible = "brcm,bcm2712-pixelvalve1", .data = &bcm2712_pv1_data },
|
|
{}
|
|
};
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_drv.h
|
|
+++ b/drivers/gpu/drm/vc4/vc4_drv.h
|
|
@@ -583,6 +583,8 @@ extern const struct vc4_pv_data bcm2711_
|
|
extern const struct vc4_pv_data bcm2711_pv2_data;
|
|
extern const struct vc4_pv_data bcm2711_pv3_data;
|
|
extern const struct vc4_pv_data bcm2711_pv4_data;
|
|
+extern const struct vc4_pv_data bcm2712_pv0_data;
|
|
+extern const struct vc4_pv_data bcm2712_pv1_data;
|
|
|
|
struct vc5_gamma_entry {
|
|
u32 x_c_terms;
|
|
--- a/drivers/gpu/drm/vc4/vc4_regs.h
|
|
+++ b/drivers/gpu/drm/vc4/vc4_regs.h
|
|
@@ -215,6 +215,11 @@
|
|
# define PV_MUX_CFG_RGB_PIXEL_MUX_MODE_SHIFT 2
|
|
# define PV_MUX_CFG_RGB_PIXEL_MUX_MODE_NO_SWAP 8
|
|
|
|
+#define PV_PIPE_INIT_CTRL 0x94
|
|
+# define PV_PIPE_INIT_CTRL_PV_INIT_WIDTH_MASK VC4_MASK(11, 8)
|
|
+# define PV_PIPE_INIT_CTRL_PV_INIT_IDLE_MASK VC4_MASK(7, 4)
|
|
+# define PV_PIPE_INIT_CTRL_PV_INIT_EN BIT(0)
|
|
+
|
|
#define SCALER_CHANNELS_COUNT 3
|
|
|
|
#define SCALER_DISPCTRL 0x00000000
|