Commit e1a4e469 authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] Malta: Fix build of certain configs.

parent 6fe725c0
...@@ -47,43 +47,45 @@ static char *mtypes[3] = { ...@@ -47,43 +47,45 @@ static char *mtypes[3] = {
}; };
#endif #endif
/* determined physical memory size, not overridden by command line args */
unsigned long physical_memsize = 0L;
struct prom_pmemblock * __init prom_getmdesc(void) struct prom_pmemblock * __init prom_getmdesc(void)
{ {
char *memsize_str; char *memsize_str;
unsigned int memsize; unsigned int memsize;
char cmdline[CL_SIZE], *ptr; char cmdline[CL_SIZE], *ptr;
/* Check the command line first for a memsize directive */
strcpy(cmdline, arcs_cmdline);
ptr = strstr(cmdline, "memsize=");
if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' '))
ptr = strstr(ptr, " memsize=");
if (ptr) {
memsize = memparse(ptr + 8, &ptr);
}
else {
/* otherwise look in the environment */ /* otherwise look in the environment */
memsize_str = prom_getenv("memsize"); memsize_str = prom_getenv("memsize");
if (!memsize_str) { if (!memsize_str) {
prom_printf("memsize not set in boot prom, set to default (32Mb)\n"); prom_printf("memsize not set in boot prom, set to default (32Mb)\n");
memsize = 0x02000000; physical_memsize = 0x02000000;
} else { } else {
#ifdef DEBUG #ifdef DEBUG
prom_printf("prom_memsize = %s\n", memsize_str); prom_printf("prom_memsize = %s\n", memsize_str);
#endif #endif
memsize = simple_strtol(memsize_str, NULL, 0); physical_memsize = simple_strtol(memsize_str, NULL, 0);
}
} }
#ifdef CONFIG_CPU_BIG_ENDIAN #ifdef CONFIG_CPU_BIG_ENDIAN
/* /* SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last
* SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last word of physical memory */
* word of physical memory physical_memsize -= PAGE_SIZE;
*/
memsize -= PAGE_SIZE;
#endif #endif
/* Check the command line for a memsize directive that overrides
the physical/default amount */
strcpy(cmdline, arcs_cmdline);
ptr = strstr(cmdline, "memsize=");
if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' '))
ptr = strstr(ptr, " memsize=");
if (ptr)
memsize = memparse(ptr + 8, &ptr);
else
memsize = physical_memsize;
memset(mdesc, 0, sizeof(mdesc)); memset(mdesc, 0, sizeof(mdesc));
mdesc[0].type = yamon_dontuse; mdesc[0].type = yamon_dontuse;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment