Re: [PATCH v7 00/16] mm: jit/text allocator

2024-05-03 Thread Liviu Dudau
On Fri, May 03, 2024 at 09:28:25AM +0300, Mike Rapoport wrote: > On Fri, May 03, 2024 at 01:23:30AM +0100, Liviu Dudau wrote: > > On Thu, May 02, 2024 at 04:07:05PM -0700, Luis Chamberlain wrote: > > > On Thu, May 02, 2024 at 11:50:36PM +0100, Liviu Dudau wrote: > > > &

Re: [PATCH v7 00/16] mm: jit/text allocator

2024-05-02 Thread Liviu Dudau
On Thu, May 02, 2024 at 04:07:05PM -0700, Luis Chamberlain wrote: > On Thu, May 02, 2024 at 11:50:36PM +0100, Liviu Dudau wrote: > > On Mon, Apr 29, 2024 at 09:29:20AM -0700, Luis Chamberlain wrote: > > > On Mon, Apr 29, 2024 at 03:16:04PM +0300, Mike Rapoport wrote: > >

Re: [PATCH v7 00/16] mm: jit/text allocator

2024-05-02 Thread Liviu Dudau
On Mon, Apr 29, 2024 at 09:29:20AM -0700, Luis Chamberlain wrote: > On Mon, Apr 29, 2024 at 03:16:04PM +0300, Mike Rapoport wrote: > > From: "Mike Rapoport (IBM)" > > > > Hi, > > > > The patches are also available in git: > >

Re: [PATCH v2 5/8] MIPS: pci-legacy: stop using of_pci_range_to_resource

2021-04-16 Thread Liviu Dudau
> > Fixes PCI errors like: > pci_bus :00: root bus resource [io 0x] > > Fixes: 0b0b0893d49b ("of/pci: Fix the conversion of IO ranges into IO > resources") > Signed-off-by: Ilya Lipnitskiy > Cc: Liviu Dudau > --- > arch/mips/pci/pci-legacy.c

Re: [PATCH -next v2] drm/komeda: Convert to DEFINE_SHOW_ATTRIBUTE

2020-10-23 Thread Liviu Dudau
= seq_read, > - .llseek = seq_lseek, > - .release= single_release, > -}; > +DEFINE_SHOW_ATTRIBUTE(komeda_register); Hi Qinglang, Sorry for the belated response! Acked-by: Liviu Dudau Best regards, Liviu > > #ifdef CONFIG_DEBUG_FS > static void komeda_debugf

Re: [PATCH v6 3/3] drm/vkms: Add support for writeback

2020-09-02 Thread Liviu Dudau
return; > + > + vkms_set_composer(>output, true); > + > + spin_lock_irq(>composer_lock); > + crtc_state->active_writeback = conn_state->writeback_job->priv; > + crtc_state->wb_pending = true; > + spin_unlock_irq(>composer_lock); > + drm_writeback_queue_job(wb_conn, state); > +} > + > +static const struct drm_connector_helper_funcs vkms_wb_conn_helper_funcs = { > + .get_modes = vkms_wb_connector_get_modes, > + .prepare_writeback_job = vkms_wb_prepare_job, > + .cleanup_writeback_job = vkms_wb_cleanup_job, > + .atomic_commit = vkms_wb_atomic_commit, > +}; > + > +int vkms_enable_writeback_connector(struct vkms_device *vkmsdev) > +{ > + struct drm_writeback_connector *wb = >output.wb_connector; > + > + vkmsdev->output.wb_connector.encoder.possible_crtcs = 1; > + drm_connector_helper_add(>base, _wb_conn_helper_funcs); > + > + return drm_writeback_connector_init(>drm, wb, > + _wb_connector_funcs, > + _wb_encoder_helper_funcs, > + vkms_wb_formats, > + ARRAY_SIZE(vkms_wb_formats)); > +} > -- > 2.28.0 > Reviewed-by: Liviu Dudau Best regards, Liviu -- | I would like to | | fix the world, | | but they're not | | giving me the | \ source code! / --- ¯\_(ツ)_/¯

Re: [PATCH] drm/arm: fix unintentional integer overflow on left shift

2020-06-18 Thread Liviu Dudau
On Thu, Jun 18, 2020 at 01:50:34PM +0100, Colin Ian King wrote: > On 18/06/2020 13:14, Liviu Dudau wrote: > > On Thu, Jun 18, 2020 at 11:04:00AM +0100, Colin King wrote: > >> From: Colin Ian King > > > > Hi Colin, > > > >> > >> Shifting th

Re: [PATCH] drm/arm: fix unintentional integer overflow on left shift

2020-06-18 Thread Liviu Dudau
On Thu, Jun 18, 2020 at 11:04:00AM +0100, Colin King wrote: > From: Colin Ian King Hi Colin, > > Shifting the integer value 1 is evaluated using 32-bit arithmetic > and then used in an expression that expects a long value leads to > a potential integer overflow. I'm afraid this explanation

Re: Re:Re: [PATCH v2] drm/arm: fixes pixel clock enabled with wrong format

2020-05-15 Thread Liviu Dudau
Hi Bernard, On Fri, May 08, 2020 at 04:47:17PM +0800, Bernard wrote: > From: "赵军奎" > Date: 2020-04-24 19:37:36 > To: Liviu Dudau > Cc: Brian Starkey ,David Airlie > ,Daniel Vetter > ,dri-de...@lists.freedesktop.org,linux-kernel@vger.kernel.org,opensource.ker.

Re: [PATCH][next] drm/komeda: remove redundant assignment to pointer disable_done

2019-10-04 Thread Liviu Dudau
On Fri, Oct 04, 2019 at 05:21:56PM +0100, Colin King wrote: > From: Colin Ian King > > The pointer disable_done is being initialized with a value that > is never read and is being re-assigned a little later on. The > assignment is redundant and hence can be removed. Not really true, isn't it?

Re: [v4 2/2] drm/arm/mali-dp: Add display QoS interface configuration for Mali DP500

2019-09-06 Thread Liviu Dudau
Hi Wen, On Thu, Aug 22, 2019 at 10:11:35AM +0800, Wen He wrote: > Configure the display Quality of service (QoS) levels priority if the > optional property node "arm,malidp-aqros-value" is defined in DTS file. > > QoS signaling using AQROS and AWQOS AXI interface signals, the AQROS is > driven

Re: [EXT] Re: [v2 1/3] drm/arm/mali-dp: Add display QoS interface configuration for Mali DP500

