devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
To: Gregory CLEMENT <gregory.clement@bootlin.com>,
	Paul Burton <paulburton@kernel.org>,
	Thomas Bogendoerfer <tsbogend@alpha.franken.de>,
	linux-mips@vger.kernel.org, Jiaxun Yang <jiaxun.yang@flygoat.com>,
	Rob Herring <robh+dt@kernel.org>,
	Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
	devicetree@vger.kernel.org, linux-kernel@vger.kernel.org
Cc: "Vladimir Kondratiev" <vladimir.kondratiev@mobileye.com>,
	"Tawfik Bayouk" <tawfik.bayouk@mobileye.com>,
	"Alexandre Belloni" <alexandre.belloni@bootlin.com>,
	"Théo Lebrun" <theo.lebrun@bootlin.com>,
	"Thomas Petazzoni" <thomas.petazzoni@bootlin.com>
Subject: Re: [PATCH v2 18/21] MIPS: mobileye: Add EyeQ5 dtsi
Date: Fri, 24 Nov 2023 09:27:42 +0100	[thread overview]
Message-ID: <46bba00c-00b7-46db-984c-4391f7fc11f6@linaro.org> (raw)
In-Reply-To: <20231123152639.561231-19-gregory.clement@bootlin.com>

On 23/11/2023 16:26, Gregory CLEMENT wrote:
> Add a device tree include file for the Mobileye EyeQ5 SoC.
> 
> Based on the work of Slava Samsonov <stanislav.samsonov@intel.com>
> 
> Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
> ---


> +	aliases {
> +		serial0 = &uart0;
> +		serial1 = &uart1;
> +		serial2 = &uart2;
> +	};
> +
> +	cpu_intc: interrupt-controller {
> +		compatible = "mti,cpu-interrupt-controller";
> +		interrupt-controller;
> +		#address-cells = <0>;
> +		#interrupt-cells = <1>;
> +	};
> +
> +	gic: interrupt-controller@140000 {

Why do you put MMIO nodes in top-level?

> +		compatible = "mti,gic";
> +		reg = <0x0 0x140000 0x0 0x20000>;
> +		interrupt-controller;
> +		#interrupt-cells = <3>;
> +
> +		/*
> +		* Declare the interrupt-parent even though the mti,gic
> +		* binding doesn't require it, such that the kernel can
> +		* figure out that cpu_intc is the root interrupt
> +		* controller & should be probed first.
> +		*/
> +		interrupt-parent = <&cpu_intc>;
> +
> +		timer {
> +			compatible = "mti,gic-timer";
> +			interrupts = <GIC_LOCAL 1 IRQ_TYPE_NONE>;
> +			clocks = <&core0_clk>;
> +		};
> +	};
> +
> +	soc: soc {

Are you sure dtbs_check W=1 does not complain? I think you miss here
address.

> +		#address-cells = <2>;
> +		#size-cells = <2>;
> +		ranges;
> +		compatible = "simple-bus";
> +
> +		uart0: serial@800000 {
> +			compatible = "arm,pl011", "arm,primecell";
> +			reg = <0 0x800000 0x0 0x1000>;
> +			reg-io-width = <4>;
> +			interrupt-parent = <&gic>;
> +			interrupts = <GIC_SHARED 6 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks  = <&uart_clk>, <&occ_periph>;
> +			clock-names = "uartclk", "apb_pclk";
> +		};
> +
> +		uart1: serial@900000 {
> +			compatible = "arm,pl011", "arm,primecell";
> +			reg = <0 0x900000 0x0 0x1000>;
> +			reg-io-width = <4>;
> +			interrupt-parent = <&gic>;
> +			interrupts = <GIC_SHARED 6 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks  = <&uart_clk>, <&occ_periph>;
> +			clock-names = "uartclk", "apb_pclk";
> +		};
> +
> +		uart2: serial@a00000 {
> +			compatible = "arm,pl011", "arm,primecell";
> +			reg = <0 0xa00000 0x0 0x1000>;
> +			reg-io-width = <4>;
> +			interrupt-parent = <&gic>;
> +			interrupts = <GIC_SHARED 6 IRQ_TYPE_LEVEL_HIGH>;
> +			clocks  = <&uart_clk>, <&occ_periph>;
> +			clock-names = "uartclk", "apb_pclk";
> +		};
> +
> +		olb: olb@e00000 {
> +			compatible = "mobileye,eyeq5-olb", "syscon", "simple-mfd";
> +			reg = <0 0xe00000 0x0 0x400>;
> +			reg-io-width = <4>;
> +		};
> +

Stray blank line.

> +	};
> +};

