[Freedreno] [PATCH 3/4] drm/msm: Take lru lock once per submit_pin_objects()

2023-08-02 Thread Rob Clark
From: Rob Clark Split out pin_count incrementing and lru updating into a separate loop so we can take the lru lock only once for all objs. Since we are still holding the obj lock, it is safe to split this up. Signed-off-by: Rob Clark --- drivers/gpu/drm/msm/msm_gem.c| 45

[Freedreno] [PATCH 4/4] drm/msm: Remove vma use tracking

2023-08-02 Thread Rob Clark
From: Rob Clark This was not strictly necessary, as page unpinning (ie. shrinker) only cares about the resv. It did give us some extra sanity checking for userspace controlled iova, and was useful to catch issues on kernel and userspace side when enabling userspace iova. But if userspace

[Freedreno] [PATCH 2/4] drm/msm: Use drm_gem_object in submit bos table

2023-08-02 Thread Rob Clark
From: Rob Clark Basically everywhere wants the base ptr type. So store that instead of msm_gem_object. Signed-off-by: Rob Clark --- drivers/gpu/drm/msm/adreno/a5xx_gpu.c | 6 ++-- drivers/gpu/drm/msm/msm_gem.h | 2 +- drivers/gpu/drm/msm/msm_gem_submit.c | 42

[Freedreno] [PATCH 1/4] drm/msm: Take lru lock once per job_run

2023-08-02 Thread Rob Clark
From: Rob Clark Rather than acquiring it and dropping it for each individual obj. Signed-off-by: Rob Clark --- drivers/gpu/drm/msm/msm_gem.c| 3 --- drivers/gpu/drm/msm/msm_ringbuffer.c | 5 + 2 files changed, 5 insertions(+), 3 deletions(-) diff --git

[Freedreno] [PATCH 0/4] drm/msm: Submit overhead opts

2023-08-02 Thread Rob Clark
From: Rob Clark I recently wrote myself a submitoverhead igt test[1] and spent a bit of time profiling. The end result ranges from 1.6x faster for NO_IMPLICIT_SYNC commits with 100 BOs to 2.5x faster for 1000 BOs. [1] https://patchwork.freedesktop.org/series/121909/ Rob Clark (4): drm/msm:

[Freedreno] [RFC] drm/msm: Disallow relocs on a6xx+

2023-08-02 Thread Rob Clark
From: Rob Clark Mesa stopped using these pretty early in a6xx bringup. Take advantage of this to disallow some legacy UABI. Signed-off-by: Rob Clark --- So, it was late 2018 when mesa stopped using relocs. At that point a6xx support was still in a pretty early state. I guess you _could_ use

Re: [Freedreno] [PATCH v2 2/2] drm/msm/dpu: fix DSC 1.2 enc subblock length

2023-08-02 Thread Abhinav Kumar
On 8/2/2023 12:46 PM, Marijn Suijten wrote: On 2023-08-02 21:36:55, Dmitry Baryshkov wrote: Both struct dpu_dsc_sub_blks instances declare enc subblock length to be 0x100, while the actual length is 0x9c (last register having offset 0x98). Reduce subblock length to remove the empty register

Re: [Freedreno] [PATCH v2 1/2] drm/msm/dpu: fix DSC 1.2 block lengths

2023-08-02 Thread Marijn Suijten
On 2023-08-02 21:36:54, Dmitry Baryshkov wrote: > All DSC_BLK_1_2 declarations incorrectly pass 0x29c as the block length. > This includes the common block itself, enc subblocks and some empty > space around. Change that to pass 0x4 instead, the length of common > register block itself. > >

Re: [Freedreno] [PATCH v2 2/2] drm/msm/dpu: fix DSC 1.2 enc subblock length

2023-08-02 Thread Marijn Suijten
On 2023-08-02 21:36:55, Dmitry Baryshkov wrote: > Both struct dpu_dsc_sub_blks instances declare enc subblock length to be > 0x100, while the actual length is 0x9c (last register having offset 0x98). > Reduce subblock length to remove the empty register space from being > dumped. > > Fixes:

Re: [Freedreno] [PATCH v3 2/4] drm/msm/dpu: Enable widebus for DSI INTF

2023-08-02 Thread Marijn Suijten
On 2023-08-02 11:08:49, Jessica Zhang wrote: > DPU supports a data-bus widen mode for DSI INTF. > > Enable this mode for all supported chipsets if widebus is enabled for DSI. > > Signed-off-by: Jessica Zhang > --- > drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 11 --- >

