All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v12 0/4] Add MIPI rx DPI support
@ 2021-11-04  3:33 Xin Ji
  2021-11-04 10:20   ` Robert Foss
  0 siblings, 1 reply; 5+ messages in thread
From: Xin Ji @ 2021-11-04  3:33 UTC (permalink / raw)
  To: a.hajda, narmstrong, dan.carpenter, robert.foss,
	Laurent.pinchart, jonas, jernej.skrabec, airlied, daniel, sam,
	pihsun, tzungbi, maxime, drinkcat, hsinyi, dri-devel,
	linux-kernel, bliang, qwen
  Cc: Xin Ji

Hi all, this patch series implement MIPI rx DPI feature. Please help to review.

This is the v12 version, rebase all patches on the drm-misc-next.
Any mistakes, please let me know, I'll fix it in the next series.

Change history:
v12: Fix Robert Foss comment
 - Apply code on drm-misc-next branch

v11: Fix Rob Herring comment
 - Move swing register description in property.
 - Remove additional property.

v10: Fix Rob Herring and Laurent Pinchart comments
 - Add more description about lane swing configuration in commit
   message.

v9: Fix Neil Amstrong comment
 - use macro define 'V4L2_FWNODE_BUS_TYPE_PARALLEL' instead of fixing
   value.

v8: Fix Laurent Pinchart comment
 - Expand the commit message.

v7:
 - Rebase DT on the latest branch 'drm-misc-next'.
 - Remove HDCP patch.

v6: Fix kernel robot compile warning

v5: Fix Rob Herring, Hsin-Yi, Robert Foss comments
 - Rebase code on the branch 'drm-misc-next', refer video-interfaces.yaml
 - Seprate HDCP function to a new patch
 - Fix driver not correctly get 'bus-type' 'data-lanes'
 - Add audio HDMI codec function support

v4: Fix Rob Herring comment
 - Rebase code on the branch 'drm-misc-next'
 - Change 'analogix,hdcp-support' type to boolean

v3: Fix Rob Herring, Dan Carpenter, Nicolas comment
 - Split the patch, fix not correct return data
 - Fix several coding format
 - Split DP tx swing register setting to two property
 - Add HDCP support vender flag
 - remove 'analogix,swing-setting' and 'analogix,mipi-dpi-in' property

v2: Fix Rob Herring comment
 - Fix yamllint warnings/errors in analogix,anx7625.yaml
 - Fix kernel robot compile warning

v1: initial MIPI rx DPI feature support

Xin Ji (4):
  dt-bindings:drm/bridge:anx7625:add vendor define
  drm/bridge: anx7625: fix not correct return value
  drm/bridge: anx7625: add MIPI DPI input feature
  drm/bridge: anx7625: add HDMI audio function

 .../display/bridge/analogix,anx7625.yaml      |  65 ++-
 drivers/gpu/drm/bridge/analogix/anx7625.c     | 459 ++++++++++++++++--
 drivers/gpu/drm/bridge/analogix/anx7625.h     |  23 +-
 3 files changed, 492 insertions(+), 55 deletions(-)

-- 
2.25.1


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v12 0/4] Add MIPI rx DPI support
  2021-11-04  3:33 [PATCH v12 0/4] Add MIPI rx DPI support Xin Ji
@ 2021-11-04 10:20   ` Robert Foss
  0 siblings, 0 replies; 5+ messages in thread
From: Robert Foss @ 2021-11-04 10:20 UTC (permalink / raw)
  To: Xin Ji
  Cc: a.hajda, narmstrong, dan.carpenter, laurent.pinchart, jonas,
	jernej.skrabec, airlied, daniel, sam, pihsun, tzungbi, maxime,
	drinkcat, hsinyi, dri-devel, linux-kernel, bliang, qwen

Hey Xin,

Applied to drm-misc-next.

The way this series was submitted to the mailing list is not correct
and is breaking a lot of tooling. It seems like you used git
send-email, but the individual patches of the series are not connected
properly and both b4 and the patchwork tools are not able to handle
this series properly.