Best regards,
Krzysztof


  reply	other threads:[~2023-11-24  8:27 UTC|newest]

Thread overview: 36+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-23 15:26 [PATCH v2 00/21] Add support for the Mobileye EyeQ5 SoC Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 01/21] MIPS: compressed: Use correct instruction for 64 bit code Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 02/21] MIPS: Export higher/highest relocation functions in uasm Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 03/21] MIPS: spaces: Define a couple of handy macros Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 04/21] MIPS: genex: Fix except_vec_vi for kernel in XKPHYS Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 05/21] MIPS: Fix set_uncached_handler for ebase " Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 06/21] MIPS: Refactor mips_cps_core_entry implementation Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 07/21] MIPS: Fix cache issue with mips_cps_core_entry Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 08/21] MIPS: Allow kernel base to be set from Kconfig for all platforms Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 09/21] MIPS: traps: Handle CPU with non standard vint offset Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 10/21] MIPS: Avoid unnecessary reservation of exception space Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 11/21] MIPS: traps: Enhance memblock ebase allocation process Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 12/21] MIPS: Get rid of CONFIG_NO_EXCEPT_FILL Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 13/21] MIPS: traps: Give more explanations if ebase doesn't belong to KSEG0 Gregory CLEMENT
2023-11-26 11:31   ` kernel test robot
2023-11-23 15:26 ` [PATCH v2 14/21] dt-bindings: Add vendor prefix for Mobileye Vision Technologies Ltd Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 15/21] dt-bindings: mips: cpu: Add I-Class I6500 Multiprocessor Core Gregory CLEMENT
2023-11-24  8:25   ` Krzysztof Kozlowski
2023-11-30 10:51     ` Gregory CLEMENT
2023-11-30 12:00       ` Krzysztof Kozlowski
2023-11-24 11:37   ` Serge Semin
2023-11-23 15:26 ` [PATCH v2 16/21] dt-bindings: mips: Add bindings for Mobileye SoCs Gregory CLEMENT
2023-11-23 16:57   ` Rob Herring
2023-11-26 18:57   ` Rob Herring
2023-11-23 15:26 ` [PATCH v2 17/21] dt-bindings: mfd: syscon: Document EyeQ5 OLB Gregory CLEMENT
2023-11-24  8:25   ` Krzysztof Kozlowski
2023-11-23 15:26 ` [PATCH v2 18/21] MIPS: mobileye: Add EyeQ5 dtsi Gregory CLEMENT
2023-11-24  8:27   ` Krzysztof Kozlowski [this message]
2023-12-01 10:56     ` Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 19/21] MIPS: mobileye: Add EPM5 device tree Gregory CLEMENT
2023-11-23 15:26 ` [PATCH v2 20/21] MIPS: generic: Add support for Mobileye EyeQ5 Gregory CLEMENT
2023-11-23 17:46   ` Jiaxun Yang
2023-12-01 10:34     ` Gregory CLEMENT
2023-12-01 10:49       ` Jiaxun Yang
2023-11-23 15:26 ` [PATCH v2 21/21] MAINTAINERS: Add entry for Mobileye MIPS SoCs Gregory CLEMENT
2023-11-23 17:31 ` [PATCH v2 00/21] Add support for the Mobileye EyeQ5 SoC Jiaxun Yang

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=46bba00c-00b7-46db-984c-4391f7fc11f6@linaro.org \
    --to=krzysztof.kozlowski@linaro.org \
    --cc=alexandre.belloni@bootlin.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregory.clement@bootlin.com \
    --cc=jiaxun.yang@flygoat.com \
    --cc=krzysztof.kozlowski+dt@linaro.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=paulburton@kernel.org \
    --cc=robh+dt@kernel.org \
    --cc=tawfik.bayouk@mobileye.com \
    --cc=theo.lebrun@bootlin.com \
    --cc=thomas.petazzoni@bootlin.com \
    --cc=tsbogend@alpha.franken.de \
    --cc=vladimir.kondratiev@mobileye.com \
    /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).