aboutsummaryrefslogtreecommitdiff
path: root/pc-bios/proll.patch
blob: b0860e26f47c1172ea35aa5617378ca407649eb2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
diff -ru proll_18.orig/mrcoffee/main.c proll_18/mrcoffee/main.c
--- proll_18.orig/mrcoffee/main.c	2002-09-13 16:16:59.000000000 +0200
+++ proll_18/mrcoffee/main.c	2004-09-26 11:52:23.000000000 +0200
@@ -101,6 +101,7 @@
 	le_probe();
 	init_net();
 
+#ifdef ORIG
 #if 0 /* RARP */
 	if (rarp() != 0) fatal();
 	/* printrarp(); */
@@ -117,13 +118,20 @@
 	xtoa(myipaddr, fname, 8);
 	if (load(boot_rec.bp_siaddr, fname) != 0) fatal();
 #endif
+#endif
 
 	romvec = init_openprom(bb.nbanks, bb.bankv, hiphybas);
 
 	printk("Memory used: virt 0x%x:0x%x[%dK] iomap 0x%x:0x%x\n",
 	    PROLBASE, (int)cmem.curp, ((unsigned) cmem.curp - PROLBASE)/1024,
 	    (int)cio.start, (int)cio.curp);
+#ifdef ORIG
 	set_timeout(5);  while (!chk_timeout()) { }  /* P3: let me read */
+#else
+	printk("loading kernel:");
+	i = ld_bypass(0x20000000);
+	printk(" done, size %d\n", i);
+#endif
 
 	{
 		void (*entry)(void *, int) = (void (*)(void*, int)) LOADBASE;
diff -ru proll_18.orig/mrcoffee/openprom.c proll_18/mrcoffee/openprom.c
--- proll_18.orig/mrcoffee/openprom.c	2002-09-13 16:17:03.000000000 +0200
+++ proll_18/mrcoffee/openprom.c	2004-09-21 21:27:16.000000000 +0200
@@ -144,10 +144,14 @@
 };
 
 static int cpu_nctx = NCTX_SWIFT;
+static int cpu_cache_line_size = 0x20;
+static int cpu_cache_nlines = 0x200;
 static struct property propv_cpu[] = {
 	{"name",	"STP1012PGA", sizeof("STP1012PGA") },
 	{"device_type",	"cpu", 4 },
 	{"mmu-nctx",	(char*)&cpu_nctx, sizeof(int)},
+	{"cache-line-size",	(char*)&cpu_cache_line_size, sizeof(int)},
+	{"cache-nlines",	(char*)&cpu_cache_nlines, sizeof(int)},
 	{NULL, NULL, -1}
 };