2019-09-04 Thread Liviu Dudau
On Thu, Aug 15, 2019 at 11:14:17AM +, Wen He wrote: > > > > -Original Message- > > From: Liviu Dudau > > Sent: 2019年7月22日 17:33 > > To: Wen He > > Cc: dri-de...@lists.freedesktop.org; linux-kernel@vger.kernel.org; > > brian.star...@arm.com;

Re: drm/komeda: Add support for generation of CRC data per frame.

2019-08-02 Thread Liviu Dudau
On Fri, Aug 02, 2019 at 11:52:11AM +0200, Daniel Vetter wrote: > On Fri, Aug 2, 2019 at 11:39 AM Brian Starkey wrote: > > > > Hi Liviu, > > > > On Thu, Aug 01, 2019 at 11:42:31AM +0100, Liviu Dudau wrote: > > > Komeda has support to generate per-frame CRC value

Re: [PATCH] drm/komeda: Adds error event print functionality

2019-07-23 Thread Liviu Dudau
On Tue, Jul 23, 2019 at 07:37:42AM +, Lowry Li (Arm Technology China) wrote: > On Mon, Jul 22, 2019 at 04:18:01PM +0000, Liviu Dudau wrote: > > On Mon, Jul 22, 2019 at 11:15:12AM +, james qian wang (Arm Technology > > China) wrote: > > > On Fri, Jul 19, 2019 at

Re: [v2 3/3] dts: arm64: ls1028a: Add optional property node for Mali DP500

2019-07-19 Thread Liviu Dudau
On Fri, Jul 19, 2019 at 05:59:56PM +0800, Wen He wrote: > This patch use the optional property node "arm,malidp-arqos-value" to > can be dynamic configure QoS signaling. > > Signed-off-by: Wen He Reviewed-by: Liviu Dudau Best regards, Liviu > --- > arch/

Re: [EXT] Re: [PATCH] drm/arm/mali-dp: Add display QoS interface configuration

2019-07-18 Thread Liviu Dudau
On Thu, Jul 18, 2019 at 03:29:48AM +, Wen He wrote: > > > > -Original Message- > > From: Liviu Dudau > > Sent: 2019年7月17日 19:22 > > To: Wen He > > Cc: dri-de...@lists.freedesktop.org; linux-kernel@vger.kernel.org; > > brian.star...@arm.com;

Re: [PATCH 4.19 55/90] drm/arm/mali-dp: Add a loop around the second set CVAL and try 5 times

2019-06-26 Thread Liviu Dudau
On Wed, Jun 26, 2019 at 09:56:19AM +0200, Pavel Machek wrote: > > On Mon 2019-06-24 17:56:45, Greg Kroah-Hartman wrote: > > [ Upstream commit 6a88e0c14813d00f8520d0e16cd4136c6cf8b4d4 ] > > > > This patch trying to fix monitor freeze issue caused by drm error > > 'flip_done timed out' on LS1028A

Re: [GIT PULL] mali-dp and komeda patches for drm-next

2019-06-21 Thread Liviu Dudau
On Fri, Jun 21, 2019 at 01:54:11PM +1000, Dave Airlie wrote: > On Thu, 20 Jun 2019 at 20:35, Liviu Dudau wrote: > > > > Hi DRM maintainers, > > > > Picking up pace on the upstreaming of Komeda driver, with quite a lot > > of new features added this time.

Re: [PATCH] drm/komeda: fix 32-bit komeda_crtc_update_clock_ratio

2019-06-17 Thread Liviu Dudau
Fixes: a962091227ed ("drm/komeda: Add engine clock requirement check for the > downscaling") > Signed-off-by: Arnd Bergmann Acked-by: Liviu Dudau Thanks for the patch, I will pull it into the komeda tree. Best regards, Liviu > --- > drivers/gpu/drm/arm/display/k

Re: [PATCH v2 2/2] drm/komeda: Adds komeda_kms_drop_master

