Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 9 Jun 2013 22:51:12 +0000 (UTC)
From:      Olivier Houchard <cognet@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r251586 - head/sys/arm/ti
Message-ID:  <201306092251.r59MpCmW006162@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: cognet
Date: Sun Jun  9 22:51:11 2013
New Revision: 251586
URL: http://svnweb.freebsd.org/changeset/base/251586

Log:
  Increase the maximum KVM available on TI chips. Not sure why we suddenly need
  that much, but that lets me boot with 1GB of RAM.

Modified:
  head/sys/arm/ti/ti_machdep.c

Modified: head/sys/arm/ti/ti_machdep.c
==============================================================================
--- head/sys/arm/ti/ti_machdep.c	Sun Jun  9 21:54:19 2013	(r251585)
+++ head/sys/arm/ti/ti_machdep.c	Sun Jun  9 22:51:11 2013	(r251586)
@@ -56,7 +56,7 @@ __FBSDID("$FreeBSD$");
 #include <arm/ti/omap4/omap4_reg.h>
 
 /* Start of address space used for bootstrap map */
-#define DEVMAP_BOOTSTRAP_MAP_START	0xE0000000
+#define DEVMAP_BOOTSTRAP_MAP_START	0xF0000000
 
 void (*ti_cpu_reset)(void);
 
@@ -92,14 +92,14 @@ platform_devmap_init(void)
 {
 	int i = 0;
 #if defined(SOC_OMAP4)
-	fdt_devmap[i].pd_va = 0xE8000000;
+	fdt_devmap[i].pd_va = 0xF8000000;
 	fdt_devmap[i].pd_pa = 0x48000000;
 	fdt_devmap[i].pd_size = 0x1000000;
 	fdt_devmap[i].pd_prot = VM_PROT_READ | VM_PROT_WRITE;
 	fdt_devmap[i].pd_cache = PTE_DEVICE;
 	i++;
 #elif defined(SOC_TI_AM335X)
-	fdt_devmap[i].pd_va = 0xE4C00000;
+	fdt_devmap[i].pd_va = 0xF4C00000;
 	fdt_devmap[i].pd_pa = 0x44C00000;       /* L4_WKUP */
 	fdt_devmap[i].pd_size = 0x400000;       /* 4 MB */
 	fdt_devmap[i].pd_prot = VM_PROT_READ | VM_PROT_WRITE;



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