/*
 * Copyright (C) 2017 Samsung Electronics. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 */

/*
 *  fingerprint sysfs class
 */

#include "fingerprint_sysfs.h"

struct class *fingerprint_class;
EXPORT_SYMBOL_GPL(fingerprint_class);

/*
 * Create sysfs interface
 */
void set_fingerprint_attr(struct device *dev,
	struct device_attribute *attributes[])
{
	int i;

	for (i = 0; attributes[i] != NULL; i++)
		if ((device_create_file(dev, attributes[i])) < 0)
			pr_err("%s: fail device_create_file (dev, attributes[%d])\n", __func__, i);
}

int fingerprint_register(struct device *dev, void *drvdata,
	struct device_attribute *attributes[], char *name)
{
	int ret = 0;

	if (!fingerprint_class) {
		fingerprint_class = class_create(THIS_MODULE, "fingerprint");
		if (IS_ERR(fingerprint_class))
			return PTR_ERR(fingerprint_class);
	}

	dev = device_create(fingerprint_class, NULL, 0, drvdata, "%s", name);

	if (IS_ERR(dev)) {
		ret = PTR_ERR(dev);
		pr_err("%s: device_create failed! [%d]\n", __func__, ret);
		return ret;
	}

	set_fingerprint_attr(dev, attributes);

	return 0;
}
EXPORT_SYMBOL_GPL(fingerprint_register);

void fingerprint_unregister(struct device *dev,
	struct device_attribute *attributes[])
{
	int i;

	for (i = 0; attributes[i] != NULL; i++)
		device_remove_file(dev, attributes[i]);
}
EXPORT_SYMBOL_GPL(fingerprint_unregister);

void destroy_fingerprint_class(void)
{
	if (fingerprint_class) {
		class_destroy(fingerprint_class);
		fingerprint_class = NULL;
	}
}
EXPORT_SYMBOL_GPL(destroy_fingerprint_class);

static int __init fingerprint_class_init(void)
{
	pr_info("%s\n", __func__);
	fingerprint_class = class_create(THIS_MODULE, "fingerprint");

	if (IS_ERR(fingerprint_class)) {
		pr_err("%s, create fingerprint_class is failed.\n",
			__func__);
		return PTR_ERR(fingerprint_class);
	}

	fingerprint_class->dev_uevent = NULL;

	return 0;
}

static void __exit fingerprint_class_exit(void)
{
	if (fingerprint_class) {
		class_destroy(fingerprint_class);
		fingerprint_class = NULL;
	}
}

subsys_initcall(fingerprint_class_init);
module_exit(fingerprint_class_exit);

MODULE_DESCRIPTION("fingerprint sysfs class");
MODULE_LICENSE("GPL");