1 /* Copyright 2013-2014 IBM Corp.
2  *
3  * Licensed under the Apache License, Version 2.0 (the "License");
4  * you may not use this file except in compliance with the License.
5  * You may obtain a copy of the License at
6  *
7  * 	http://www.apache.org/licenses/LICENSE-2.0
8  *
9  * Unless required by applicable law or agreed to in writing, software
10  * distributed under the License is distributed on an "AS IS" BASIS,
11  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
12  * implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16 
17 #include <config.h>
18 
19 #define BITS_PER_LONG (sizeof(long) * 8)
20 
21 #include "dummy-cpu.h"
22 
23 #include <stdlib.h>
24 
__malloc(size_t size,const char * location)25 static void *__malloc(size_t size, const char *location __attribute__((unused)))
26 {
27 	return malloc(size);
28 }
29 
__realloc(void * ptr,size_t size,const char * location)30 static void *__realloc(void *ptr, size_t size, const char *location __attribute__((unused)))
31 {
32 	return realloc(ptr, size);
33 }
34 
__zalloc(size_t size,const char * location)35 static void *__zalloc(size_t size, const char *location __attribute__((unused)))
36 {
37 	return calloc(size, 1);
38 }
39 
__free(void * p,const char * location)40 static inline void __free(void *p, const char *location __attribute__((unused)))
41 {
42 	return free(p);
43 }
44 
45 #include <skiboot.h>
46 
47 /* We need mem_region to accept __location__ */
48 #define is_rodata(p) true
49 #include "../mem_region.c"
50 
51 /* But we need device tree to make copies of names. */
52 #undef is_rodata
53 #define is_rodata(p) false
54 
55 #include "../device.c"
56 #include <assert.h>
57 #include <stdio.h>
58 
59 enum proc_chip_quirks proc_chip_quirks;
60 
lock_caller(struct lock * l,const char * caller)61 void lock_caller(struct lock *l, const char *caller)
62 {
63 	(void)caller;
64 	l->lock_val++;
65 }
66 
unlock(struct lock * l)67 void unlock(struct lock *l)
68 {
69 	l->lock_val--;
70 }
71 
lock_held_by_me(struct lock * l)72 bool lock_held_by_me(struct lock *l)
73 {
74 	return l->lock_val;
75 }
76 
77 #define TEST_HEAP_ORDER 12
78 #define TEST_HEAP_SIZE (1ULL << TEST_HEAP_ORDER)
79 
add_mem_node(uint64_t start,uint64_t len)80 static void add_mem_node(uint64_t start, uint64_t len)
81 {
82 	struct dt_node *mem;
83 	u64 reg[2];
84 	char *name;
85 
86 	name = (char*)malloc(sizeof("memory@") + STR_MAX_CHARS(reg[0]));
87 	assert(name);
88 
89 	/* reg contains start and length */
90 	reg[0] = cpu_to_be64(start);
91 	reg[1] = cpu_to_be64(len);
92 
93 	sprintf(name, "memory@%llx", (long long)start);
94 
95 	mem = dt_new(dt_root, name);
96 	dt_add_property_string(mem, "device_type", "memory");
97 	dt_add_property(mem, "reg", reg, sizeof(reg));
98 	free(name);
99 }
100 
add_chip_dev_associativity(struct dt_node * dev)101 void add_chip_dev_associativity(struct dt_node *dev __attribute__((unused)))
102 {
103 }
104 
main(void)105 int main(void)
106 {
107 	uint64_t i;
108 	struct mem_region *r;
109 	const char *last;
110 
111 	/* Use malloc for the heap, so valgrind can find issues. */
112 	skiboot_heap.start = 0;
113 	skiboot_heap.len = TEST_HEAP_SIZE;
114 	skiboot_os_reserve.start = 0;
115 	skiboot_os_reserve.len = 0;
116 
117 	dt_root = dt_new_root("");
118 	dt_add_property_cells(dt_root, "#address-cells", 2);
119 	dt_add_property_cells(dt_root, "#size-cells", 2);
120 
121 	add_mem_node(0, 0x100000000ULL);
122 	add_mem_node(0x100000000ULL, 0x100000000ULL);
123 
124 	mem_region_init();
125 
126 	mem_region_release_unused();
127 
128 	assert(mem_check(&skiboot_heap));
129 
130 	/* Now we expect it to be split. */
131 	i = 0;
132 	list_for_each(&regions, r, list) {
133 		assert(mem_check(r));
134 		i++;
135 		if (r == &skiboot_os_reserve)
136 			continue;
137 		if (r == &skiboot_code_and_text)
138 			continue;
139 		if (r == &skiboot_heap)
140 			continue;
141 		if (r == &skiboot_after_heap)
142 			continue;
143 		if (r == &skiboot_cpu_stacks)
144 			continue;
145 
146 		/* the memory nodes should all be available to the OS now */
147 		assert(r->type == REGION_OS);
148 	}
149 	assert(i == 9);
150 
151 	last = NULL;
152 	list_for_each(&regions, r, list) {
153 		if (last != r->name &&
154 		    strncmp(r->name, NODE_REGION_PREFIX,
155 			    strlen(NODE_REGION_PREFIX)) == 0) {
156 			/* It's safe to cast away the const as
157 			 * this never happens at runtime,
158 			 * only in test and only for valgrind
159 			 */
160 			free((void*)r->name);
161 		}
162 		last = r->name;
163 	}
164 
165 	dt_free(dt_root);
166 	return 0;
167 }
168