1. 10 May, 2022 1 commit
  2. 09 May, 2022 1 commit
  3. 08 May, 2022 3 commits
  4. 06 May, 2022 2 commits
  5. 05 May, 2022 31 commits
  6. 04 May, 2022 2 commits
    • Marek Vasut's avatar
      drm/bridge: tc358767: Fix DP bridge mode detection from DT endpoints · 1bb533b6
      Marek Vasut authored
      Per toshiba,tc358767.yaml DT binding document, port@2 the output (e)DP
      port is optional. In case this port is not described in DT, the bridge
      driver operates in DPI-to-DP mode. Make sure the driver treats this as
      a valid mode of operation instead of reporting invalid mode.
      
      Fixes: 71f7d9c0 ("drm/bridge: tc358767: Detect bridge mode from connected endpoints in DT")
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Cc: Jonas Karlman <jonas@kwiboo.se>
      Cc: Laurent Pinchart <Laurent.pinchart@ideasonboard.com>
      Cc: Lucas Stach <l.stach@pengutronix.de>
      Cc: Marek Vasut <marex@denx.de>
      Cc: Maxime Ripard <maxime@cerno.tech>
      Cc: Neil Armstrong <narmstrong@baylibre.com>
      Cc: Robert Foss <robert.foss@linaro.org>
      Cc: Sam Ravnborg <sam@ravnborg.org>
      Reviewed-by: default avatarLucas Stach <l.stach@pengutronix.de>
      Link: https://patchwork.freedesktop.org/patch/msgid/20220429204625.241591-1-marex@denx.de
      1bb533b6
    • Marek Vasut's avatar
      drm: mxsfb: Implement LCDIF scanout CRC32 support · 05ecc678
      Marek Vasut authored
      The LCDIF controller as present in i.MX28/i.MX6SX/i.MX8M Mini/Nano has
      CRC_STAT register, which contains CRC32 of the frame as it was clocked
      out of the DPI interface of the LCDIF. This is most likely meant as a
      functional safety feature.
      
      Unfortunately, there is zero documentation on how the CRC32 is calculated,
      there is no documentation of the polynomial, the init value, nor on which
      data is the checksum applied.
      
      By applying brute-force on 8 pixel / 2 line frame, which is the minimum
      size LCDIF would work with, it turns out the polynomial is CRC32_POLY_LE
      0xedb88320 , init value is 0xffffffff , the input data are bitrev32()
      of the entire frame and the resulting CRC has to be also bitrev32()ed.
      
      Doing this calculation in kernel for each frame is unrealistic due to the
      CPU demand, so attach the CRC collected from hardware to a frame instead.
      The DRM subsystem already has an interface for this purpose and the CRC
      can be accessed e.g. via debugfs:
      "
      $ echo auto > /sys/kernel/debug/dri/1/crtc-0/crc/control
      $ cat /sys/kernel/debug/dri/1/crtc-0/crc/data
      0x0000408c 0xa4e5cdd8
      0x0000408d 0x72f537b4
      "
      The per-frame CRC can be used by userspace e.g. during automated testing,
      to verify that whatever buffer was sent to be scanned out was actually
      scanned out of the LCDIF correctly.
      Acked-by: default avatarLucas Stach <l.stach@pengutronix.de>
      Acked-by: default avatarStefan Agner <stefan@agner.ch>
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Cc: Alexander Stein <alexander.stein@ew.tq-group.com>
      Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
      Cc: Lucas Stach <l.stach@pengutronix.de>
      Cc: Peng Fan <peng.fan@nxp.com>
      Cc: Robby Cai <robby.cai@nxp.com>
      Cc: Sam Ravnborg <sam@ravnborg.org>
      Cc: Stefan Agner <stefan@agner.ch>
      Link: https://patchwork.freedesktop.org/patch/msgid/20220429212313.305556-1-marex@denx.de
      05ecc678