lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Date:	Tue, 07 Oct 2008 14:09:59 +0100
From:	Mark Jackson <mpfj@...c.co.uk>
To:	linux-kernel@...r.kernel.org
Subject: [PATCH] Add support for Dallas DS28CM00 Unique ID chip

This patch adds support for the (I2C based) DS28CM00 ID chip.

Signed-off-by: M.Jackson <mpfj@...c.co.uk>
---
 drivers/i2c/chips/Kconfig    |    7 ++
 drivers/i2c/chips/Makefile   |    1 +
 drivers/i2c/chips/ds28cm00.c |  189 ++++++++++++++++++++++++++++++++++++++++++
 3 files changed, 197 insertions(+), 0 deletions(-)

diff --git a/drivers/i2c/chips/Kconfig b/drivers/i2c/chips/Kconfig
index a95cb94..98c06e7 100644
--- a/drivers/i2c/chips/Kconfig
+++ b/drivers/i2c/chips/Kconfig
@@ -172,4 +172,11 @@ config MENELAUS
 	  and other features that are often used in portable devices like
 	  cell phones and PDAs.
 
+config DS28CM00
+	tristate "DS28CM00 Serial Number chip"
+	depends on EXPERIMENTAL
+	help
+	  If you say yes here you get support for the Dallas DS28CM00
+	  Serial Number chip.
+
 endmenu
diff --git a/drivers/i2c/chips/Makefile b/drivers/i2c/chips/Makefile
index 39e3e69..f674d94 100644
--- a/drivers/i2c/chips/Makefile
+++ b/drivers/i2c/chips/Makefile
@@ -21,6 +21,7 @@ obj-$(CONFIG_ISP1301_OMAP)	+= isp1301_omap.o
 obj-$(CONFIG_TPS65010)		+= tps65010.o
 obj-$(CONFIG_MENELAUS)		+= menelaus.o
 obj-$(CONFIG_SENSORS_TSL2550)	+= tsl2550.o
+obj-$(CONFIG_DS28CM00)		+= ds28cm00.o
 
 ifeq ($(CONFIG_I2C_DEBUG_CHIP),y)
 EXTRA_CFLAGS += -DDEBUG
