From: Manish Lachwani <mlachwani@prometheus.mvista.com>
To: linux-mips@linux-mips.org
Cc: ralf@linux-mips.org
Subject: [PATCH] Ocelot-3 memory configuration patch
Date: Mon, 6 Dec 2004 16:35:53 -0800 [thread overview]
Message-ID: <20041207003553.GA22456@prometheus.mvista.com> (raw)
[-- Attachment #1: Type: text/plain, Size: 171 bytes --]
Hi Ralf,
Based on your suggestion, I have now modified the Ocelot-3 code
to probe for memory that has been configured by PMON. Please review ...
Thanks
Manish Lachwani
[-- Attachment #2: common_mips_ocelot3_memory.patch --]
[-- Type: text/plain, Size: 1802 bytes --]
Index: linux/arch/mips/momentum/ocelot_3/prom.c
===================================================================
--- linux.orig/arch/mips/momentum/ocelot_3/prom.c
+++ linux/arch/mips/momentum/ocelot_3/prom.c
@@ -34,6 +34,7 @@
struct callvectors* debug_vectors;
extern unsigned long marvell_base;
extern unsigned long cpu_clock;
+extern unsigned long memsize;
#ifdef CONFIG_MV643XX_ETH
extern unsigned char prom_mac_addr_base[6];
@@ -194,6 +195,11 @@
NULL, 10);
printk("cpu_clock set to %d\n", cpu_clock);
}
+ if (strncmp("memsize", ptr, strlen("memsize")) == 0) {
+ memsize = simple_strtol(ptr + strlen("memsize="),
+ NULL, 10);
+ }
+
i++;
}
printk("arcs_cmdline: %s\n", arcs_cmdline);
@@ -222,6 +228,10 @@
cpu_clock = simple_strtol(*env + strlen("cpuclock="),
NULL, 10);
}
+ if (strncmp("memsize", *env, strlen("memsize")) == 0) {
+ memsize = simple_strtol(*env + strlen("memsize="),
+ NULL, 10);
+ }
env++;
}
#endif /* CONFIG_MIPS64 */
Index: linux/arch/mips/momentum/ocelot_3/setup.c
===================================================================
--- linux.orig/arch/mips/momentum/ocelot_3/setup.c
+++ linux/arch/mips/momentum/ocelot_3/setup.c
@@ -77,6 +77,9 @@
/* CPU clock */
unsigned long cpu_clock;
+/* Memory size */
+unsigned long memsize;
+
/* RTC/NVRAM */
unsigned char* rtc_base = (unsigned char*)(signed)0xfc800000;
@@ -390,8 +393,8 @@
printk(" - Boot flash write jumper: %s\n", (tmpword&0x40)?"installed":"absent");
printk(" - L3 cache size: %d MB\n", (1<<((tmpword&12) >> 2))&~1);
- /* Support for 256 MB memory */
- add_memory_region(0x0, 0x10000000, BOOT_MEM_RAM);
+ /* Support for memory configured by PMON*/
+ add_memory_region(0x0, memsize * 1024 * 1024, BOOT_MEM_RAM);
return 0;
}
next reply other threads:[~2004-12-07 0:36 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-12-07 0:35 Manish Lachwani [this message]
2004-12-07 10:06 ` [PATCH] Ocelot-3 memory configuration patch Michael Stickel
2004-12-07 16:55 ` Manish Lachwani
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20041207003553.GA22456@prometheus.mvista.com \
--to=mlachwani@prometheus.mvista.com \
--cc=linux-mips@linux-mips.org \
--cc=ralf@linux-mips.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox