From owner-freebsd-arm@FreeBSD.ORG Tue May 17 20:31:27 2011 Return-Path: Delivered-To: freebsd-arm@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E18F5106564A; Tue, 17 May 2011 20:31:27 +0000 (UTC) (envelope-from andrew@fubar.geek.nz) Received: from out3.smtp.messagingengine.com (out3.smtp.messagingengine.com [66.111.4.27]) by mx1.freebsd.org (Postfix) with ESMTP id A9C8E8FC16; Tue, 17 May 2011 20:31:27 +0000 (UTC) Received: from compute2.internal (compute2.nyi.mail.srv.osa [10.202.2.42]) by gateway1.messagingengine.com (Postfix) with ESMTP id 8BA2A200DD; Tue, 17 May 2011 16:31:26 -0400 (EDT) Received: from frontend2.messagingengine.com ([10.202.2.161]) by compute2.internal (MEProxy); Tue, 17 May 2011 16:31:26 -0400 DKIM-Signature: v=1; a=rsa-sha1; c=relaxed/relaxed; d=messagingengine.com; h=date:from:to:cc:subject:message-id:in-reply-to:references:mime-version:content-type:content-transfer-encoding; s=smtpout; bh=6xd+X9/0UoH19CnDQwpnt7YtVAk=; b=cgz2o3p5DPFVjrnX2W7z8GFgGxUUrEsMHG67tFMsPxpiQTb4uH/qOdIqPbJBK02wJNFSnDXFXYuM2dvxOXXJzXEyWNG6qZNIt/DK782NPjFP7WalgBQMeF0Q9Wm8vTXKliVBptzJ19B6vlu72LxUTff8W7JZvtjT3LYpLVEw/10= X-Sasl-enc: S4vCWwi6p9i2DyrO5gqGgk5k6jSvs4UYEuwWCrw75gJl 1305664285 Received: from localhost (222-154-122-100.jetstream.xtra.co.nz [222.154.122.100]) by mail.messagingengine.com (Postfix) with ESMTPA id 5F00D446A2C; Tue, 17 May 2011 16:31:25 -0400 (EDT) Date: Wed, 18 May 2011 08:31:17 +1200 From: Andrew Turner To: Mark Murray Message-ID: <20110518083117.761cf4c7@fubar.geek.nz> In-Reply-To: References: <20110425163549.2bcc8551@fubar.geek.nz> <20110425170105.37c7d853@fubar.geek.nz> <20110426035423.1b4b592c@fubar.geek.nz> X-Mailer: Claws Mail 3.7.8 (GTK+ 2.22.1; i386-portbld-freebsd8.0) X-Pirate: Arrrr Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: freebsd-arm@freebsd.org Subject: Re: OMAP3 patch X-BeenThere: freebsd-arm@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Porting FreeBSD to the StrongARM Processor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 17 May 2011 20:31:28 -0000 On Sat, 07 May 2011 12:17:10 +0100 Mark Murray wrote: > Did this. Didn't work: > > [graveyard] /usr/src 12:08 pm # cu -t -s 115200 -l /dev/cuaU0 > Connected > > > Texas Instruments X-Loader 1.4.4ss (Aug 19 2010 - 02:49:27) > Beagle xM Rev A > Reading boot sector > Loading u-boot.bin from mmc It appears you have a Beagleboard-xM. I haven't had a chance to test booting on the xM yet so it may be broken. The xM also needs a driver written to enable the USB host hardware. > U-Boot 2010.03-dirty (Aug 20 2010 - 20:50:46) > > OMAP3630/3730-GP ES2.0, CPU-OPP2, L3-165MHz, > OMAP3 Beagle board + LPDDR/NAND > I2C: ready > DRAM: 512 MB > NAND: 256 MiB > *** Warning - bad CRC or NAND, using default environment > > In: serial > Out: serial > Err: serial > > Probing for expansion boards, if none are connected you'll see a > harmless I2C error. > > No EEPROM on expansion board > Beagle xM Rev A > Die ID #7f4c00011ff00000015739eb0c00b026 > Hit any key to stop autoboot: 0 > mmc1 is available > The user button is currently NOT pressed. > reading boot.scr > > ** Unable to read "boot.scr" from mmc 1:1 ** > reading user.scr > > ** Unable to read "user.scr" from mmc 1:1 ** > reading uImage > > 3994161 bytes read > Booting from mmc ... > ## Booting kernel from Legacy Image at 80200000 ... > Image Name: FreeBSD > Image Type: ARM Linux Kernel Image (uncompressed) > Data Size: 3994097 Bytes = 3.8 MB > Load Address: 80200000 > Entry Point: 802000e0 > Verifying Checksum ... OK > XIP Kernel Image ... OK These addresses are interesting. I don't think XIP will work. You can try to load the image to a different address in U-Boot or build FreeBSD to run at a different address. Andrew