[OpenBIOS] [commit] r1056 - trunk/openbios-devel/arch/sparc32

repository service svn at openbios.org
Sat Apr 28 15:35:07 CEST 2012


Author: mcayland
Date: Sat Apr 28 15:35:06 2012
New Revision: 1056
URL: http://tracker.coreboot.org/trac/openbios/changeset/1056

Log:
SPARC32: Swap Forth machine memory allocation over to OFMEM memory pool.

Instead of using our internal memory pool to run the Forth machine,
allocate the memory using OFMEM. This enables us to dramatically increase
the memory available to Forth clients whilst reducing the memory requirement
for the resulting image.

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland at ilande.co.uk>

Modified:
   trunk/openbios-devel/arch/sparc32/ofmem_sparc32.c
   trunk/openbios-devel/arch/sparc32/openbios.c

Modified: trunk/openbios-devel/arch/sparc32/ofmem_sparc32.c
==============================================================================
--- trunk/openbios-devel/arch/sparc32/ofmem_sparc32.c	Sat Apr 28 15:35:03 2012	(r1055)
+++ trunk/openbios-devel/arch/sparc32/ofmem_sparc32.c	Sat Apr 28 15:35:06 2012	(r1056)
@@ -21,7 +21,7 @@
 
 #define OF_MALLOC_BASE		((char*)OFMEM + ALIGN_SIZE(sizeof(ofmem_t), 8))
 
-#define MEMSIZE (384 * 1024)
+#define MEMSIZE (256 * 1024)
 static union {
 	char memory[MEMSIZE];
 	ofmem_t ofmem;

Modified: trunk/openbios-devel/arch/sparc32/openbios.c
==============================================================================
--- trunk/openbios-devel/arch/sparc32/openbios.c	Sat Apr 28 15:35:03 2012	(r1055)
+++ trunk/openbios-devel/arch/sparc32/openbios.c	Sat Apr 28 15:35:06 2012	(r1056)
@@ -27,12 +27,10 @@
 #include "arch/common/fw_cfg.h"
 #include "libopenbios/ofmem.h"
 
-#define MEMORY_SIZE     (128*1024)       /* 128K ram for hosted system */
+#define MEMORY_SIZE     (512*1024)       /* 512K ram for hosted system */
 #define UUID_FMT "%02x%02x%02x%02x-%02x%02x-%02x%02x-%02x%02x-%02x%02x%02x%02x%02x%02x"
 #define FW_CFG_SUN4M_DEPTH   (FW_CFG_ARCH_LOCAL + 0x00)
 
-static ucell *memory;
-
 int qemu_machine_type;
 
 struct hwdef {
@@ -807,17 +805,28 @@
 
 static void init_memory(void)
 {
-    memory = malloc(MEMORY_SIZE);
-    if (!memory)
-        printk("panic: not enough memory on host system.\n");
+    phys_addr_t phys;
+    ucell virt;
+    
+    /* Claim the memory from OFMEM */
+    phys = ofmem_claim_phys(-1, MEMORY_SIZE, PAGE_SIZE);
+    if (!phys)
+        printk("panic: not enough physical memory on host system.\n");
+    
+    virt = ofmem_claim_virt(-1, MEMORY_SIZE, PAGE_SIZE);
+    if (!virt)
+        printk("panic: not enough virtual memory on host system.\n");
+
+    /* Generate the mapping (and lock translation into the TLBs) */
+    ofmem_map(phys, virt, MEMORY_SIZE, ofmem_arch_default_translation_mode(phys));
 
     /* we push start and end of memory to the stack
      * so that it can be used by the forth word QUIT
      * to initialize the memory allocator
      */
-
-    PUSH((ucell)memory);
-    PUSH((ucell)memory + MEMORY_SIZE);
+    
+    PUSH(virt);
+    PUSH(virt + MEMORY_SIZE);
 }
 
 static void



More information about the OpenBIOS mailing list