From 3e4c6f1da081765694c239da023baed7b6522591 Mon Sep 17 00:00:00 2001
From: "Wesley W. Terpstra" <w.terpstra@gsi.de>
Date: Tue, 10 Jul 2012 14:18:45 +0200
Subject: [PATCH] Increase to 90KB and increase socket count for measure_t24p

---
 Makefile             | 4 ++--
 arch/lm32/ram.ld     | 2 +-
 boards/arria/board.h | 2 +-
 boards/spec/board.h  | 4 ++--
 4 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Makefile b/Makefile
index 51c2f44..3d6c998 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 # choose your board here. 
-BOARD = arria
+BOARD = spec
 
 # 1 enables Etherbone support
 WITH_ETHERBONE=1
@@ -116,7 +116,7 @@ wrc: 		$(OBJS)
 				${OBJCOPY} -O binary $(OUTPUT).elf $(OUTPUT).bin
 				${OBJDUMP} -d $(OUTPUT).elf > $(OUTPUT)_disasm.S
 				./tools/genraminit $(OUTPUT).bin 0 > $(OUTPUT).ram
-				./tools/genramvhd -s 81920 $(OUTPUT).bin > $(OUTPUT).vhd
+				./tools/genramvhd -s 90112 $(OUTPUT).bin > $(OUTPUT).vhd
 
 clean:	
 	rm -f $(OBJS) $(OUTPUT).elf $(OUTPUT).bin $(OUTPUT).ram
diff --git a/arch/lm32/ram.ld b/arch/lm32/ram.ld
index e90c0af..a0a4fb8 100644
--- a/arch/lm32/ram.ld
+++ b/arch/lm32/ram.ld
@@ -31,7 +31,7 @@ GROUP(-lgcc -lc)
 
 MEMORY
 {
-    ram : ORIGIN = 0x00000000, LENGTH = 0x14000
+    ram : ORIGIN = 0x00000000, LENGTH = 0x16000
 }
 
 SECTIONS
diff --git a/boards/arria/board.h b/boards/arria/board.h
index d872ab6..f8debb4 100644
--- a/boards/arria/board.h
+++ b/boards/arria/board.h
@@ -16,7 +16,7 @@
 #define UART_BAUDRATE 115200ULL
 
 /* Maximum number of simultaneously created sockets */
-#define NET_MAX_SOCKETS 3
+#define NET_MAX_SOCKETS 4
 
 /* Socket buffer size, determines the max. RX packet size */
 #define NET_SKBUF_SIZE 512
diff --git a/boards/spec/board.h b/boards/spec/board.h
index 87cc6cb..f8debb4 100644
--- a/boards/spec/board.h
+++ b/boards/spec/board.h
@@ -16,10 +16,10 @@
 #define UART_BAUDRATE 115200ULL
 
 /* Maximum number of simultaneously created sockets */
-#define NET_MAX_SOCKETS 3
+#define NET_MAX_SOCKETS 4
 
 /* Socket buffer size, determines the max. RX packet size */
-#define NET_SKBUF_SIZE 256
+#define NET_SKBUF_SIZE 512
 
 /* Number of auxillary clock channels - usually equal to the number of FMCs */
 #define NUM_AUX_CLOCKS 1
-- 
GitLab