* [PATCH v6 0/7] drm/rockchip: add all full framework vop support
@ 2017-07-26 6:18 Mark Yao
2017-07-26 6:19 ` [PATCH v6 6/7] dt-bindings: display: rockchip: fill Documents for vop series Mark Yao
2017-07-31 1:02 ` [PATCH v6 0/7] drm/rockchip: add all full framework vop support Mark yao
0 siblings, 2 replies; 4+ messages in thread
From: Mark Yao @ 2017-07-26 6:18 UTC (permalink / raw)
To: Mark Yao, David Airlie, Heiko Stuebner, Rob Herring, Mark Rutland
Cc: dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW,
linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-rockchip-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
linux-kernel-u79uwXL29TY76Z2rM5mHXA,
devicetree-u79uwXL29TY76Z2rM5mHXA
These patches try to make all current rockchip full framework vop works
on drm, fill missing vop on full framework.
Vop Full framework now has following vops:
IP version chipname
3.1 rk3288
3.2 rk3368
3.4 rk3366
3.5 rk3399 big
3.6 rk3399 lit
3.7 rk3228
3.8 rk3328
Group the vop register, it would make register definition clearer and
more easily to reuse same group register define for difference vops.
Tested on rk3399 excavator board with kernel 4.13-rc1.
And other chips tested on rockchip kernel 4.4:
https://github.com/rockchip-linux/kernel/tree/release-4.4/drivers/gpu/drm/rockchip
Changes in v6:
- fix some patches complie error
- fix rk3036 display blank
Changes in v5:
- clean document commit title
- move changes description out of docummit commit msg
Changes in v4:
- rebase to newest torvalds kernel, fix merge conflict
Changes in v3:
- group vop register instead using VOP_REG_VER mechanism
- Explain more on patch commit message
- move write_relaxed flags to vop registers
- fix rk3328 overlay abnormal
Changes in v2:
- rename rk322x to rk3228
- correct some vop registers define
Mark Yao (7):
drm/rockchip: vop: initialize registers directly
drm/rockchip: vop: move write_relaxed flags to vop register
drm/rockchip: vop: move line_flag_num to interrupt registers
drm/rockchip: vop: group vop registers
drm/rockchip: vop: add a series of vop support
dt-bindings: display: rockchip: fill Documents for vop series
drm/rockchip: vop: rk3328: fix overlay abnormal
.../bindings/display/rockchip/rockchip-vop.txt | 4 +
drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 109 ++-
drivers/gpu/drm/rockchip/rockchip_drm_vop.h | 81 +-
drivers/gpu/drm/rockchip/rockchip_vop_reg.c | 375 ++++++---
drivers/gpu/drm/rockchip/rockchip_vop_reg.h | 905 ++++++++++++++++-----
5 files changed, 1075 insertions(+), 399 deletions(-)
--
1.9.1
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH v6 6/7] dt-bindings: display: rockchip: fill Documents for vop series
2017-07-26 6:18 [PATCH v6 0/7] drm/rockchip: add all full framework vop support Mark Yao
@ 2017-07-26 6:19 ` Mark Yao
2017-07-28 9:25 ` Heiko Stuebner
2017-07-31 1:02 ` [PATCH v6 0/7] drm/rockchip: add all full framework vop support Mark yao
1 sibling, 1 reply; 4+ messages in thread
From: Mark Yao @ 2017-07-26 6:19 UTC (permalink / raw)
To: Mark Yao, David Airlie, Rob Herring, Mark Rutland, Heiko Stuebner
Cc: devicetree, linux-kernel, linux-arm-kernel, dri-devel,
linux-rockchip
Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
Acked-by: Rob Herring <robh@kernel.org>
---
Changes in v5:
- clean document commit title
- move changes description out of docummit commit msg
Changes in v2:
- rename rk322x to rk3228
- correct some vop registers define
Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt b/Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt
index 9eb3f0a..5d835d9 100644
--- a/Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt
+++ b/Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt
@@ -8,8 +8,12 @@ Required properties:
- compatible: value should be one of the following
"rockchip,rk3036-vop";
"rockchip,rk3288-vop";
+ "rockchip,rk3368-vop";
+ "rockchip,rk3366-vop";
"rockchip,rk3399-vop-big";
"rockchip,rk3399-vop-lit";
+ "rockchip,rk3228-vop";
+ "rockchip,rk3328-vop";
- interrupts: should contain a list of all VOP IP block interrupts in the
order: VSYNC, LCD_SYSTEM. The interrupt specifier
--
1.9.1
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v6 6/7] dt-bindings: display: rockchip: fill Documents for vop series
2017-07-26 6:19 ` [PATCH v6 6/7] dt-bindings: display: rockchip: fill Documents for vop series Mark Yao
@ 2017-07-28 9:25 ` Heiko Stuebner
0 siblings, 0 replies; 4+ messages in thread
From: Heiko Stuebner @ 2017-07-28 9:25 UTC (permalink / raw)
To: Mark Yao
Cc: Mark Rutland, devicetree, linux-kernel, dri-devel, linux-rockchip,
Rob Herring, linux-arm-kernel
Hi Mark,
Am Mittwoch, 26. Juli 2017, 14:19:35 CEST schrieb Mark Yao:
> Signed-off-by: Mark Yao <mark.yao@rock-chips.com>
> Acked-by: Rob Herring <robh@kernel.org>
> ---
> Changes in v5:
> - clean document commit title
> - move changes description out of docummit commit msg
>
> Changes in v2:
> - rename rk322x to rk3228
> - correct some vop registers define
>
> Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt | 4 ++++
> 1 file changed, 4 insertions(+)
>
> diff --git a/Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt b/Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt
> index 9eb3f0a..5d835d9 100644
> --- a/Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt
> +++ b/Documentation/devicetree/bindings/display/rockchip/rockchip-vop.txt
> @@ -8,8 +8,12 @@ Required properties:
> - compatible: value should be one of the following
> "rockchip,rk3036-vop";
> "rockchip,rk3288-vop";
> + "rockchip,rk3368-vop";
> + "rockchip,rk3366-vop";
> "rockchip,rk3399-vop-big";
> "rockchip,rk3399-vop-lit";
> + "rockchip,rk3228-vop";
> + "rockchip,rk3328-vop";
what is your ordering scheme here?
As the number of rkXXXX socs will very likely increase in the future
ordering alphanumerical might make everything more manageable when
the list grows.
So maybe swap rk3368 and rk3366 and move rk3228+rk3328 to sorted
positions?
Heiko
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v6 0/7] drm/rockchip: add all full framework vop support
2017-07-26 6:18 [PATCH v6 0/7] drm/rockchip: add all full framework vop support Mark Yao
2017-07-26 6:19 ` [PATCH v6 6/7] dt-bindings: display: rockchip: fill Documents for vop series Mark Yao
@ 2017-07-31 1:02 ` Mark yao
1 sibling, 0 replies; 4+ messages in thread
From: Mark yao @ 2017-07-31 1:02 UTC (permalink / raw)
To: David Airlie, Heiko Stuebner, Rob Herring, Mark Rutland
Cc: linux-rockchip, devicetree, linux-arm-kernel, dri-devel,
linux-kernel
Hi
Pushed to drm-misc-next.
Thanks Sean Paul, Jeffy Chen's review, Heiko's test and Rob's ack.
Best regards.
On 2017年07月26日 14:18, Mark Yao wrote:
> These patches try to make all current rockchip full framework vop works
> on drm, fill missing vop on full framework.
> Vop Full framework now has following vops:
> IP version chipname
> 3.1 rk3288
> 3.2 rk3368
> 3.4 rk3366
> 3.5 rk3399 big
> 3.6 rk3399 lit
> 3.7 rk3228
> 3.8 rk3328
>
> Group the vop register, it would make register definition clearer and
> more easily to reuse same group register define for difference vops.
>
> Tested on rk3399 excavator board with kernel 4.13-rc1.
>
> And other chips tested on rockchip kernel 4.4:
> https://github.com/rockchip-linux/kernel/tree/release-4.4/drivers/gpu/drm/rockchip
>
> Changes in v6:
> - fix some patches complie error
> - fix rk3036 display blank
>
> Changes in v5:
> - clean document commit title
> - move changes description out of docummit commit msg
>
> Changes in v4:
> - rebase to newest torvalds kernel, fix merge conflict
>
> Changes in v3:
> - group vop register instead using VOP_REG_VER mechanism
> - Explain more on patch commit message
> - move write_relaxed flags to vop registers
> - fix rk3328 overlay abnormal
>
> Changes in v2:
> - rename rk322x to rk3228
> - correct some vop registers define
>
> Mark Yao (7):
> drm/rockchip: vop: initialize registers directly
> drm/rockchip: vop: move write_relaxed flags to vop register
> drm/rockchip: vop: move line_flag_num to interrupt registers
> drm/rockchip: vop: group vop registers
> drm/rockchip: vop: add a series of vop support
> dt-bindings: display: rockchip: fill Documents for vop series
> drm/rockchip: vop: rk3328: fix overlay abnormal
>
> .../bindings/display/rockchip/rockchip-vop.txt | 4 +
> drivers/gpu/drm/rockchip/rockchip_drm_vop.c | 109 ++-
> drivers/gpu/drm/rockchip/rockchip_drm_vop.h | 81 +-
> drivers/gpu/drm/rockchip/rockchip_vop_reg.c | 375 ++++++---
> drivers/gpu/drm/rockchip/rockchip_vop_reg.h | 905 ++++++++++++++++-----
> 5 files changed, 1075 insertions(+), 399 deletions(-)
>
--
Mark Yao
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-07-31 1:02 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-26 6:18 [PATCH v6 0/7] drm/rockchip: add all full framework vop support Mark Yao
2017-07-26 6:19 ` [PATCH v6 6/7] dt-bindings: display: rockchip: fill Documents for vop series Mark Yao
2017-07-28 9:25 ` Heiko Stuebner
2017-07-31 1:02 ` [PATCH v6 0/7] drm/rockchip: add all full framework vop support Mark yao
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).