From owner-freebsd-arm@freebsd.org Sun Dec 11 17:30:03 2016 Return-Path: Delivered-To: freebsd-arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id ECF36C72157 for ; Sun, 11 Dec 2016 17:30:03 +0000 (UTC) (envelope-from danny@cs.huji.ac.il) Received: from mailman.ysv.freebsd.org (unknown [127.0.1.3]) by mx1.freebsd.org (Postfix) with ESMTP id D82101BDC for ; Sun, 11 Dec 2016 17:30:03 +0000 (UTC) (envelope-from danny@cs.huji.ac.il) Received: by mailman.ysv.freebsd.org (Postfix) id D4ACDC72156; Sun, 11 Dec 2016 17:30:03 +0000 (UTC) Delivered-To: arm@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id D29A8C72155 for ; Sun, 11 Dec 2016 17:30:03 +0000 (UTC) (envelope-from danny@cs.huji.ac.il) Received: from kabab.cs.huji.ac.il (kabab.cs.huji.ac.il [132.65.116.210]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 7884E1BDB for ; Sun, 11 Dec 2016 17:30:02 +0000 (UTC) (envelope-from danny@cs.huji.ac.il) Received: from imac.bs.cs.huji.ac.il ([132.65.179.42]) by kabab.cs.huji.ac.il with esmtp id 1cG7wf-000DZK-QM; Sun, 11 Dec 2016 19:29:53 +0200 Mime-Version: 1.0 (Mac OS X Mail 9.3 \(3124\)) Subject: Re: ubldr, was Re: dtb printout From: Daniel Braniss In-Reply-To: Date: Sun, 11 Dec 2016 19:29:53 +0200 Cc: arm@freebsd.org Message-Id: <2660E67D-10E4-4680-B824-EBF138FBC3FF@cs.huji.ac.il> References: <7FD12DD6-B390-4EF3-811B-391798410BC0@cs.huji.ac.il> <1480950103.1889.251.camel@freebsd.org> <93729768-D887-4568-8686-FE691A881BC6@cs.huji.ac.il> To: Ganbold Tsagaankhuu X-Mailer: Apple Mail (2.3124) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.23 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 11 Dec 2016 17:30:04 -0000 > On 11 Dec 2016, at 6:09 PM, Ganbold Tsagaankhuu = wrote: >=20 >=20 >=20 > On Tue, Dec 6, 2016 at 5:17 PM, Daniel Braniss > wrote: >=20 > > On 5 Dec 2016, at 17:01, Ian Lepore > wrote: > > > > On Mon, 2016-12-05 at 15:48 +0200, Daniel Braniss wrote: > >> Hi, > >> the short version: > >> is there a way to obtain the dtb from the kernel? > >> > >> the longer version: > >> I am developing on several different arm boards, rpi, rpi2, = orangepi- > >> one, orange-pc, to mention > >> a few, and each one has a different u-boot, ubldr, dtb, and I keep > >> loosing track :-( > >> I find myself too often wondering which ddb file got loaded. > >> > >> cheers, > >> danny > > > > First: each one does NOT have a different ubldr. All ubldr.bin = files > > are the same, they're not board-specific anymore. (The elf = versions, > > ubldr without the .bin, may have a different load address in the elf > > header, but other than that, they're identical too and can actually = be > > loaded at any address.) > > > > To see the contents of the dtb, use ofwdump. The output is not > > especially pretty. There is a manpage for it. > > > > To just get a quick reminder of which file was loaded, create a > > /boot/loader.rc.local (<-- .rc not .conf) that contains > > > > ubenv import fdtfile fdt_file > > > > Then in the running system you can use kenv and you'll see > > > > uboot.fdtfile=3D"bcm2835-rpi-b-rev2.dtb" > > > > Unfortunately, some u-boots use fdtfile, some use fdt_file. Grrr. > > > > You can, of course, use that ubenv import thing to pull any variable > > from the uboot environment into the kernel environment. If you just > > say ubenv import without naming a variable, you get all the vars > > (including vars that contain scripts, which is kind of messy). > > > > =E2=80=94 Ian > > >=20 > as usual, I get more than I bargained for :-) > on rpi adding ubenv import worked, but on orange/allwinner I got a = =E2=80=98syntax error=E2=80=99, > I tried to upgrade the ubldr, but so far i get: >=20 > U-Boot SPL 2016.09 (Dec 05 2016 - 15:02:38) > DRAM: 1024 MiB > Trying to boot from MMC1 >=20 >=20 > U-Boot 2016.09 (Dec 05 2016 - 15:02:38 +0200) Allwinner Technology >=20 > CPU: Allwinner H3 (SUN8I 1680) > Model: Xunlong Orange Pi PC > I2C: ready > DRAM: 1 GiB > WARNING: Caches not enabled > MMC: SUNXI SD/MMC: 0 > reading u-boot.env >=20 > ** Unable to read "u-boot.env" from mmc0:1 ** > Using default environment >=20 > In: serial > Out: serial > Err: serial > Net: phy interface0 > eth0: ethernet@1c30000 > starting USB... > USB0: USB EHCI 1.00 > USB1: USB OHCI 1.0 > USB2: USB EHCI 1.00 > USB3: USB OHCI 1.0 > USB4: USB EHCI 1.00 > USB5: USB OHCI 1.0 > scanning bus 0 for devices... 1 USB Device(s) found > scanning bus 2 for devices... 1 USB Device(s) found > scanning bus 4 for devices... 1 USB Device(s) found > Hit any key to stop autoboot: 0 > Booting from: mmc 0 ubldr.bin > reading ubldr.bin > 223912 bytes read in 53 ms (4 MiB/s) > ## No elf image at address 0x42000000 > ## Starting application at 0x42000000 ... >=20 > Did ubldr work for you? > I feel like I have same problem: >=20 > Booting from: mmc 0 ubldr.bin > reading ubldr.bin > 228276 bytes read in 67 ms (3.2 MiB/s) > ## No elf image at address 0x42000000 > ## Starting application at 0x42000000 ... >=20 > Ganbold >=20 > =20 the latest one hangs, just like with you. I=E2=80=99m using an older ubldr >=20 > _______________________________________________ > freebsd-arm@freebsd.org mailing list > https://lists.freebsd.org/mailman/listinfo/freebsd-arm = > To unsubscribe, send any mail to "freebsd-arm-unsubscribe@freebsd.org = "