GUI: Fix Tomato RAF theme for all builds. Compilation typo.
[tomato.git] / release / src-rt-6.x.4708 / linux / linux-2.6.36 / sound / soc / codecs / l3.c
blob5353af58862cd949e72d1631cce01a03c4d8b091
1 /*
2 * L3 code
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.
11 * based on:
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>
24 #include <sound/l3.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)
32 int i;
34 for (i = 0; i < 8; i++) {
35 adap->setclk(0);
36 udelay(adap->data_hold);
37 adap->setdat(byte & 1);
38 udelay(adap->data_setup);
39 adap->setclk(1);
40 udelay(adap->clock_high);
41 byte >>= 1;
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
48 * transfer.
50 static void sendbytes(struct l3_pins *adap, const u8 *buf,
51 int len)
53 int i;
55 for (i = 0; i < len; i++) {
56 if (i) {
57 udelay(adap->mode_hold);
58 adap->setmode(0);
59 udelay(adap->mode);
61 adap->setmode(1);
62 udelay(adap->mode_setup);
63 sendbyte(adap, buf[i]);
67 int l3_write(struct l3_pins *adap, u8 addr, u8 *data, int len)
69 adap->setclk(1);
70 adap->setdat(1);
71 adap->setmode(1);
72 udelay(adap->mode);
74 adap->setmode(0);
75 udelay(adap->mode_setup);
76 sendbyte(adap, addr);
77 udelay(adap->mode_hold);
79 sendbytes(adap, data, len);
81 adap->setclk(1);
82 adap->setdat(1);
83 adap->setmode(0);
85 return 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");