linux-mips.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Jiaxun Yang <jiaxun.yang@flygoat.com>
To: "chenhc@lemote.com" <chenhc@lemote.com>,
	Paul Burton <paul.burton@mips.com>
Cc: "linux-mips@vger.kernel.org" <linux-mips@vger.kernel.org>,
	"tglx@linutronix.de" <tglx@linutronix.de>,
	"jason@lakedaemon.net" <jason@lakedaemon.net>,
	"maz@kernel.org" <maz@kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"robh+dt@kernel.org" <robh+dt@kernel.org>,
	"mark.rutland@arm.co" <mark.rutland@arm.co>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>
Subject: Re: [PATCH v2 02/19] MIPS: Loongson64: separate loongson2ef/loongson64 code
Date: Wed, 18 Sep 2019 08:38:03 +0800	[thread overview]
Message-ID: <18392e2d-b0a2-518f-ad22-34a4aada0014@flygoat.com> (raw)
In-Reply-To: <20190910001248.few7zmxsrg72mdum@pburton-laptop>


08:12, 2019年9月10日, Paul Burton <paul.burton@mips.com>:

    Hi Jiaxun & Huacai,

    On Thu, Sep 05, 2019 at 10:42:59PM +0800, Jiaxun Yang wrote:

          As later model of GSx64 family processors including
        2-series-soc have
          similar design with initial loongson3a while loongson2e/f
        seems less
          identical, we separate loongson2e/f support code out of
        mach-loongson64
          to make our life easier.

          Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com
        <mailto:jiaxun.yang@flygoat.com>>


    I looked at applying the first 3 patches of this series to mips-next &
    squashed in the relevant defconfig updates, then was looking at applying
    Huacai's recent 3 patch series.

Hi Paul,
Thanks for your effort.
Please let Huacai's patches go first.

I'm going to make a delicated set for separate the code. Based on mips-next.

    One issue is that they conflict, but beyond that it showed me that this
    patch deletes kernel-entry-init.h entirely. Was that intentional? If so
    it should be a separate patch & it needs an explanation.

Yes, that's intentional, I'm going to explain them in sets later.

    Please could the two of you make it clear what branch & commit your
    patches are based upon? Ideally it should be the current head of the
    mips-next branch.

    Also Jiaxun, it's really hard to see whether this patch is making any
    functional changes in addition to the duplication & renaming. I think it
    would be much better to split this into a few steps across multiple
    commits, something like this:

    1) Copy the loongson64 directory to loongson2ef, and keep the copy as-is
        *except* for the removal of the loongson2ef/loongon-3 subdirectory.
        Delete loongson64/fuloong-2e & loongson64/lemote-2f.

    2) Now clean up the loongson64 directory by moving files up from the
        loongson-3 subdirectory.

    3) Now clean up code, removing #ifdef's etc that no longer make sense.

    Provide the -M & -C flags to git format-patch when generating your
    patches. --find-copies-harder might help with the first step, if it's
    practical to run.

    That way each commit will be easier to review, and issues like the
    deletion of kernel-entry-init.h will be easier to spot.

