Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 28 Oct 2013 21:37:45 +0000 (UTC)
From:      Zbigniew Bodek <zbb@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r257280 - head/sys/arm/mv/armadaxp
Message-ID:  <201310282137.r9SLbjdN046926@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: zbb
Date: Mon Oct 28 21:37:45 2013
New Revision: 257280
URL: http://svnweb.freebsd.org/changeset/base/257280

Log:
  Change Armada XP kernel load address to the u-boot's end address
  
  Loading kernel to 0xf00000 has no practical reason.
  Starting it from the u-boot's highest possible end address
  (2MB counting from 0x0) makes more sense.
  
  Tested by:	kevlo

Modified:
  head/sys/arm/mv/armadaxp/std.armadaxp

Modified: head/sys/arm/mv/armadaxp/std.armadaxp
==============================================================================
--- head/sys/arm/mv/armadaxp/std.armadaxp	Mon Oct 28 21:34:32 2013	(r257279)
+++ head/sys/arm/mv/armadaxp/std.armadaxp	Mon Oct 28 21:37:45 2013	(r257280)
@@ -1,16 +1,16 @@
 # $FreeBSD$
 
-# kernel gets loaded at 0x00f00000 by the loader, but runs at virtual address
-# 0xc0f00000.  RAM starts at 0.  We put the pagetable at a reasonable place
+# kernel gets loaded at 0x00200000 by the loader, but runs at virtual address
+# 0xc0200000.  RAM starts at 0.  We put the pagetable at a reasonable place
 # in memory, but may need to bounce it higher if there's a problem with this.
 # We could paper over this by loading the kernel at 0xc0000000 virtual, but
 # that leads to other complications, so we'll just reclaim the lower region of
 # ram after we're loaded.  Put the page tables for startup at 1MB.
-makeoptions	KERNPHYSADDR=0x00f00000
-makeoptions	KERNVIRTADDR=0xc0f00000
+makeoptions	KERNPHYSADDR=0x00200000
+makeoptions	KERNVIRTADDR=0xc0200000
 
-options		KERNPHYSADDR=0x00f00000
-options		KERNVIRTADDR=0xc0f00000
+options		KERNPHYSADDR=0x00200000
+options		KERNVIRTADDR=0xc0200000
 options		PHYSADDR=0x00000000
 options		STARTUP_PAGETABLE_ADDR=0x00100000
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201310282137.r9SLbjdN046926>