1// SPDX-License-Identifier: (GPL-2.0-or-later OR MIT) 2/* 3 * Copyright (c) 2018-2023 TQ-Systems GmbH <linux@ew.tq-group.com>, 4 * D-82229 Seefeld, Germany. 5 * Author: Gregor Herburger, Timo Herbrecher 6 * 7 * Device Tree Include file for LS1088A based SoM of TQ 8 */ 9 10#include "fsl-ls1088a.dtsi" 11#include "tqmls10xxa.dtsi" 12 13&qspi { 14 num-cs = <2>; 15 status = "okay"; 16 17 qflash0: flash@0 { 18 compatible = "jedec,spi-nor"; 19 reg = <0>; 20 spi-max-frequency = <62500000>; 21 spi-rx-bus-width = <4>; 22 spi-tx-bus-width = <4>; 23 vcc-supply = <®_vcc1v8>; 24 25 partitions { 26 compatible = "fixed-partitions"; 27 #address-cells = <1>; 28 #size-cells = <1>; 29 }; 30 }; 31 32 qflash1: flash@1 { 33 compatible = "jedec,spi-nor"; 34 reg = <1>; 35 #address-cells = <1>; 36 #size-cells = <1>; 37 spi-max-frequency = <62500000>; 38 spi-rx-bus-width = <4>; 39 spi-tx-bus-width = <4>; 40 vcc-supply = <®_vcc1v8>; 41 }; 42}; 43