Got it!
--
Jiaxun

    For now I undid the whole thing. It's getting late in the cycle anyway,
    so this will probably be v5.5 material.

    Thanks,
         Paul

          ---
           arch/mips/Kbuild.platforms | 1 +
           arch/mips/Kconfig | 51 +++++--
           arch/mips/include/asm/bootinfo.h | 1 -
           .../mach-loongson2ef/cpu-feature-overrides.h | 45 +++++++
           .../cs5536/cs5536.h | 0
           .../cs5536/cs5536_mfgpt.h | 0
           .../cs5536/cs5536_pci.h | 0
           .../cs5536/cs5536_vsm.h | 0
           .../loongson2ef.h} | 29 +---
           .../machine.h | 6 -
           .../mc146818rtc.h | 5 +-
           .../mem.h | 6 +-
           arch/mips/include/asm/mach-loongson2ef/pci.h | 43 ++++++
           .../include/asm/mach-loongson2ef/spaces.h | 10 ++
           .../mach-loongson64/cpu-feature-overrides.h | 8 +-
           arch/mips/include/asm/mach-loongson64/irq.h | 7 +-
           .../asm/mach-loongson64/kernel-entry-init.h | 74 ----------
           .../include/asm/mach-loongson64/loongson64.h | 48 +++++++
           .../mips/include/asm/mach-loongson64/mmzone.h | 16 ---
           arch/mips/include/asm/mach-loongson64/pci.h | 41 +-----
           .../include/asm/mach-loongson64/workarounds.h | 4 +-
           arch/mips/loongson2ef/Kconfig | 93 +++++++++++++
           arch/mips/loongson2ef/Makefile | 18 +++
           arch/mips/loongson2ef/Platform | 32 +++++
           .../common/Makefile | 0
           .../common/bonito-irq.c | 2 +-
           .../common/cmdline.c | 2 +-
           .../common/cs5536/Makefile | 0
           .../common/cs5536/cs5536_acc.c | 0
           .../common/cs5536/cs5536_ehci.c | 0
           .../common/cs5536/cs5536_ide.c | 0
           .../common/cs5536/cs5536_isa.c | 0
           .../common/cs5536/cs5536_mfgpt.c | 0
           .../common/cs5536/cs5536_ohci.c | 0
           .../common/cs5536/cs5536_pci.c | 0
           .../common/early_printk.c | 2 +-
           arch/mips/loongson2ef/common/env.c | 71 ++++++++++
           .../{loongson64 => loongson2ef}/common/init.c | 7 +-
           .../{loongson64 => loongson2ef}/common/irq.c | 2 +-
           .../common/machtype.c | 3 +-
           .../{loongson64 => loongson2ef}/common/mem.c | 40 +-----
           .../{loongson64 => loongson2ef}/common/pci.c | 11 +-
           .../common/platform.c | 0
           .../{loongson64 => loongson2ef}/common/pm.c | 2 +-
           .../common/reset.c | 23 +---
           .../{loongson64 => loongson2ef}/common/rtc.c | 0
           .../common/serial.c | 37 +----
           .../common/setup.c | 2 +-
           .../{loongson64 => loongson2ef}/common/time.c | 2 +-
           .../common/uart_base.c | 10 +-
           .../fuloong-2e/Makefile | 0
           .../fuloong-2e/dma.c | 0
           .../fuloong-2e/irq.c | 2 +-
           .../fuloong-2e/reset.c | 2 +-
           .../lemote-2f/Makefile | 0
           .../lemote-2f/clock.c | 2 +-
           .../lemote-2f/dma.c | 0
           .../lemote-2f/ec_kb3310b.c | 0
           .../lemote-2f/ec_kb3310b.h | 0
           .../lemote-2f/irq.c | 2 +-
           .../lemote-2f/machtype.c | 2 +-
           .../lemote-2f/pm.c | 2 +-
           .../lemote-2f/reset.c | 2 +-
           arch/mips/loongson64/Kconfig | 126 +-----------------
           arch/mips/loongson64/Makefile | 23 +---
           arch/mips/loongson64/Platform | 26 +---
           .../loongson64/{loongson-3 => }/acpi_init.c | 3 +-
           .../loongson64/{loongson-3 => }/cop2-ex.c | 5 +-
           arch/mips/loongson64/{loongson-3 => }/dma.c | 6 +-
           arch/mips/loongson64/{common => }/env.c | 72 +++-------
           arch/mips/loongson64/{loongson-3 => }/hpet.c | 0
           arch/mips/loongson64/{loongson-3 => }/irq.c | 40 +++++-
           arch/mips/loongson64/loongson-3/Makefile | 11 --
           arch/mips/loongson64/{loongson-3 => }/numa.c | 4 +-
           arch/mips/loongson64/pci.c | 45 +++++++
           .../loongson64/{loongson-3 => }/platform.c | 0
           arch/mips/loongson64/reset.c | 58 ++++++++
           arch/mips/loongson64/setup.c | 91 +++++++++++++
           arch/mips/loongson64/{loongson-3 => }/smp.c | 4 +-
           arch/mips/loongson64/{loongson-3 => }/smp.h | 0
           arch/mips/oprofile/op_model_loongson2.c | 2 +-
           arch/mips/oprofile/op_model_loongson3.c | 2 +-
           arch/mips/pci/Makefile | 2 +-
           arch/mips/pci/fixup-fuloong2e.c | 2 +-
           arch/mips/pci/fixup-lemote2f.c | 2 +-
           arch/mips/pci/ops-loongson2.c | 2 +-
           arch/mips/pci/ops-loongson3.c | 2 +-
           drivers/cpufreq/loongson2_cpufreq.c | 2 +-
           drivers/gpio/gpio-loongson.c | 2 +-
           drivers/platform/mips/cpu_hwmon.c | 2 +-
           90 files changed, 720 insertions(+), 582 deletions(-)
           create mode 100644
        arch/mips/include/asm/mach-loongson2ef/cpu-feature-overrides.h
           rename arch/mips/include/asm/{mach-loongson64 =>
        mach-loongson2ef}/cs5536/cs5536.h (100%)
           rename arch/mips/include/asm/{mach-loongson64 =>
        mach-loongson2ef}/cs5536/cs5536_mfgpt.h (100%)
           rename arch/mips/include/asm/{mach-loongson64 =>
        mach-loongson2ef}/cs5536/cs5536_pci.h (100%)
           rename arch/mips/include/asm/{mach-loongson64 =>
        mach-loongson2ef}/cs5536/cs5536_vsm.h (100%)
           rename arch/mips/include/asm/{mach-loongson64/loongson.h =>
        mach-loongson2ef/loongson2ef.h} (91%)
           rename arch/mips/include/asm/{mach-loongson64 =>
        mach-loongson2ef}/machine.h (80%)
           rename arch/mips/include/asm/{mach-loongson64 =>
        mach-loongson2ef}/mc146818rtc.h (80%)
           rename arch/mips/include/asm/{mach-loongson64 =>
        mach-loongson2ef}/mem.h (86%)
           create mode 100644 arch/mips/include/asm/mach-loongson2ef/pci.h
           create mode 100644
        arch/mips/include/asm/mach-loongson2ef/spaces.h
           delete mode 100644
        arch/mips/include/asm/mach-loongson64/kernel-entry-init.h
           create mode 100644
        arch/mips/include/asm/mach-loongson64/loongson64.h
           create mode 100644 arch/mips/loongson2ef/Kconfig
           create mode 100644 arch/mips/loongson2ef/Makefile
           create mode 100644 arch/mips/loongson2ef/Platform
           rename arch/mips/{loongson64 => loongson2ef}/common/Makefile
        (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/bonito-irq.c (97%)
           rename arch/mips/{loongson64 => loongson2ef}/common/cmdline.c
        (97%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/cs5536/Makefile (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/cs5536/cs5536_acc.c (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/cs5536/cs5536_ehci.c (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/cs5536/cs5536_ide.c (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/cs5536/cs5536_isa.c (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/cs5536/cs5536_mfgpt.c (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/cs5536/cs5536_ohci.c (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/cs5536/cs5536_pci.c (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/early_printk.c (97%)
           create mode 100644 arch/mips/loongson2ef/common/env.c
           rename arch/mips/{loongson64 => loongson2ef}/common/init.c (90%)
           rename arch/mips/{loongson64 => loongson2ef}/common/irq.c (98%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/machtype.c (94%)
           rename arch/mips/{loongson64 => loongson2ef}/common/mem.c (72%)
           rename arch/mips/{loongson64 => loongson2ef}/common/pci.c (89%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/platform.c (100%)
           rename arch/mips/{loongson64 => loongson2ef}/common/pm.c (99%)
           rename arch/mips/{loongson64 => loongson2ef}/common/reset.c (77%)
           rename arch/mips/{loongson64 => loongson2ef}/common/rtc.c (100%)
           rename arch/mips/{loongson64 => loongson2ef}/common/serial.c
        (63%)
           rename arch/mips/{loongson64 => loongson2ef}/common/setup.c (97%)
           rename arch/mips/{loongson64 => loongson2ef}/common/time.c (96%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/common/uart_base.c (77%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/fuloong-2e/Makefile (100%)
           rename arch/mips/{loongson64 => loongson2ef}/fuloong-2e/dma.c
        (100%)
           rename arch/mips/{loongson64 => loongson2ef}/fuloong-2e/irq.c
        (98%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/fuloong-2e/reset.c (93%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/lemote-2f/Makefile (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/lemote-2f/clock.c (98%)
           rename arch/mips/{loongson64 => loongson2ef}/lemote-2f/dma.c
        (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/lemote-2f/ec_kb3310b.c (100%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/lemote-2f/ec_kb3310b.h (100%)
           rename arch/mips/{loongson64 => loongson2ef}/lemote-2f/irq.c
        (99%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/lemote-2f/machtype.c (98%)
           rename arch/mips/{loongson64 => loongson2ef}/lemote-2f/pm.c (99%)
           rename arch/mips/{loongson64 =>
        loongson2ef}/lemote-2f/reset.c (99%)
           rename arch/mips/loongson64/{loongson-3 => }/acpi_init.c (99%)
           rename arch/mips/loongson64/{loongson-3 => }/cop2-ex.c (88%)
           rename arch/mips/loongson64/{loongson-3 => }/dma.c (82%)
           rename arch/mips/loongson64/{common => }/env.c (79%)
           rename arch/mips/loongson64/{loongson-3 => }/hpet.c (100%)
           rename arch/mips/loongson64/{loongson-3 => }/irq.c (77%)
           delete mode 100644 arch/mips/loongson64/loongson-3/Makefile
           rename arch/mips/loongson64/{loongson-3 => }/numa.c (98%)
           create mode 100644 arch/mips/loongson64/pci.c
           rename arch/mips/loongson64/{loongson-3 => }/platform.c (100%)
           create mode 100644 arch/mips/loongson64/reset.c
           create mode 100644 arch/mips/loongson64/setup.c
           rename arch/mips/loongson64/{loongson-3 => }/smp.c (99%)
           rename arch/mips/loongson64/{loongson-3 => }/smp.h (100%)



-- 
Jiaxun Yang

  parent reply	other threads:[~2019-09-18  0:38 UTC|newest]

Thread overview: 175+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-08-27  8:52 [PATCH 00/13] Modernize Loongson64 Machine Jiaxun Yang
2019-08-27  8:52 ` [PATCH 01/13] MIPS: Loongson64: Rename CPU TYPES Jiaxun Yang
2019-08-27  8:52 ` [PATCH 02/13] MIPS: Loongson64: Sepreate loongson2ef/loongson64 code Jiaxun Yang
2019-08-27 22:05   ` Aaro Koskinen
2019-08-28  0:37     ` Jiaxun Yang
2019-09-02 17:51       ` Aaro Koskinen
2019-08-27  8:52 ` [PATCH 03/13] MAINTAINERS: Fix entries for new loongson64 path Jiaxun Yang
2019-08-27  8:52 ` [PATCH 04/13] irqchip: Add driver for Loongson-3 I/O interrupt controller Jiaxun Yang
2019-08-27 16:45   ` Marc Zyngier
2019-08-28  0:27     ` Jiaxun Yang
2019-08-28  6:59       ` Marc Zyngier
2019-08-28 15:31         ` Jiaxun Yang
2019-08-28 16:02           ` Marc Zyngier
2019-08-27  8:52 ` [PATCH 05/13] dt-bindings: interrupt-controller: Add Loongson-3 IOINTC Jiaxun Yang
2019-08-27 13:08   ` Rob Herring
2019-08-27  8:52 ` [PATCH 06/13] irqchip: Add driver for Loongson-3 HyperTransport interrupt controller Jiaxun Yang
2019-08-27 12:53   ` Marc Zyngier
2019-08-27  8:52 ` [PATCH 07/13] dt-bindings: interrupt-controller: Add Loongson-3 HTINTC Jiaxun Yang
2019-08-27 12:49   ` Rob Herring
2019-08-27 14:08     ` Jiaxun Yang
2019-08-27  8:52 ` [PATCH 08/13] irqchip: i8259: Add plat-poll support Jiaxun Yang
2019-08-27  8:52 ` [PATCH 09/13] irqchip: mips-cpu: Convert to simple domain Jiaxun Yang
2019-08-27  8:52 ` [PATCH 10/13] MIPS: Loongson64: Drop legacy IRQ code Jiaxun Yang
2019-08-27  8:53 ` [PATCH 11/13] dt-bindings: mips: Add loongson cpus & boards Jiaxun Yang
2019-08-27 12:45   ` Rob Herring
2019-08-27 14:18     ` Jiaxun Yang
2019-08-27 20:41       ` Paul Burton
2019-08-28  0:15         ` Jiaxun Yang
2019-09-02 14:50         ` Rob Herring
2019-09-03  9:07           ` Paul Burton
2019-09-04  3:33             ` Huacai Chen
2019-08-27  8:53 ` [PATCH 12/13] MIPS: Loongson64: Add generic dts Jiaxun Yang
2019-08-27  8:53 ` [PATCH 13/13] MIPS: Loongson64: Load built-in dtbs Jiaxun Yang
2019-08-27 13:25 ` Re:[PATCH 00/13] Modernize Loongson64 Machine 陈华才
2019-08-27 14:39   ` [PATCH " Jiaxun Yang
2019-08-30  4:25 ` [PATCH v1 00/18] " Jiaxun Yang
2019-08-30  4:25   ` [PATCH v1 01/18] MIPS: Loongson64: Rename CPU TYPES Jiaxun Yang
2019-08-30  4:25   ` [PATCH v1 02/18] MIPS: Loongson64: separate loongson2ef/loongson64 code Jiaxun Yang
2019-08-30  4:25   ` [PATCH v1 03/18] MAINTAINERS: Fix entries for new loongson64 path Jiaxun Yang
2019-08-30  4:25   ` [PATCH v1 04/18] irqchip: Export generic chip domain map/unmap functions Jiaxun Yang
2019-08-30  4:25   ` [PATCH v1 05/18] irqchip: Add driver for Loongson-3 I/O interrupt controller Jiaxun Yang
2019-08-30  4:25   ` [PATCH v1 06/18] dt-bindings: interrupt-controller: Add Loongson-3 IOINTC Jiaxun Yang
2019-09-05 14:42 ` [PATCH v2 00/19] Modernize Loongson64 Machine Jiaxun Yang
2019-09-05 14:42   ` [PATCH v2 01/19] MIPS: Loongson64: Rename CPU TYPES Jiaxun Yang
2019-09-05 14:42   ` [PATCH v2 02/19] MIPS: Loongson64: separate loongson2ef/loongson64 code Jiaxun Yang
2019-09-10  0:12     ` Paul Burton
2019-09-16  2:23       ` Huacai Chen
2019-09-18  0:38       ` Jiaxun Yang [this message]
2019-09-05 14:43   ` [PATCH v2 03/19] MAINTAINERS: Fix entries for new loongson64 path Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 04/19] irqchip: Export generic chip domain map/unmap functions Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 05/19] irqchip: Add driver for Loongson-3 I/O interrupt controller Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 06/19] dt-bindings: interrupt-controller: Add Loongson-3 IOINTC Jiaxun Yang
2019-09-17 21:26     ` Rob Herring
2019-09-05 14:43   ` [PATCH v2 07/19] irqchip: Add driver for Loongson-3 HyperTransport interrupt controller Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 08/19] dt-bindings: interrupt-controller: Add Loongson-3 HTINTC Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 09/19] irqchip: i8259: Add plat-poll support Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 10/19] irqchip: mips-cpu: Convert to simple domain Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 11/19] MIPS: Loongson64: Drop legacy IRQ code Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 12/19] dt-bindings: mips: Add loongson boards Jiaxun Yang
2019-09-30 13:23     ` Rob Herring
2019-09-05 14:43   ` [PATCH v2 13/19] dt-bindings: Document loongson vendor-prefix Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 14/19] MIPS: Loongson64: Add generic dts Jiaxun Yang
2019-09-07  2:53     ` Huacai Chen
2019-09-07  3:14       ` Jiaxun Yang
2019-09-30 13:20     ` Rob Herring
2019-09-05 14:43   ` [PATCH v2 15/19] MIPS: Loongson64: Load built-in dtbs Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 16/19] GPIO: loongson: Drop Loongson-3A/3B support Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 17/19] MIPS: Loongson: Regenerate defconfigs Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 18/19] MAINTAINERS: Add new pathes to LOONGSON64 ARCHITECTURE Jiaxun Yang
2019-09-05 14:43   ` [PATCH v2 19/19] MAINTAINERS: Add myself as maintainer of LOONGSON64 Jiaxun Yang
2019-09-07  3:13   ` [PATCH v2 00/19] Modernize Loongson64 Machine Huacai Chen
2019-09-12  6:30 ` [PATCH 00/13] " Matt Turner
2019-09-18  0:33   ` Jiaxun Yang
2020-01-12  8:14 ` [PATCH v3 00/10] " Jiaxun Yang
2020-01-12  8:14   ` [PATCH v3 01/10] dt-bindings: Document loongson vendor-prefix Jiaxun Yang
2020-01-15 18:59     ` Paul Burton
2020-01-12  8:14   ` [PATCH v3 02/10] irqchip: Add driver for Loongson I/O interrupt controller Jiaxun Yang
2020-01-12  8:14   ` [PATCH v3 03/10] dt-bindings: interrupt-controller: Add Loongson IOINTC Jiaxun Yang
2020-01-13  3:44     ` Huacai Chen
2020-01-13  3:40       ` Jiaxun Yang
2020-01-12  8:14   ` [PATCH v3 04/10] irqchip: Add driver for Loongson-3 HyperTransport PIC controller Jiaxun Yang
2020-01-12  8:14   ` [PATCH v3 05/10] dt-bindings: interrupt-controller: Add Loongson-3 HTPIC Jiaxun Yang
2020-01-12  8:14   ` [PATCH v3 06/10] irqchip: mips-cpu: Convert to simple domain Jiaxun Yang
2020-01-12  8:14   ` [PATCH v3 07/10] MIPS: Loongson64: Drop legacy IRQ code Jiaxun Yang
2020-01-12  8:14   ` [PATCH v3 08/10] dt-bindings: mips: Add loongson boards Jiaxun Yang
2020-01-13  3:39     ` Huacai Chen
2020-01-12  8:14   ` [PATCH v3 09/10] MIPS: Loongson64: Add generic dts Jiaxun Yang
2020-01-12  8:14   ` [PATCH v3 10/10] MIPS: Loongson64: Load built-in dtbs Jiaxun Yang
2020-01-13  3:38   ` [PATCH v3 00/10] Modernize Loongson64 Machine Huacai Chen
2020-02-21  5:09 ` [PATCH v4 00/10] Modernize Loongson64 Machine v4 Jiaxun Yang
2020-02-21  5:09   ` [PATCH v4 01/10] irqchip: Add driver for Loongson I/O Local Interrupt Controller Jiaxun Yang
2020-02-29  2:30     ` 回复:[PATCH " Jiaxun Yang
2020-03-07 14:50     ` [PATCH " Marc Zyngier
2020-02-21  5:09   ` [PATCH v4 02/10] dt-bindings: interrupt-controller: Add Loongson LIOINTC Jiaxun Yang
2020-02-21  5:09   ` [PATCH v4 03/10] irqchip: Add driver for Loongson-3 HyperTransport PIC controller Jiaxun Yang
2020-03-07 15:01     ` Marc Zyngier
2020-02-21  5:09   ` [PATCH v4 04/10] dt-bindings: interrupt-controller: Add Loongson-3 HTPIC Jiaxun Yang
2020-02-21  5:09   ` [PATCH v4 05/10] irqchip: mips-cpu: Convert to simple domain Jiaxun Yang
2020-02-21  5:09   ` [PATCH v4 06/10] MIPS: Loongson64: Drop legacy IRQ code Jiaxun Yang
2020-02-21  5:09   ` [PATCH v4 07/10] dt-bindings: mips: Add loongson boards Jiaxun Yang
2020-02-26 16:52     ` Rob Herring
2020-02-29  2:28       ` Jiaxun Yang
2020-02-21  5:09   ` [PATCH v4 08/10] MIPS: Loongson64: Add generic dts Jiaxun Yang
2020-02-21  5:09   ` [PATCH v4 09/10] MIPS: Loongson64: Load built-in dtbs Jiaxun Yang
2020-02-21  5:09   ` [PATCH v4 10/10] MIPS: Loongson64: Move MIPS_CPU_IRQ_BASE Jiaxun Yang
2020-03-18  6:20 ` [PATCH v5 00/11] Modernize Loongson64 Machine v5 Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 01/11] irqchip: Add driver for Loongson I/O Local Interrupt Controller Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 02/11] irqchip: loongson-liointc: Workaround LPC IRQ Errata Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 03/11] dt-bindings: interrupt-controller: Add Loongson LIOINTC Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 04/11] irqchip: Add driver for Loongson-3 HyperTransport PIC controller Jiaxun Yang
2020-03-21 14:14     ` Marc Zyngier
2020-03-18  6:20   ` [PATCH v5 05/11] dt-bindings: interrupt-controller: Add Loongson-3 HTPIC Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 06/11] irqchip: mips-cpu: Convert to simple domain Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 07/11] MIPS: Loongson64: Drop legacy IRQ code Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 08/11] dt-bindings: mips: Add loongson boards Jiaxun Yang
2020-03-20 22:36     ` Rob Herring
2020-03-22  5:33     ` Zhou Yanjie
2020-03-18  6:20   ` [PATCH v5 09/11] MIPS: Loongson64: Add generic dts Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 10/11] MIPS: Loongson64: Load built-in dtbs Jiaxun Yang
2020-03-18  6:20   ` [PATCH v5 11/11] MIPS: Loongson64: Move MIPS_CPU_IRQ_BASE Jiaxun Yang
2020-03-24 15:35 ` [PATCH v6 00/11] Modernize Loongson64 Machine v6 Jiaxun Yang
2020-03-24 15:35   ` [PATCH v6 01/11] irqchip: Add driver for Loongson I/O Local Interrupt Controller Jiaxun Yang
2020-03-24 15:35   ` [PATCH v6 02/11] irqchip: loongson-liointc: Workaround LPC IRQ Errata Jiaxun Yang
2020-03-25  1:52     ` Huacai Chen
2020-03-25  2:31       ` Jiaxun Yang
2020-03-24 15:36   ` [PATCH v6 03/11] dt-bindings: interrupt-controller: Add Loongson LIOINTC Jiaxun Yang
2020-03-24 15:36   ` [PATCH v6 04/11] irqchip: Add driver for Loongson-3 HyperTransport PIC controller Jiaxun Yang
2020-03-24 15:36   ` [PATCH v6 05/11] dt-bindings: interrupt-controller: Add Loongson-3 HTPIC Jiaxun Yang
2020-03-24 15:36   ` [PATCH v6 06/11] irqchip: mips-cpu: Convert to simple domain Jiaxun Yang
2020-03-24 15:36   ` [PATCH v6 07/11] MIPS: Loongson64: Drop legacy IRQ code Jiaxun Yang
2020-03-24 15:36   ` [PATCH v6 08/11] dt-bindings: mips: Add loongson boards Jiaxun Yang
2020-03-24 15:36   ` [PATCH v6 09/11] MIPS: Loongson64: Add generic dts Jiaxun Yang
2020-03-25  2:11     ` Huacai Chen
2020-03-25  2:08       ` Jiaxun Yang
2020-03-25  2:49         ` Huacai Chen
2020-03-24 15:36   ` [PATCH v6 10/11] MIPS: Loongson64: Load built-in dtbs Jiaxun Yang
2020-03-24 15:36   ` [PATCH v6 11/11] MIPS: Loongson64: Move MIPS_CPU_IRQ_BASE Jiaxun Yang
2020-03-24 15:47   ` [PATCH v6 00/11] Modernize Loongson64 Machine v6 Marc Zyngier
2020-03-24 15:51     ` Jiaxun Yang
2020-03-24 18:07       ` Thomas Bogendoerfer
2020-03-25  2:28 ` [PATCH v7 00/12] " Jiaxun Yang
2020-03-25  2:28   ` [PATCH v7 01/12] irqchip: Add driver for Loongson I/O Local Interrupt Controller Jiaxun Yang
2020-03-25 11:25     ` Paul Cercueil
2020-03-25 11:35       ` Marc Zyngier
2020-03-25  2:28   ` [PATCH v7 01/12] MIPS: Loongson: Do not initialise statics to 0 Jiaxun Yang
2020-03-25  2:28   ` [PATCH v7 02/12] irqchip: loongson-liointc: Workaround LPC IRQ Errata Jiaxun Yang
2020-03-25  2:28   ` [PATCH v7 02/12] MIPS: DTS: CI20: add DT node for IR sensor Jiaxun Yang
2020-03-25  2:28   ` [PATCH v7 03/12] dt-bindings: interrupt-controller: Add Loongson LIOINTC Jiaxun Yang
2020-03-25  3:54 ` [PATCH v8 00/11] Modernize Loongson64 Machine v8 Jiaxun Yang
2020-03-25  3:54   ` [PATCH v8 01/11] irqchip: Add driver for Loongson I/O Local Interrupt Controller Jiaxun Yang
2020-03-25  3:54   ` [PATCH v8 02/11] irqchip: loongson-liointc: Workaround LPC IRQ Errata Jiaxun Yang
2020-03-25  3:54   ` [PATCH v8 03/11] dt-bindings: interrupt-controller: Add Loongson LIOINTC Jiaxun Yang
2020-03-25  3:54   ` [PATCH v8 04/11] irqchip: Add driver for Loongson-3 HyperTransport PIC controller Jiaxun Yang
2020-03-25  3:54   ` [PATCH v8 05/11] dt-bindings: interrupt-controller: Add Loongson-3 HTPIC Jiaxun Yang
2020-03-25  3:54   ` [PATCH v8 06/11] irqchip: mips-cpu: Convert to simple domain Jiaxun Yang
2020-03-25 12:37     ` Thomas Bogendoerfer
2020-03-25 12:48       ` Jiaxun Yang
2020-03-25 13:00       ` Marc Zyngier
2020-03-25 13:07         ` Jiaxun Yang
2020-03-25 13:57           ` Marc Zyngier
2020-03-25 13:59             ` Jiaxun Yang
2020-03-25 14:15               ` Marc Zyngier
2020-03-25 14:31                 ` Jiaxun Yang
2020-03-25 15:02                   ` Marc Zyngier
2020-03-25 15:04                   ` Thomas Bogendoerfer
2020-03-25 15:09                     ` Jiaxun Yang
2020-03-25 15:46                       ` Thomas Bogendoerfer
2020-03-25 16:02                         ` Jiaxun Yang
2020-03-25 16:31                           ` Thomas Bogendoerfer
2020-03-25  3:55   ` [PATCH v8 07/11] MIPS: Loongson64: Drop legacy IRQ code Jiaxun Yang
2020-03-25  3:55   ` [PATCH v8 08/11] dt-bindings: mips: Add loongson boards Jiaxun Yang
2020-03-25  3:55   ` [PATCH v8 09/11] MIPS: Loongson64: Add generic dts Jiaxun Yang
2020-03-25  3:55   ` [PATCH v8 10/11] MIPS: Loongson64: Load built-in dtbs Jiaxun Yang
2020-03-25  3:55   ` [PATCH v8 11/11] MAINTAINERS: Update Loongson64 entry Jiaxun Yang
2020-03-25 17:33   ` [PATCH v8 00/11] Modernize Loongson64 Machine v8 Thomas Bogendoerfer

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=18392e2d-b0a2-518f-ad22-34a4aada0014@flygoat.com \
    --to=jiaxun.yang@flygoat.com \
    --cc=chenhc@lemote.com \
    --cc=devicetree@vger.kernel.org \
    --cc=jason@lakedaemon.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=mark.rutland@arm.co \
    --cc=maz@kernel.org \
    --cc=paul.burton@mips.com \
    --cc=robh+dt@kernel.org \
    --cc=tglx@linutronix.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).