2019-06-13 Thread Liviu Dudau
On Thu, Jun 13, 2019 at 10:17:27AM +0200, Daniel Vetter wrote: > On Wed, Jun 12, 2019 at 02:26:24AM +, james qian wang (Arm Technology > China) wrote: > > On Tue, Jun 11, 2019 at 02:30:38PM +0200, Daniel Vetter wrote: > > > On Tue, Jun 11, 2019 at 11:13:45AM +, Lowry Li (Arm Technology

Re: [PATCH v2] drm/komeda: Make Komeda interrupts shareable

2019-06-13 Thread Liviu Dudau
used anywhere. > > Signed-off-by: Ayan Kumar halder Reviewed-by: Liviu Dudau > --- > drivers/gpu/drm/arm/display/komeda/komeda_kms.c | 16 +--- > 1 file changed, 9 insertions(+), 7 deletions(-) > > diff --git a/drivers/gpu/drm/arm/display/komeda/k

Re: [PATCH v2 2/2] drm/komeda: Adds komeda_kms_drop_master

2019-06-13 Thread Liviu Dudau
On Thu, Jun 13, 2019 at 11:08:14AM +0200, Daniel Vetter wrote: > On Thu, Jun 13, 2019 at 09:28:13AM +0100, Liviu Dudau wrote: > > On Thu, Jun 13, 2019 at 10:17:27AM +0200, Daniel Vetter wrote: > > > On Wed, Jun 12, 2019 at 02:26:24AM +, james qian wang (Arm Technology

Re: linux-next: Signed-off-by missing for commit in the mali-dp tree

2019-06-10 Thread Liviu Dudau
On Sat, Jun 08, 2019 at 04:13:35PM +1000, Stephen Rothwell wrote: > Hi Liviu, Hi Stephen, > > Commits > > 74332e53e41d ("drm/komeda: Add image enhancement support") > 108ddcf9238f ("drm/komeda: Add engine clock requirement check for the > downscaling") > e980ebbe5cee ("drm/komeda: Add

Re: [PATCH] drm/komeda: Mark the local functions as static

2019-04-24 Thread Liviu Dudau
p.org/series/58976/ > > Reported-by: kbuild test robot > Signed-off-by: James (Qian) Wang Acked-by: Liviu Dudau > --- > .../gpu/drm/arm/display/komeda/d71/d71_component.c| 9 + > drivers/gpu/drm/arm/display/komeda/komeda_crtc.c | 4 ++-- > drivers/gpu/drm/arm

Re: [PATCH 09/10] PCI: tegra: Add Tegra194 PCIe support

2019-04-10 Thread Liviu Dudau
On Wed, Apr 10, 2019 at 03:23:39PM +0530, Vidya Sagar wrote: > On 4/10/2019 1:44 PM, Liviu Dudau wrote: > > On Wed, Apr 10, 2019 at 11:40:40AM +0530, Vidya Sagar wrote: > > > On 4/9/2019 6:56 PM, Bjorn Helgaas wrote: > > > > On Tue, Apr 09, 2019 at 05:00

Re: [PATCH 09/10] PCI: tegra: Add Tegra194 PCIe support

2019-04-10 Thread Liviu Dudau
On Wed, Apr 10, 2019 at 11:40:40AM +0530, Vidya Sagar wrote: > On 4/9/2019 6:56 PM, Bjorn Helgaas wrote: > > On Tue, Apr 09, 2019 at 05:00:53PM +0530, Vidya Sagar wrote: > > > On 4/6/2019 12:28 AM, Bjorn Helgaas wrote: > > > > On Fri, Apr 05, 2019 at 01:23:51AM +0530, Vidya Sagar wrote: > > > > >

Re: Bad file pattern in MAINTAINERS section 'ARM KOMEDA DRM-KMS DRIVER'

2019-03-26 Thread Liviu Dudau
AINTAINERS section: > > 1162ARM KOMEDA DRM-KMS DRIVER > 1163M: James (Qian) Wang > 1164M: Liviu Dudau > 1165L: Mali DP Maintainers > 1166S: Supported > 1167T: git git://linux-arm.org/linux-ld.

Re: [PATCH v2 05/10] drm/arm/malidp:- Define a common list of AFBC format modifiers supported for DP500, DP550 and DP650

2019-03-01 Thread Liviu Dudau
c. > > Changes since v1:- > - Merged https://patchwork.freedesktop.org/patch/265215/ into this patch > - As Liviu pointed out in the last patch, we can pull the checks outside > of the 'while (*modifiers != DRM_FORMAT_MOD_INVALID)' loop > - Rebased > > Signed-off-by: Ayan Kumar hal

Re: [PATCH v4 03/10] drm/arm/malidp: Set the AFBC register bits if the framebuffer has AFBC modifier

2019-03-01 Thread Liviu Dudau
n ie > malidp_de_set_plane_afbc(). > > Changes from v2: > - For AFBC framebuffer, layer input size register should be set to > framebuffer's width and height. > > Changes from v3: > - Rebased on top of latest drm-misc-next > - Some cleanups/sanity changes based on Liviu'

Re: linux-next: Fixes tags needs some work in the akpm-current tree

2019-01-31 Thread Liviu Dudau
On Thu, Jan 31, 2019 at 02:57:34PM -0800, Andrew Morton wrote: > On Thu, 31 Jan 2019 22:51:52 +0000 Liviu Dudau wrote: > > > On Wed, Jan 30, 2019 at 08:51:42PM -0500, Qian Cai wrote: > > > > > > > > > On 1/30/19 7:05 PM, Stephen Rothwell wrote: > >

Re: linux-next: Fixes tags needs some work in the akpm-current tree

2019-01-31 Thread Liviu Dudau
On Wed, Jan 30, 2019 at 08:51:42PM -0500, Qian Cai wrote: > > > On 1/30/19 7:05 PM, Stephen Rothwell wrote: > > In commit > > > > 6e9ed490d190 ("mm/page_owner: fix for deferred struct page init") > > > > Fixes tag > > > > Fixes: fe53ca54270 ("mm: use early_pfn_to_nid in page_ext_init") >

Re: linux-next: build warning after merge of the mali-dp tree

2019-01-18 Thread Liviu Dudau
On Fri, Jan 18, 2019 at 11:28:11AM +1100, Stephen Rothwell wrote: > Hi Liviu, > > After merging the mali-dp tree, today's linux-next build (x86_64 > allmodconfig) produced this warning: > > drivers/gpu/drm/arm/display/komeda/komeda_dev.c: In function > 'komeda_parse_dt': >

Re: [PATCH] [RFC] drm_hwcomposer: Add support for Arm Framebuffer Compression (AFBC) modifiers.

2019-01-15 Thread Liviu Dudau
On Tue, Jan 15, 2019 at 01:38:19PM +0100, Daniel Vetter wrote: > On Tue, Jan 15, 2019 at 1:24 PM Liviu Dudau wrote: > > > > On Tue, Jan 15, 2019 at 01:05:47PM +0100, Daniel Vetter wrote: > > > On Mon, Jan 14, 2019 at 03:28:27PM +, Ayan Halder wrote: > > > >

Re: [PATCH] [RFC] drm_hwcomposer: Add support for Arm Framebuffer Compression (AFBC) modifiers.

2019-01-15 Thread Liviu Dudau
On Tue, Jan 15, 2019 at 01:05:47PM +0100, Daniel Vetter wrote: > On Mon, Jan 14, 2019 at 03:28:27PM +, Ayan Halder wrote: > > One needs to translate the Gralloc buffer flags for AFBC (eg > > MALI_GRALLOC_INTFMT_AFBC_BASIC) to the corresponding linux kernel drm > > modifiers. > > This gets

Re: linux-next: build failure after merge of the mali-dp tree

2019-01-15 Thread Liviu Dudau
On Tue, Jan 15, 2019 at 01:08:36PM +0100, Daniel Vetter wrote: > On Tue, Jan 15, 2019 at 10:51:02AM +0000, Liviu Dudau wrote: > > On Tue, Jan 15, 2019 at 09:47:25PM +1100, Stephen Rothwell wrote: > > > Hi Liviu, > > > > > > On Tue, 15 Jan 2019 10:1

Re: linux-next: build failure after merge of the mali-dp tree

2019-01-15 Thread Liviu Dudau
On Tue, Jan 15, 2019 at 09:47:25PM +1100, Stephen Rothwell wrote: > Hi Liviu, > > On Tue, 15 Jan 2019 10:12:19 +0000 Liviu Dudau wrote: > > > > That looks like the right fix, thank you for that! > > Thanks for your verification. > > > I will roll your patc

[PATCH] drm: arm/komeda: Remove IRQ parsing from initial series

2019-01-15 Thread Liviu Dudau
The initial series is only introducing the basic components and not implementing IRQ handling. Remove the left over code that touches IRQs until the proper implementation is introduced in a later series. Signed-off-by: Liviu Dudau --- drivers/gpu/drm/arm/display/komeda/komeda_dev.c | 5

Re: linux-next: build failure after merge of the mali-dp tree

2019-01-15 Thread Liviu Dudau
On Tue, Jan 15, 2019 at 10:46:19AM +1100, Stephen Rothwell wrote: > Hi Liviu, Hi Stephen, > > After merging the mali-dp tree, today's linux-next build (x86_64 > allmodconfig) failed like this: > > drivers/gpu/drm/arm/display/komeda/komeda_private_obj.c: In function >

Re: linux-next: Signed-off-by missing for commit in the mali-dp tree

2019-01-14 Thread Liviu Dudau
On Mon, Jan 14, 2019 at 11:09:09AM +1100, Stephen Rothwell wrote: > Hi Liviu, Hi Stephen, > > Commits > > 31849148cb41 ("drm/komeda: Add komeda_framebuffer") > b347a024e10b ("drm/komeda: Add komeda_format_caps for format handling") > 274d16527e45 ("drm/komeda: Add DT parsing") >

Re: [RFC AFBC 03/12] drm/afbc: Add AFBC modifier usage documentation

2019-01-11 Thread Liviu Dudau
r of defined DRM format modifiers. To facilitate > > consistency and compatibility between different AFBC producers and > > consumers, document the expectations for usage of the AFBC DRM format > > modifiers in a new .rst chapter. > > > > Signed-off-by: Brian Starkey >

Re: [REGRESSION, BISECTED] pci: nvme device with HMB fails on arm64

2019-01-04 Thread Liviu Dudau
s fix the issue with NVMe HMBs. You can add my: Tested-by: Liviu Dudau Now I need to go and try to figure out why the rk_gmac-dwmac driver gives this warning: [ 11.277363] [ cut here ] [ 11.277800] DMA-API: rk_gmac-dwmac fe30.ethernet: device driver frees DMA me

[REGRESSION, BISECTED] pci: nvme device with HMB fails on arm64

2019-01-04 Thread Liviu Dudau
Hello Christoph, As I have mentioned to you after Xmas, I think your dma-mapping series breaks NVMe drivers that use HMB on arm64 (RK3399 NanoPC T4 board with Toshiba RC100 SSD in this case). The observed behaviour is that the modprobe of the nvme module will hang due to a kernel crash, which

[PATCH] nvme: pci: Use the same attributes when freeing host_mem_desc_bufs.

2018-12-29 Thread Liviu Dudau
. Without this change I'm getting a kernel crash due to an invalid VM area being freed. Signed-off-by: Liviu Dudau --- drivers/nvme/host/pci.c | 10 ++ 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/drivers/nvme/host/pci.c b/drivers/nvme/host/pci.c index c33bb201b8846

[PATCH] mm/vmalloc.c: don't dereference possible NULL pointer in __vunmap.

2018-12-28 Thread Liviu Dudau
unmap") Signed-off-by: Liviu Dudau --- mm/vmalloc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mm/vmalloc.c b/mm/vmalloc.c index 871e41c55e239..806047d7fda3c 100644 --- a/mm/vmalloc.c +++ b/mm/vmalloc.c @@ -1505,7 +1505,7 @@ static void __vunmap(const void

Re: [PATCH v3 9/9] MAINTAINERS: Add maintainer for arm komeda driver

2018-12-28 Thread Liviu Dudau
On Fri, Dec 28, 2018 at 12:56:27PM +0100, Daniel Vetter wrote: > On Fri, Dec 28, 2018 at 12:15 PM james qian wang (Arm Technology > China) wrote: > > > > On Mon, Dec 24, 2018 at 02:05:43PM +0100, Daniel Vetter wrote: > > > On Mon, Dec 24, 2018 at 1:33 PM Liviu Dudau wr

Re: [PATCH v3 7/9] drm/komeda: Attach komeda_dev to DRM-KMS

2018-12-27 Thread Liviu Dudau
On Thu, Dec 27, 2018 at 07:09:07AM +, james qian wang (Arm Technology China) wrote: > On Mon, Dec 24, 2018 at 08:32:14PM +0800, Liviu Dudau wrote: > > On Fri, Dec 21, 2018 at 10:00:33AM +, james qian wang (Arm Technology > > China) wrote: > > > Add komeda_

Re: [PATCH v3 7/9] drm/komeda: Attach komeda_dev to DRM-KMS

2018-12-27 Thread Liviu Dudau
On Thu, Dec 27, 2018 at 07:09:07AM +, james qian wang (Arm Technology China) wrote: > On Mon, Dec 24, 2018 at 08:32:14PM +0800, Liviu Dudau wrote: > > On Fri, Dec 21, 2018 at 10:00:33AM +, james qian wang (Arm Technology > > China) wrote: > > > Add komeda_

Re: [PATCH v3 8/9] drm/doc: Add initial komeda driver documentation

2018-12-24 Thread Liviu Dudau
On Fri, Dec 21, 2018 at 10:00:49AM +, james qian wang (Arm Technology China) wrote: > v2: Some editing changes according to Randy Dunlap's comments > > Signed-off-by: James (Qian) Wang Reviewed-by: Liviu Dudau > --- > Documentation/gpu/drivers.rst| 1 + > Docume

Re: [PATCH v3 9/9] MAINTAINERS: Add maintainer for arm komeda driver

2018-12-24 Thread Liviu Dudau
On Fri, Dec 21, 2018 at 10:01:06AM +, james qian wang (Arm Technology China) wrote: > v2: Adjusted the position of KOMEDA by alphabetical order > > Signed-off-by: James (Qian) Wang Acked-by: Liviu Dudau Best regards, Liviu > --- > MAINTAINERS | 9 + >

Re: [PATCH v3 7/9] drm/komeda: Attach komeda_dev to DRM-KMS

2018-12-24 Thread Liviu Dudau
eda_private_obj.c > @@ -0,0 +1,88 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* > + * (C) COPYRIGHT 2018 ARM Limited. All rights reserved. > + * Author: James.Qian.Wang > + * > + */ > +#include "komeda_dev.h" > +#include "komeda_kms.h" > + > +static struct drm_private_state * >

Re: [PATCH v3 6/9] drm/komeda: Add komeda_framebuffer

2018-12-24 Thread Liviu Dudau
create_handle, > +}; > + > +static int > +komeda_fb_none_afbc_size_check(struct komeda_dev *mdev, struct komeda_fb > *kfb, > +struct drm_file *file, > +const struct drm_mode_fb_cmd2 *mode_cmd) Not sure

Re: [PATCH v3 5/9] drm/komeda: Add komeda_format_caps for format handling

2018-12-24 Thread Liviu Dudau
Signed-off-by: James (Qian) Wang Acked-by: Liviu Dudau Best regards, Liviu > --- > drivers/gpu/drm/arm/display/komeda/Makefile | 1 + > .../gpu/drm/arm/display/komeda/d71/d71_dev.c | 78 > .../gpu/drm/arm/display/komeda/komeda_dev.c | 2 + > .../gpu/drm/arm/d

Re: [PATCH v3 4/9] drm/komeda: Add DT parsing

2018-12-24 Thread Liviu Dudau
f "pipeline" to "pipe". > > Signed-off-by: James (Qian) Wang Acked-by: Liviu Dudau Best regards, Liviu > --- > .../gpu/drm/arm/display/komeda/komeda_dev.c | 76 +++ > .../gpu/drm/arm/display/komeda/komeda_dev.h | 3 + > .../drm/

Re: [PATCH v3 3/9] drm/komeda: Build komeda to be a platform module

2018-12-24 Thread Liviu Dudau
oduct->identify(); > ... > } > > Changes in v3: > - Fixed style problem found by checkpatch.pl --strict. > > Signed-off-by: James (Qian) Wang Acked-by: Liviu Dudau Best regards, Liviu > --- > .../gpu/drm/arm/display/include/malidp_io.h | 42 ++

Re: [PATCH v3 2/9] dt/bindings: drm/komeda: Add DT bindings for ARM display processor D71

2018-12-24 Thread Liviu Dudau
k"; > + reg = <1>; > + > + #address-cells = <1>; > + #size-cells = <0>; same here. > + > + port@0 { > + dp0_pipe1_out: endpoint { > + remote-endpoint = <_dvi1_in>; > + }; > + }; > + }; > + }; > + ... > +}; > -- > 2.17.1 > With these changes: Reviewed-by: Liviu Dudau Best regards, Liviu -- | I would like to | | fix the world, | | but they're not | | giving me the | \ source code! / --- ¯\_(ツ)_/¯

Re: [PATCH v3 1/9] drm/komeda: komeda_dev/pipeline/component definition and initialzation

2018-12-24 Thread Liviu Dudau
and hold all functional components. > + */ > +struct komeda_pipeline { > + /** @obj: link pipeline as private obj of drm_atomic_state */ > + struct drm_private_obj obj; > + /** @mdev: the parent komeda_dev */ > + struct komeda_dev *mdev; > + /** @pxlclk: pixel clock */ > + struct clk *pxlclk; > + /** @aclk: AXI clock */ > + struct clk *aclk; > + /** @id: pipeline id */ > + int id; > + /** @avail_comps: available components mask of pipeline */ > + u32 avail_comps; > + int n_layers; > + struct komeda_layer *layers[KOMEDA_PIPELINE_MAX_LAYERS]; > + int n_scalers; > + struct komeda_scaler *scalers[KOMEDA_PIPELINE_MAX_SCALERS]; > + struct komeda_compiz *compiz; > + struct komeda_layer *wb_layer; > + struct komeda_improc *improc; > + struct komeda_timing_ctrlr *ctrlr; > + struct komeda_pipeline_funcs *funcs; /* private pipeline functions */ > +}; > + > +/** > + * struct komeda_pipeline_state > + * > + * NOTE: > + * Unlike the pipeline, pipeline_state doesn’t gather any component_state > + * into it. It because all component will be managed by drm_atomic_state. > + */ > +struct komeda_pipeline_state { > + /** @obj: tracking pipeline_state by drm_atomic_state */ > + struct drm_private_state obj; > + struct komeda_pipeline *pipe; > + /** @crtc: currently bound crtc */ > + struct drm_crtc *crtc; > + /** > + * @active_comps: > + * > + * bitmask - BIT(component->id) of active components > + */ > + u32 active_comps; > +}; > + > +#define to_layer(c) container_of(c, struct komeda_layer, base) > +#define to_compiz(c) container_of(c, struct komeda_compiz, base) > +#define to_scaler(c) container_of(c, struct komeda_scaler, base) > +#define to_improc(c) container_of(c, struct komeda_improc, base) > +#define to_ctrlr(c) container_of(c, struct komeda_timing_ctrlr, base) > + > +#define to_layer_st(c) container_of(c, struct komeda_layer_state, base) > +#define to_compiz_st(c) container_of(c, struct komeda_compiz_state, > base) > +#define to_scaler_st(c) container_of(c, struct komeda_scaler_state, base) > +#define to_improc_st(c) container_of(c, struct komeda_improc_state, > base) > +#define to_ctrlr_st(c) container_of(c, struct > komeda_timing_ctrlr_state, base) > + > +/* pipeline APIs */ > +struct komeda_pipeline * > +komeda_pipeline_add(struct komeda_dev *mdev, size_t size, > + struct komeda_pipeline_funcs *funcs); > +void komeda_pipeline_destroy(struct komeda_dev *mdev, > + struct komeda_pipeline *pipe); > + > +struct komeda_component * > +komeda_pipeline_get_component(struct komeda_pipeline *pipe, int id); > + > +/* component APIs */ > +struct komeda_component * > +komeda_component_add(struct komeda_pipeline *pipe, > + size_t comp_sz, u32 id, u32 hw_id, > + struct komeda_component_funcs *funcs, > + u8 max_active_inputs, u32 supported_inputs, > + u8 max_active_outputs, u32 __iomem *reg, > + const char *name_fmt, ...); > + > +void komeda_component_destroy(struct komeda_dev *mdev, > + struct komeda_component *c); > + > +#endif /* _KOMEDA_PIPELINE_H_*/ > -- > 2.17.1 > With these small changes: Reviewed-by: Liviu Dudau Best regards, Liviu -- | I would like to | | fix the world, | | but they're not | | giving me the | \ source code! / --- ¯\_(ツ)_/¯

Re: [RFC AFBC 06/12] drm/arm/malidp:- Added support for new YUV formats for DP500, DP550 and DP650

2018-12-17 Thread Liviu Dudau
On Fri, Dec 14, 2018 at 02:12:23PM +, Ayan Halder wrote: > On Tue, Dec 04, 2018 at 04:57:46PM +0000, Liviu Dudau wrote: > > Hi Liviu, > > On Mon, Dec 03, 2018 at 11:32:00AM +, Ayan Halder wrote: > > > We have added some new formats to be supported on DP500/DP550/DP

Re: [RFC v3 AFBC 04/12] drm/arm/malidp: Set the AFBC register bits if the framebuffer has AFBC modifier

2018-12-17 Thread Liviu Dudau
On Fri, Dec 14, 2018 at 01:45:13PM +, Ayan Halder wrote: > On Tue, Dec 04, 2018 at 04:50:51PM +0000, Liviu Dudau wrote: > > Hi Liviu, > > Please let me know if you agree with my comments. Then I will send a > v4 patch for this. > > On Mon, Dec 03, 2018 at 11:31:58AM

Re: [RFC AFBC 06/12] drm/arm/malidp:- Added support for new YUV formats for DP500, DP550 and DP650

2018-12-04 Thread Liviu Dudau
/patch/10460063/ Reviewed-by: Liviu Dudau Best regards, Liviu > --- > drivers/gpu/drm/arm/malidp_hw.c | 22 +- > 1 file changed, 21 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/arm/malidp_hw.c b/drivers/gpu/drm/arm/malidp_hw.c > index 55d379b

Re: [RFC AFBC 06/12] drm/arm/malidp:- Added support for new YUV formats for DP500, DP550 and DP650

2018-12-04 Thread Liviu Dudau
/patch/10460063/ Reviewed-by: Liviu Dudau Best regards, Liviu > --- > drivers/gpu/drm/arm/malidp_hw.c | 22 +- > 1 file changed, 21 insertions(+), 1 deletion(-) > > diff --git a/drivers/gpu/drm/arm/malidp_hw.c b/drivers/gpu/drm/arm/malidp_hw.c > index 55d379b

Re: [PATCH 2/8] ARM: vexpress/spc: constify clk_ops structure

2018-10-29 Thread Liviu Dudau
Signed-off-by: Julia Lawall Acked-by: Liviu Dudau Are you going to send the series to the arm-soc maintainers directly or you want us to cherry-pick this patch into the Versatile tree? Best regards, Liviu > > --- > arch/arm/mach-vexpress/spc.c |2 +- > 1 file changed, 1 inse

Re: [PATCH 2/8] ARM: vexpress/spc: constify clk_ops structure

2018-10-29 Thread Liviu Dudau
Signed-off-by: Julia Lawall Acked-by: Liviu Dudau Are you going to send the series to the arm-soc maintainers directly or you want us to cherry-pick this patch into the Versatile tree? Best regards, Liviu > > --- > arch/arm/mach-vexpress/spc.c |2 +- > 1 file changed, 1 inse

Re: [PATCH] leds: gpio: set led_dat->gpiod pointer for OF defined GPIO leds

2018-10-23 Thread Liviu Dudau
On Thu, Oct 18, 2018 at 01:14:32AM +0100, Liviu Dudau wrote: > Commit 45d4c6de4e49 ("leds: gpio: Try to lookup gpiod from device") > removed the common code path that set the led_dat->gpiod pointer in > create_gpio_led(), but only added it back for the devic

Re: [PATCH] leds: gpio: set led_dat->gpiod pointer for OF defined GPIO leds

2018-10-23 Thread Liviu Dudau
On Thu, Oct 18, 2018 at 01:14:32AM +0100, Liviu Dudau wrote: > Commit 45d4c6de4e49 ("leds: gpio: Try to lookup gpiod from device") > removed the common code path that set the led_dat->gpiod pointer in > create_gpio_led(), but only added it back for the devic

[PATCH] leds: gpio: set led_dat->gpiod pointer for OF defined GPIO leds

2018-10-17 Thread Liviu Dudau
Anaszewski Signed-off-by: Liviu Dudau --- Hi, I found this issue while testing linux-next-20181017, I don't know how stable the leds for-next tree is in terms of commit IDs, if that gets rebased then the Fixes commit ID needs updating. Best regards, Liviu drivers/leds/leds-gpio.c |

[PATCH] leds: gpio: set led_dat->gpiod pointer for OF defined GPIO leds

2018-10-17 Thread Liviu Dudau
Anaszewski Signed-off-by: Liviu Dudau --- Hi, I found this issue while testing linux-next-20181017, I don't know how stable the leds for-next tree is in terms of commit IDs, if that gets rebased then the Fixes commit ID needs updating. Best regards, Liviu drivers/leds/leds-gpio.c |

Re: [PATCH v2] drm/arm/malidp: Validate rotations for compressed/uncompressed framebuffers for each layer

2018-09-24 Thread Liviu Dudau
On Mon, Sep 24, 2018 at 03:40:15PM +0100, Ayan Halder wrote: > Hi Liviu, Hi Ayan, > > On Fri, Sep 21, 2018 at 03:33:53PM +0100, Liviu Dudau wrote: > > From: Ayan Kumar Halder > > > > Add support for compressed framebuffers that are described using > > the fram

Re: [PATCH v2] drm/arm/malidp: Validate rotations for compressed/uncompressed framebuffers for each layer

2018-09-24 Thread Liviu Dudau
On Mon, Sep 24, 2018 at 03:40:15PM +0100, Ayan Halder wrote: > Hi Liviu, Hi Ayan, > > On Fri, Sep 21, 2018 at 03:33:53PM +0100, Liviu Dudau wrote: > > From: Ayan Kumar Halder > > > > Add support for compressed framebuffers that are described using > > the fram

Re: linux-next: Signed-off-by missing for commit in the mali-dp tree

2018-09-23 Thread Liviu Dudau
On Sat, Sep 22, 2018 at 08:58:34AM +1000, Stephen Rothwell wrote: > Hi Liviu, Hi Stephen, > > Commit > > fd75f5726f65 ("drm/mali-dp: Implement plane alpha and pixel blend on > malidp") > > is missing a Signed-off-by from its committer. My bad, I cherry picked-it from a staging tree and

Re: linux-next: Signed-off-by missing for commit in the mali-dp tree

2018-09-23 Thread Liviu Dudau
On Sat, Sep 22, 2018 at 08:58:34AM +1000, Stephen Rothwell wrote: > Hi Liviu, Hi Stephen, > > Commit > > fd75f5726f65 ("drm/mali-dp: Implement plane alpha and pixel blend on > malidp") > > is missing a Signed-off-by from its committer. My bad, I cherry picked-it from a staging tree and

Re: [PATCH v3 9/9] dts: juno: Update coresight bindings

2018-07-27 Thread Liviu Dudau
On Fri, Jul 27, 2018 at 11:15:37AM +0100, Suzuki K Poulose wrote: > Switch to updated coresight bindings for Juno platforms. > > Cc: Sudeep Holla > Cc: Liviu Dudau > Signed-off-by: Suzuki K Poulose Looks good to me. Acked-by: Liviu Dudau Best regards, Liviu > ---

Re: [PATCH v3 9/9] dts: juno: Update coresight bindings

2018-07-27 Thread Liviu Dudau
On Fri, Jul 27, 2018 at 11:15:37AM +0100, Suzuki K Poulose wrote: > Switch to updated coresight bindings for Juno platforms. > > Cc: Sudeep Holla > Cc: Liviu Dudau > Signed-off-by: Suzuki K Poulose Looks good to me. Acked-by: Liviu Dudau Best regards, Liviu > ---

Re: [PATCH -next] misc: vexpress: Fix potential NULL dereference in vexpress_syscfg_probe()

2018-07-12 Thread Liviu Dudau
e(), we can > use devm_ioremap_resource() which has the NULL pointer check and the > memory region requesting. devm_ioremap_resource is designed to replace > calls to devm_request_mem_region followed by devm_ioremap, so let's use > the same. > > Cc: Liviu Dudau > Cc: Lorenzo Piera

Re: [PATCH -next] misc: vexpress: Fix potential NULL dereference in vexpress_syscfg_probe()

2018-07-12 Thread Liviu Dudau
e(), we can > use devm_ioremap_resource() which has the NULL pointer check and the > memory region requesting. devm_ioremap_resource is designed to replace > calls to devm_request_mem_region followed by devm_ioremap, so let's use > the same. > > Cc: Liviu Dudau > Cc: Lorenzo Piera

Re: [PATCH v2 3/4] drm/arm/malidp: Set the AFBC register bits if the framebuffer has AFBC modifier

2018-07-11 Thread Liviu Dudau
e_afbc(). This will consolidate all the > AFBC specific register configurations in a single function ie > malidp_de_set_plane_afbc(). > > Signed-off-by: Ayan Kumar halder > Reviewed-by: Brian Starkey Acked-by: Liviu Dudau Thanks, Liviu > --- > drivers/gpu/drm/arm/m

Re: [PATCH v2 3/4] drm/arm/malidp: Set the AFBC register bits if the framebuffer has AFBC modifier

2018-07-11 Thread Liviu Dudau
e_afbc(). This will consolidate all the > AFBC specific register configurations in a single function ie > malidp_de_set_plane_afbc(). > > Signed-off-by: Ayan Kumar halder > Reviewed-by: Brian Starkey Acked-by: Liviu Dudau Thanks, Liviu > --- > drivers/gpu/drm/arm/m

[PATCH v9 3/3] drm: writeback: Add client capability for exposing writeback connectors

2018-05-24 Thread Liviu Dudau
com> Signed-off-by: Liviu Dudau <liviu.du...@arm.com> --- drivers/gpu/drm/drm_ioctl.c | 7 +++ drivers/gpu/drm/drm_mode_config.c | 5 + include/drm/drm_file.h| 7 +++ include/uapi/drm/drm.h| 9 + 4 files changed, 28 insertions(+) diff --git a/dri

[PATCH v9 1/3] drm: Add writeback connector type

2018-05-24 Thread Liviu Dudau
conflicts] Signed-off-by: Mihail Atanassov <mihail.atanas...@arm.com> [rebased and added atomic_commit() vfunc for writeback jobs] Signed-off-by: Rob Clark <robdcl...@gmail.com> Signed-off-by: Liviu Dudau <liviu.du...@arm.com> --- Documentation/gpu/drm-kms.rst| 9 + drivers