Re: [Freedreno] [PATCH v3 1/4] drm/msm/dpu: Move DPU encoder wide_bus_en setting

2023-08-02 Thread Marijn Suijten
I find this title very undescriptive, it doesn't really explain from/to where this move is happening nor why. On 2023-08-02 11:08:48, Jessica Zhang wrote: > Move the setting of dpu_enc.wide_bus_en to > dpu_encoder_virt_atomic_enable() so that it mirrors the setting of > dpu_enc.dsc. mirroring

Re: [Freedreno] [PATCH 2/2] drm/bridge: lt9611: Do not generate HFP/HBP/HSA and EOT packet

2023-08-02 Thread Marek Vasut
On 8/2/23 19:49, Abhinav Kumar wrote: Hi Marek On 8/2/2023 10:25 AM, Marek Vasut wrote: On 8/2/23 15:08, neil.armstr...@linaro.org wrote: Hi Marek, On 02/08/2023 14:25, Marek Vasut wrote: On 8/2/23 10:39, neil.armstr...@linaro.org wrote: Hi Marek, Hi, On 13/07/2023 20:28, Marek Vasut

Re: [Freedreno] [PATCH v2 1/2] drm/msm/dpu: fix DSC 1.2 block lengths

2023-08-02 Thread Dmitry Baryshkov
On Wed, 2 Aug 2023 at 21:36, Dmitry Baryshkov wrote: > > All DSC_BLK_1_2 declarations incorrectly pass 0x29c as the block length. > This includes the common block itself, enc subblocks and some empty > space around. Change that to pass 0x4 instead, the length of common > register block itself. >

[Freedreno] [PATCH v2 2/2] drm/msm/dpu: fix DSC 1.2 enc subblock length

