blob: dadeb83791828249e3af6d62ad55f1e9a2756a8a [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Steven J. Hill49bffbd2013-03-25 15:05:40 -05002 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * PROM library functions for acquiring/using memory descriptors given to
7 * us from the YAMON.
Steven J. Hill49bffbd2013-03-25 15:05:40 -05008 *
9 * Copyright (C) 1999,2000,2012 MIPS Technologies, Inc.
10 * All rights reserved.
11 * Authors: Carsten Langgaard <carstenl@mips.com>
12 * Steven J. Hill <sjhill@mips.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/bootmem.h>
Ralf Baechlee01402b2005-07-14 15:57:16 +000016#include <linux/string.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017
18#include <asm/bootinfo.h>
James Hogan296b7c62015-02-02 11:45:10 +000019#include <asm/cdmm.h>
Paul Burton3a551e22014-07-14 12:37:39 +010020#include <asm/maar.h>
Ralf Baechle9c1f1252006-04-03 10:17:21 +010021#include <asm/sections.h>
Steven J. Hillb431f092013-03-25 14:47:05 -050022#include <asm/fw/fw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
Steven J. Hillb431f092013-03-25 14:47:05 -050024static fw_memblock_t mdesc[FW_MAX_MEMBLOCKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
Ralf Baechle70342282013-01-22 12:59:30 +010026/* determined physical memory size, not overridden by command line args */
Ralf Baechlee1a4e462006-07-03 17:02:35 +010027unsigned long physical_memsize = 0L;
28
Markos Chandrase6ca4e52014-01-15 13:55:07 +000029fw_memblock_t * __init fw_getmdesc(int eva)
Linus Torvalds1da177e2005-04-16 15:20:36 -070030{
Markos Chandrasacd8bc12014-05-23 13:31:32 +010031 char *memsize_str, *ememsize_str = NULL, *ptr;
Ralf Baechlef8647b52014-06-04 22:53:02 +020032 unsigned long memsize = 0, ememsize = 0;
Dmitri Vorobiev7580c9c2009-10-13 23:43:24 +030033 static char cmdline[COMMAND_LINE_SIZE] __initdata;
Steven J. Hill49bffbd2013-03-25 15:05:40 -050034 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
Ralf Baechlee1a4e462006-07-03 17:02:35 +010036 /* otherwise look in the environment */
Markos Chandrase6ca4e52014-01-15 13:55:07 +000037
Steven J. Hillb431f092013-03-25 14:47:05 -050038 memsize_str = fw_getenv("memsize");
Markos Chandras64615682014-08-18 15:04:11 +010039 if (memsize_str) {
40 tmp = kstrtoul(memsize_str, 0, &memsize);
41 if (tmp)
42 pr_warn("Failed to read the 'memsize' env variable.\n");
43 }
Markos Chandrase6ca4e52014-01-15 13:55:07 +000044 if (eva) {
45 /* Look for ememsize for EVA */
46 ememsize_str = fw_getenv("ememsize");
Markos Chandras64615682014-08-18 15:04:11 +010047 if (ememsize_str) {
48 tmp = kstrtoul(ememsize_str, 0, &ememsize);
49 if (tmp)
50 pr_warn("Failed to read the 'ememsize' env variable.\n");
51 }
Markos Chandrase6ca4e52014-01-15 13:55:07 +000052 }
53 if (!memsize && !ememsize) {
Steven J. Hill49bffbd2013-03-25 15:05:40 -050054 pr_warn("memsize not set in YAMON, set to default (32Mb)\n");
Ralf Baechlee1a4e462006-07-03 17:02:35 +010055 physical_memsize = 0x02000000;
56 } else {
Markos Chandrasf7f8aea2015-02-27 07:51:32 +000057 if (memsize > (256 << 20)) { /* memsize should be capped to 256M */
58 pr_warn("Unsupported memsize value (0x%lx) detected! "
59 "Using 0x10000000 (256M) instead\n",
60 memsize);
61 memsize = 256 << 20;
62 }
Markos Chandrase6ca4e52014-01-15 13:55:07 +000063 /* If ememsize is set, then set physical_memsize to that */
64 physical_memsize = ememsize ? : memsize;
Ralf Baechlee1a4e462006-07-03 17:02:35 +010065 }
66
67#ifdef CONFIG_CPU_BIG_ENDIAN
68 /* SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last
69 word of physical memory */
70 physical_memsize -= PAGE_SIZE;
71#endif
72
73 /* Check the command line for a memsize directive that overrides
74 the physical/default amount */
Ralf Baechlee01402b2005-07-14 15:57:16 +000075 strcpy(cmdline, arcs_cmdline);
76 ptr = strstr(cmdline, "memsize=");
77 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' '))
78 ptr = strstr(ptr, " memsize=");
Markos Chandrase6ca4e52014-01-15 13:55:07 +000079 /* And now look for ememsize */
80 if (eva) {
81 ptr = strstr(cmdline, "ememsize=");
82 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' '))
83 ptr = strstr(ptr, " ememsize=");
84 }
Ralf Baechlee01402b2005-07-14 15:57:16 +000085
Ralf Baechlee1a4e462006-07-03 17:02:35 +010086 if (ptr)
Markos Chandrase6ca4e52014-01-15 13:55:07 +000087 memsize = memparse(ptr + 8 + (eva ? 1 : 0), &ptr);
Ralf Baechlee1a4e462006-07-03 17:02:35 +010088 else
89 memsize = physical_memsize;
Elizabeth Oldham73499682006-06-06 10:57:09 +010090
Markos Chandrase6ca4e52014-01-15 13:55:07 +000091 /* Last 64K for HIGHMEM arithmetics */
92 if (memsize > 0x7fff0000)
93 memsize = 0x7fff0000;
94
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 memset(mdesc, 0, sizeof(mdesc));
96
Steven J. Hillb431f092013-03-25 14:47:05 -050097 mdesc[0].type = fw_dontuse;
Markos Chandras3bdd8e62014-01-15 14:13:05 +000098 mdesc[0].base = PHYS_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 mdesc[0].size = 0x00001000;
100
Steven J. Hillb431f092013-03-25 14:47:05 -0500101 mdesc[1].type = fw_code;
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000102 mdesc[1].base = mdesc[0].base + 0x00001000UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 mdesc[1].size = 0x000ef000;
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 /*
106 * The area 0x000f0000-0x000fffff is allocated for BIOS memory by the
107 * south bridge and PCI access always forwarded to the ISA Bus and
108 * BIOSCS# is always generated.
109 * This mean that this area can't be used as DMA memory for PCI
110 * devices.
111 */
Steven J. Hillb431f092013-03-25 14:47:05 -0500112 mdesc[2].type = fw_dontuse;
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000113 mdesc[2].base = mdesc[0].base + 0x000f0000UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 mdesc[2].size = 0x00010000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Steven J. Hillb431f092013-03-25 14:47:05 -0500116 mdesc[3].type = fw_dontuse;
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000117 mdesc[3].base = mdesc[0].base + 0x00100000UL;
Steven J. Hill49bffbd2013-03-25 15:05:40 -0500118 mdesc[3].size = CPHYSADDR(PFN_ALIGN((unsigned long)&_end)) -
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000119 0x00100000UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
Steven J. Hillb431f092013-03-25 14:47:05 -0500121 mdesc[4].type = fw_free;
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000122 mdesc[4].base = mdesc[0].base + CPHYSADDR(PFN_ALIGN(&_end));
123 mdesc[4].size = memsize - CPHYSADDR(mdesc[4].base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
125 return &mdesc[0];
126}
127
Markos Chandrasd1965c02014-01-15 14:07:57 +0000128static void free_init_pages_eva_malta(void *begin, void *end)
129{
130 free_init_pages("unused kernel", __pa_symbol((unsigned long *)begin),
131 __pa_symbol((unsigned long *)end));
132}
133
Steven J. Hillb431f092013-03-25 14:47:05 -0500134static int __init fw_memtype_classify(unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135{
136 switch (type) {
Steven J. Hillb431f092013-03-25 14:47:05 -0500137 case fw_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return BOOT_MEM_RAM;
Steven J. Hillb431f092013-03-25 14:47:05 -0500139 case fw_code:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return BOOT_MEM_ROM_DATA;
141 default:
142 return BOOT_MEM_RESERVED;
143 }
144}
145
Steven J. Hillb431f092013-03-25 14:47:05 -0500146void __init fw_meminit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147{
Steven J. Hillb431f092013-03-25 14:47:05 -0500148 fw_memblock_t *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149
Markos Chandrase6ca4e52014-01-15 13:55:07 +0000150 p = fw_getmdesc(config_enabled(CONFIG_EVA));
Markos Chandrasd1965c02014-01-15 14:07:57 +0000151 free_init_pages_eva = (config_enabled(CONFIG_EVA) ?
152 free_init_pages_eva_malta : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153
154 while (p->size) {
155 long type;
156 unsigned long base, size;
157
Steven J. Hillb431f092013-03-25 14:47:05 -0500158 type = fw_memtype_classify(p->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 base = p->base;
160 size = p->size;
161
162 add_memory_region(base, size, type);
Ralf Baechle70342282013-01-22 12:59:30 +0100163 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165}
166
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900167void __init prom_free_prom_memory(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169 unsigned long addr;
170 int i;
171
172 for (i = 0; i < boot_mem_map.nr_map; i++) {
173 if (boot_mem_map.map[i].type != BOOT_MEM_ROM_DATA)
174 continue;
175
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900176 addr = boot_mem_map.map[i].addr;
Steven J. Hill49bffbd2013-03-25 15:05:40 -0500177 free_init_pages("YAMON memory",
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900178 addr, addr + boot_mem_map.map[i].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180}
Paul Burton3a551e22014-07-14 12:37:39 +0100181
James Hogan296b7c62015-02-02 11:45:10 +0000182phys_addr_t mips_cdmm_phys_base(void)
183{
184 /* This address is "typically unused" */
185 return 0x1fc10000;
186}