[PATCH v9 3/3] drm: writeback: Add client capability for exposing writeback connectors

2018-05-24 Thread Liviu Dudau
the capability if the client has already set the DRM_CLIENT_CAP_ATOMIC one. - update the capability number to fix conflict with the aspect ratio Reviewed-by: Eric Anholt Re-requested-by: Sean Paul Cc: Brian Starkey Signed-off-by: Liviu Dudau --- drivers/gpu/drm/drm_ioctl.c | 7

[PATCH v9 1/3] drm: Add writeback connector type

2018-05-24 Thread Liviu Dudau
unc for writeback jobs] Signed-off-by: Rob Clark Signed-off-by: Liviu Dudau --- Documentation/gpu/drm-kms.rst| 9 + drivers/gpu/drm/Makefile | 2 +- drivers/gpu/drm/drm_atomic.c | 128 drivers/gpu/drm/drm_atomic_helper.c | 30 +++ drivers/gpu/

[PATCH v9 2/3] drm: writeback: Add out-fences for writeback connectors

2018-05-24 Thread Liviu Dudau
and fixed conflicts] Signed-off-by: Mihail Atanassov <mihail.atanas...@arm.com> Signed-off-by: Liviu Dudau <liviu.du...@arm.com> --- drivers/gpu/drm/drm_atomic.c| 99 ++--- drivers/gpu/drm/drm_writeback.c | 109 +++- include/dr

