blob: acaebb63c4fd4b7a7f42e0fc6d40befe799168c3 [file] [log] [blame]
David S. Miller5cbc3072007-05-25 15:49:59 -07001/* mdesc.c: Sun4V machine description handling.
2 *
David S. Miller4a283332008-02-13 19:22:23 -08003 * Copyright (C) 2007, 2008 David S. Miller <davem@davemloft.net>
David S. Miller5cbc3072007-05-25 15:49:59 -07004 */
5#include <linux/kernel.h>
6#include <linux/types.h>
Yinghai Lu95f72d12010-07-12 14:36:09 +10007#include <linux/memblock.h>
David S. Miller5cbc3072007-05-25 15:49:59 -07008#include <linux/log2.h>
David S. Miller43fdf272007-07-12 13:47:50 -07009#include <linux/list.h>
10#include <linux/slab.h>
David S. Miller8f3fff22007-07-14 00:54:55 -070011#include <linux/mm.h>
David S. Miller0fdb7f92007-08-15 21:02:23 -070012#include <linux/miscdevice.h>
David S. Milleradfe67d2009-12-11 01:16:46 -080013#include <linux/bootmem.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070014
Sam Ravnborg6e6ab2e2008-12-26 15:33:07 -080015#include <asm/cpudata.h>
David S. Miller5cbc3072007-05-25 15:49:59 -070016#include <asm/hypervisor.h>
17#include <asm/mdesc.h>
18#include <asm/prom.h>
19#include <asm/oplib.h>
20#include <asm/smp.h>
21
22/* Unlike the OBP device tree, the machine description is a full-on
23 * DAG. An arbitrary number of ARCs are possible from one
24 * node to other nodes and thus we can't use the OBP device_node
25 * data structure to represent these nodes inside of the kernel.
26 *
27 * Actually, it isn't even a DAG, because there are back pointers
28 * which create cycles in the graph.
29 *
30 * mdesc_hdr and mdesc_elem describe the layout of the data structure
31 * we get from the Hypervisor.
32 */
33struct mdesc_hdr {
34 u32 version; /* Transport version */
35 u32 node_sz; /* node block size */
36 u32 name_sz; /* name block size */
37 u32 data_sz; /* data block size */
David S. Miller43fdf272007-07-12 13:47:50 -070038} __attribute__((aligned(16)));
David S. Miller5cbc3072007-05-25 15:49:59 -070039
40struct mdesc_elem {
41 u8 tag;
42#define MD_LIST_END 0x00
43#define MD_NODE 0x4e
44#define MD_NODE_END 0x45
45#define MD_NOOP 0x20
46#define MD_PROP_ARC 0x61
47#define MD_PROP_VAL 0x76
48#define MD_PROP_STR 0x73
49#define MD_PROP_DATA 0x64
50 u8 name_len;
51 u16 resv;
52 u32 name_offset;
53 union {
54 struct {
55 u32 data_len;
56 u32 data_offset;
57 } data;
58 u64 val;
59 } d;
60};
61
David S. Miller43fdf272007-07-12 13:47:50 -070062struct mdesc_mem_ops {
63 struct mdesc_handle *(*alloc)(unsigned int mdesc_size);
64 void (*free)(struct mdesc_handle *handle);
65};
David S. Miller5cbc3072007-05-25 15:49:59 -070066
David S. Miller43fdf272007-07-12 13:47:50 -070067struct mdesc_handle {
68 struct list_head list;
69 struct mdesc_mem_ops *mops;
70 void *self_base;
71 atomic_t refcnt;
72 unsigned int handle_size;
73 struct mdesc_hdr mdesc;
74};
David S. Miller5cbc3072007-05-25 15:49:59 -070075
David S. Miller43fdf272007-07-12 13:47:50 -070076static void mdesc_handle_init(struct mdesc_handle *hp,
77 unsigned int handle_size,
78 void *base)
David S. Miller5cbc3072007-05-25 15:49:59 -070079{
David S. Miller43fdf272007-07-12 13:47:50 -070080 BUG_ON(((unsigned long)&hp->mdesc) & (16UL - 1));
81
82 memset(hp, 0, handle_size);
83 INIT_LIST_HEAD(&hp->list);
84 hp->self_base = base;
85 atomic_set(&hp->refcnt, 1);
86 hp->handle_size = handle_size;
David S. Miller5cbc3072007-05-25 15:49:59 -070087}
88
Yinghai Lu95f72d12010-07-12 14:36:09 +100089static struct mdesc_handle * __init mdesc_memblock_alloc(unsigned int mdesc_size)
David S. Miller5cbc3072007-05-25 15:49:59 -070090{
David S. Miller43fdf272007-07-12 13:47:50 -070091 unsigned int handle_size, alloc_size;
David S. Miller4a283332008-02-13 19:22:23 -080092 struct mdesc_handle *hp;
93 unsigned long paddr;
David S. Miller5cbc3072007-05-25 15:49:59 -070094
David S. Miller43fdf272007-07-12 13:47:50 -070095 handle_size = (sizeof(struct mdesc_handle) -
96 sizeof(struct mdesc_hdr) +
97 mdesc_size);
98 alloc_size = PAGE_ALIGN(handle_size);
David S. Miller5cbc3072007-05-25 15:49:59 -070099
Yinghai Lu95f72d12010-07-12 14:36:09 +1000100 paddr = memblock_alloc(alloc_size, PAGE_SIZE);
David S. Miller43fdf272007-07-12 13:47:50 -0700101
David S. Miller4a283332008-02-13 19:22:23 -0800102 hp = NULL;
103 if (paddr) {
104 hp = __va(paddr);
105 mdesc_handle_init(hp, handle_size, hp);
106 }
David S. Miller43fdf272007-07-12 13:47:50 -0700107 return hp;
108}
109
David S. Miller3628aa02011-03-30 17:37:56 -0700110static void __init mdesc_memblock_free(struct mdesc_handle *hp)
David S. Miller43fdf272007-07-12 13:47:50 -0700111{
David S. Milleradfe67d2009-12-11 01:16:46 -0800112 unsigned int alloc_size;
113 unsigned long start;
David S. Miller43fdf272007-07-12 13:47:50 -0700114
115 BUG_ON(atomic_read(&hp->refcnt) != 0);
116 BUG_ON(!list_empty(&hp->list));
117
David S. Milleradfe67d2009-12-11 01:16:46 -0800118 alloc_size = PAGE_ALIGN(hp->handle_size);
119 start = __pa(hp);
120 free_bootmem_late(start, alloc_size);
David S. Miller5cbc3072007-05-25 15:49:59 -0700121}
122
Yinghai Lu95f72d12010-07-12 14:36:09 +1000123static struct mdesc_mem_ops memblock_mdesc_ops = {
124 .alloc = mdesc_memblock_alloc,
125 .free = mdesc_memblock_free,
David S. Miller43fdf272007-07-12 13:47:50 -0700126};
127
128static struct mdesc_handle *mdesc_kmalloc(unsigned int mdesc_size)
David S. Miller5cbc3072007-05-25 15:49:59 -0700129{
David S. Miller43fdf272007-07-12 13:47:50 -0700130 unsigned int handle_size;
131 void *base;
David S. Miller5cbc3072007-05-25 15:49:59 -0700132
David S. Miller43fdf272007-07-12 13:47:50 -0700133 handle_size = (sizeof(struct mdesc_handle) -
134 sizeof(struct mdesc_hdr) +
135 mdesc_size);
David S. Miller5cbc3072007-05-25 15:49:59 -0700136
David S. Miller920c3ed2007-07-17 21:37:35 -0700137 base = kmalloc(handle_size + 15, GFP_KERNEL | __GFP_NOFAIL);
David S. Miller43fdf272007-07-12 13:47:50 -0700138 if (base) {
139 struct mdesc_handle *hp;
140 unsigned long addr;
141
142 addr = (unsigned long)base;
143 addr = (addr + 15UL) & ~15UL;
144 hp = (struct mdesc_handle *) addr;
145
146 mdesc_handle_init(hp, handle_size, base);
147 return hp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700148 }
David S. Miller43fdf272007-07-12 13:47:50 -0700149
David S. Miller5cbc3072007-05-25 15:49:59 -0700150 return NULL;
151}
152
David S. Miller43fdf272007-07-12 13:47:50 -0700153static void mdesc_kfree(struct mdesc_handle *hp)
David S. Miller5cbc3072007-05-25 15:49:59 -0700154{
David S. Miller43fdf272007-07-12 13:47:50 -0700155 BUG_ON(atomic_read(&hp->refcnt) != 0);
156 BUG_ON(!list_empty(&hp->list));
David S. Miller5cbc3072007-05-25 15:49:59 -0700157
David S. Miller43fdf272007-07-12 13:47:50 -0700158 kfree(hp->self_base);
159}
160
161static struct mdesc_mem_ops kmalloc_mdesc_memops = {
162 .alloc = mdesc_kmalloc,
163 .free = mdesc_kfree,
164};
165
166static struct mdesc_handle *mdesc_alloc(unsigned int mdesc_size,
167 struct mdesc_mem_ops *mops)
168{
169 struct mdesc_handle *hp = mops->alloc(mdesc_size);
170
171 if (hp)
172 hp->mops = mops;
173
174 return hp;
175}
176
177static void mdesc_free(struct mdesc_handle *hp)
178{
179 hp->mops->free(hp);
180}
181
182static struct mdesc_handle *cur_mdesc;
183static LIST_HEAD(mdesc_zombie_list);
184static DEFINE_SPINLOCK(mdesc_lock);
185
186struct mdesc_handle *mdesc_grab(void)
187{
188 struct mdesc_handle *hp;
189 unsigned long flags;
190
191 spin_lock_irqsave(&mdesc_lock, flags);
192 hp = cur_mdesc;
193 if (hp)
194 atomic_inc(&hp->refcnt);
195 spin_unlock_irqrestore(&mdesc_lock, flags);
196
197 return hp;
198}
199EXPORT_SYMBOL(mdesc_grab);
200
201void mdesc_release(struct mdesc_handle *hp)
202{
203 unsigned long flags;
204
205 spin_lock_irqsave(&mdesc_lock, flags);
206 if (atomic_dec_and_test(&hp->refcnt)) {
207 list_del_init(&hp->list);
208 hp->mops->free(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700209 }
David S. Miller43fdf272007-07-12 13:47:50 -0700210 spin_unlock_irqrestore(&mdesc_lock, flags);
David S. Miller5cbc3072007-05-25 15:49:59 -0700211}
David S. Miller43fdf272007-07-12 13:47:50 -0700212EXPORT_SYMBOL(mdesc_release);
David S. Miller5cbc3072007-05-25 15:49:59 -0700213
David S. Miller920c3ed2007-07-17 21:37:35 -0700214static DEFINE_MUTEX(mdesc_mutex);
215static struct mdesc_notifier_client *client_list;
216
217void mdesc_register_notifier(struct mdesc_notifier_client *client)
218{
219 u64 node;
220
221 mutex_lock(&mdesc_mutex);
222 client->next = client_list;
223 client_list = client;
224
225 mdesc_for_each_node_by_name(cur_mdesc, node, client->node_name)
226 client->add(cur_mdesc, node);
227
228 mutex_unlock(&mdesc_mutex);
229}
230
David S. Miller91ba3c22007-07-18 15:15:45 -0700231static const u64 *parent_cfg_handle(struct mdesc_handle *hp, u64 node)
232{
233 const u64 *id;
234 u64 a;
235
236 id = NULL;
237 mdesc_for_each_arc(a, hp, node, MDESC_ARC_TYPE_BACK) {
238 u64 target;
239
240 target = mdesc_arc_target(hp, a);
241 id = mdesc_get_property(hp, target,
242 "cfg-handle", NULL);
243 if (id)
244 break;
245 }
246
247 return id;
248}
249
David S. Miller920c3ed2007-07-17 21:37:35 -0700250/* Run 'func' on nodes which are in A but not in B. */
251static void invoke_on_missing(const char *name,
252 struct mdesc_handle *a,
253 struct mdesc_handle *b,
254 void (*func)(struct mdesc_handle *, u64))
255{
256 u64 node;
257
258 mdesc_for_each_node_by_name(a, node, name) {
David S. Miller91ba3c22007-07-18 15:15:45 -0700259 int found = 0, is_vdc_port = 0;
260 const char *name_prop;
261 const u64 *id;
David S. Miller920c3ed2007-07-17 21:37:35 -0700262 u64 fnode;
263
David S. Miller91ba3c22007-07-18 15:15:45 -0700264 name_prop = mdesc_get_property(a, node, "name", NULL);
265 if (name_prop && !strcmp(name_prop, "vdc-port")) {
266 is_vdc_port = 1;
267 id = parent_cfg_handle(a, node);
268 } else
269 id = mdesc_get_property(a, node, "id", NULL);
270
271 if (!id) {
272 printk(KERN_ERR "MD: Cannot find ID for %s node.\n",
273 (name_prop ? name_prop : name));
274 continue;
275 }
276
David S. Miller920c3ed2007-07-17 21:37:35 -0700277 mdesc_for_each_node_by_name(b, fnode, name) {
David S. Miller91ba3c22007-07-18 15:15:45 -0700278 const u64 *fid;
279
280 if (is_vdc_port) {
281 name_prop = mdesc_get_property(b, fnode,
282 "name", NULL);
283 if (!name_prop ||
284 strcmp(name_prop, "vdc-port"))
285 continue;
286 fid = parent_cfg_handle(b, fnode);
287 if (!fid) {
288 printk(KERN_ERR "MD: Cannot find ID "
289 "for vdc-port node.\n");
290 continue;
291 }
292 } else
293 fid = mdesc_get_property(b, fnode,
294 "id", NULL);
David S. Miller920c3ed2007-07-17 21:37:35 -0700295
296 if (*id == *fid) {
297 found = 1;
298 break;
299 }
300 }
301 if (!found)
302 func(a, node);
303 }
304}
305
306static void notify_one(struct mdesc_notifier_client *p,
307 struct mdesc_handle *old_hp,
308 struct mdesc_handle *new_hp)
309{
310 invoke_on_missing(p->node_name, old_hp, new_hp, p->remove);
311 invoke_on_missing(p->node_name, new_hp, old_hp, p->add);
312}
313
314static void mdesc_notify_clients(struct mdesc_handle *old_hp,
315 struct mdesc_handle *new_hp)
316{
317 struct mdesc_notifier_client *p = client_list;
318
319 while (p) {
320 notify_one(p, old_hp, new_hp);
321 p = p->next;
322 }
323}
324
David S. Miller778feeb2007-07-16 16:50:36 -0700325void mdesc_update(void)
David S. Miller5cbc3072007-05-25 15:49:59 -0700326{
David S. Miller43fdf272007-07-12 13:47:50 -0700327 unsigned long len, real_len, status;
328 struct mdesc_handle *hp, *orig_hp;
329 unsigned long flags;
David S. Miller5cbc3072007-05-25 15:49:59 -0700330
David S. Miller920c3ed2007-07-17 21:37:35 -0700331 mutex_lock(&mdesc_mutex);
332
David S. Miller43fdf272007-07-12 13:47:50 -0700333 (void) sun4v_mach_desc(0UL, 0UL, &len);
David S. Miller5cbc3072007-05-25 15:49:59 -0700334
David S. Miller43fdf272007-07-12 13:47:50 -0700335 hp = mdesc_alloc(len, &kmalloc_mdesc_memops);
336 if (!hp) {
337 printk(KERN_ERR "MD: mdesc alloc fails\n");
David S. Miller920c3ed2007-07-17 21:37:35 -0700338 goto out;
David S. Miller5cbc3072007-05-25 15:49:59 -0700339 }
340
David S. Miller43fdf272007-07-12 13:47:50 -0700341 status = sun4v_mach_desc(__pa(&hp->mdesc), len, &real_len);
342 if (status != HV_EOK || real_len > len) {
343 printk(KERN_ERR "MD: mdesc reread fails with %lu\n",
344 status);
345 atomic_dec(&hp->refcnt);
346 mdesc_free(hp);
David S. Miller920c3ed2007-07-17 21:37:35 -0700347 goto out;
David S. Miller5cbc3072007-05-25 15:49:59 -0700348 }
David S. Miller43fdf272007-07-12 13:47:50 -0700349
350 spin_lock_irqsave(&mdesc_lock, flags);
351 orig_hp = cur_mdesc;
352 cur_mdesc = hp;
David S. Miller920c3ed2007-07-17 21:37:35 -0700353 spin_unlock_irqrestore(&mdesc_lock, flags);
David S. Miller43fdf272007-07-12 13:47:50 -0700354
David S. Miller920c3ed2007-07-17 21:37:35 -0700355 mdesc_notify_clients(orig_hp, hp);
356
357 spin_lock_irqsave(&mdesc_lock, flags);
David S. Miller43fdf272007-07-12 13:47:50 -0700358 if (atomic_dec_and_test(&orig_hp->refcnt))
359 mdesc_free(orig_hp);
360 else
361 list_add(&orig_hp->list, &mdesc_zombie_list);
362 spin_unlock_irqrestore(&mdesc_lock, flags);
David S. Miller920c3ed2007-07-17 21:37:35 -0700363
364out:
365 mutex_unlock(&mdesc_mutex);
David S. Miller5cbc3072007-05-25 15:49:59 -0700366}
367
David S. Miller43fdf272007-07-12 13:47:50 -0700368static struct mdesc_elem *node_block(struct mdesc_hdr *mdesc)
David S. Miller5cbc3072007-05-25 15:49:59 -0700369{
370 return (struct mdesc_elem *) (mdesc + 1);
371}
372
David S. Miller43fdf272007-07-12 13:47:50 -0700373static void *name_block(struct mdesc_hdr *mdesc)
David S. Miller5cbc3072007-05-25 15:49:59 -0700374{
375 return ((void *) node_block(mdesc)) + mdesc->node_sz;
376}
377
David S. Miller43fdf272007-07-12 13:47:50 -0700378static void *data_block(struct mdesc_hdr *mdesc)
David S. Miller5cbc3072007-05-25 15:49:59 -0700379{
380 return ((void *) name_block(mdesc)) + mdesc->name_sz;
381}
382
David S. Miller43fdf272007-07-12 13:47:50 -0700383u64 mdesc_node_by_name(struct mdesc_handle *hp,
384 u64 from_node, const char *name)
David S. Miller5cbc3072007-05-25 15:49:59 -0700385{
David S. Miller43fdf272007-07-12 13:47:50 -0700386 struct mdesc_elem *ep = node_block(&hp->mdesc);
387 const char *names = name_block(&hp->mdesc);
388 u64 last_node = hp->mdesc.node_sz / 16;
389 u64 ret;
David S. Miller5cbc3072007-05-25 15:49:59 -0700390
David S. Miller778feeb2007-07-16 16:50:36 -0700391 if (from_node == MDESC_NODE_NULL) {
392 ret = from_node = 0;
393 } else if (from_node >= last_node) {
David S. Miller43fdf272007-07-12 13:47:50 -0700394 return MDESC_NODE_NULL;
David S. Miller778feeb2007-07-16 16:50:36 -0700395 } else {
396 ret = ep[from_node].d.val;
397 }
David S. Miller5cbc3072007-05-25 15:49:59 -0700398
David S. Miller43fdf272007-07-12 13:47:50 -0700399 while (ret < last_node) {
400 if (ep[ret].tag != MD_NODE)
401 return MDESC_NODE_NULL;
402 if (!strcmp(names + ep[ret].name_offset, name))
403 break;
404 ret = ep[ret].d.val;
405 }
406 if (ret >= last_node)
407 ret = MDESC_NODE_NULL;
408 return ret;
409}
410EXPORT_SYMBOL(mdesc_node_by_name);
David S. Miller5cbc3072007-05-25 15:49:59 -0700411
David S. Miller43fdf272007-07-12 13:47:50 -0700412const void *mdesc_get_property(struct mdesc_handle *hp, u64 node,
413 const char *name, int *lenp)
414{
415 const char *names = name_block(&hp->mdesc);
416 u64 last_node = hp->mdesc.node_sz / 16;
417 void *data = data_block(&hp->mdesc);
418 struct mdesc_elem *ep;
419
420 if (node == MDESC_NODE_NULL || node >= last_node)
421 return NULL;
422
423 ep = node_block(&hp->mdesc) + node;
424 ep++;
425 for (; ep->tag != MD_NODE_END; ep++) {
426 void *val = NULL;
427 int len = 0;
428
429 switch (ep->tag) {
430 case MD_PROP_VAL:
431 val = &ep->d.val;
432 len = 8;
David S. Miller5cbc3072007-05-25 15:49:59 -0700433 break;
434
David S. Miller43fdf272007-07-12 13:47:50 -0700435 case MD_PROP_STR:
436 case MD_PROP_DATA:
437 val = data + ep->d.data.data_offset;
438 len = ep->d.data.data_len;
439 break;
David S. Miller5cbc3072007-05-25 15:49:59 -0700440
David S. Miller43fdf272007-07-12 13:47:50 -0700441 default:
David S. Miller5cbc3072007-05-25 15:49:59 -0700442 break;
443 }
David S. Miller43fdf272007-07-12 13:47:50 -0700444 if (!val)
445 continue;
David S. Miller5cbc3072007-05-25 15:49:59 -0700446
David S. Miller43fdf272007-07-12 13:47:50 -0700447 if (!strcmp(names + ep->name_offset, name)) {
448 if (lenp)
449 *lenp = len;
450 return val;
David S. Miller5cbc3072007-05-25 15:49:59 -0700451 }
452 }
David S. Miller5cbc3072007-05-25 15:49:59 -0700453
David S. Miller43fdf272007-07-12 13:47:50 -0700454 return NULL;
455}
456EXPORT_SYMBOL(mdesc_get_property);
457
458u64 mdesc_next_arc(struct mdesc_handle *hp, u64 from, const char *arc_type)
David S. Miller5cbc3072007-05-25 15:49:59 -0700459{
David S. Miller43fdf272007-07-12 13:47:50 -0700460 struct mdesc_elem *ep, *base = node_block(&hp->mdesc);
461 const char *names = name_block(&hp->mdesc);
462 u64 last_node = hp->mdesc.node_sz / 16;
David S. Miller5cbc3072007-05-25 15:49:59 -0700463
David S. Miller43fdf272007-07-12 13:47:50 -0700464 if (from == MDESC_NODE_NULL || from >= last_node)
465 return MDESC_NODE_NULL;
466
467 ep = base + from;
468
469 ep++;
470 for (; ep->tag != MD_NODE_END; ep++) {
471 if (ep->tag != MD_PROP_ARC)
472 continue;
473
474 if (strcmp(names + ep->name_offset, arc_type))
475 continue;
476
477 return ep - base;
David S. Miller5cbc3072007-05-25 15:49:59 -0700478 }
David S. Miller43fdf272007-07-12 13:47:50 -0700479
480 return MDESC_NODE_NULL;
David S. Miller5cbc3072007-05-25 15:49:59 -0700481}
David S. Miller43fdf272007-07-12 13:47:50 -0700482EXPORT_SYMBOL(mdesc_next_arc);
483
484u64 mdesc_arc_target(struct mdesc_handle *hp, u64 arc)
485{
486 struct mdesc_elem *ep, *base = node_block(&hp->mdesc);
487
488 ep = base + arc;
489
490 return ep->d.val;
491}
492EXPORT_SYMBOL(mdesc_arc_target);
493
494const char *mdesc_node_name(struct mdesc_handle *hp, u64 node)
495{
496 struct mdesc_elem *ep, *base = node_block(&hp->mdesc);
497 const char *names = name_block(&hp->mdesc);
498 u64 last_node = hp->mdesc.node_sz / 16;
499
500 if (node == MDESC_NODE_NULL || node >= last_node)
501 return NULL;
502
503 ep = base + node;
504 if (ep->tag != MD_NODE)
505 return NULL;
506
507 return names + ep->name_offset;
508}
509EXPORT_SYMBOL(mdesc_node_name);
David S. Miller5cbc3072007-05-25 15:49:59 -0700510
David S. Miller961f65f2011-08-05 02:38:27 -0700511static u64 max_cpus = 64;
512
David S. Miller5cbc3072007-05-25 15:49:59 -0700513static void __init report_platform_properties(void)
514{
David S. Miller43fdf272007-07-12 13:47:50 -0700515 struct mdesc_handle *hp = mdesc_grab();
516 u64 pn = mdesc_node_by_name(hp, MDESC_NODE_NULL, "platform");
David S. Miller5cbc3072007-05-25 15:49:59 -0700517 const char *s;
518 const u64 *v;
519
David S. Miller43fdf272007-07-12 13:47:50 -0700520 if (pn == MDESC_NODE_NULL) {
David S. Miller5cbc3072007-05-25 15:49:59 -0700521 prom_printf("No platform node in machine-description.\n");
522 prom_halt();
523 }
524
David S. Miller43fdf272007-07-12 13:47:50 -0700525 s = mdesc_get_property(hp, pn, "banner-name", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700526 printk("PLATFORM: banner-name [%s]\n", s);
David S. Miller43fdf272007-07-12 13:47:50 -0700527 s = mdesc_get_property(hp, pn, "name", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700528 printk("PLATFORM: name [%s]\n", s);
529
David S. Miller43fdf272007-07-12 13:47:50 -0700530 v = mdesc_get_property(hp, pn, "hostid", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700531 if (v)
Sam Ravnborg90181132009-01-06 13:19:28 -0800532 printk("PLATFORM: hostid [%08llx]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700533 v = mdesc_get_property(hp, pn, "serial#", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700534 if (v)
Sam Ravnborg90181132009-01-06 13:19:28 -0800535 printk("PLATFORM: serial# [%08llx]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700536 v = mdesc_get_property(hp, pn, "stick-frequency", NULL);
Sam Ravnborg90181132009-01-06 13:19:28 -0800537 printk("PLATFORM: stick-frequency [%08llx]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700538 v = mdesc_get_property(hp, pn, "mac-address", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700539 if (v)
Sam Ravnborg90181132009-01-06 13:19:28 -0800540 printk("PLATFORM: mac-address [%llx]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700541 v = mdesc_get_property(hp, pn, "watchdog-resolution", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700542 if (v)
Sam Ravnborg90181132009-01-06 13:19:28 -0800543 printk("PLATFORM: watchdog-resolution [%llu ms]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700544 v = mdesc_get_property(hp, pn, "watchdog-max-timeout", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700545 if (v)
Sam Ravnborg90181132009-01-06 13:19:28 -0800546 printk("PLATFORM: watchdog-max-timeout [%llu ms]\n", *v);
David S. Miller43fdf272007-07-12 13:47:50 -0700547 v = mdesc_get_property(hp, pn, "max-cpus", NULL);
David S. Miller961f65f2011-08-05 02:38:27 -0700548 if (v) {
549 max_cpus = *v;
550 printk("PLATFORM: max-cpus [%llu]\n", max_cpus);
551 }
David S. Miller43fdf272007-07-12 13:47:50 -0700552
David S. Miller4f0234f2007-07-13 16:03:42 -0700553#ifdef CONFIG_SMP
554 {
555 int max_cpu, i;
556
557 if (v) {
558 max_cpu = *v;
559 if (max_cpu > NR_CPUS)
560 max_cpu = NR_CPUS;
561 } else {
562 max_cpu = NR_CPUS;
563 }
564 for (i = 0; i < max_cpu; i++)
Rusty Russell89229072009-03-16 14:40:23 +1030565 set_cpu_possible(i, true);
David S. Miller4f0234f2007-07-13 16:03:42 -0700566 }
567#endif
568
David S. Miller43fdf272007-07-12 13:47:50 -0700569 mdesc_release(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700570}
571
David S. Miller5052f522009-04-08 19:55:47 -0700572static void __cpuinit fill_in_one_cache(cpuinfo_sparc *c,
David S. Miller4f0234f2007-07-13 16:03:42 -0700573 struct mdesc_handle *hp,
574 u64 mp)
David S. Miller5cbc3072007-05-25 15:49:59 -0700575{
David S. Miller43fdf272007-07-12 13:47:50 -0700576 const u64 *level = mdesc_get_property(hp, mp, "level", NULL);
577 const u64 *size = mdesc_get_property(hp, mp, "size", NULL);
578 const u64 *line_size = mdesc_get_property(hp, mp, "line-size", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700579 const char *type;
580 int type_len;
581
David S. Miller43fdf272007-07-12 13:47:50 -0700582 type = mdesc_get_property(hp, mp, "type", &type_len);
David S. Miller5cbc3072007-05-25 15:49:59 -0700583
584 switch (*level) {
585 case 1:
David S. Miller46bcea72007-08-07 18:46:36 -0700586 if (of_find_in_proplist(type, "instn", type_len)) {
David S. Miller5cbc3072007-05-25 15:49:59 -0700587 c->icache_size = *size;
588 c->icache_line_size = *line_size;
David S. Miller46bcea72007-08-07 18:46:36 -0700589 } else if (of_find_in_proplist(type, "data", type_len)) {
David S. Miller5cbc3072007-05-25 15:49:59 -0700590 c->dcache_size = *size;
591 c->dcache_line_size = *line_size;
592 }
593 break;
594
595 case 2:
596 c->ecache_size = *size;
597 c->ecache_line_size = *line_size;
598 break;
599
600 default:
601 break;
602 }
603
604 if (*level == 1) {
David S. Miller43fdf272007-07-12 13:47:50 -0700605 u64 a;
David S. Miller5cbc3072007-05-25 15:49:59 -0700606
David S. Miller43fdf272007-07-12 13:47:50 -0700607 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_FWD) {
608 u64 target = mdesc_arc_target(hp, a);
609 const char *name = mdesc_node_name(hp, target);
David S. Miller5cbc3072007-05-25 15:49:59 -0700610
David S. Miller43fdf272007-07-12 13:47:50 -0700611 if (!strcmp(name, "cache"))
612 fill_in_one_cache(c, hp, target);
David S. Miller5cbc3072007-05-25 15:49:59 -0700613 }
614 }
615}
616
David S. Miller5052f522009-04-08 19:55:47 -0700617static void __cpuinit mark_core_ids(struct mdesc_handle *hp, u64 mp, int core_id)
David S. Miller5cbc3072007-05-25 15:49:59 -0700618{
David S. Miller43fdf272007-07-12 13:47:50 -0700619 u64 a;
David S. Miller5cbc3072007-05-25 15:49:59 -0700620
David S. Miller43fdf272007-07-12 13:47:50 -0700621 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_BACK) {
622 u64 t = mdesc_arc_target(hp, a);
623 const char *name;
David S. Miller5cbc3072007-05-25 15:49:59 -0700624 const u64 *id;
625
David S. Miller43fdf272007-07-12 13:47:50 -0700626 name = mdesc_node_name(hp, t);
627 if (!strcmp(name, "cpu")) {
628 id = mdesc_get_property(hp, t, "id", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700629 if (*id < NR_CPUS)
630 cpu_data(*id).core_id = core_id;
631 } else {
David S. Miller43fdf272007-07-12 13:47:50 -0700632 u64 j;
David S. Miller5cbc3072007-05-25 15:49:59 -0700633
David S. Miller43fdf272007-07-12 13:47:50 -0700634 mdesc_for_each_arc(j, hp, t, MDESC_ARC_TYPE_BACK) {
635 u64 n = mdesc_arc_target(hp, j);
636 const char *n_name;
David S. Miller5cbc3072007-05-25 15:49:59 -0700637
David S. Miller43fdf272007-07-12 13:47:50 -0700638 n_name = mdesc_node_name(hp, n);
639 if (strcmp(n_name, "cpu"))
David S. Miller5cbc3072007-05-25 15:49:59 -0700640 continue;
641
David S. Miller43fdf272007-07-12 13:47:50 -0700642 id = mdesc_get_property(hp, n, "id", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700643 if (*id < NR_CPUS)
644 cpu_data(*id).core_id = core_id;
645 }
646 }
647 }
648}
649
David S. Miller5052f522009-04-08 19:55:47 -0700650static void __cpuinit set_core_ids(struct mdesc_handle *hp)
David S. Miller5cbc3072007-05-25 15:49:59 -0700651{
David S. Miller5cbc3072007-05-25 15:49:59 -0700652 int idx;
David S. Miller43fdf272007-07-12 13:47:50 -0700653 u64 mp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700654
655 idx = 1;
David S. Miller43fdf272007-07-12 13:47:50 -0700656 mdesc_for_each_node_by_name(hp, mp, "cache") {
657 const u64 *level;
David S. Miller5cbc3072007-05-25 15:49:59 -0700658 const char *type;
659 int len;
660
David S. Miller43fdf272007-07-12 13:47:50 -0700661 level = mdesc_get_property(hp, mp, "level", NULL);
David S. Miller5cbc3072007-05-25 15:49:59 -0700662 if (*level != 1)
663 continue;
664
David S. Miller43fdf272007-07-12 13:47:50 -0700665 type = mdesc_get_property(hp, mp, "type", &len);
David S. Miller46bcea72007-08-07 18:46:36 -0700666 if (!of_find_in_proplist(type, "instn", len))
David S. Miller5cbc3072007-05-25 15:49:59 -0700667 continue;
668
David S. Miller43fdf272007-07-12 13:47:50 -0700669 mark_core_ids(hp, mp, idx);
David S. Miller5cbc3072007-05-25 15:49:59 -0700670
671 idx++;
672 }
673}
674
David S. Miller5052f522009-04-08 19:55:47 -0700675static void __cpuinit mark_proc_ids(struct mdesc_handle *hp, u64 mp, int proc_id)
David S. Millerf78eae22007-06-04 17:01:39 -0700676{
David S. Miller43fdf272007-07-12 13:47:50 -0700677 u64 a;
David S. Millerf78eae22007-06-04 17:01:39 -0700678
David S. Miller43fdf272007-07-12 13:47:50 -0700679 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_BACK) {
680 u64 t = mdesc_arc_target(hp, a);
681 const char *name;
David S. Millerf78eae22007-06-04 17:01:39 -0700682 const u64 *id;
683
David S. Miller43fdf272007-07-12 13:47:50 -0700684 name = mdesc_node_name(hp, t);
685 if (strcmp(name, "cpu"))
David S. Millerf78eae22007-06-04 17:01:39 -0700686 continue;
687
David S. Miller43fdf272007-07-12 13:47:50 -0700688 id = mdesc_get_property(hp, t, "id", NULL);
David S. Millerf78eae22007-06-04 17:01:39 -0700689 if (*id < NR_CPUS)
690 cpu_data(*id).proc_id = proc_id;
691 }
692}
693
David S. Miller5052f522009-04-08 19:55:47 -0700694static void __cpuinit __set_proc_ids(struct mdesc_handle *hp, const char *exec_unit_name)
David S. Millerf78eae22007-06-04 17:01:39 -0700695{
David S. Millerf78eae22007-06-04 17:01:39 -0700696 int idx;
David S. Miller43fdf272007-07-12 13:47:50 -0700697 u64 mp;
David S. Millerf78eae22007-06-04 17:01:39 -0700698
699 idx = 0;
David S. Miller43fdf272007-07-12 13:47:50 -0700700 mdesc_for_each_node_by_name(hp, mp, exec_unit_name) {
David S. Millerf78eae22007-06-04 17:01:39 -0700701 const char *type;
702 int len;
703
David S. Miller43fdf272007-07-12 13:47:50 -0700704 type = mdesc_get_property(hp, mp, "type", &len);
David S. Miller46bcea72007-08-07 18:46:36 -0700705 if (!of_find_in_proplist(type, "int", len) &&
706 !of_find_in_proplist(type, "integer", len))
David S. Millerf78eae22007-06-04 17:01:39 -0700707 continue;
708
David S. Miller43fdf272007-07-12 13:47:50 -0700709 mark_proc_ids(hp, mp, idx);
David S. Millerf78eae22007-06-04 17:01:39 -0700710
711 idx++;
712 }
713}
714
David S. Miller5052f522009-04-08 19:55:47 -0700715static void __cpuinit set_proc_ids(struct mdesc_handle *hp)
David S. Millerf78eae22007-06-04 17:01:39 -0700716{
David S. Miller43fdf272007-07-12 13:47:50 -0700717 __set_proc_ids(hp, "exec_unit");
718 __set_proc_ids(hp, "exec-unit");
David S. Millerf78eae22007-06-04 17:01:39 -0700719}
720
David S. Miller5052f522009-04-08 19:55:47 -0700721static void __cpuinit get_one_mondo_bits(const u64 *p, unsigned int *mask,
David S. Miller961f65f2011-08-05 02:38:27 -0700722 unsigned long def, unsigned long max)
David S. Miller5cbc3072007-05-25 15:49:59 -0700723{
724 u64 val;
725
726 if (!p)
727 goto use_default;
728 val = *p;
729
730 if (!val || val >= 64)
731 goto use_default;
732
David S. Miller961f65f2011-08-05 02:38:27 -0700733 if (val > max)
734 val = max;
735
David S. Miller5cbc3072007-05-25 15:49:59 -0700736 *mask = ((1U << val) * 64U) - 1U;
737 return;
738
739use_default:
740 *mask = ((1U << def) * 64U) - 1U;
741}
742
David S. Miller5052f522009-04-08 19:55:47 -0700743static void __cpuinit get_mondo_data(struct mdesc_handle *hp, u64 mp,
David S. Miller4f0234f2007-07-13 16:03:42 -0700744 struct trap_per_cpu *tb)
David S. Miller5cbc3072007-05-25 15:49:59 -0700745{
David S. Miller961f65f2011-08-05 02:38:27 -0700746 static int printed;
David S. Miller5cbc3072007-05-25 15:49:59 -0700747 const u64 *val;
748
David S. Miller43fdf272007-07-12 13:47:50 -0700749 val = mdesc_get_property(hp, mp, "q-cpu-mondo-#bits", NULL);
David S. Miller961f65f2011-08-05 02:38:27 -0700750 get_one_mondo_bits(val, &tb->cpu_mondo_qmask, 7, ilog2(max_cpus * 2));
David S. Miller5cbc3072007-05-25 15:49:59 -0700751
David S. Miller43fdf272007-07-12 13:47:50 -0700752 val = mdesc_get_property(hp, mp, "q-dev-mondo-#bits", NULL);
David S. Miller961f65f2011-08-05 02:38:27 -0700753 get_one_mondo_bits(val, &tb->dev_mondo_qmask, 7, 8);
David S. Miller5cbc3072007-05-25 15:49:59 -0700754
David S. Miller43fdf272007-07-12 13:47:50 -0700755 val = mdesc_get_property(hp, mp, "q-resumable-#bits", NULL);
David S. Miller961f65f2011-08-05 02:38:27 -0700756 get_one_mondo_bits(val, &tb->resum_qmask, 6, 7);
David S. Miller5cbc3072007-05-25 15:49:59 -0700757
David S. Miller43fdf272007-07-12 13:47:50 -0700758 val = mdesc_get_property(hp, mp, "q-nonresumable-#bits", NULL);
David S. Miller961f65f2011-08-05 02:38:27 -0700759 get_one_mondo_bits(val, &tb->nonresum_qmask, 2, 2);
760 if (!printed++) {
761 pr_info("SUN4V: Mondo queue sizes "
762 "[cpu(%u) dev(%u) r(%u) nr(%u)]\n",
763 tb->cpu_mondo_qmask + 1,
764 tb->dev_mondo_qmask + 1,
765 tb->resum_qmask + 1,
766 tb->nonresum_qmask + 1);
767 }
David S. Miller5cbc3072007-05-25 15:49:59 -0700768}
769
David S. Miller5052f522009-04-08 19:55:47 -0700770static void * __cpuinit mdesc_iterate_over_cpus(void *(*func)(struct mdesc_handle *, u64, int, void *), void *arg, cpumask_t *mask)
David S. Miller5cbc3072007-05-25 15:49:59 -0700771{
David S. Miller43fdf272007-07-12 13:47:50 -0700772 struct mdesc_handle *hp = mdesc_grab();
David S. Miller5052f522009-04-08 19:55:47 -0700773 void *ret = NULL;
David S. Miller43fdf272007-07-12 13:47:50 -0700774 u64 mp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700775
David S. Miller43fdf272007-07-12 13:47:50 -0700776 mdesc_for_each_node_by_name(hp, mp, "cpu") {
777 const u64 *id = mdesc_get_property(hp, mp, "id", NULL);
David S. Miller5052f522009-04-08 19:55:47 -0700778 int cpuid = *id;
David S. Miller5cbc3072007-05-25 15:49:59 -0700779
780#ifdef CONFIG_SMP
David S. Miller8a177c42007-09-16 14:45:06 -0700781 if (cpuid >= NR_CPUS) {
782 printk(KERN_WARNING "Ignoring CPU %d which is "
783 ">= NR_CPUS (%d)\n",
784 cpuid, NR_CPUS);
David S. Miller5cbc3072007-05-25 15:49:59 -0700785 continue;
David S. Miller8a177c42007-09-16 14:45:06 -0700786 }
KOSAKI Motohirofb1fece2011-05-16 13:38:07 -0700787 if (!cpumask_test_cpu(cpuid, mask))
David S. Miller4f0234f2007-07-13 16:03:42 -0700788 continue;
David S. Miller5cbc3072007-05-25 15:49:59 -0700789#endif
790
David S. Miller5052f522009-04-08 19:55:47 -0700791 ret = func(hp, mp, cpuid, arg);
792 if (ret)
793 goto out;
794 }
795out:
796 mdesc_release(hp);
797 return ret;
798}
David S. Miller5cbc3072007-05-25 15:49:59 -0700799
David S. Miller5052f522009-04-08 19:55:47 -0700800static void * __cpuinit record_one_cpu(struct mdesc_handle *hp, u64 mp, int cpuid, void *arg)
801{
802 ncpus_probed++;
803#ifdef CONFIG_SMP
804 set_cpu_present(cpuid, true);
805#endif
806 return NULL;
807}
David S. Miller5cbc3072007-05-25 15:49:59 -0700808
David S. Miller5052f522009-04-08 19:55:47 -0700809void __cpuinit mdesc_populate_present_mask(cpumask_t *mask)
810{
811 if (tlb_type != hypervisor)
812 return;
David S. Miller5cbc3072007-05-25 15:49:59 -0700813
David S. Miller5052f522009-04-08 19:55:47 -0700814 ncpus_probed = 0;
815 mdesc_iterate_over_cpus(record_one_cpu, NULL, mask);
816}
David S. Miller5cbc3072007-05-25 15:49:59 -0700817
David S. Miller5052f522009-04-08 19:55:47 -0700818static void * __cpuinit fill_in_one_cpu(struct mdesc_handle *hp, u64 mp, int cpuid, void *arg)
819{
820 const u64 *cfreq = mdesc_get_property(hp, mp, "clock-frequency", NULL);
821 struct trap_per_cpu *tb;
822 cpuinfo_sparc *c;
823 u64 a;
David S. Miller5cbc3072007-05-25 15:49:59 -0700824
David S. Miller5052f522009-04-08 19:55:47 -0700825#ifndef CONFIG_SMP
826 /* On uniprocessor we only want the values for the
827 * real physical cpu the kernel booted onto, however
828 * cpu_data() only has one entry at index 0.
829 */
830 if (cpuid != real_hard_smp_processor_id())
831 return NULL;
832 cpuid = 0;
833#endif
834
835 c = &cpu_data(cpuid);
836 c->clock_tick = *cfreq;
837
838 tb = &trap_block[cpuid];
839 get_mondo_data(hp, mp, tb);
840
841 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_FWD) {
842 u64 j, t = mdesc_arc_target(hp, a);
843 const char *t_name;
844
845 t_name = mdesc_node_name(hp, t);
846 if (!strcmp(t_name, "cache")) {
847 fill_in_one_cache(c, hp, t);
848 continue;
David S. Miller5cbc3072007-05-25 15:49:59 -0700849 }
850
David S. Miller5052f522009-04-08 19:55:47 -0700851 mdesc_for_each_arc(j, hp, t, MDESC_ARC_TYPE_FWD) {
852 u64 n = mdesc_arc_target(hp, j);
853 const char *n_name;
David S. Miller5cbc3072007-05-25 15:49:59 -0700854
David S. Miller5052f522009-04-08 19:55:47 -0700855 n_name = mdesc_node_name(hp, n);
856 if (!strcmp(n_name, "cache"))
857 fill_in_one_cache(c, hp, n);
858 }
David S. Miller5cbc3072007-05-25 15:49:59 -0700859 }
860
David S. Miller5052f522009-04-08 19:55:47 -0700861 c->core_id = 0;
862 c->proc_id = -1;
863
864 return NULL;
865}
866
David S. Millera2094502009-04-01 03:15:11 -0700867void __cpuinit mdesc_fill_in_cpu_data(cpumask_t *mask)
David S. Miller5052f522009-04-08 19:55:47 -0700868{
869 struct mdesc_handle *hp;
870
David S. Millera2094502009-04-01 03:15:11 -0700871 mdesc_iterate_over_cpus(fill_in_one_cpu, NULL, mask);
David S. Miller5052f522009-04-08 19:55:47 -0700872
David S. Millera2f9f6b2007-06-04 21:48:33 -0700873#ifdef CONFIG_SMP
874 sparc64_multi_core = 1;
875#endif
876
David S. Miller5052f522009-04-08 19:55:47 -0700877 hp = mdesc_grab();
878
David S. Miller43fdf272007-07-12 13:47:50 -0700879 set_core_ids(hp);
880 set_proc_ids(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700881
David S. Miller43fdf272007-07-12 13:47:50 -0700882 mdesc_release(hp);
David S. Miller5052f522009-04-08 19:55:47 -0700883
884 smp_fill_in_sib_core_maps();
David S. Miller5cbc3072007-05-25 15:49:59 -0700885}
886
David S. Miller0fdb7f92007-08-15 21:02:23 -0700887static ssize_t mdesc_read(struct file *file, char __user *buf,
888 size_t len, loff_t *offp)
889{
890 struct mdesc_handle *hp = mdesc_grab();
891 int err;
892
893 if (!hp)
894 return -ENODEV;
895
896 err = hp->handle_size;
897 if (len < hp->handle_size)
898 err = -EMSGSIZE;
899 else if (copy_to_user(buf, &hp->mdesc, hp->handle_size))
900 err = -EFAULT;
901 mdesc_release(hp);
902
903 return err;
904}
905
906static const struct file_operations mdesc_fops = {
907 .read = mdesc_read,
908 .owner = THIS_MODULE,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200909 .llseek = noop_llseek,
David S. Miller0fdb7f92007-08-15 21:02:23 -0700910};
911
912static struct miscdevice mdesc_misc = {
913 .minor = MISC_DYNAMIC_MINOR,
914 .name = "mdesc",
915 .fops = &mdesc_fops,
916};
917
918static int __init mdesc_misc_init(void)
919{
920 return misc_register(&mdesc_misc);
921}
922
923__initcall(mdesc_misc_init);
924
David S. Miller5cbc3072007-05-25 15:49:59 -0700925void __init sun4v_mdesc_init(void)
926{
David S. Miller43fdf272007-07-12 13:47:50 -0700927 struct mdesc_handle *hp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700928 unsigned long len, real_len, status;
929
930 (void) sun4v_mach_desc(0UL, 0UL, &len);
931
932 printk("MDESC: Size is %lu bytes.\n", len);
933
Yinghai Lu95f72d12010-07-12 14:36:09 +1000934 hp = mdesc_alloc(len, &memblock_mdesc_ops);
David S. Miller43fdf272007-07-12 13:47:50 -0700935 if (hp == NULL) {
936 prom_printf("MDESC: alloc of %lu bytes failed.\n", len);
937 prom_halt();
938 }
David S. Miller5cbc3072007-05-25 15:49:59 -0700939
David S. Miller43fdf272007-07-12 13:47:50 -0700940 status = sun4v_mach_desc(__pa(&hp->mdesc), len, &real_len);
David S. Miller5cbc3072007-05-25 15:49:59 -0700941 if (status != HV_EOK || real_len > len) {
942 prom_printf("sun4v_mach_desc fails, err(%lu), "
943 "len(%lu), real_len(%lu)\n",
944 status, len, real_len);
David S. Miller43fdf272007-07-12 13:47:50 -0700945 mdesc_free(hp);
David S. Miller5cbc3072007-05-25 15:49:59 -0700946 prom_halt();
947 }
948
David S. Miller43fdf272007-07-12 13:47:50 -0700949 cur_mdesc = hp;
David S. Miller5cbc3072007-05-25 15:49:59 -0700950
951 report_platform_properties();
David S. Miller5cbc3072007-05-25 15:49:59 -0700952}