From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 2BAA1C38A02 for ; Fri, 28 Oct 2022 17:20:42 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id DCBCC84956; Fri, 28 Oct 2022 19:20:40 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=NetBSD.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id C9D5084966; Fri, 28 Oct 2022 19:20:39 +0200 (CEST) Received: from mail.duskware.de (mail.duskware.de [91.199.88.144]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 5DCA484922 for ; Fri, 28 Oct 2022 19:20:37 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=NetBSD.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=martin@duskware.de Received: by mail.duskware.de (Postfix, from userid 205) id 613AAA7DDA; Fri, 28 Oct 2022 19:20:36 +0200 (CEST) Date: Fri, 28 Oct 2022 19:20:36 +0200 From: Martin Husemann To: Michal Simek Cc: u-boot@lists.denx.de Subject: Re: Adapteva Parallella board Message-ID: <20221028172036.GA15631@mail.duskware.de> References: <20221026180043.GA644@mail.duskware.de> <24d454a7-f260-28bb-2c65-28a27b65fffe@monstr.eu> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <24d454a7-f260-28bb-2c65-28a27b65fffe@monstr.eu> User-Agent: Mutt/1.7.2 (2016-11-26) X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.6 at phobos.denx.de X-Virus-Status: Clean On Thu, Oct 27, 2022 at 11:14:01AM +0200, Michal Simek wrote: > add DT to tree. If you have ps7_init create folder in board/xilinx/zynq/ folder I didn't find a ps7_init in the parallela u-boot fork, so skipped that part... > export DEVICE_TREE=... I put the zynq-parallella.dtb that I had in my tftp dir (and use for regular booting) into arch/arm/dts and set DEVICE_TREE=zynq-parallella > xilinx_zynq_virt_defconfig and that gets me to: [..] AR spl/drivers/built-in.o LD spl/u-boot-spl OBJCOPY spl/u-boot-spl-nodtb.bin SYM spl/u-boot-spl.sym CAT spl/u-boot-spl-dtb.bin COPY spl/u-boot-spl.bin gmake[1]: *** [scripts/Makefile.spl:248: spl/u-boot-spl-align.bin] Error 1 gmake: *** [Makefile:2106: spl/u-boot-spl] Error 2 gmake: *** Deleting file 'spl/u-boot-spl' Is my dtb not correct for this purpose? How can I easily make the u-boot build regen it from .dts? I found the slightly hidden dts/.*.cmd files, do I need to clone one of that and adjust? Martin