[PATCH v9 2/3] drm: writeback: Add out-fences for writeback connectors

2018-05-24 Thread Liviu Dudau
write when setting out_fence fd") (change out_fence_ptr to s32 __user *, for real this time.) - Update documentation around WRITEBACK_OUT_FENCE_PTR Reviewed-by: Eric Anholt Signed-off-by: Brian Starkey [rebased and fixed conflicts] Signed-off-by: Mihail Atanassov Signed-off-by: L

[PATCH v9 0/3] drm: Introduce writeback connectors

2018-05-24 Thread Liviu Dudau
connector type drm: writeback: Add out-fences for writeback connectors Liviu Dudau (1): drm: writeback: Add client capability for exposing writeback connectors Documentation/gpu/drm-kms.rst| 9 + drivers/gpu/drm/Makefile | 2 +- drivers/gpu/drm

[PATCH v9 0/3] drm: Introduce writeback connectors

2018-05-24 Thread Liviu Dudau
connector type drm: writeback: Add out-fences for writeback connectors Liviu Dudau (1): drm: writeback: Add client capability for exposing writeback connectors Documentation/gpu/drm-kms.rst| 9 + drivers/gpu/drm/Makefile | 2 +- drivers/gpu/drm

Re: [PATCH v8 3/3] drm: writeback: Add client capability for exposing writeback connectors

