All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mark Jackson <mpfj@mimc.co.uk>
To: linux-kernel@vger.kernel.org
Subject: [PATCH] Add support for Dallas DS28CM00 Unique ID chip
Date: Tue, 07 Oct 2008 14:09:59 +0100	[thread overview]
Message-ID: <48EB5FA7.4080701@mimc.co.uk> (raw)

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

Signed-off-by: M.Jackson <mpfj@mimc.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@mimc.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@mimc.co.uk>");
+MODULE_DESCRIPTION("DS28CM00 driver");
+MODULE_LICENSE("GPL");
+
+module_init(ds28cm00_init);
+module_exit(ds28cm00_exit);

             reply	other threads:[~2008-10-07 13:18 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-07 13:09 Mark Jackson [this message]
2008-10-16 19:25 ` [PATCH] Add support for Dallas DS28CM00 Unique ID chip Andrew Morton

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=48EB5FA7.4080701@mimc.co.uk \
    --to=mpfj@mimc.co.uk \
    --cc=linux-kernel@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.