Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751650AbdIRUnn (ORCPT ); Mon, 18 Sep 2017 16:43:43 -0400 Received: from mail-it0-f66.google.com ([209.85.214.66]:35495 "EHLO mail-it0-f66.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750918AbdIRUnk (ORCPT ); Mon, 18 Sep 2017 16:43:40 -0400 X-Google-Smtp-Source: AOwi7QDp68IKqWrfFugiJBb+Yhu0hL2cHT4GnKkcds11CzZToM5LBUtPP9HYt+fVo1oqQCItEZilQA== Date: Mon, 18 Sep 2017 15:43:39 -0500 From: Rob Herring To: Stafford Horne Cc: LKML , Openrisc , Stefan Kristiansson , Thomas Gleixner , Jason Cooper , Marc Zyngier , Mark Rutland , Jonas Bonn , devicetree@vger.kernel.org Subject: Re: [PATCH v2 06/14] irqchip: add initial support for ompic Message-ID: <20170918204339.gvfenavdi4frdnqe@rob-hp-laptop> References: <20170910064926.5874-1-shorne@gmail.com> <20170910064926.5874-7-shorne@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170910064926.5874-7-shorne@gmail.com> User-Agent: NeoMutt/20170113 (1.7.2) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2900 Lines: 71 On Sun, Sep 10, 2017 at 03:49:18PM +0900, Stafford Horne wrote: > From: Stefan Kristiansson > > IPI driver for the Open Multi-Processor Interrupt Controller (ompic) as > described in the Multicore support section of the OpenRISC 1.2 > proposed architecture specification: > > https://github.com/stffrdhrn/doc/raw/arch-1.2-proposal/openrisc-arch-1.2-rev0.pdf > > Each OpenRISC core contains a full interrupt controller which is used in > the SMP architecture for interrupt balancing. This IPI device, the > ompic, is the only external device required for enabling SMP on > OpenRISC. > > Pending ops are stored in a memory bit mask which can allow multiple > pending operations to be set and serviced at a time. This is mostly > borrowed from the alpha IPI implementation. > > Signed-off-by: Stefan Kristiansson > [shorne@gmail.com: converted ops to bitmask, wrote commit message] > Signed-off-by: Stafford Horne > --- > > Changes since v1 > - Added openrisc, prefix > - Clarified 8 bytes per cpu > - Removed #interrupt-cells as this will not be an irq parent You should still have #interrupt-cells as that is required with "interrupt-controller". It could be 0 though. > - Changed ops to be percpu > - Added DTS and intialization failure validations > > .../interrupt-controller/openrisc,ompic.txt | 19 ++ > arch/openrisc/Kconfig | 1 + > drivers/irqchip/Kconfig | 3 + > drivers/irqchip/Makefile | 1 + > drivers/irqchip/irq-ompic.c | 205 +++++++++++++++++++++ > 5 files changed, 229 insertions(+) > create mode 100644 Documentation/devicetree/bindings/interrupt-controller/openrisc,ompic.txt > create mode 100644 drivers/irqchip/irq-ompic.c > > diff --git a/Documentation/devicetree/bindings/interrupt-controller/openrisc,ompic.txt b/Documentation/devicetree/bindings/interrupt-controller/openrisc,ompic.txt > new file mode 100644 > index 000000000000..346e6042d62f > --- /dev/null > +++ b/Documentation/devicetree/bindings/interrupt-controller/openrisc,ompic.txt > @@ -0,0 +1,19 @@ > +Open Multi-Processor Interrupt Controller > + > +Required properties: > + > +- compatible : This should be "openrisc,ompic" > +- reg : Specifies base physical address and size of the register space. The > + size is based on the number of cores the controller has been configured > + to handle, this should be set to 8 bytes per cpu core. > +- interrupt-controller : Identifies the node as an interrupt controller > +- interrupts : Specifies the interrupt line to which the ompic is wired. > + > +Example: > + > +ompic: ompic { interrupt-controller@98000000 { > + compatible = "openrisc,ompic"; > + reg = <0x98000000 16>; > + interrupt-controller; > + interrupts = <1>; > +};