4 * Copyright (C) 2008, Christian Pellegrin <chripell@evolware.org>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
13 * L3 bus algorithm module.
15 * Copyright (C) 2001 Russell King, All Rights Reserved.
20 #include <linux/module.h>
21 #include <linux/kernel.h>
22 #include <linux/delay.h>
27 * Send one byte of data to the chip. Data is latched into the chip on
28 * the rising edge of the clock.
30 static void sendbyte(struct l3_pins *adap, unsigned int byte)
34 for (i = 0; i < 8; i++) {
36 udelay(adap->data_hold);
37 adap->setdat(byte & 1);
38 udelay(adap->data_setup);
40 udelay(adap->clock_high);
46 * Send a set of bytes to the chip. We need to pulse the MODE line
47 * between each byte, but never at the start nor at the end of the
50 static void sendbytes(struct l3_pins *adap, const u8 *buf,
55 for (i = 0; i < len; i++) {
57 udelay(adap->mode_hold);
62 udelay(adap->mode_setup);
63 sendbyte(adap, buf[i]);
67 int l3_write(struct l3_pins *adap, u8 addr, u8 *data, int len)
75 udelay(adap->mode_setup);
77 udelay(adap->mode_hold);
79 sendbytes(adap, data, len);
87 EXPORT_SYMBOL_GPL(l3_write);
89 MODULE_DESCRIPTION("L3 bit-banging driver");
90 MODULE_AUTHOR("Christian Pellegrin <chripell@evolware.org>");
91 MODULE_LICENSE("GPL");