rpadlpar_sysfs.c 2.6 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
/*
 * Interface for Dynamic Logical Partitioning of I/O Slots on
 * RPA-compliant PPC64 platform.
 *
 * John Rose <johnrose@austin.ibm.com>
 * October 2003
 *
 * Copyright (C) 2003 IBM.
 *
 *      This program is free software; you can redistribute it and/or
 *      modify it under the terms of the GNU General Public License
 *      as published by the Free Software Foundation; either version
 *      2 of the License, or (at your option) any later version.
 */
#include <linux/kobject.h>
#include <linux/string.h>
17
#include <linux/pci_hotplug.h>
L
Linus Torvalds 已提交
18 19 20 21 22 23 24 25 26
#include "rpadlpar.h"

#define DLPAR_KOBJ_NAME       "control"
#define ADD_SLOT_ATTR_NAME    "add_slot"
#define REMOVE_SLOT_ATTR_NAME "remove_slot"

#define MAX_DRC_NAME_LEN 64


27 28
static ssize_t add_slot_store(struct kobject *kobj, struct kobj_attribute *attr,
			      const char *buf, size_t nbytes)
L
Linus Torvalds 已提交
29 30 31
{
	char drc_name[MAX_DRC_NAME_LEN];
	char *end;
32
	int rc;
L
Linus Torvalds 已提交
33

34
	if (nbytes >= MAX_DRC_NAME_LEN)
L
Linus Torvalds 已提交
35 36 37 38 39 40 41 42 43
		return 0;

	memcpy(drc_name, buf, nbytes);

	end = strchr(drc_name, '\n');
	if (!end)
		end = &drc_name[nbytes];
	*end = '\0';

44 45 46
	rc = dlpar_add_slot(drc_name);
	if (rc)
		return rc;
L
Linus Torvalds 已提交
47 48 49 50

	return nbytes;
}

51 52 53 54 55 56 57 58 59
static ssize_t add_slot_show(struct kobject *kobj,
			     struct kobj_attribute *attr, char *buf)
{
	return sprintf(buf, "0\n");
}

static ssize_t remove_slot_store(struct kobject *kobj,
				 struct kobj_attribute *attr,
				 const char *buf, size_t nbytes)
L
Linus Torvalds 已提交
60 61
{
	char drc_name[MAX_DRC_NAME_LEN];
62
	int rc;
L
Linus Torvalds 已提交
63 64
	char *end;

65
	if (nbytes >= MAX_DRC_NAME_LEN)
L
Linus Torvalds 已提交
66 67 68 69 70 71 72 73 74
		return 0;

	memcpy(drc_name, buf, nbytes);

	end = strchr(drc_name, '\n');
	if (!end)
		end = &drc_name[nbytes];
	*end = '\0';

75 76 77
	rc = dlpar_remove_slot(drc_name);
	if (rc)
		return rc;
L
Linus Torvalds 已提交
78 79 80 81

	return nbytes;
}

82 83 84 85 86
static ssize_t remove_slot_show(struct kobject *kobj,
				struct kobj_attribute *attr, char *buf)
{
	return sprintf(buf, "0\n");
}
L
Linus Torvalds 已提交
87

88 89 90 91 92
static struct kobj_attribute add_slot_attr =
	__ATTR(ADD_SLOT_ATTR_NAME, 0644, add_slot_show, add_slot_store);

static struct kobj_attribute remove_slot_attr =
	__ATTR(REMOVE_SLOT_ATTR_NAME, 0644, remove_slot_show, remove_slot_store);
L
Linus Torvalds 已提交
93 94 95 96 97 98 99

static struct attribute *default_attrs[] = {
	&add_slot_attr.attr,
	&remove_slot_attr.attr,
	NULL,
};

100 101
static struct attribute_group dlpar_attr_group = {
	.attrs = default_attrs,
L
Linus Torvalds 已提交
102 103
};

104
static struct kobject *dlpar_kobj;
L
Linus Torvalds 已提交
105 106 107

int dlpar_sysfs_init(void)
{
108 109 110 111 112
	int error;

	dlpar_kobj = kobject_create_and_add(DLPAR_KOBJ_NAME,
					    &pci_hotplug_slots_kset->kobj);
	if (!dlpar_kobj)
L
Linus Torvalds 已提交
113 114
		return -EINVAL;

115 116 117 118
	error = sysfs_create_group(dlpar_kobj, &dlpar_attr_group);
	if (error)
		kobject_unregister(dlpar_kobj);
	return error;
L
Linus Torvalds 已提交
119 120 121 122
}

void dlpar_sysfs_exit(void)
{
123 124
	sysfs_remove_group(dlpar_kobj, &dlpar_attr_group);
	kobject_unregister(dlpar_kobj);
L
Linus Torvalds 已提交
125
}