No subject
Fri Oct 22 17:57:35 EDT 2010
Now it makes me wonder if this thing would make sense. Maybe it's
better to create a node under platform and then add attributes to it, as suggested
in V1 thread. I don't know, this could still be done by the socinfo code.
I mean, location is still an issue it seams :-)
Another thing, what could be done is, instead of creating new data structures to hold
the attributes, a struct attribute_group could be pass instead during registration time.
What do you think??
> +
> +static struct attribute *soc_attrs[] = {
> + NULL,
> +};
> +
> +static struct attribute_group soc_attr_group = {
> + .attrs = soc_attrs,
> +};
What is the point of the above two ?
> +
> +int __init register_sysfs_soc(struct sysfs_soc_info *info, size_t num)
> +{
> + int ret;
> +
> + soc_object = kobject_create_and_add("socinfo", NULL);
> + if (!soc_object) {
> + ret = -ENOMEM;
> + goto exit;
> + }
> +
> + ret = sysfs_create_group(soc_object, &soc_attr_group);
> + if (ret)
> + goto kset_exit;
You add an empty group here.
> +
> + ret = register_sysfs_soc_info(info, num);
> + if (ret)
> + goto group_exit;
But the real thing happens here.
> +
> + return 0;
> +
> +group_exit:
> + sysfs_remove_group(soc_object, &soc_attr_group);
> +kset_exit:
> + kobject_put(soc_object);
> +exit:
> + return ret;
> +}
> +
> diff --git a/include/linux/sys_soc.h b/include/linux/sys_soc.h
> new file mode 100644
> index 0000000..05e5529
> --- /dev/null
> +++ b/include/linux/sys_soc.h
> @@ -0,0 +1,50 @@
> +/*
> + * Copyright (C) ST-Ericsson SA 2011
> + * Author: Maxime Coquelin <maxime.coquelin-nonst at stericsson.com> for ST-Ericsson.
> + * License terms: GNU General Public License (GPL), version 2
> + */
> +#ifndef __SYS_SOC_H
> +#define __SYS_SOC_H
> +
> +#include <linux/kobject.h>
> +
> +/**
> + * struct sys_soc_info - SoC exports related informations
> + * @name: name of the export
> + * @info: pointer on the key to export
> + * @get_info: callback to retrieve key if info field is NULL
> + * @attr: export's sysdev class attribute
> + */
> +struct sysfs_soc_info {
> + const char *info;
> + ssize_t (*get_info)(char *buf, struct sysfs_soc_info *);
> + struct kobj_attribute attr;
> +};
> +
> +ssize_t show_soc_info(struct kobject *, struct kobj_attribute *, char *);
> +
> +#define SYSFS_SOC_ATTR_VALUE(_name, _value) { \
> + .attr.attr.name = _name, \
> + .attr.attr.mode = S_IRUGO, \
> + .attr.show = show_soc_info, \
> + .info = _value, \
> +}
> +
> +#define SYSFS_SOC_ATTR_CALLBACK(_name, _callback) { \
> + .attr.attr.name = _name, \
> + .attr.attr.mode = S_IRUGO, \
> + .attr.show = show_soc_info, \
> + .get_info = _callback, \
> +}
> +
> +/**
> + * register_sys_soc - register the soc information
> + * @name: name of the machine
> + * @info: pointer on the info table to export
> + * @num: number of info to export
> + *
> + * NOTE: This function must only be called once
> + */
> +int register_sysfs_soc(struct sysfs_soc_info *info, size_t num);
> +
> +#endif /* __SYS_SOC_H */
> --
> 1.7.1
--
Eduardo Valentin
More information about the linux-arm-kernel
mailing list