aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/platforms/powernv/ultravisor.c
blob: e4a00ad06f9d3fe6ab8239a90cc27e480381bd46 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// SPDX-License-Identifier: GPL-2.0
/*
 * Ultravisor high level interfaces
 *
 * Copyright 2019, IBM Corporation.
 *
 */
#include <linux/init.h>
#include <linux/printk.h>
#include <linux/of_fdt.h>
#include <linux/of.h>

#include <asm/ultravisor.h>
#include <asm/firmware.h>
#include <asm/machdep.h>

#include "powernv.h"

static struct kobject *ultravisor_kobj;

int __init early_init_dt_scan_ultravisor(unsigned long node, const char *uname,
					 int depth, void *data)
{
	if (!of_flat_dt_is_compatible(node, "ibm,ultravisor"))
		return 0;

	powerpc_firmware_features |= FW_FEATURE_ULTRAVISOR;
	pr_debug("Ultravisor detected!\n");
	return 1;
}

static struct memcons *uv_memcons;

static ssize_t uv_msglog_read(struct file *file, struct kobject *kobj,
			      struct bin_attribute *bin_attr, char *to,
			      loff_t pos, size_t count)
{
	return memcons_copy(uv_memcons, to, pos, count);
}

static struct bin_attribute uv_msglog_attr = {
	.attr = {.name = "msglog", .mode = 0400},
	.read = uv_msglog_read
};

static int __init uv_init(void)
{
	struct device_node *node;

	if (!firmware_has_feature(FW_FEATURE_ULTRAVISOR))
		return 0;

	node = of_find_compatible_node(NULL, NULL, "ibm,uv-firmware");
	if (!node)
		return -ENODEV;

	uv_memcons = memcons_init(node, "memcons");
	if (!uv_memcons)
		return -ENOENT;

	uv_msglog_attr.size = memcons_get_size(uv_memcons);

	ultravisor_kobj = kobject_create_and_add("ultravisor", firmware_kobj);
	if (!ultravisor_kobj)
		return -ENOMEM;

	return sysfs_create_bin_file(ultravisor_kobj, &uv_msglog_attr);
}
machine_subsys_initcall(powernv, uv_init);