drm/vc4: hdmi: Deal with multiple debugfs files
authorMaxime Ripard <maxime@cerno.tech>
Thu, 3 Sep 2020 08:01:30 +0000 (10:01 +0200)
committerMaxime Ripard <maxime@cerno.tech>
Mon, 7 Sep 2020 16:14:52 +0000 (18:14 +0200)
The HDMI driver was registering a single debugfs file so far with the name
hdmi_regs.

Obviously, this is not going to work anymore when will have multiple HDMI
controllers since we will end up trying to register two files with the same
name.

Let's use the variant to avoid that name conflict.

Signed-off-by: Maxime Ripard <maxime@cerno.tech>
Tested-by: Chanwoo Choi <cw00.choi@samsung.com>
Tested-by: Hoegeun Kwon <hoegeun.kwon@samsung.com>
Tested-by: Stefan Wahren <stefan.wahren@i2se.com>
Reviewed-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
Link: https://patchwork.freedesktop.org/patch/msgid/9505c1eb40b3ef3709277bf9e8af77917b249c32.1599120059.git-series.maxime@cerno.tech
drivers/gpu/drm/vc4/vc4_hdmi.c
drivers/gpu/drm/vc4/vc4_hdmi.h

index f6d18bdbd1bb3e97aa415d4a7ec48a96e2610b8d..4d0b44a2ac619d1d85342399b63c11486fe002c1 100644 (file)
@@ -1369,7 +1369,9 @@ static int vc4_hdmi_bind(struct device *dev, struct device *master, void *data)
        if (ret)
                goto err_destroy_encoder;
 
-       vc4_debugfs_add_file(drm, "hdmi_regs", vc4_hdmi_debugfs_regs, vc4_hdmi);
+       vc4_debugfs_add_file(drm, variant->debugfs_name,
+                            vc4_hdmi_debugfs_regs,
+                            vc4_hdmi);
 
        return 0;
 
@@ -1447,6 +1449,7 @@ static int vc4_hdmi_dev_remove(struct platform_device *pdev)
 
 static const struct vc4_hdmi_variant bcm2835_variant = {
        .encoder_type           = VC4_ENCODER_TYPE_HDMI0,
+       .debugfs_name           = "hdmi_regs",
        .registers              = vc4_hdmi_fields,
        .num_registers          = ARRAY_SIZE(vc4_hdmi_fields),
 
index 0d529db4b3ab39415912e4e0e9fee4653b836e74..794216f3228ded794a0b6f08b8c12f4d627b76a5 100644 (file)
@@ -30,6 +30,9 @@ struct vc4_hdmi_variant {
        /* Encoder Type for that controller */
        enum vc4_encoder_type encoder_type;
 
+       /* Filename to expose the registers in debugfs */
+       const char *debugfs_name;
+
        /* List of the registers available on that variant */
        const struct vc4_hdmi_register *registers;