From owner-freebsd-arm@FreeBSD.ORG Thu Aug 14 10:19:10 2014 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id CCA34CB5 for ; Thu, 14 Aug 2014 10:19:10 +0000 (UTC) Received: from poczta.toomeek.waw.pl (unknown [IPv6:2001:67c:232c:1000::fd9b:4fb4]) by mx1.freebsd.org (Postfix) with ESMTP id 6E8F920ED for ; Thu, 14 Aug 2014 10:19:09 +0000 (UTC) Received: from [192.168.137.1] (afnj61.neoplus.adsl.tpnet.pl [178.42.87.61]) by poczta.toomeek.waw.pl (Postfix) with ESMTPSA id E9D3EC600E3 for ; Thu, 14 Aug 2014 06:18:57 -0400 (EDT) Message-ID: <53EC8D1A.2000005@toomeek.waw.pl> Date: Thu, 14 Aug 2014 12:19:06 +0200 From: TooMeeK Admin User-Agent: Mozilla/5.0 (Windows NT 6.3; WOW64; rv:24.0) Gecko/20100101 Thunderbird/24.6.0 MIME-Version: 1.0 To: "freebsd-arm@freebsd.org" Subject: Re: U-boot for Banana Pi References: <53EB40BC.8070506@toomeek.waw.pl> <53EB41EC.1080507@toomeek.waw.pl> <53EB8994.9080801@toomeek.waw.pl> <1407947691.56408.507.camel@revolution.hippie.lan> <53EBDA95.8000604@toomeek.waw.pl> In-Reply-To: X-Greylist: Sender succeeded SMTP AUTH, not delayed by milter-greylist-4.3.9 (poczta.toomeek.waw.pl [0.0.0.0]); Thu, 14 Aug 2014 06:18:58 -0400 (EDT) X-Virus-Scanned: clamav-milter 0.98.1 at a8d2ba546e X-Virus-Status: Clean Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.18-1 X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: "Porting FreeBSD to ARM processors." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 14 Aug 2014 10:19:10 -0000 I didn't touched std.a20 . Card is microSD with SD adapter, 1GB, real size about ~940MB, prepared this way: #1GB card is smaller, so ~940MB available truncate -s 920M banana.img mdconfig -f banana.img -u0 gpart create -s mbr md0 #NOTE: invalid partition type, unreadable by u-boot! #gpart add -s64m -t \!14 md0 gpart add -b 1m -s 64m -t '\!12' md0 gpart set -a active -i 1 md0 gpart add -t freebsd md0 newfs_msdos -F 16 /dev/md0s1 newfs /dev/md0s2 mount /dev/md0s2 /mnt cd /usr/src make TARGET_ARCH=armv6 DESTDIR=/mnt installworld distribution umount /mnt mount_msdosfs /dev/md0s1 /mnt cp /usr/obj/arm.armv6/usr/src/sys/BANANAPI/kernel /mnt echo "fatload mmc 0 0x43000000 script.bin; fatload mmc 0 0x48000000 kernel; go 0x48000100" > boot.cmd /usr/src/u-boot-sunxi/tools/mkimage -C none -A arm -T script -d boot.cmd boot.scr cp boot.scr /mnt mdconfig -d -u0 cd /root/banana dd if=/usr/src/u-boot-sunxi/u-boot-sunxi-with-spl.bin conv=notrunc of=banana.img bs=1024 seek=8 I've already tried: echo "fatload mmc 0 0x40200000 kernel; go 0x40200100" > boot.cmd, but one more time..: U-Boot 2014.04-10700-g4e19806 (Aug 13 2014 - 14:44:36) Allwinner Technology CPU: Allwinner A20 (SUN7I) Board: Bananapi I2C: ready DRAM: 1 GiB MMC: SUNXI SD/MMC: 0 *** Warning - bad CRC, using default environment In: serial Out: serial Err: serial Net: dwmac.1c50000 Hit any key to stop autoboot: 2  1  0 reading uEnv.txt ** Unable to read file uEnv.txt ** Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** Failed to mount ext2 filesystem... ** Unrecognized filesystem type ** reading boot.scr 119 bytes read in 21 ms (4.9 KiB/s) Jumping to boot.scr ## Executing script at 44000000 reading kernel Error reading cluster ** Unable to read file kernel ** ## Starting application at 0x40200100 ... Maybe this is still invalid partition type? But if, why then boot.scr is loaded? Removed script.bin from the partition. I have no eEnv.txt, should I? Cheers, TooMeeK > boot,scr, script.bin, uEnv.txt etc are not really matters now. > script.bin is needed for linux, so you don't really need it. > I think boot.scr, uEnv etc are related to u-boot, so for now you can > leave them. > > I hope you have SD card and it is FAT formatted and you put there kernel. > You can try as I said before: > > fatload mmc 0 0x40200000 kernel; go 0x40200100 > > Because if you look /usr/src/sys/arm/allwinner/a20/std.a20 there are > lines that defines addresses like KERNPHYSADDR which is 0x40200000. > > Please try above command. I hope you didn't change anything in dts file. > > Ganbold > >