2018-05-23 Thread Liviu Dudau
On Wed, May 23, 2018 at 11:34:32AM +0200, Maarten Lankhorst wrote: > Op 18-05-18 om 17:17 schreef Liviu Dudau: > > Due to the fact that writeback connectors behave in a special way > > in DRM (they always report being disconnected) we might confuse some > > userspace. Ad

Re: [PATCH v8 3/3] drm: writeback: Add client capability for exposing writeback connectors

2018-05-23 Thread Liviu Dudau
On Wed, May 23, 2018 at 11:34:32AM +0200, Maarten Lankhorst wrote: > Op 18-05-18 om 17:17 schreef Liviu Dudau: > > Due to the fact that writeback connectors behave in a special way > > in DRM (they always report being disconnected) we might confuse some > > userspace. Ad

Re: [PATCH v8 2/3] drm: writeback: Add out-fences for writeback connectors

2018-05-22 Thread Liviu Dudau
On Mon, May 21, 2018 at 12:02:25PM -0700, Eric Anholt wrote: > Liviu Dudau <liviu.du...@arm.com> writes: > > > From: Brian Starkey <brian.star...@arm.com> > > > > Add the WRITEBACK_OUT_FENCE_PTR property to writeback connectors, to > > enable users

Re: [PATCH v8 2/3] drm: writeback: Add out-fences for writeback connectors

