From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932970AbaJVLDW (ORCPT ); Wed, 22 Oct 2014 07:03:22 -0400 Received: from mailapp01.imgtec.com ([195.59.15.196]:49332 "EHLO mailapp01.imgtec.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932458AbaJVLDV (ORCPT ); Wed, 22 Oct 2014 07:03:21 -0400 Message-ID: <54478EF4.7050909@imgtec.com> Date: Wed, 22 Oct 2014 12:03:16 +0100 From: Qais Yousef User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:24.0) Gecko/20100101 Thunderbird/24.8.0 MIME-Version: 1.0 To: Andrew Bresticker CC: Ralf Baechle , Daniel Lezcano , Thomas Gleixner , "Jason Cooper" , Paul Burton , "John Crispin" , , Subject: Re: [PATCH 00/19] MIPS GIC cleanup, part 2 References: <1413831846-32100-1-git-send-email-abrestic@chromium.org> In-Reply-To: <1413831846-32100-1-git-send-email-abrestic@chromium.org> Content-Type: text/plain; charset="ISO-8859-1"; format=flowed Content-Transfer-Encoding: 7bit X-Originating-IP: [192.168.154.94] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 10/20/2014 08:03 PM, Andrew Bresticker wrote: > Second round of cleanups for the MIPS GIC drivers: > - Patches 1 through 5 get rid of the ugly REG() macros and instead use > proper iomem accessors. > - Patches 6 and 7 move the GIC header to linux/irqchip/ and clean it up. > - Patches 8 through 10 are misc. GIC irqchip cleanups. > - Patches 11 and 12 combine the GIC clocksource and clockevent drivers and > move them to drivers/clocksource/. > - Patches 13 through 19 are various cleanups for the GIC clocksource driver. > > Boot tested on Malta and (with additional out-of-tree patches) a platform > based on the IMG Pistachio SoC. Build tested for SEAD-3. I used your github tree to boot test this on sead3 and it worked fine. Except for the one comment I had, feel free to add my tested-and-reviewed by. Nice work :) Qais > Based on 3.18-rc1 + part 1 of my GIC cleanup series [0]. A tree with both > series is available at: > https://github.com/abrestic/linux/commits/mips-gic-cleanup-pt2-v1 > > [0] https://lkml.org/lkml/2014/9/18/487 > > Andrew Bresticker (19): > MIPS: Malta: Use gic_read_count() to read GIC timer > irqchip: mips-gic: Export function to read counter width > MIPS: sead3: Stop using GIC REG macros > MIPS: Malta: Stop using GIC REG macros > irqchip: mips-gic: Use proper iomem accessors > MIPS: Move gic.h to include/linux/irqchip/mips-gic.h > irqchip: mips-gic: Clean up header file > irqchip: mips-gic: Clean up #includes > irqchip: mips-gic: Remove gic_{pending,itrmask}_regs > irqchip: mips-gic: Use GIC_SH_WEDGE_{SET,CLR} macros > MIPS: Move GIC clocksource driver to drivers/clocksource/ > clocksource: mips-gic: Combine with GIC clockevent driver > clocksource: mips-gic: Staticize local symbols > clocksource: mips-gic: Move gic_frequency to clocksource driver > clocksource: mips-gic: Remove gic_event_handler > clocksource: mips-gic: Use percpu_dev_id > clocksource: mips-gic: Use CPU notifiers to setup the timer > clocksource: mips-gic: Use clockevents_config_and_register > clocksource: mips-gic: Bump up rating of GIC timer > > arch/mips/Kconfig | 21 +- > arch/mips/include/asm/mips-boards/maltaint.h | 2 +- > arch/mips/include/asm/mips-boards/sead3int.h | 2 +- > arch/mips/include/asm/time.h | 5 +- > arch/mips/kernel/Makefile | 2 - > arch/mips/kernel/cevt-gic.c | 103 --------- > arch/mips/kernel/cevt-r4k.c | 2 +- > arch/mips/kernel/csrc-gic.c | 40 ---- > arch/mips/kernel/smp-cmp.c | 2 +- > arch/mips/kernel/smp-cps.c | 2 +- > arch/mips/kernel/smp-gic.c | 2 +- > arch/mips/kernel/smp-mt.c | 2 +- > arch/mips/mti-malta/malta-int.c | 15 +- > arch/mips/mti-malta/malta-time.c | 20 +- > arch/mips/mti-sead3/sead3-ehci.c | 2 +- > arch/mips/mti-sead3/sead3-int.c | 9 +- > arch/mips/mti-sead3/sead3-net.c | 2 +- > arch/mips/mti-sead3/sead3-platform.c | 2 +- > arch/mips/mti-sead3/sead3-time.c | 2 +- > drivers/clocksource/Kconfig | 4 + > drivers/clocksource/Makefile | 1 + > drivers/clocksource/mips-gic-timer.c | 139 ++++++++++++ > drivers/irqchip/irq-mips-gic.c | 243 +++++++++++++-------- > .../asm/gic.h => include/linux/irqchip/mips-gic.h | 203 +++-------------- > 24 files changed, 363 insertions(+), 464 deletions(-) > delete mode 100644 arch/mips/kernel/cevt-gic.c > delete mode 100644 arch/mips/kernel/csrc-gic.c > create mode 100644 drivers/clocksource/mips-gic-timer.c > rename arch/mips/include/asm/gic.h => include/linux/irqchip/mips-gic.h (61%) >