From: Marc Reilly <marc@cpdesign.com.au>
To: barebox@lists.infradead.org
Subject: [PATCH 4/5] at24: add I2C eeprom for 24cl02
Date: Mon, 16 Jul 2012 11:04:58 +1000 [thread overview]
Message-ID: <1342400699-6753-5-git-send-email-marc@cpdesign.com.au> (raw)
In-Reply-To: <1342400699-6753-1-git-send-email-marc@cpdesign.com.au>
This series adds a driver for at24 eeproms. Much of the guts of the code
is taken from the at24 driver in the linux kernel.
Signed-off-by: Marc Reilly <marc@cpdesign.com.au>
---
drivers/eeprom/Kconfig | 7 +++
drivers/eeprom/Makefile | 1 +
drivers/eeprom/at24.c | 134 +++++++++++++++++++++++++++++++++++++++++++++++
3 files changed, 142 insertions(+), 0 deletions(-)
create mode 100644 drivers/eeprom/at24.c
diff --git a/drivers/eeprom/Kconfig b/drivers/eeprom/Kconfig
index a0b5489..56dfd1a 100644
--- a/drivers/eeprom/Kconfig
+++ b/drivers/eeprom/Kconfig
@@ -8,4 +8,11 @@ config EEPROM_AT25
after you configure the board init code to know about each eeprom
on your target board.
+config EEPROM_AT24
+ bool "at24 based eeprom"
+ depends on I2C
+ help
+ Provides read/write for the at24 family of I2C EEPROMS.
+ Currently only the 2K bit versions are supported.
+
endmenu
diff --git a/drivers/eeprom/Makefile b/drivers/eeprom/Makefile
index e323bd0..e287eb0 100644
--- a/drivers/eeprom/Makefile
+++ b/drivers/eeprom/Makefile
@@ -1 +1,2 @@
obj-$(CONFIG_EEPROM_AT25) += at25.o
+obj-$(CONFIG_EEPROM_AT24) += at24.o
diff --git a/drivers/eeprom/at24.c b/drivers/eeprom/at24.c
new file mode 100644
index 0000000..fd578b1
--- /dev/null
+++ b/drivers/eeprom/at24.c
@@ -0,0 +1,134 @@
+/*
+ * Copyright (C) 2007 Sascha Hauer, Pengutronix
+ * 2009 Marc Kleine-Budde <mkl@pengutronix.de>
+ * 2010 Marc Reilly, Creative Product Design
+ *
+ * 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.
+ *
+ * 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.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
+ * MA 02111-1307 USA
+ *
+ */
+
+#include <common.h>
+#include <init.h>
+#include <driver.h>
+#include <xfuncs.h>
+#include <errno.h>
+
+#include <i2c/i2c.h>
+
+#define DRIVERNAME "eeprom"
+
+struct at24 {
+ struct cdev cdev;
+ struct i2c_client *client;
+ /* size in bytes */
+ unsigned int size;
+};
+
+#define to_at24(a) container_of(a, struct at24, cdev)
+
+static ssize_t at24_read(struct cdev *cdev, void *_buf, size_t count,
+ ulong offset, ulong flags)
+{
+ struct at24 *priv = to_at24(cdev);
+ u8 *buf = _buf;
+ size_t i = count;
+ ssize_t numwritten = 0;
+ int retries = 5;
+ int ret;
+
+ while (i && retries) {
+ ret = i2c_read_reg(priv->client, offset, buf, i);
+ if (ret < 0)
+ return (ssize_t)ret;
+ else if (ret == 0)
+ --retries;
+
+ numwritten += ret;
+ i -= ret;
+ offset += ret;
+ buf += ret;
+ }
+
+ return numwritten;
+}
+
+static ssize_t at24_write(struct cdev *cdev, const void *_buf, size_t count,
+ ulong offset, ulong flags)
+{
+ struct at24 *priv = to_at24(cdev);
+ const u8 *buf = _buf;
+ const int maxwrite = 8;
+ int numtowrite;
+ ssize_t numwritten = 0;
+
+ while (count) {
+ int ret;
+
+ numtowrite = count;
+ if (numtowrite > maxwrite)
+ numtowrite = maxwrite;
+
+ ret = i2c_write_reg(priv->client, offset, buf, numtowrite);
+ if (ret < 0)
+ return (ssize_t)ret;
+
+ mdelay(10);
+
+ numwritten += ret;
+ buf += ret;
+ count -= ret;
+ offset += ret;
+ }
+
+ return numwritten;
+}
+
+static struct file_operations at24_fops = {
+ .lseek = dev_lseek_default,
+ .read = at24_read,
+ .write = at24_write,
+};
+
+static int at24_probe(struct device_d *dev)
+{
+ struct at24 *at24;
+ at24 = xzalloc(sizeof(*at24));
+
+ dev->priv = at24;
+
+ at24->cdev.name = DRIVERNAME;
+ at24->client = to_i2c_client(dev);
+ at24->cdev.size = 256;
+ at24->cdev.dev = dev;
+ at24->cdev.ops = &at24_fops;
+
+ devfs_create(&at24->cdev);
+
+ return 0;
+}
+
+static struct driver_d at24_driver = {
+ .name = DRIVERNAME,
+ .probe = at24_probe,
+};
+
+static int at24_init(void)
+{
+ register_driver(&at24_driver);
+ return 0;
+}
+
+device_initcall(at24_init);
--
1.7.7
_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox
next prev parent reply other threads:[~2012-07-16 1:11 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-07-16 1:04 Various patches for imx35, fec, at24 driver and misc Marc Reilly
2012-07-16 1:04 ` [PATCH 1/5] imx_fec: Allow driver clients to supply MAC address Marc Reilly
2012-07-16 7:43 ` Sascha Hauer
2012-07-16 1:04 ` [PATCH 2/5] imx35: 6-bit divider helper Marc Reilly
2012-07-16 1:04 ` [PATCH 3/5] imx35: mmc clock has 6 bit divider, not 3_3 Marc Reilly
2012-07-16 1:04 ` Marc Reilly [this message]
2012-07-16 7:49 ` [PATCH 4/5] at24: add I2C eeprom for 24cl02 Sascha Hauer
2012-07-16 1:04 ` [PATCH 5/5] misc: new driver: isl22316 digital potentiometer Marc Reilly
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=1342400699-6753-5-git-send-email-marc@cpdesign.com.au \
--to=marc@cpdesign.com.au \
--cc=barebox@lists.infradead.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox