linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Add support for TCU of X1000 v2.
@ 2020-03-17 14:42 周琰杰 (Zhou Yanjie)
  2020-03-17 14:42 ` [PATCH v2] " 周琰杰 (Zhou Yanjie)
  2020-03-17 14:42 ` [PATCH v2] irqchip: Ingenic: Add support for TCU of X1000 周琰杰 (Zhou Yanjie)
  0 siblings, 2 replies; 5+ messages in thread
From: 周琰杰 (Zhou Yanjie) @ 2020-03-17 14:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: tglx, jason, maz, paul, dongsheng.qiu, yanfei.li, sernia.zhou,
	zhenwenjin

v1->v2:
Rewrite the commit message as Marc's suggestion.


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

* [PATCH v2] Add support for TCU of X1000 v2
  2020-03-17 14:42 Add support for TCU of X1000 v2 周琰杰 (Zhou Yanjie)
@ 2020-03-17 14:42 ` 周琰杰 (Zhou Yanjie)
  2020-03-17 14:42 ` [PATCH v2] irqchip: Ingenic: Add support for TCU of X1000 周琰杰 (Zhou Yanjie)
  1 sibling, 0 replies; 5+ messages in thread
From: 周琰杰 (Zhou Yanjie) @ 2020-03-17 14:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: tglx, jason, maz, paul, dongsheng.qiu, yanfei.li, sernia.zhou,
	zhenwenjin

v1->v2:
Rewrite the commit message as Marc's suggestion.

周琰杰 (Zhou Yanjie) (1):
  irqchip: Ingenic: Add support for TCU of X1000.

 drivers/irqchip/irq-ingenic-tcu.c | 1 +
 1 file changed, 1 insertion(+)

-- 
2.7.4


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

* [PATCH v2] irqchip: Ingenic: Add support for TCU of X1000.
  2020-03-17 14:42 Add support for TCU of X1000 v2 周琰杰 (Zhou Yanjie)
  2020-03-17 14:42 ` [PATCH v2] " 周琰杰 (Zhou Yanjie)
@ 2020-03-17 14:42 ` 周琰杰 (Zhou Yanjie)
  2020-03-21 15:15   ` Marc Zyngier
  2020-03-29 20:26   ` [tip: irq/core] irqchip/ingenic: " tip-bot2 for 周琰杰
  1 sibling, 2 replies; 5+ messages in thread
From: 周琰杰 (Zhou Yanjie) @ 2020-03-17 14:42 UTC (permalink / raw)
  To: linux-kernel
  Cc: tglx, jason, maz, paul, dongsheng.qiu, yanfei.li, sernia.zhou,
	zhenwenjin

Enable TCU support for Ingenic X1000, which can be supported by
the existing driver.

Signed-off-by: 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com>
Acked-by: Marc Zyngier <maz@kernel.org>
---

Notes:
    v1->v2:
    Rewrite the commit message as Marc's suggestion.

 drivers/irqchip/irq-ingenic-tcu.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/irqchip/irq-ingenic-tcu.c b/drivers/irqchip/irq-ingenic-tcu.c