2018-05-22 Thread Liviu Dudau
On Mon, May 21, 2018 at 12:02:25PM -0700, Eric Anholt wrote: > Liviu Dudau writes: > > > From: Brian Starkey > > > > Add the WRITEBACK_OUT_FENCE_PTR property to writeback connectors, to > > enable userspace to get a fence which will signal once the writeback is &

[PATCH v8 1/3] drm: Add writeback connector type

2018-05-18 Thread Liviu Dudau
back jobs] Signed-off-by: Rob Clark <robdcl...@gmail.com> Signed-off-by: Liviu Dudau <liviu.du...@arm.com> --- Documentation/gpu/drm-kms.rst| 9 + drivers/gpu/drm/Makefile | 2 +- drivers/gpu/drm/drm_atomic.c | 128 drivers/gpu/d

[PATCH v8 1/3] drm: Add writeback connector type

2018-05-18 Thread Liviu Dudau
use of out_fence that is only introduced in a subsequent patch. Signed-off-by: Brian Starkey [rebased and fixed conflicts] Signed-off-by: Mihail Atanassov [rebased and added atomic_commit() vfunc for writeback jobs] Signed-off-by: Rob Clark Signed-off-by: Liviu Dudau --- Documentation/gpu/

[PATCH v8 3/3] drm: writeback: Add client capability for exposing writeback connectors

