blob: 8fddd2cdbff72920cb7a9c73154a7b95413fb306 [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>
Paul Burton3a551e22014-07-14 12:37:39 +010019#include <asm/maar.h>
Ralf Baechle9c1f1252006-04-03 10:17:21 +010020#include <asm/sections.h>
Steven J. Hillb431f092013-03-25 14:47:05 -050021#include <asm/fw/fw.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
Steven J. Hillb431f092013-03-25 14:47:05 -050023static fw_memblock_t mdesc[FW_MAX_MEMBLOCKS];
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ralf Baechle70342282013-01-22 12:59:30 +010025/* determined physical memory size, not overridden by command line args */
Ralf Baechlee1a4e462006-07-03 17:02:35 +010026unsigned long physical_memsize = 0L;
27
Markos Chandrase6ca4e52014-01-15 13:55:07 +000028fw_memblock_t * __init fw_getmdesc(int eva)
Linus Torvalds1da177e2005-04-16 15:20:36 -070029{
Markos Chandrasacd8bc12014-05-23 13:31:32 +010030 char *memsize_str, *ememsize_str = NULL, *ptr;
Ralf Baechlef8647b52014-06-04 22:53:02 +020031 unsigned long memsize = 0, ememsize = 0;
Dmitri Vorobiev7580c9c2009-10-13 23:43:24 +030032 static char cmdline[COMMAND_LINE_SIZE] __initdata;
Steven J. Hill49bffbd2013-03-25 15:05:40 -050033 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Ralf Baechlee1a4e462006-07-03 17:02:35 +010035 /* otherwise look in the environment */
Markos Chandrase6ca4e52014-01-15 13:55:07 +000036
Steven J. Hillb431f092013-03-25 14:47:05 -050037 memsize_str = fw_getenv("memsize");
Markos Chandras64615682014-08-18 15:04:11 +010038 if (memsize_str) {
39 tmp = kstrtoul(memsize_str, 0, &memsize);
40 if (tmp)
41 pr_warn("Failed to read the 'memsize' env variable.\n");
42 }
Markos Chandrase6ca4e52014-01-15 13:55:07 +000043 if (eva) {
44 /* Look for ememsize for EVA */
45 ememsize_str = fw_getenv("ememsize");
Markos Chandras64615682014-08-18 15:04:11 +010046 if (ememsize_str) {
47 tmp = kstrtoul(ememsize_str, 0, &ememsize);
48 if (tmp)
49 pr_warn("Failed to read the 'ememsize' env variable.\n");
50 }
Markos Chandrase6ca4e52014-01-15 13:55:07 +000051 }
52 if (!memsize && !ememsize) {
Steven J. Hill49bffbd2013-03-25 15:05:40 -050053 pr_warn("memsize not set in YAMON, set to default (32Mb)\n");
Ralf Baechlee1a4e462006-07-03 17:02:35 +010054 physical_memsize = 0x02000000;
55 } else {
Markos Chandrase6ca4e52014-01-15 13:55:07 +000056 /* If ememsize is set, then set physical_memsize to that */
57 physical_memsize = ememsize ? : memsize;
Ralf Baechlee1a4e462006-07-03 17:02:35 +010058 }
59
60#ifdef CONFIG_CPU_BIG_ENDIAN
61 /* SOC-it swaps, or perhaps doesn't swap, when DMA'ing the last
62 word of physical memory */
63 physical_memsize -= PAGE_SIZE;
64#endif
65
66 /* Check the command line for a memsize directive that overrides
67 the physical/default amount */
Ralf Baechlee01402b2005-07-14 15:57:16 +000068 strcpy(cmdline, arcs_cmdline);
69 ptr = strstr(cmdline, "memsize=");
70 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' '))
71 ptr = strstr(ptr, " memsize=");
Markos Chandrase6ca4e52014-01-15 13:55:07 +000072 /* And now look for ememsize */
73 if (eva) {
74 ptr = strstr(cmdline, "ememsize=");
75 if (ptr && (ptr != cmdline) && (*(ptr - 1) != ' '))
76 ptr = strstr(ptr, " ememsize=");
77 }
Ralf Baechlee01402b2005-07-14 15:57:16 +000078
Ralf Baechlee1a4e462006-07-03 17:02:35 +010079 if (ptr)
Markos Chandrase6ca4e52014-01-15 13:55:07 +000080 memsize = memparse(ptr + 8 + (eva ? 1 : 0), &ptr);
Ralf Baechlee1a4e462006-07-03 17:02:35 +010081 else
82 memsize = physical_memsize;
Elizabeth Oldham73499682006-06-06 10:57:09 +010083
Markos Chandrase6ca4e52014-01-15 13:55:07 +000084 /* Last 64K for HIGHMEM arithmetics */
85 if (memsize > 0x7fff0000)
86 memsize = 0x7fff0000;
87
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 memset(mdesc, 0, sizeof(mdesc));
89
Steven J. Hillb431f092013-03-25 14:47:05 -050090 mdesc[0].type = fw_dontuse;
Markos Chandras3bdd8e62014-01-15 14:13:05 +000091 mdesc[0].base = PHYS_OFFSET;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 mdesc[0].size = 0x00001000;
93
Steven J. Hillb431f092013-03-25 14:47:05 -050094 mdesc[1].type = fw_code;
Markos Chandras3bdd8e62014-01-15 14:13:05 +000095 mdesc[1].base = mdesc[0].base + 0x00001000UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 mdesc[1].size = 0x000ef000;
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 /*
99 * The area 0x000f0000-0x000fffff is allocated for BIOS memory by the
100 * south bridge and PCI access always forwarded to the ISA Bus and
101 * BIOSCS# is always generated.
102 * This mean that this area can't be used as DMA memory for PCI
103 * devices.
104 */
Steven J. Hillb431f092013-03-25 14:47:05 -0500105 mdesc[2].type = fw_dontuse;
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000106 mdesc[2].base = mdesc[0].base + 0x000f0000UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 mdesc[2].size = 0x00010000;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Steven J. Hillb431f092013-03-25 14:47:05 -0500109 mdesc[3].type = fw_dontuse;
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000110 mdesc[3].base = mdesc[0].base + 0x00100000UL;
Steven J. Hill49bffbd2013-03-25 15:05:40 -0500111 mdesc[3].size = CPHYSADDR(PFN_ALIGN((unsigned long)&_end)) -
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000112 0x00100000UL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Steven J. Hillb431f092013-03-25 14:47:05 -0500114 mdesc[4].type = fw_free;
Markos Chandras3bdd8e62014-01-15 14:13:05 +0000115 mdesc[4].base = mdesc[0].base + CPHYSADDR(PFN_ALIGN(&_end));
116 mdesc[4].size = memsize - CPHYSADDR(mdesc[4].base);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118 return &mdesc[0];
119}
120
Markos Chandrasd1965c02014-01-15 14:07:57 +0000121static void free_init_pages_eva_malta(void *begin, void *end)
122{
123 free_init_pages("unused kernel", __pa_symbol((unsigned long *)begin),
124 __pa_symbol((unsigned long *)end));
125}
126
Steven J. Hillb431f092013-03-25 14:47:05 -0500127static int __init fw_memtype_classify(unsigned int type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128{
129 switch (type) {
Steven J. Hillb431f092013-03-25 14:47:05 -0500130 case fw_free:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return BOOT_MEM_RAM;
Steven J. Hillb431f092013-03-25 14:47:05 -0500132 case fw_code:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133 return BOOT_MEM_ROM_DATA;
134 default:
135 return BOOT_MEM_RESERVED;
136 }
137}
138
Steven J. Hillb431f092013-03-25 14:47:05 -0500139void __init fw_meminit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140{
Steven J. Hillb431f092013-03-25 14:47:05 -0500141 fw_memblock_t *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Markos Chandrase6ca4e52014-01-15 13:55:07 +0000143 p = fw_getmdesc(config_enabled(CONFIG_EVA));
Markos Chandrasd1965c02014-01-15 14:07:57 +0000144 free_init_pages_eva = (config_enabled(CONFIG_EVA) ?
145 free_init_pages_eva_malta : NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
147 while (p->size) {
148 long type;
149 unsigned long base, size;
150
Steven J. Hillb431f092013-03-25 14:47:05 -0500151 type = fw_memtype_classify(p->type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 base = p->base;
153 size = p->size;
154
155 add_memory_region(base, size, type);
Ralf Baechle70342282013-01-22 12:59:30 +0100156 p++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 }
158}
159
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900160void __init prom_free_prom_memory(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 unsigned long addr;
163 int i;
164
165 for (i = 0; i < boot_mem_map.nr_map; i++) {
166 if (boot_mem_map.map[i].type != BOOT_MEM_ROM_DATA)
167 continue;
168
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900169 addr = boot_mem_map.map[i].addr;
Steven J. Hill49bffbd2013-03-25 15:05:40 -0500170 free_init_pages("YAMON memory",
Atsushi Nemotoc44e8d52006-12-30 00:43:59 +0900171 addr, addr + boot_mem_map.map[i].size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173}
Paul Burton3a551e22014-07-14 12:37:39 +0100174
175unsigned platform_maar_init(unsigned num_pairs)
176{
177 phys_addr_t mem_end = (physical_memsize & ~0xffffull) - 1;
178 struct maar_config cfg[] = {
179 /* DRAM preceding I/O */
180 { 0x00000000, 0x0fffffff, MIPS_MAAR_S },
181
182 /* DRAM following I/O */
183 { 0x20000000, mem_end, MIPS_MAAR_S },
184
185 /* DRAM alias in upper half of physical */
186 { 0x80000000, 0x80000000 + mem_end, MIPS_MAAR_S },
187 };
188 unsigned i, num_cfg = ARRAY_SIZE(cfg);
189
190 /* If DRAM fits before I/O, drop the region following it */
191 if (physical_memsize <= 0x10000000) {
192 num_cfg--;
193 for (i = 1; i < num_cfg; i++)
194 cfg[i] = cfg[i + 1];
195 }
196
197 return maar_config(cfg, num_cfg, num_pairs);
198}