2023-08-02 Thread Dmitry Baryshkov
Both struct dpu_dsc_sub_blks instances declare enc subblock length to be 0x100, while the actual length is 0x9c (last register having offset 0x98). Reduce subblock length to remove the empty register space from being dumped. Fixes: 0d1b10c63346 ("drm/msm/dpu: add DSC 1.2 hw blocks for relevant

[Freedreno] [PATCH v2 1/2] drm/msm/dpu: fix DSC 1.2 block lengths

2023-08-02 Thread Dmitry Baryshkov
All DSC_BLK_1_2 declarations incorrectly pass 0x29c as the block length. This includes the common block itself, enc subblocks and some empty space around. Change that to pass 0x4 instead, the length of common register block itself. Fixes: 0d1b10c63346 ("drm/msm/dpu: add DSC 1.2 hw blocks for

Re: [Freedreno] [PATCH v3 3/4] drm/msm/dsi: Add DATABUS_WIDEN MDP_CTRL2 bit

2023-08-02 Thread Dmitry Baryshkov
On Wed, 2 Aug 2023 at 21:09, Jessica Zhang wrote: > > Add a DATABUS_WIDEN bit to the MDP_CTRL2 register to allow DSI to enable > databus widen mode. Reviewed-by: Dmitry Baryshkov (The patch will probably be replaced by Rob syncing up msm headers). > > Signed-off-by: Jessica Zhang > --- >

Re: [Freedreno] [PATCH v3 4/4] drm/msm/dsi: Enable widebus for DSI

2023-08-02 Thread Dmitry Baryshkov
On Wed, 2 Aug 2023 at 21:09, Jessica Zhang wrote: > > DSI 6G v2.5.x+ supports a data-bus widen mode that allows DSI to send > 48 bits of compressed data instead of 24. > > Enable this mode whenever DSC is enabled for supported chipsets. > > Signed-off-by: Jessica Zhang > --- >

Re: [Freedreno] [PATCH v3 1/4] drm/msm/dpu: Move DPU encoder wide_bus_en setting

2023-08-02 Thread Dmitry Baryshkov
On Wed, 2 Aug 2023 at 21:09, Jessica Zhang wrote: > > Move the setting of dpu_enc.wide_bus_en to > dpu_encoder_virt_atomic_enable() so that it mirrors the setting of > dpu_enc.dsc. because ... ? > > Signed-off-by: Jessica Zhang > --- > drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 11

Re: [Freedreno] [PATCH v3 2/4] drm/msm/dpu: Enable widebus for DSI INTF

2023-08-02 Thread Dmitry Baryshkov
On Wed, 2 Aug 2023 at 21:09, Jessica Zhang wrote: > > DPU supports a data-bus widen mode for DSI INTF. > > Enable this mode for all supported chipsets if widebus is enabled for DSI. > > Signed-off-by: Jessica Zhang > --- > drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 11 --- >

[Freedreno] [PATCH v3 3/4] drm/msm/dsi: Add DATABUS_WIDEN MDP_CTRL2 bit

2023-08-02 Thread Jessica Zhang
Add a DATABUS_WIDEN bit to the MDP_CTRL2 register to allow DSI to enable databus widen mode. Signed-off-by: Jessica Zhang --- drivers/gpu/drm/msm/dsi/dsi.xml.h | 1 + 1 file changed, 1 insertion(+) diff --git a/drivers/gpu/drm/msm/dsi/dsi.xml.h b/drivers/gpu/drm/msm/dsi/dsi.xml.h index

[Freedreno] [PATCH v3 1/4] drm/msm/dpu: Move DPU encoder wide_bus_en setting

2023-08-02 Thread Jessica Zhang
Move the setting of dpu_enc.wide_bus_en to dpu_encoder_virt_atomic_enable() so that it mirrors the setting of dpu_enc.dsc. Signed-off-by: Jessica Zhang --- drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 11 +++ 1 file changed, 7 insertions(+), 4 deletions(-) diff --git

[Freedreno] [PATCH v3 4/4] drm/msm/dsi: Enable widebus for DSI

2023-08-02 Thread Jessica Zhang
DSI 6G v2.5.x+ supports a data-bus widen mode that allows DSI to send 48 bits of compressed data instead of 24. Enable this mode whenever DSC is enabled for supported chipsets. Signed-off-by: Jessica Zhang --- drivers/gpu/drm/msm/dsi/dsi.c | 5 + drivers/gpu/drm/msm/dsi/dsi.h |

[Freedreno] [PATCH v3 0/4] drm/msm: Enable widebus for DSI

2023-08-02 Thread Jessica Zhang
DSI 6G v2.5.x+ and DPU support a data-bus widen mode that allows DSI to send 48 bits of compressed data per pclk instead of 24. For all chipsets that support this mode, enable it whenever DSC is enabled as recommended by the hardware programming guide. Only enable this for command mode as we are

[Freedreno] [PATCH v3 2/4] drm/msm/dpu: Enable widebus for DSI INTF

2023-08-02 Thread Jessica Zhang
DPU supports a data-bus widen mode for DSI INTF. Enable this mode for all supported chipsets if widebus is enabled for DSI. Signed-off-by: Jessica Zhang --- drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 11 --- drivers/gpu/drm/msm/disp/dpu1/dpu_encoder_phys_cmd.c | 4 +++-

Re: [Freedreno] [PATCH 2/2] drm/bridge: lt9611: Do not generate HFP/HBP/HSA and EOT packet

2023-08-02 Thread Abhinav Kumar
Hi Marek On 8/2/2023 10:25 AM, Marek Vasut wrote: On 8/2/23 15:08, neil.armstr...@linaro.org wrote: Hi Marek, On 02/08/2023 14:25, Marek Vasut wrote: On 8/2/23 10:39, neil.armstr...@linaro.org wrote: Hi Marek, Hi, On 13/07/2023 20:28, Marek Vasut wrote: MIPI_DSI_MODE_VIDEO_NO_HFP

Re: [Freedreno] [PATCH 2/2] drm/bridge: lt9611: Do not generate HFP/HBP/HSA and EOT packet

2023-08-02 Thread Marek Vasut
On 8/2/23 15:08, neil.armstr...@linaro.org wrote: Hi Marek, On 02/08/2023 14:25, Marek Vasut wrote: On 8/2/23 10:39, neil.armstr...@linaro.org wrote: Hi Marek, Hi, On 13/07/2023 20:28, Marek Vasut wrote: MIPI_DSI_MODE_VIDEO_NO_HFP means the HBP period is just skipped by DSIM.

[Freedreno] [PATCH v2] drm/msm/dpu: Drop encoder vsync_event

2023-08-02 Thread Jessica Zhang
Drop vsync_event and vsync_event_work handlers as they are unnecessary. In addition drop the dpu_enc_ktime_template event class as it will be unused after the vsync_event handlers are dropped. Signed-off-by: Jessica Zhang --- Changes in v2: - Dropped dpu_enc_early_kickoff event and

Re: [Freedreno] [PATCH] drm/msm/dpu: increase memtype count to 16 for sm8550

2023-08-02 Thread Dmitry Baryshkov
On Wed, 02 Aug 2023 09:48:53 -0400, Jonathan Marek wrote: > sm8550 has 16 vbif clients. > > This fixes the extra 2 clients (DMA4/DMA5) not having their memtype > initialized. This fixes DMA4/DMA5 planes not displaying correctly. > > Applied, thanks! [1/1] drm/msm/dpu: increase memtype count

Re: [Freedreno] [PATCH] drm/msm/dpu: increase memtype count to 16 for sm8550

2023-08-02 Thread Neil Armstrong
On 02/08/2023 15:48, Jonathan Marek wrote: sm8550 has 16 vbif clients. This fixes the extra 2 clients (DMA4/DMA5) not having their memtype initialized. This fixes DMA4/DMA5 planes not displaying correctly. Fixes: efcd0107 ("drm/msm/dpu: add support for SM8550") Signed-off-by: Jonathan Marek

Re: [Freedreno] [PATCH] drm/msm/dpu: increase memtype count to 16 for sm8550

2023-08-02 Thread Dmitry Baryshkov
On Wed, 2 Aug 2023 at 16:51, Jonathan Marek wrote: > > sm8550 has 16 vbif clients. > > This fixes the extra 2 clients (DMA4/DMA5) not having their memtype > initialized. This fixes DMA4/DMA5 planes not displaying correctly. > > Fixes: efcd0107 ("drm/msm/dpu: add support for SM8550") >

[Freedreno] [PATCH] drm/msm/dpu: increase memtype count to 16 for sm8550

2023-08-02 Thread Jonathan Marek
sm8550 has 16 vbif clients. This fixes the extra 2 clients (DMA4/DMA5) not having their memtype initialized. This fixes DMA4/DMA5 planes not displaying correctly. Fixes: efcd0107 ("drm/msm/dpu: add support for SM8550") Signed-off-by: Jonathan Marek ---

Re: [Freedreno] [PATCH 2/2] drm/bridge: lt9611: Do not generate HFP/HBP/HSA and EOT packet

2023-08-02 Thread neil . armstrong
Hi Marek, On 02/08/2023 14:25, Marek Vasut wrote: On 8/2/23 10:39, neil.armstr...@linaro.org wrote: Hi Marek, Hi, On 13/07/2023 20:28, Marek Vasut wrote: MIPI_DSI_MODE_VIDEO_NO_HFP means the HBP period is just skipped by DSIM. Maybe there is a need for new set of flags which

Re: [Freedreno] [PATCH 2/2] drm/bridge: lt9611: Do not generate HFP/HBP/HSA and EOT packet

2023-08-02 Thread Marek Vasut
On 8/2/23 10:39, neil.armstr...@linaro.org wrote: Hi Marek, Hi, On 13/07/2023 20:28, Marek Vasut wrote: MIPI_DSI_MODE_VIDEO_NO_HFP means the HBP period is just skipped by DSIM. Maybe there is a need for new set of flags which differentiate between HBP skipped (i.e. NO HBP) and HBP

[Freedreno] [PATCH v5 8/8] drm/msm/dpu: shift IRQ indices by 1

2023-08-02 Thread Dmitry Baryshkov
In order to simplify IRQ declarations, shift IRQ indices by 1. This makes 0 the 'no IRQ' value. Thanks to this change, we do no longer have to explicitly set the 'no interrupt' fields in catalog structures. Reviewed-by: Marijn Suijten Signed-off-by: Dmitry Baryshkov ---

[Freedreno] [PATCH v5 7/8] drm/msm/dpu: stop using raw IRQ indices in the kernel traces

2023-08-02 Thread Dmitry Baryshkov
In preparation to reworking IRQ indcies, stop using raw indices in kernel traces. Instead use a pair of register index and bit. This corresponds closer to the values in HW catalog. Reviewed-by: Marijn Suijten Signed-off-by: Dmitry Baryshkov --- drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c |

[Freedreno] [PATCH v5 6/8] drm/msm/dpu: stop using raw IRQ indices in the kernel output

2023-08-02 Thread Dmitry Baryshkov
In preparation to reworking IRQ indcies, stop using raw IRQ indices in kernel output (both printk and debugfs). Instead use a pair of register index and bit. This corresponds closer to the values in HW catalog. Signed-off-by: Dmitry Baryshkov --- drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c |

[Freedreno] [PATCH v5 4/8] drm/msm/dpu: add helper to get IRQ-related data

2023-08-02 Thread Dmitry Baryshkov
In preparation to reworking IRQ indices, move irq_tbl access to a separate helper. Reviewed-by: Marijn Suijten Signed-off-by: Dmitry Baryshkov --- .../gpu/drm/msm/disp/dpu1/dpu_hw_interrupts.c | 48 +-- .../gpu/drm/msm/disp/dpu1/dpu_hw_interrupts.h | 12 +++-- 2 files changed,

[Freedreno] [PATCH v5 3/8] drm/msm/dpu: extract dpu_core_irq_is_valid() helper

2023-08-02 Thread Dmitry Baryshkov
In preparation to reworking IRQ indices, move irq_idx validation to a separate helper. Reviewed-by: Marijn Suijten Signed-off-by: Dmitry Baryshkov --- .../gpu/drm/msm/disp/dpu1/dpu_hw_interrupts.c | 22 +-- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git

[Freedreno] [PATCH v5 5/8] drm/msm/dpu: make the irq table size static

2023-08-02 Thread Dmitry Baryshkov
The size of the irq table is static, it has MDP_INTR_MAX * 32 interrupt entries. Provide the fixed length and drop struct_size() statement. Reviewed-by: Marijn Suijten Signed-off-by: Dmitry Baryshkov --- .../gpu/drm/msm/disp/dpu1/dpu_hw_interrupts.c | 26 ---

[Freedreno] [PATCH v5 2/8] drm/msm/dpu: remove irq_idx argument from IRQ callbacks

2023-08-02 Thread Dmitry Baryshkov
There is no point in passing the IRQ index to IRQ callbacks, no function uses that. Drop it at last. Reviewed-by: Marijn Suijten Signed-off-by: Dmitry Baryshkov --- drivers/gpu/drm/msm/disp/dpu1/dpu_core_irq.h | 2 +- drivers/gpu/drm/msm/disp/dpu1/dpu_encoder.c | 4 ++--

[Freedreno] [PATCH v5 1/8] drm/msm/dpu: fix the irq index in dpu_encoder_phys_wb_wait_for_commit_done

2023-08-02 Thread Dmitry Baryshkov
Since commit 1e7ac595fa46 ("drm/msm/dpu: pass irq to dpu_encoder_helper_wait_for_irq()") the dpu_encoder_phys_wb_wait_for_commit_done expects the IRQ index rather than the IRQ index in phys_enc->intr table, however writeback got the older invocation in place. This was unnoticed for several

[Freedreno] [PATCH v5 0/8] drm/msm/dpu: change interrupts code to make 0 be the no IRQ

2023-08-02 Thread Dmitry Baryshkov
Having an explicit init of interrupt fields to -1 for not existing IRQs makes it easier to forget and/or miss such initialisation, resulting in a wrong interrupt definition. Instead shift all IRQ indices to turn '0' to be the non-existing IRQ. Dependencies: [1] [1]

Re: [Freedreno] [PATCH -next] drm/msm: Remove redundant DRM_DEV_ERROR()

2023-08-02 Thread Dmitry Baryshkov
On Thu, 27 Jul 2023 11:24:07 +, Ruan Jinjie wrote: > There is no need to call the DRM_DEV_ERROR() function directly to print > a custom message when handling an error from platform_get_irq() function > as it is going to display an appropriate error message > in case of a failure. > >

Re: [Freedreno] [PATCH v5 00/10] drm/msm/dpu: cleanup dpu_core_perf module

2023-08-02 Thread Dmitry Baryshkov
On Sun, 30 Jul 2023 04:00:52 +0300, Dmitry Baryshkov wrote: > Apply several cleanups to the DPU's core_perf module. > > Changes since v4: > - Dropped the 'extract bandwidth aggregation function' (Abhinav) > - Fixed commit message for the patch 9 (Abhinav) > > Changes since v3: > - Dropped

Re: [Freedreno] [PATCH v2 0/7] drm/msm/dpu: use UBWC data from MDSS driver

2023-08-02 Thread Dmitry Baryshkov
On Sat, 29 Jul 2023 00:33:13 +0300, Dmitry Baryshkov wrote: > Both DPU and MDSS programming requires knowledge of some of UBWC > parameters. This results in duplication of UBWC data between MDSS and > DPU drivers. To remove such duplication and make the driver more > error-prone, export

Re: [Freedreno] [PATCH v4 0/5] drm/msm/dpu: rework interrupt handling

2023-08-02 Thread Dmitry Baryshkov
On Thu, 27 Jul 2023 17:45:38 +0300, Dmitry Baryshkov wrote: > Please exuse me for the spam, I missed the triggered WARN_ON because of > the dropped patch. > > Declaring the mask of supported interrupts proved to be error-prone. It > is very easy to add a bit with no corresponding backing block

Re: [Freedreno] [PATCH v6 1/2] dt-bindings: display/msm: mdss-common: add memory-region property

2023-08-02 Thread Dmitry Baryshkov
On Wed, 26 Jul 2023 18:57:18 +0530, Amit Pundir wrote: > Add and document the reserved memory region property in the > mdss-common schema. > > For now (sdm845-db845c), it points to a framebuffer memory > region reserved by the bootloader for splash screen. > > > [...] Applied, thanks! [1/2]

Re: [Freedreno] [PATCH -next] drm/msm: Remove redundant DRM_DEV_ERROR()

2023-08-02 Thread Dmitry Baryshkov
On 27/07/2023 14:24, Ruan Jinjie wrote: There is no need to call the DRM_DEV_ERROR() function directly to print a custom message when handling an error from platform_get_irq() function as it is going to display an appropriate error message in case of a failure. Signed-off-by: Ruan Jinjie ---

Re: [Freedreno] [PATCH v3 1/3] drm/display: add transparent bridge helper

2023-08-02 Thread Dmitry Baryshkov
On Wed, 2 Aug 2023 at 11:15, Neil Armstrong wrote: > > Hi, > > On 02/08/2023 03:18, Dmitry Baryshkov wrote: > > Define a helper for creating simple transparent bridges which serve the > > only purpose of linking devices into the bridge chain up to the last > > bridge representing the connector.

Re: [Freedreno] [PATCH 2/2] drm/bridge: lt9611: Do not generate HFP/HBP/HSA and EOT packet

2023-08-02 Thread neil . armstrong
Hi Marek, On 13/07/2023 20:28, Marek Vasut wrote: MIPI_DSI_MODE_VIDEO_NO_HFP means the HBP period is just skipped by DSIM. Maybe there is a need for new set of flags which differentiate between HBP skipped (i.e. NO HBP) and HBP LP11 ? No, the section of the MIPI DSI spec I posted below

Re: [Freedreno] [PATCH v3 1/3] drm/display: add transparent bridge helper

2023-08-02 Thread Neil Armstrong
Hi, On 02/08/2023 03:18, Dmitry Baryshkov wrote: Define a helper for creating simple transparent bridges which serve the only purpose of linking devices into the bridge chain up to the last bridge representing the connector. This is especially useful for DP/USB-C bridge chains, which can span

Re: [Freedreno] [PATCH v3 1/3] drm/display: add transparent bridge helper

2023-08-02 Thread Neil Armstrong
On 02/08/2023 10:08, Neil Armstrong wrote: Hi Dmitry, On 02/08/2023 03:18, Dmitry Baryshkov wrote: Define a helper for creating simple transparent bridges which serve the only purpose of linking devices into the bridge chain up to the last bridge representing the connector. This is especially

Re: [Freedreno] [PATCH v3 1/3] drm/display: add transparent bridge helper

2023-08-02 Thread Neil Armstrong
Hi Dmitry, On 02/08/2023 03:18, Dmitry Baryshkov wrote: Define a helper for creating simple transparent bridges which serve the only purpose of linking devices into the bridge chain up to the last bridge representing the connector. This is especially useful for DP/USB-C bridge chains, which can

Re: [Freedreno] [PATCH v2] drm/panel: Enable DSC and CMD mode for Visionox VTDR6130 panel

2023-08-02 Thread neil . armstrong
On 01/08/2023 22:46, Dmitry Baryshkov wrote: On 01/08/2023 23:43, Paloma Arellano wrote: On 8/1/2023 1:26 AM, neil.armstr...@linaro.org wrote: On 28/07/2023 23:44, Jessica Zhang wrote: On 7/28/2023 2:37 AM, Dmitry Baryshkov wrote: On Fri, 28 Jul 2023 at 04:26, Paloma Arellano wrote: