blob: 3f79940a2939a3851e548e0b2f99b8bfae7a7886 [file] [log] [blame]
David S. Miller5cbc3072007-05-25 15:49:59 -07001/* mdesc.c: Sun4V machine description handling.
2 *
3 * Copyright (C) 2007 David S. Miller <davem@davemloft.net>
4 */
5#include <linux/kernel.h>
6#include <linux/types.h>
7#include <linux/bootmem.h>
8#include <linux/log2.h>
David S. Miller43fdf272007-07-12 13:47:50 -07009#include <linux/list.h>
10#include <linux/slab.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070011
12#include <asm/hypervisor.h>
13#include <asm/mdesc.h>
14#include <asm/prom.h>
15#include <asm/oplib.h>
16#include <asm/smp.h>
17
18/* Unlike the OBP device tree, the machine description is a full-on
19 * DAG. An arbitrary number of ARCs are possible from one
20 * node to other nodes and thus we can't use the OBP device_node
21 * data structure to represent these nodes inside of the kernel.
22 *
23 * Actually, it isn't even a DAG, because there are back pointers
24 * which create cycles in the graph.
25 *
26 * mdesc_hdr and mdesc_elem describe the layout of the data structure
27 * we get from the Hypervisor.
28 */
29struct mdesc_hdr {
30 u32 version; /* Transport version */
31 u32 node_sz; /* node block size */
32 u32 name_sz; /* name block size */
33 u32 data_sz; /* data block size */
David S. Miller43fdf272007-07-12 13:47:50 -070034} __attribute__((aligned(16)));
David S. Miller5cbc3072007-05-25 15:49:59 -070035
36struct mdesc_elem {
37 u8 tag;
38#define MD_LIST_END 0x00
39#define MD_NODE 0x4e
40#define MD_NODE_END 0x45
41#define MD_NOOP 0x20
42#define MD_PROP_ARC 0x61
43#define MD_PROP_VAL 0x76
44#define MD_PROP_STR 0x73
45#define MD_PROP_DATA 0x64
46 u8 name_len;
47 u16 resv;
48 u32 name_offset;
49 union {
50 struct {
51 u32 data_len;
52 u32 data_offset;
53 } data;
54 u64 val;
55 } d;
56};
57
David S. Miller43fdf272007-07-12 13:47:50 -070058struct mdesc_mem_ops {
59 struct mdesc_handle *(*alloc)(unsigned int mdesc_size);
60 void (*free)(struct mdesc_handle *handle);
61};
David S. Miller5cbc3072007-05-25 15:49:59 -070062
David S. Miller43fdf272007-07-12 13:47:50 -070063struct mdesc_handle {
64 struct list_head list;
65 struct mdesc_mem_ops *mops;
66 void *self_base;
67 atomic_t refcnt;
68 unsigned int handle_size;
69 struct mdesc_hdr mdesc;
70};
David S. Miller5cbc3072007-05-25 15:49:59 -070071
David S. Miller43fdf272007-07-12 13:47:50 -070072static void mdesc_handle_init(struct mdesc_handle *hp,
73 unsigned int handle_size,
74 void *base)
David S. Miller5cbc3072007-05-25 15:49:59 -070075{
David S. Miller43fdf272007-07-12 13:47:50 -070076 BUG_ON(((unsigned long)&hp->mdesc) & (16UL - 1));
77
78 memset(hp, 0, handle_size);
79 INIT_LIST_HEAD(&hp->list);
80 hp->self_base = base;
81 atomic_set(&hp->refcnt, 1);
82 hp->handle_size = handle_size;
David S. Miller5cbc3072007-05-25 15:49:59 -070083}
84
David S. Miller43fdf272007-07-12 13:47:50 -070085static struct mdesc_handle *mdesc_bootmem_alloc(unsigned int mdesc_size)
David S. Miller5cbc3072007-05-25 15:49:59 -070086{
David S. Miller43fdf272007-07-12 13:47:50 -070087 struct mdesc_handle *hp;
88 unsigned int handle_size, alloc_size;
David S. Miller5cbc3072007-05-25 15:49:59 -070089
David S. Miller43fdf272007-07-12 13:47:50 -070090 handle_size = (sizeof(struct mdesc_handle) -
91 sizeof(struct mdesc_hdr) +
92 mdesc_size);
93 alloc_size = PAGE_ALIGN(handle_size);
David S. Miller5cbc3072007-05-25 15:49:59 -070094
David S. Miller43fdf272007-07-12 13:47:50 -070095 hp = __alloc_bootmem(alloc_size, PAGE_SIZE, 0UL);
96 if (hp)
97 mdesc_handle_init(hp, handle_size, hp);
98
99 return hp;
100}
101
102static void mdesc_bootmem_free(struct mdesc_handle *hp)
103{
104 unsigned int alloc_size, handle_size = hp->handle_size;
105 unsigned long start, end;
106
107 BUG_ON(atomic_read(&hp->refcnt) != 0);
108 BUG_ON(!list_empty(&hp->list));
109
110 alloc_size = PAGE_ALIGN(handle_size);
111
112 start = (unsigned long) hp;
113 end = start + alloc_size;
114
115 while (start < end) {
116 struct page *p;
117
118 p = virt_to_page(start);
119 ClearPageReserved(p);
120 __free_page(p);
121 start += PAGE_SIZE;
David S. Miller5cbc3072007-05-25 15:49:59 -0700122 }
123}
124
David S. Miller43fdf272007-07-12 13:47:50 -0700125static struct mdesc_mem_ops bootmem_mdesc_memops = {
126 .alloc = mdesc_bootmem_alloc,
127 .free = mdesc_bootmem_free,
128};
129
130static struct mdesc_handle *mdesc_kmalloc(unsigned int mdesc_size)
David S. Miller5cbc3072007-05-25 15:49:59 -0700131{
David S. Miller43fdf272007-07-12 13:47:50 -0700132 unsigned int handle_size;
133 void *base;
David S. Miller5cbc3072007-05-25 15:49:59 -0700134
David S. Miller43fdf272007-07-12 13:47:50 -0700135 handle_size = (sizeof(struct mdesc_handle) -
136 sizeof(struct mdesc_hdr) +
137 mdesc_size);
David S. Miller5cbc3072007-05-25 15:49:59 -0700138
David S. Miller43fdf272007-07-12 13:47:50 -0700139 base = kmalloc(handle_size + 15, GFP_KERNEL);
140 if (base) {
141 struct mdesc_handle *hp;
142 unsigned long addr;
143
144 addr = (unsigned long)base;
145 addr = (addr + 15UL) & ~15UL;
146 hp = (struct mdesc_handle *) addr;
147
148 mdesc_handle_init(hp, handle_size, base);
149 return hp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700150 }
David S. Miller43fdf272007-07-12 13:47:50 -0700151
David S. Miller5cbc3072007-05-25 15:49:59 -0700152 return NULL;
153}
154
David S. Miller43fdf272007-07-12 13:47:50 -0700155static void mdesc_kfree(struct mdesc_handle *hp)
David S. Miller5cbc3072007-05-25 15:49:59 -0700156{
David S. Miller43fdf272007-07-12 13:47:50 -0700157 BUG_ON(atomic_read(&hp->refcnt) != 0);
158 BUG_ON(!list_empty(&hp->list));
David S. Miller5cbc3072007-05-25 15:49:59 -0700159
David S. Miller43fdf272007-07-12 13:47:50 -0700160 kfree(hp->self_base);
161}
162
163static struct mdesc_mem_ops kmalloc_mdesc_memops = {
164 .alloc = mdesc_kmalloc,
165 .free = mdesc_kfree,
166};
167
168static struct mdesc_handle *mdesc_alloc(unsigned int mdesc_size,
169 struct mdesc_mem_ops *mops)
170{
171 struct mdesc_handle *hp = mops->alloc(mdesc_size);
172
173 if (hp)
174 hp->mops = mops;
175
176 return hp;
177}
178
179static void mdesc_free(struct mdesc_handle *hp)
180{
181 hp->mops->free(hp);
182}
183
184static struct mdesc_handle *cur_mdesc;
185static LIST_HEAD(mdesc_zombie_list);
186static DEFINE_SPINLOCK(mdesc_lock);
187
188struct mdesc_handle *mdesc_grab(void)
189{
190 struct mdesc_handle *hp;
191 unsigned long flags;
192
193 spin_lock_irqsave(&mdesc_lock, flags);
194 hp = cur_mdesc;
195 if (hp)
196 atomic_inc(&hp->refcnt);
197 spin_unlock_irqrestore(&mdesc_lock, flags);
198
199 return hp;
200}
201EXPORT_SYMBOL(mdesc_grab);
202
203void mdesc_release(struct mdesc_handle *hp)
204{
205 unsigned long flags;
206
207 spin_lock_irqsave(&mdesc_lock, flags);
208 if (atomic_dec_and_test(&hp->refcnt)) {
209 list_del_init(&hp->list);
210 hp->mops->free(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700211 }
David S. Miller43fdf272007-07-12 13:47:50 -0700212 spin_unlock_irqrestore(&mdesc_lock, flags);
David S. Miller5cbc3072007-05-25 15:49:59 -0700213}
David S. Miller43fdf272007-07-12 13:47:50 -0700214EXPORT_SYMBOL(mdesc_release);
David S. Miller5cbc3072007-05-25 15:49:59 -0700215
David S. Miller43fdf272007-07-12 13:47:50 -0700216static void do_mdesc_update(struct work_struct *work)
David S. Miller5cbc3072007-05-25 15:49:59 -0700217{
David S. Miller43fdf272007-07-12 13:47:50 -0700218 unsigned long len, real_len, status;
219 struct mdesc_handle *hp, *orig_hp;
220 unsigned long flags;
David S. Miller5cbc3072007-05-25 15:49:59 -0700221
David S. Miller43fdf272007-07-12 13:47:50 -0700222 (void) sun4v_mach_desc(0UL, 0UL, &len);
David S. Miller5cbc3072007-05-25 15:49:59 -0700223
David S. Miller43fdf272007-07-12 13:47:50 -0700224 hp = mdesc_alloc(len, &kmalloc_mdesc_memops);
225 if (!hp) {
226 printk(KERN_ERR "MD: mdesc alloc fails\n");
227 return;
David S. Miller5cbc3072007-05-25 15:49:59 -0700228 }
229
David S. Miller43fdf272007-07-12 13:47:50 -0700230 status = sun4v_mach_desc(__pa(&hp->mdesc), len, &real_len);
231 if (status != HV_EOK || real_len > len) {
232 printk(KERN_ERR "MD: mdesc reread fails with %lu\n",
233 status);
234 atomic_dec(&hp->refcnt);
235 mdesc_free(hp);
236 return;
David S. Miller5cbc3072007-05-25 15:49:59 -0700237 }
David S. Miller43fdf272007-07-12 13:47:50 -0700238
239 spin_lock_irqsave(&mdesc_lock, flags);
240 orig_hp = cur_mdesc;
241 cur_mdesc = hp;
242
243 if (atomic_dec_and_test(&orig_hp->refcnt))
244 mdesc_free(orig_hp);
245 else
246 list_add(&orig_hp->list, &mdesc_zombie_list);
247 spin_unlock_irqrestore(&mdesc_lock, flags);
David S. Miller5cbc3072007-05-25 15:49:59 -0700248}
249
David S. Miller43fdf272007-07-12 13:47:50 -0700250static DECLARE_WORK(mdesc_update_work, do_mdesc_update);
251
252void mdesc_update(void)
David S. Miller5cbc3072007-05-25 15:49:59 -0700253{
David S. Miller43fdf272007-07-12 13:47:50 -0700254 schedule_work(&mdesc_update_work);
David S. Miller5cbc3072007-05-25 15:49:59 -0700255}
256
David S. Miller43fdf272007-07-12 13:47:50 -0700257static struct mdesc_elem *node_block(struct mdesc_hdr *mdesc)
David S. Miller5cbc3072007-05-25 15:49:59 -0700258{
259 return (struct mdesc_elem *) (mdesc + 1);
260}
261
David S. Miller43fdf272007-07-12 13:47:50 -0700262static void *name_block(struct mdesc_hdr *mdesc)
David S. Miller5cbc3072007-05-25 15:49:59 -0700263{
264 return ((void *) node_block(mdesc)) + mdesc->node_sz;
265}
266
David S. Miller43fdf272007-07-12 13:47:50 -0700267static void *data_block(struct mdesc_hdr *mdesc)
David S. Miller5cbc3072007-05-25 15:49:59 -0700268{
269 return ((void *) name_block(mdesc)) + mdesc->name_sz;
270}
271
David S. Miller43fdf272007-07-12 13:47:50 -0700272u64 mdesc_node_by_name(struct mdesc_handle *hp,
273 u64 from_node, const char *name)
David S. Miller5cbc3072007-05-25 15:49:59 -0700274{
David S. Miller43fdf272007-07-12 13:47:50 -0700275 struct mdesc_elem *ep = node_block(&hp->mdesc);
276 const char *names = name_block(&hp->mdesc);
277 u64 last_node = hp->mdesc.node_sz / 16;
278 u64 ret;
David S. Miller5cbc3072007-05-25 15:49:59 -0700279
David S. Miller43fdf272007-07-12 13:47:50 -0700280 if (from_node == MDESC_NODE_NULL)
281 from_node = 0;
David S. Miller5cbc3072007-05-25 15:49:59 -0700282
David S. Miller43fdf272007-07-12 13:47:50 -0700283 if (from_node >= last_node)
284 return MDESC_NODE_NULL;
David S. Miller5cbc3072007-05-25 15:49:59 -0700285
David S. Miller43fdf272007-07-12 13:47:50 -0700286 ret = ep[from_node].d.val;
287 while (ret < last_node) {
288 if (ep[ret].tag != MD_NODE)
289 return MDESC_NODE_NULL;
290 if (!strcmp(names + ep[ret].name_offset, name))
291 break;
292 ret = ep[ret].d.val;
293 }
294 if (ret >= last_node)
295 ret = MDESC_NODE_NULL;
296 return ret;
297}
298EXPORT_SYMBOL(mdesc_node_by_name);
David S. Miller5cbc3072007-05-25 15:49:59 -0700299
David S. Miller43fdf272007-07-12 13:47:50 -0700300const void *mdesc_get_property(struct mdesc_handle *hp, u64 node,
301 const char *name, int *lenp)
302{
303 const char *names = name_block(&hp->mdesc);
304 u64 last_node = hp->mdesc.node_sz / 16;
305 void *data = data_block(&hp->mdesc);
306 struct mdesc_elem *ep;
307
308 if (node == MDESC_NODE_NULL || node >= last_node)
309 return NULL;
310
311 ep = node_block(&hp->mdesc) + node;
312 ep++;
313 for (; ep->tag != MD_NODE_END; ep++) {
314 void *val = NULL;
315 int len = 0;
316
317 switch (ep->tag) {
318 case MD_PROP_VAL:
319 val = &ep->d.val;
320 len = 8;
David S. Miller5cbc3072007-05-25 15:49:59 -0700321 break;
322
David S. Miller43fdf272007-07-12 13:47:50 -0700323 case MD_PROP_STR:
324 case MD_PROP_DATA:
325 val = data + ep->d.data.data_offset;
326 len = ep->d.data.data_len;
327 break;
David S. Miller5cbc3072007-05-25 15:49:59 -0700328
David S. Miller43fdf272007-07-12 13:47:50 -0700329 default:
David S. Miller5cbc3072007-05-25 15:49:59 -0700330 break;
331 }
David S. Miller43fdf272007-07-12 13:47:50 -0700332 if (!val)
333 continue;
David S. Miller5cbc3072007-05-25 15:49:59 -0700334
David S. Miller43fdf272007-07-12 13:47:50 -0700335 if (!strcmp(names + ep->name_offset, name)) {
336 if (lenp)
337 *lenp = len;
338 return val;
David S. Miller5cbc3072007-05-25 15:49:59 -0700339 }
340 }
David S. Miller5cbc3072007-05-25 15:49:59 -0700341
David S. Miller43fdf272007-07-12 13:47:50 -0700342 return NULL;
343}
344EXPORT_SYMBOL(mdesc_get_property);
345
346u64 mdesc_next_arc(struct mdesc_handle *hp, u64 from, const char *arc_type)
David S. Miller5cbc3072007-05-25 15:49:59 -0700347{
David S. Miller43fdf272007-07-12 13:47:50 -0700348 struct mdesc_elem *ep, *base = node_block(&hp->mdesc);
349 const char *names = name_block(&hp->mdesc);
350 u64 last_node = hp->mdesc.node_sz / 16;
David S. Miller5cbc3072007-05-25 15:49:59 -0700351
David S. Miller43fdf272007-07-12 13:47:50 -0700352 if (from == MDESC_NODE_NULL || from >= last_node)
353 return MDESC_NODE_NULL;
354
355 ep = base + from;
356
357 ep++;
358 for (; ep->tag != MD_NODE_END; ep++) {
359 if (ep->tag != MD_PROP_ARC)
360 continue;
361
362 if (strcmp(names + ep->name_offset, arc_type))
363 continue;
364
365 return ep - base;
David S. Miller5cbc3072007-05-25 15:49:59 -0700366 }
David S. Miller43fdf272007-07-12 13:47:50 -0700367
368 return MDESC_NODE_NULL;
David S. Miller5cbc3072007-05-25 15:49:59 -0700369}
David S. Miller43fdf272007-07-12 13:47:50 -0700370EXPORT_SYMBOL(mdesc_next_arc);
371
372u64 mdesc_arc_target(struct mdesc_handle *hp, u64 arc)
373{
374 struct mdesc_elem *ep, *base = node_block(&hp->mdesc);
375
376 ep = base + arc;
377
378 return ep->d.val;
379}
380EXPORT_SYMBOL(mdesc_arc_target);
381
382const char *mdesc_node_name(struct mdesc_handle *hp, u64 node)
383{
384 struct mdesc_elem *ep, *base = node_block(&hp->mdesc);
385 const char *names = name_block(&hp->mdesc);
386 u64 last_node = hp->mdesc.node_sz / 16;
387
388 if (node == MDESC_NODE_NULL || node >= last_node)
389 return NULL;
390
391 ep = base + node;
392 if (ep->tag != MD_NODE)
393 return NULL;
394
395 return names + ep->name_offset;
396}
397EXPORT_SYMBOL(mdesc_node_name);
David S. Miller5cbc3072007-05-25 15:49:59 -0700398
399static void __init report_platform_properties(void)
400{
David S. Miller43fdf272007-07-12 13:47:50 -0700401 struct mdesc_handle *hp = mdesc_grab();
402 u64 pn = mdesc_node_by_name(hp, MDESC_NODE_NULL, "platform");
David S. Miller5cbc3072007-05-25 15:49:59 -0700403 const char *s;
404 const u64 *v;
405
David S. Miller43fdf272007-07-12 13:47:50 -0700406 if (pn == MDESC_NODE_NULL) {
David S. Miller5cbc3072007-05-25 15:49:59 -0700407 prom_printf("No platform node in machine-description.\n");
408 prom_halt();
409 }
410
David S. Miller43fdf272007-07-12 13:47:50 -0700411 s = mdesc_get_property(hp, pn, "banner-name", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700412 printk("PLATFORM: banner-name [%s]\n", s);
David S. Miller43fdf272007-07-12 13:47:50 -0700413 s = mdesc_get_property(hp, pn, "name", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700414 printk("PLATFORM: name [%s]\n", s);
415
David S. Miller43fdf272007-07-12 13:47:50 -0700416 v = mdesc_get_property(hp, pn, "hostid", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700417 if (v)
418 printk("PLATFORM: hostid [%08lx]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700419 v = mdesc_get_property(hp, pn, "serial#", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700420 if (v)
421 printk("PLATFORM: serial# [%08lx]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700422 v = mdesc_get_property(hp, pn, "stick-frequency", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700423 printk("PLATFORM: stick-frequency [%08lx]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700424 v = mdesc_get_property(hp, pn, "mac-address", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700425 if (v)
426 printk("PLATFORM: mac-address [%lx]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700427 v = mdesc_get_property(hp, pn, "watchdog-resolution", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700428 if (v)
429 printk("PLATFORM: watchdog-resolution [%lu ms]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700430 v = mdesc_get_property(hp, pn, "watchdog-max-timeout", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700431 if (v)
432 printk("PLATFORM: watchdog-max-timeout [%lu ms]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700433 v = mdesc_get_property(hp, pn, "max-cpus", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700434 if (v)
435 printk("PLATFORM: max-cpus [%lu]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700436
David S. Miller4f0234f2007-07-13 16:03:42 -0700437#ifdef CONFIG_SMP
438 {
439 int max_cpu, i;
440
441 if (v) {
442 max_cpu = *v;
443 if (max_cpu > NR_CPUS)
444 max_cpu = NR_CPUS;
445 } else {
446 max_cpu = NR_CPUS;
447 }
448 for (i = 0; i < max_cpu; i++)
449 cpu_set(i, cpu_possible_map);
450 }
451#endif
452
David S. Miller43fdf272007-07-12 13:47:50 -0700453 mdesc_release(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700454}
455
456static int inline find_in_proplist(const char *list, const char *match, int len)
457{
458 while (len > 0) {
459 int l;
460
461 if (!strcmp(list, match))
462 return 1;
463 l = strlen(list) + 1;
464 list += l;
465 len -= l;
466 }
467 return 0;
468}
469
David S. Miller4f0234f2007-07-13 16:03:42 -0700470static void __devinit fill_in_one_cache(cpuinfo_sparc *c,
471 struct mdesc_handle *hp,
472 u64 mp)
David S. Miller5cbc3072007-05-25 15:49:59 -0700473{
David S. Miller43fdf272007-07-12 13:47:50 -0700474 const u64 *level = mdesc_get_property(hp, mp, "level", NULL);
475 const u64 *size = mdesc_get_property(hp, mp, "size", NULL);
476 const u64 *line_size = mdesc_get_property(hp, mp, "line-size", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700477 const char *type;
478 int type_len;
479
David S. Miller43fdf272007-07-12 13:47:50 -0700480 type = mdesc_get_property(hp, mp, "type", &type_len);
David S. Miller5cbc3072007-05-25 15:49:59 -0700481
482 switch (*level) {
483 case 1:
484 if (find_in_proplist(type, "instn", type_len)) {
485 c->icache_size = *size;
486 c->icache_line_size = *line_size;
487 } else if (find_in_proplist(type, "data", type_len)) {
488 c->dcache_size = *size;
489 c->dcache_line_size = *line_size;
490 }
491 break;
492
493 case 2:
494 c->ecache_size = *size;
495 c->ecache_line_size = *line_size;
496 break;
497
498 default:
499 break;
500 }
501
502 if (*level == 1) {
David S. Miller43fdf272007-07-12 13:47:50 -0700503 u64 a;
David S. Miller5cbc3072007-05-25 15:49:59 -0700504
David S. Miller43fdf272007-07-12 13:47:50 -0700505 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_FWD) {
506 u64 target = mdesc_arc_target(hp, a);
507 const char *name = mdesc_node_name(hp, target);
David S. Miller5cbc3072007-05-25 15:49:59 -0700508
David S. Miller43fdf272007-07-12 13:47:50 -0700509 if (!strcmp(name, "cache"))
510 fill_in_one_cache(c, hp, target);
David S. Miller5cbc3072007-05-25 15:49:59 -0700511 }
512 }
513}
514
David S. Miller4f0234f2007-07-13 16:03:42 -0700515static void __devinit mark_core_ids(struct mdesc_handle *hp, u64 mp,
516 int core_id)
David S. Miller5cbc3072007-05-25 15:49:59 -0700517{
David S. Miller43fdf272007-07-12 13:47:50 -0700518 u64 a;
David S. Miller5cbc3072007-05-25 15:49:59 -0700519
David S. Miller43fdf272007-07-12 13:47:50 -0700520 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_BACK) {
521 u64 t = mdesc_arc_target(hp, a);
522 const char *name;
David S. Miller5cbc3072007-05-25 15:49:59 -0700523 const u64 *id;
524
David S. Miller43fdf272007-07-12 13:47:50 -0700525 name = mdesc_node_name(hp, t);
526 if (!strcmp(name, "cpu")) {
527 id = mdesc_get_property(hp, t, "id", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700528 if (*id < NR_CPUS)
529 cpu_data(*id).core_id = core_id;
530 } else {
David S. Miller43fdf272007-07-12 13:47:50 -0700531 u64 j;
David S. Miller5cbc3072007-05-25 15:49:59 -0700532
David S. Miller43fdf272007-07-12 13:47:50 -0700533 mdesc_for_each_arc(j, hp, t, MDESC_ARC_TYPE_BACK) {
534 u64 n = mdesc_arc_target(hp, j);
535 const char *n_name;
David S. Miller5cbc3072007-05-25 15:49:59 -0700536
David S. Miller43fdf272007-07-12 13:47:50 -0700537 n_name = mdesc_node_name(hp, n);
538 if (strcmp(n_name, "cpu"))
David S. Miller5cbc3072007-05-25 15:49:59 -0700539 continue;
540
David S. Miller43fdf272007-07-12 13:47:50 -0700541 id = mdesc_get_property(hp, n, "id", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700542 if (*id < NR_CPUS)
543 cpu_data(*id).core_id = core_id;
544 }
545 }
546 }
547}
548
David S. Miller4f0234f2007-07-13 16:03:42 -0700549static void __devinit set_core_ids(struct mdesc_handle *hp)
David S. Miller5cbc3072007-05-25 15:49:59 -0700550{
David S. Miller5cbc3072007-05-25 15:49:59 -0700551 int idx;
David S. Miller43fdf272007-07-12 13:47:50 -0700552 u64 mp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700553
554 idx = 1;
David S. Miller43fdf272007-07-12 13:47:50 -0700555 mdesc_for_each_node_by_name(hp, mp, "cache") {
556 const u64 *level;
David S. Miller5cbc3072007-05-25 15:49:59 -0700557 const char *type;
558 int len;
559
David S. Miller43fdf272007-07-12 13:47:50 -0700560 level = mdesc_get_property(hp, mp, "level", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700561 if (*level != 1)
562 continue;
563
David S. Miller43fdf272007-07-12 13:47:50 -0700564 type = mdesc_get_property(hp, mp, "type", &len);
David S. Miller5cbc3072007-05-25 15:49:59 -0700565 if (!find_in_proplist(type, "instn", len))
566 continue;
567
David S. Miller43fdf272007-07-12 13:47:50 -0700568 mark_core_ids(hp, mp, idx);
David S. Miller5cbc3072007-05-25 15:49:59 -0700569
570 idx++;
571 }
572}
573
David S. Miller4f0234f2007-07-13 16:03:42 -0700574static void __devinit mark_proc_ids(struct mdesc_handle *hp, u64 mp,
575 int proc_id)
David S. Millerf78eae22007-06-04 17:01:39 -0700576{
David S. Miller43fdf272007-07-12 13:47:50 -0700577 u64 a;
David S. Millerf78eae22007-06-04 17:01:39 -0700578
David S. Miller43fdf272007-07-12 13:47:50 -0700579 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_BACK) {
580 u64 t = mdesc_arc_target(hp, a);
581 const char *name;
David S. Millerf78eae22007-06-04 17:01:39 -0700582 const u64 *id;
583
David S. Miller43fdf272007-07-12 13:47:50 -0700584 name = mdesc_node_name(hp, t);
585 if (strcmp(name, "cpu"))
David S. Millerf78eae22007-06-04 17:01:39 -0700586 continue;
587
David S. Miller43fdf272007-07-12 13:47:50 -0700588 id = mdesc_get_property(hp, t, "id", NULL);
David S. Millerf78eae22007-06-04 17:01:39 -0700589 if (*id < NR_CPUS)
590 cpu_data(*id).proc_id = proc_id;
591 }
592}
593
David S. Miller4f0234f2007-07-13 16:03:42 -0700594static void __devinit __set_proc_ids(struct mdesc_handle *hp,
595 const char *exec_unit_name)
David S. Millerf78eae22007-06-04 17:01:39 -0700596{
David S. Millerf78eae22007-06-04 17:01:39 -0700597 int idx;
David S. Miller43fdf272007-07-12 13:47:50 -0700598 u64 mp;
David S. Millerf78eae22007-06-04 17:01:39 -0700599
600 idx = 0;
David S. Miller43fdf272007-07-12 13:47:50 -0700601 mdesc_for_each_node_by_name(hp, mp, exec_unit_name) {
David S. Millerf78eae22007-06-04 17:01:39 -0700602 const char *type;
603 int len;
604
David S. Miller43fdf272007-07-12 13:47:50 -0700605 type = mdesc_get_property(hp, mp, "type", &len);
David S. Millerf78eae22007-06-04 17:01:39 -0700606 if (!find_in_proplist(type, "int", len) &&
607 !find_in_proplist(type, "integer", len))
608 continue;
609
David S. Miller43fdf272007-07-12 13:47:50 -0700610 mark_proc_ids(hp, mp, idx);
David S. Millerf78eae22007-06-04 17:01:39 -0700611
612 idx++;
613 }
614}
615
David S. Miller4f0234f2007-07-13 16:03:42 -0700616static void __devinit set_proc_ids(struct mdesc_handle *hp)
David S. Millerf78eae22007-06-04 17:01:39 -0700617{
David S. Miller43fdf272007-07-12 13:47:50 -0700618 __set_proc_ids(hp, "exec_unit");
619 __set_proc_ids(hp, "exec-unit");
David S. Millerf78eae22007-06-04 17:01:39 -0700620}
621
David S. Miller4f0234f2007-07-13 16:03:42 -0700622static void __devinit get_one_mondo_bits(const u64 *p, unsigned int *mask,
623 unsigned char def)
David S. Miller5cbc3072007-05-25 15:49:59 -0700624{
625 u64 val;
626
627 if (!p)
628 goto use_default;
629 val = *p;
630
631 if (!val || val >= 64)
632 goto use_default;
633
634 *mask = ((1U << val) * 64U) - 1U;
635 return;
636
637use_default:
638 *mask = ((1U << def) * 64U) - 1U;
639}
640
David S. Miller4f0234f2007-07-13 16:03:42 -0700641static void __devinit get_mondo_data(struct mdesc_handle *hp, u64 mp,
642 struct trap_per_cpu *tb)
David S. Miller5cbc3072007-05-25 15:49:59 -0700643{
644 const u64 *val;
645
David S. Miller43fdf272007-07-12 13:47:50 -0700646 val = mdesc_get_property(hp, mp, "q-cpu-mondo-#bits", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700647 get_one_mondo_bits(val, &tb->cpu_mondo_qmask, 7);
648
David S. Miller43fdf272007-07-12 13:47:50 -0700649 val = mdesc_get_property(hp, mp, "q-dev-mondo-#bits", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700650 get_one_mondo_bits(val, &tb->dev_mondo_qmask, 7);
651
David S. Miller43fdf272007-07-12 13:47:50 -0700652 val = mdesc_get_property(hp, mp, "q-resumable-#bits", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700653 get_one_mondo_bits(val, &tb->resum_qmask, 6);
654
David S. Miller43fdf272007-07-12 13:47:50 -0700655 val = mdesc_get_property(hp, mp, "q-nonresumable-#bits", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700656 get_one_mondo_bits(val, &tb->nonresum_qmask, 2);
657}
658
David S. Miller4f0234f2007-07-13 16:03:42 -0700659void __devinit mdesc_fill_in_cpu_data(cpumask_t mask)
David S. Miller5cbc3072007-05-25 15:49:59 -0700660{
David S. Miller43fdf272007-07-12 13:47:50 -0700661 struct mdesc_handle *hp = mdesc_grab();
662 u64 mp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700663
664 ncpus_probed = 0;
David S. Miller43fdf272007-07-12 13:47:50 -0700665 mdesc_for_each_node_by_name(hp, mp, "cpu") {
666 const u64 *id = mdesc_get_property(hp, mp, "id", NULL);
667 const u64 *cfreq = mdesc_get_property(hp, mp, "clock-frequency", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700668 struct trap_per_cpu *tb;
669 cpuinfo_sparc *c;
David S. Miller5cbc3072007-05-25 15:49:59 -0700670 int cpuid;
David S. Miller43fdf272007-07-12 13:47:50 -0700671 u64 a;
David S. Miller5cbc3072007-05-25 15:49:59 -0700672
673 ncpus_probed++;
674
675 cpuid = *id;
676
677#ifdef CONFIG_SMP
678 if (cpuid >= NR_CPUS)
679 continue;
David S. Miller4f0234f2007-07-13 16:03:42 -0700680 if (!cpu_isset(cpuid, mask))
681 continue;
David S. Miller5cbc3072007-05-25 15:49:59 -0700682#else
683 /* On uniprocessor we only want the values for the
684 * real physical cpu the kernel booted onto, however
685 * cpu_data() only has one entry at index 0.
686 */
687 if (cpuid != real_hard_smp_processor_id())
688 continue;
689 cpuid = 0;
690#endif
691
692 c = &cpu_data(cpuid);
693 c->clock_tick = *cfreq;
694
695 tb = &trap_block[cpuid];
David S. Miller43fdf272007-07-12 13:47:50 -0700696 get_mondo_data(hp, mp, tb);
David S. Miller5cbc3072007-05-25 15:49:59 -0700697
David S. Miller43fdf272007-07-12 13:47:50 -0700698 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_FWD) {
699 u64 j, t = mdesc_arc_target(hp, a);
700 const char *t_name;
David S. Miller5cbc3072007-05-25 15:49:59 -0700701
David S. Miller43fdf272007-07-12 13:47:50 -0700702 t_name = mdesc_node_name(hp, t);
703 if (!strcmp(t_name, "cache")) {
704 fill_in_one_cache(c, hp, t);
David S. Miller5cbc3072007-05-25 15:49:59 -0700705 continue;
706 }
707
David S. Miller43fdf272007-07-12 13:47:50 -0700708 mdesc_for_each_arc(j, hp, t, MDESC_ARC_TYPE_FWD) {
709 u64 n = mdesc_arc_target(hp, j);
710 const char *n_name;
David S. Miller5cbc3072007-05-25 15:49:59 -0700711
David S. Miller43fdf272007-07-12 13:47:50 -0700712 n_name = mdesc_node_name(hp, n);
713 if (!strcmp(n_name, "cache"))
714 fill_in_one_cache(c, hp, n);
David S. Miller5cbc3072007-05-25 15:49:59 -0700715 }
716 }
717
718#ifdef CONFIG_SMP
719 cpu_set(cpuid, cpu_present_map);
David S. Miller5cbc3072007-05-25 15:49:59 -0700720#endif
721
722 c->core_id = 0;
David S. Millerf78eae22007-06-04 17:01:39 -0700723 c->proc_id = -1;
David S. Miller5cbc3072007-05-25 15:49:59 -0700724 }
725
David S. Millera2f9f6b2007-06-04 21:48:33 -0700726#ifdef CONFIG_SMP
727 sparc64_multi_core = 1;
728#endif
729
David S. Miller43fdf272007-07-12 13:47:50 -0700730 set_core_ids(hp);
731 set_proc_ids(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700732
733 smp_fill_in_sib_core_maps();
David S. Miller43fdf272007-07-12 13:47:50 -0700734
735 mdesc_release(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700736}
737
738void __init sun4v_mdesc_init(void)
739{
David S. Miller43fdf272007-07-12 13:47:50 -0700740 struct mdesc_handle *hp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700741 unsigned long len, real_len, status;
David S. Miller4f0234f2007-07-13 16:03:42 -0700742 cpumask_t mask;
David S. Miller5cbc3072007-05-25 15:49:59 -0700743
744 (void) sun4v_mach_desc(0UL, 0UL, &len);
745
746 printk("MDESC: Size is %lu bytes.\n", len);
747
David S. Miller43fdf272007-07-12 13:47:50 -0700748 hp = mdesc_alloc(len, &bootmem_mdesc_memops);
749 if (hp == NULL) {
750 prom_printf("MDESC: alloc of %lu bytes failed.\n", len);
751 prom_halt();
752 }
David S. Miller5cbc3072007-05-25 15:49:59 -0700753
David S. Miller43fdf272007-07-12 13:47:50 -0700754 status = sun4v_mach_desc(__pa(&hp->mdesc), len, &real_len);
David S. Miller5cbc3072007-05-25 15:49:59 -0700755 if (status != HV_EOK || real_len > len) {
756 prom_printf("sun4v_mach_desc fails, err(%lu), "
757 "len(%lu), real_len(%lu)\n",
758 status, len, real_len);
David S. Miller43fdf272007-07-12 13:47:50 -0700759 mdesc_free(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700760 prom_halt();
761 }
762
David S. Miller43fdf272007-07-12 13:47:50 -0700763 cur_mdesc = hp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700764
765 report_platform_properties();
David S. Miller4f0234f2007-07-13 16:03:42 -0700766
767 cpus_setall(mask);
768 mdesc_fill_in_cpu_data(mask);
David S. Miller5cbc3072007-05-25 15:49:59 -0700769}