Please try to use git send-email along the lines of this:
git send-email -$NBR_PATCHES_IN_SERIES -v$VERSION_OF_SERIES --annotate --to=....


Rob.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v12 0/4] Add MIPI rx DPI support
@ 2021-11-04 10:20   ` Robert Foss
  0 siblings, 0 replies; 5+ messages in thread
From: Robert Foss @ 2021-11-04 10:20 UTC (permalink / raw)
  To: Xin Ji
  Cc: drinkcat, pihsun, jonas, airlied, bliang, dri-devel, narmstrong,
	linux-kernel, jernej.skrabec, a.hajda, laurent.pinchart, hsinyi,
	tzungbi, sam, qwen, dan.carpenter, maxime

Hey Xin,

Applied to drm-misc-next.

The way this series was submitted to the mailing list is not correct
and is breaking a lot of tooling. It seems like you used git
send-email, but the individual patches of the series are not connected
properly and both b4 and the patchwork tools are not able to handle
this series properly.

Please try to use git send-email along the lines of this:
git send-email -$NBR_PATCHES_IN_SERIES -v$VERSION_OF_SERIES --annotate --to=....


Rob.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v12 0/4] Add MIPI rx DPI support
  2021-11-04 10:20   ` Robert Foss
@ 2021-11-05  3:07     ` Xin Ji
  -1 siblings, 0 replies; 5+ messages in thread
From: Xin Ji @ 2021-11-05  3:07 UTC (permalink / raw)
  To: Robert Foss
  Cc: a.hajda, narmstrong, dan.carpenter, robert.foss,
	Laurent.pinchart, jonas, jernej.skrabec, airlied, daniel, sam,
	pihsun, tzungbi, maxime, drinkcat, hsinyi, dri-devel,
	linux-kernel, bliang, qwen

On Thu, Nov 04, 2021 at 11:20:21AM +0100, Robert Foss wrote:
> Hey Xin,
> 
> Applied to drm-misc-next.
> 
> The way this series was submitted to the mailing list is not correct
> and is breaking a lot of tooling. It seems like you used git
> send-email, but the individual patches of the series are not connected
> properly and both b4 and the patchwork tools are not able to handle
> this series properly.
> 
> Please try to use git send-email along the lines of this:
> git send-email -$NBR_PATCHES_IN_SERIES -v$VERSION_OF_SERIES --annotate --to=....
Hi Rob, thanks for the comment, sorry about that. I'll submit v12 by
your command.

Xin
> 
> 
> Rob.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH v12 0/4] Add MIPI rx DPI support
@ 2021-11-05  3:07     ` Xin Ji
  0 siblings, 0 replies; 5+ messages in thread
From: Xin Ji @ 2021-11-05  3:07 UTC (permalink / raw)
  To: Robert Foss
  Cc: drinkcat, jernej.skrabec, pihsun, jonas, airlied, bliang,
	dri-devel, narmstrong, linux-kernel, robert.foss, a.hajda,
	Laurent.pinchart, hsinyi, tzungbi, sam, qwen, dan.carpenter,
	maxime

On Thu, Nov 04, 2021 at 11:20:21AM +0100, Robert Foss wrote:
> Hey Xin,
> 
> Applied to drm-misc-next.
> 
> The way this series was submitted to the mailing list is not correct
> and is breaking a lot of tooling. It seems like you used git
> send-email, but the individual patches of the series are not connected
> properly and both b4 and the patchwork tools are not able to handle
> this series properly.
> 
> Please try to use git send-email along the lines of this:
> git send-email -$NBR_PATCHES_IN_SERIES -v$VERSION_OF_SERIES --annotate --to=....
Hi Rob, thanks for the comment, sorry about that. I'll submit v12 by
your command.

Xin
> 
> 
> Rob.

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-11-05  3:07 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-04  3:33 [PATCH v12 0/4] Add MIPI rx DPI support Xin Ji
2021-11-04 10:20 ` Robert Foss
2021-11-04 10:20   ` Robert Foss
2021-11-05  3:07   ` Xin Ji
2021-11-05  3:07     ` Xin Ji

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.