index 6d05cef..7a7222d 100644
--- a/drivers/irqchip/irq-ingenic-tcu.c
+++ b/drivers/irqchip/irq-ingenic-tcu.c
@@ -180,3 +180,4 @@ static int __init ingenic_tcu_irq_init(struct device_node *np,
 IRQCHIP_DECLARE(jz4740_tcu_irq, "ingenic,jz4740-tcu", ingenic_tcu_irq_init);
 IRQCHIP_DECLARE(jz4725b_tcu_irq, "ingenic,jz4725b-tcu", ingenic_tcu_irq_init);
 IRQCHIP_DECLARE(jz4770_tcu_irq, "ingenic,jz4770-tcu", ingenic_tcu_irq_init);
+IRQCHIP_DECLARE(x1000_tcu_irq, "ingenic,x1000-tcu", ingenic_tcu_irq_init);
-- 
2.7.4


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

* Re: [PATCH v2] irqchip: Ingenic: Add support for TCU of X1000.
  2020-03-17 14:42 ` [PATCH v2] irqchip: Ingenic: Add support for TCU of X1000 周琰杰 (Zhou Yanjie)
@ 2020-03-21 15:15   ` Marc Zyngier
  2020-03-29 20:26   ` [tip: irq/core] irqchip/ingenic: " tip-bot2 for 周琰杰
  1 sibling, 0 replies; 5+ messages in thread
From: Marc Zyngier @ 2020-03-21 15:15 UTC (permalink / raw)
  To: "周琰杰 (Zhou Yanjie)"
  Cc: linux-kernel, tglx, jason, paul, dongsheng.qiu, yanfei.li,
	sernia.zhou, zhenwenjin

On Tue, 17 Mar 2020 14:42:40 +0000,
"周琰杰 (Zhou Yanjie)" <zhouyanjie@wanyeetech.com> wrote:
> 
> Enable TCU support for Ingenic X1000, which can be supported by
> the existing driver.
> 
> Signed-off-by: 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com>
> Acked-by: Marc Zyngier <maz@kernel.org>
> ---
> 
> Notes:
>     v1->v2:
>     Rewrite the commit message as Marc's suggestion.
> 
>  drivers/irqchip/irq-ingenic-tcu.c | 1 +
>  1 file changed, 1 insertion(+)

Since this is now a standalone patch without any reliance on other
patches, I've queued it for 5.7.

Thanks,

	M.

-- 
Jazz is not dead, it just smells funny.

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

* [tip: irq/core] irqchip/ingenic: Add support for TCU of X1000.
  2020-03-17 14:42 ` [PATCH v2] irqchip: Ingenic: Add support for TCU of X1000 周琰杰 (Zhou Yanjie)
  2020-03-21 15:15   ` Marc Zyngier
@ 2020-03-29 20:26   ` tip-bot2 for 周琰杰
  1 sibling, 0 replies; 5+ messages in thread
From: tip-bot2 for 周琰杰 @ 2020-03-29 20:26 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: zhouyanjie, Marc Zyngier, x86, LKML

The following commit has been merged into the irq/core branch of tip:

Commit-ID:     7d4cac5b7ce5ab87d5f0a2296a118f2eca713f1f
Gitweb:        https://git.kernel.org/tip/7d4cac5b7ce5ab87d5f0a2296a118f2eca713f1f
Author:        周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com>
AuthorDate:    Tue, 17 Mar 2020 22:42:40 +08:00
Committer:     Marc Zyngier <maz@kernel.org>
CommitterDate: Sun, 22 Mar 2020 11:52:52 

irqchip/ingenic: Add support for TCU of X1000.

Enable TCU support for Ingenic X1000, which can be supported by
the existing driver.

Signed-off-by: 周琰杰 (Zhou Yanjie) <zhouyanjie@wanyeetech.com>
Signed-off-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/1584456160-40060-3-git-send-email-zhouyanjie@wanyeetech.com
---
 drivers/irqchip/irq-ingenic-tcu.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/irqchip/irq-ingenic-tcu.c b/drivers/irqchip/irq-ingenic-tcu.c
index 6d05cef..7a7222d 100644
--- a/drivers/irqchip/irq-ingenic-tcu.c
+++ b/drivers/irqchip/irq-ingenic-tcu.c
@@ -180,3 +180,4 @@ err_free_tcu:
 IRQCHIP_DECLARE(jz4740_tcu_irq, "ingenic,jz4740-tcu", ingenic_tcu_irq_init);
 IRQCHIP_DECLARE(jz4725b_tcu_irq, "ingenic,jz4725b-tcu", ingenic_tcu_irq_init);
 IRQCHIP_DECLARE(jz4770_tcu_irq, "ingenic,jz4770-tcu", ingenic_tcu_irq_init);
+IRQCHIP_DECLARE(x1000_tcu_irq, "ingenic,x1000-tcu", ingenic_tcu_irq_init);

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

end of thread, other threads:[~2020-03-29 20:27 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-17 14:42 Add support for TCU of X1000 v2 周琰杰 (Zhou Yanjie)
2020-03-17 14:42 ` [PATCH v2] " 周琰杰 (Zhou Yanjie)
2020-03-17 14:42 ` [PATCH v2] irqchip: Ingenic: Add support for TCU of X1000 周琰杰 (Zhou Yanjie)
2020-03-21 15:15   ` Marc Zyngier
2020-03-29 20:26   ` [tip: irq/core] irqchip/ingenic: " tip-bot2 for 周琰杰

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).