2018-05-18 Thread Liviu Dudau
<seanp...@chromium.org> Cc: Brian Starkey <brian.star...@arm.com> Signed-off-by: Liviu Dudau <liviu.du...@arm.com> --- drivers/gpu/drm/drm_ioctl.c | 7 +++ drivers/gpu/drm/drm_mode_config.c | 5 + include/drm/drm_file.h| 7 +++ include/uapi/drm/dr

[PATCH v8 0/3] drm: Introduce writeback connectors

2018-05-18 Thread Liviu Dudau
: writeback: Add out-fences for writeback connectors Liviu Dudau (1): drm: writeback: Add client capability for exposing writeback connectors Documentation/gpu/drm-kms.rst| 9 + drivers/gpu/drm/Makefile | 2 +- drivers/gpu/drm/drm_atomic.c | 227

[PATCH v8 3/3] drm: writeback: Add client capability for exposing writeback connectors

2018-05-18 Thread Liviu Dudau
Cc: Brian Starkey Signed-off-by: Liviu Dudau --- drivers/gpu/drm/drm_ioctl.c | 7 +++ drivers/gpu/drm/drm_mode_config.c | 5 + include/drm/drm_file.h| 7 +++ include/uapi/drm/drm.h| 9 + 4 files changed, 28 insertions(+) diff --git a/drivers

[PATCH v8 0/3] drm: Introduce writeback connectors

2018-05-18 Thread Liviu Dudau
: writeback: Add out-fences for writeback connectors Liviu Dudau (1): drm: writeback: Add client capability for exposing writeback connectors Documentation/gpu/drm-kms.rst| 9 + drivers/gpu/drm/Makefile | 2 +- drivers/gpu/drm/drm_atomic.c | 227

[PATCH v8 2/3] drm: writeback: Add out-fences for writeback connectors

2018-05-18 Thread Liviu Dudau
anassov <mihail.atanas...@arm.com> Signed-off-by: Liviu Dudau <liviu.du...@arm.com> --- drivers/gpu/drm/drm_atomic.c| 99 ++--- drivers/gpu/drm/drm_writeback.c | 109 +++- include/drm/drm_atomic.h| 8 +++ include/drm/drm_

[PATCH v8 2/3] drm: writeback: Add out-fences for writeback connectors

2018-05-18 Thread Liviu Dudau
write when setting out_fence fd") (change out_fence_ptr to s32 __user *, for real this time.) - Update documentation around WRITEBACK_OUT_FENCE_PTR Signed-off-by: Brian Starkey [rebased and fixed conflicts] Signed-off-by: Mihail Atanassov Signed-off-by: Liviu Dudau --- drivers/gpu/drm/dr

Re: [PATCH v7 3/5] drm/mali-dp: Add writeback support for DP500.

2018-05-18 Thread Liviu Dudau
On Fri, May 18, 2018 at 09:56:20AM +0100, Brian Starkey wrote: > Hi Liviu, > > On Fri, May 18, 2018 at 09:24:21AM +0100, Liviu Dudau wrote: > > Mali DP500 behaves differently from the rest of the Mali DP IP, > > in that it does not have a one-shot mode and keeps wr

Re: [PATCH v7 3/5] drm/mali-dp: Add writeback support for DP500.

2018-05-18 Thread Liviu Dudau
On Fri, May 18, 2018 at 09:56:20AM +0100, Brian Starkey wrote: > Hi Liviu, > > On Fri, May 18, 2018 at 09:24:21AM +0100, Liviu Dudau wrote: > > Mali DP500 behaves differently from the rest of the Mali DP IP, > > in that it does not have a one-shot mode and keeps wr

[PATCH v7 5/5] drm: mali-dp: Add writeback connector

2018-05-18 Thread Liviu Dudau
rectly from driver (and drop malidp_mw_job) Changes since v3: - Modifications to fit with Mali-DP commit tail changes Signed-off-by: Brian Starkey <brian.star...@arm.com> [rebased and fixed conflicts] Signed-off-by: Mihail Atanassov <mihail.atanas...@arm.com> Signed-off-by: Liviu Dudau &l

[PATCH v7 5/5] drm: mali-dp: Add writeback connector

2018-05-18 Thread Liviu Dudau
malidp_mw_job) Changes since v3: - Modifications to fit with Mali-DP commit tail changes Signed-off-by: Brian Starkey [rebased and fixed conflicts] Signed-off-by: Mihail Atanassov Signed-off-by: Liviu Dudau --- drivers/gpu/drm/arm/Makefile | 1 + drivers/gpu/drm/arm/malidp_crtc.c | 9

  1   2   3   4   5   6   7   8   9   10   >