diff --git a/drivers/i2c/chips/ds28cm00.c b/drivers/i2c/chips/ds28cm00.c
new file mode 100644
index 0000000..151f1c1
--- /dev/null
+++ b/drivers/i2c/chips/ds28cm00.c
@@ -0,0 +1,189 @@
+/*
+    ds28cm00.c - driver for DS28CM00 Serial ID chip
+
+    Copyright (C) 2008 Mark Jackson <mpfj@...c.co.uk>
+
+    Based on i2c/chips/max6875.c
+
+    The DS28CM00 contains a 64bit unique number.
+    The memory map is defined as follows:
+     * 0x00			= Device Family Code (0x70)
+     * 0x01 - 0x06	= Serial Number (bits 0 to 47)
+     * 0x07			= CRC of addresses 0x00 to 0x06
+     * 0x08			= Control Register (R/W)
+
+    This driver makes the Serial Number available for read.
+
+    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; version 2 of the License.
+*/
+
+#include <linux/kernel.h>
+#include <linux/init.h>
+#include <linux/module.h>
+#include <linux/slab.h>
+#include <linux/i2c.h>
+#include <linux/mutex.h>
+
+#undef DS28CM00_DEBUG
+
+static unsigned short normal_i2c[] = {I2C_CLIENT_END};
+
+/* Insmod parameters */
+I2C_CLIENT_INSMOD_1(ds28cm00);
+
+#define DS28CM00_CMD_WRITE		0x50
+#define DS28CM00_CMD_READ		0x51
+
+#define ID_SIZE		9
+
+/* Each client has this additional data */
+struct ds28cm00_data {
+	struct i2c_client	client;
+	struct mutex		update_lock;
+};
+
+static int ds28cm00_attach_adapter(struct i2c_adapter *adapter);
+static int ds28cm00_detect(struct i2c_adapter *adapter, int address, int kind);
+static int ds28cm00_detach_client(struct i2c_client *client);
+
+/* This is the driver that will be inserted */
+static struct i2c_driver ds28cm00_driver = {
+	.driver = {
+		.name	= "ds28cm00",
+	},
+	.attach_adapter	= ds28cm00_attach_adapter,
+	.detach_client	= ds28cm00_detach_client,
+};
+
+static ssize_t ds28cm00_read(struct kobject *kobj,
+			    struct bin_attribute *bin_attr,
+			    char *buf, loff_t off, size_t count)
+{
+	struct i2c_client *client = kobj_to_i2c_client(kobj);
+	//struct ds28cm00_data *data = i2c_get_clientdata(client);
+
+	printk("DS28CM00 : read(offset = %d, count = %d)\n", off, count);
+
+	if (off > ID_SIZE)
+		return 0;
+
+	if (off + count > ID_SIZE)
+		count = ID_SIZE - off;
+
+	if (i2c_smbus_read_i2c_block_data(client, DS28CM00_CMD_READ, count, buf) != count)
+		return 0;
+
+	{
+		int i;
+		for (i = 0; i < count; i++)
+		{
+			printk("DS28CM00[i] = 0x%02x\n", buf[i]);
+		}
+	}
+
+	//memcpy(buf, &data->data[off], count);
+
+	return count;
+}
+
+static struct bin_attribute id_attr = {
+	.attr = {
+		.name = "id",
+		.mode = S_IRUGO,
+	},
+	.size = ID_SIZE,
+	.read = ds28cm00_read,
+};
+
+static int ds28cm00_attach_adapter(struct i2c_adapter *adapter)
+{
+	return i2c_probe(adapter, &addr_data, ds28cm00_detect);
+}
+
+/* This function is called by i2c_probe */
+static int ds28cm00_detect(struct i2c_adapter *adapter, int address, int kind)
+{
+	struct i2c_client *new_client;
+	struct ds28cm00_data *data;
+	int err = 0;
+
+	printk("DS28CM00 I2C Serial Number driver\n");
+
+	if (!i2c_check_functionality(adapter, I2C_FUNC_I2C))
+	{
+		printk("DS28CM00 : failed i2c_check_func()\n");
+		return 0;
+	}
+
+	if (!(data = kzalloc(sizeof(struct ds28cm00_data), GFP_KERNEL)))
+	{
+		printk("DS28CM00 : failed kzalloc()\n");
+		return -ENOMEM;
+	}
+
+	new_client = &data->client;
+	i2c_set_clientdata(new_client, data);
+	new_client->addr = address;
+	new_client->adapter = adapter;
+	new_client->driver = &ds28cm00_driver;
+	new_client->flags = 0;
+	strlcpy(new_client->name, "ds28cm00", I2C_NAME_SIZE);
+
+	/* Tell the I2C layer a new client has arrived */
+	if ((err = i2c_attach_client(new_client)))
+	{
+		printk("DS28CM00 : failed i2c_attach_client()\n");
+		goto exit_kfree;
+	}
+
+	/* Register sysfs hooks */
+	err = sysfs_create_bin_file(&new_client->dev.kobj, &id_attr);
+	if (err)
+	{
+		printk("DS28CM00 : failed sysfs_create_bin_file()\n");
+		goto exit_detach;
+	}
+
+	return 0;
+
+exit_detach:
+	i2c_detach_client(new_client);
+exit_kfree:
+	kfree(data);
+	return err;
+}
+
+static int ds28cm00_detach_client(struct i2c_client *client)
+{
+	int err;
+
+	sysfs_remove_bin_file(&client->dev.kobj, &id_attr);
+
+	err = i2c_detach_client(client);
+	if (err)
+		return err;
+
+	kfree(client);
+
+	return 0;
+}
+
+static int __init ds28cm00_init(void)
+{
+	printk("adding ds28cm00 driver !!\n");
+	return i2c_add_driver(&ds28cm00_driver);
+}
+
+static void __exit ds28cm00_exit(void)
+{
+	i2c_del_driver(&ds28cm00_driver);
+}
+
+MODULE_AUTHOR("Mark Jackson <mpfj@...c.co.uk>");
+MODULE_DESCRIPTION("DS28CM00 driver");
+MODULE_LICENSE("GPL");
+
+module_init(ds28cm00_init);
+module_exit(ds28cm00_exit);
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