From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754534AbcEYBNl (ORCPT ); Tue, 24 May 2016 21:13:41 -0400 Received: from mail.kernel.org ([198.145.29.136]:40791 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752802AbcEYBNj (ORCPT ); Tue, 24 May 2016 21:13:39 -0400 MIME-Version: 1.0 In-Reply-To: <5744C80E.6070501@landley.net> References: <20160523204846.GA16081@rob-hp-laptop> <20160523210328.GE21636@brightrain.aerifal.cx> <5744C80E.6070501@landley.net> From: Rob Herring Date: Tue, 24 May 2016 20:13:14 -0500 X-Gmail-Original-Message-ID: Message-ID: Subject: Re: [PATCH v2 02/12] of: add J-Core cpu bindings To: Rob Landley Cc: Rich Felker , "devicetree@vger.kernel.org" , "linux-kernel@vger.kernel.org" , SH-Linux , Ian Campbell , Kumar Gala , Mark Rutland , Pawel Moll Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, May 24, 2016 at 4:30 PM, Rob Landley wrote: > > > On 05/23/2016 06:29 PM, Rob Herring wrote: >> On Mon, May 23, 2016 at 4:03 PM, Rich Felker wrote: >>> On Mon, May 23, 2016 at 03:48:46PM -0500, Rob Herring wrote: >>>> On Fri, May 20, 2016 at 02:53:03AM +0000, Rich Felker wrote: >>>>> Signed-off-by: Rich Felker >>>>> --- >>>>> Documentation/devicetree/bindings/jcore/cpus.txt | 91 ++++++++++++++++++++++++ >>>>> 1 file changed, 91 insertions(+) >>>>> create mode 100644 Documentation/devicetree/bindings/jcore/cpus.txt >>>>> >>>>> diff --git a/Documentation/devicetree/bindings/jcore/cpus.txt b/Documentation/devicetree/bindings/jcore/cpus.txt >>>>> new file mode 100644 >>>>> index 0000000..00ef112 >>>>> --- /dev/null >>>>> +++ b/Documentation/devicetree/bindings/jcore/cpus.txt >>>>> @@ -0,0 +1,91 @@ >>>>> +=================== >>>>> +J-Core cpu bindings >>>>> +=================== >>>>> + >>>>> +The J-Core processors are open source CPU cores that can be built as FPGA >>>>> +soft cores or ASICs. The device tree is also responsible for describing the >>>>> +cache controls and, for SMP configurations, all details of the SMP method, >>>>> +as documented below. >>>>> + >>>>> + >>>>> +--------------------- >>>>> +Top-level "cpus" node >>>>> +--------------------- >>>>> + >>>>> +Required properties: >>>>> + >>>>> +- #address-cells: Must be 1. >>>>> + >>>>> +- #size-cells: Must be 0. >>>>> + >>>>> +Optional properties: >>>>> + >>>>> +- enable-method: Required only for SMP systems. If present, must be >>>>> + "jcore,spin-table". >>>>> + >>>>> + >>>>> +-------------------- >>>>> +Individual cpu nodes >>>>> +-------------------- >>>>> + >>>>> +Required properties: >>>>> + >>>>> +- device_type: Must be "cpu". >>>>> + >>>>> +- compatible: Must be "jcore,j2". >>>> >>>> Okay to have this, but you should have compatible strings for specific >>>> core implementations. AIUI, J2 is just the ISA. >>> >>> There was some past discussion you probably missed on the linux-sh >>> list, starting here: >>> >>> http://www.spinics.net/lists/linux-sh/msg50028.html >>> >>> Basically it's really hard to identify what "the specific core >>> implementation" even means with a soft core. If you have some ideas >>> I'd be happy to hear them, but I think there should always be a >>> "jcore,j2" fallback compatible tag in any case. >> >> Presumably you do some sort of versioning on the VHDL source that you >> can correlate to. >> >> If you have sufficient s/w accessible version registers that are >> always going to be updated on IP changes then, you don't really need >> more specific compatible strings. > > There are no version registers: the boot ROM can be output as part of > the build, and the dtb can be provided by the boot ROM. So you don't > need boot registers, you literally put any version info you need in the > dtb in the boot rom. You can, but you are not doing that from the looks of it. Maybe you're not to that point to need versioning and that's fine, but it doesn't sound like you all have thought about it. >> Better yet, since you can change "the hardware", make it more >> discoverable with registers for version numbering and feature bits. >> The failure here is having a process where that can be forgotten... > > Why would you add hardware version registers when the hardware's > attached boot rom is providing a dtb? > > What's the point? You are missing who is reading and caring about what the version is. It's all the software that cares what's in either version registers or dtb to know what are the specific features of the h/w. At some point you will have a single driver that needs to support multiple versions and/or configurations of hardware/IP. Rob