staging: lustre: libcfs: remove lnet upcall code
[linux-2.6/btrfs-unstable.git] / sound / soc / codecs / l3.c
bloba10ea3c716c67b2d3324ce00283271becb126a87
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>
23 #include <linux/device.h>
24 #include <linux/gpio.h>
26 #include <sound/l3.h>
29 * Send one byte of data to the chip. Data is latched into the chip on
30 * the rising edge of the clock.
32 static void sendbyte(struct l3_pins *adap, unsigned int byte)
34 int i;
36 for (i = 0; i < 8; i++) {
37 adap->setclk(adap, 0);
38 udelay(adap->data_hold);
39 adap->setdat(adap, byte & 1);
40 udelay(adap->data_setup);
41 adap->setclk(adap, 1);
42 udelay(adap->clock_high);
43 byte >>= 1;
48 * Send a set of bytes to the chip. We need to pulse the MODE line
49 * between each byte, but never at the start nor at the end of the
50 * transfer.
52 static void sendbytes(struct l3_pins *adap, const u8 *buf,
53 int len)
55 int i;
57 for (i = 0; i < len; i++) {
58 if (i) {
59 udelay(adap->mode_hold);
60 adap->setmode(adap, 0);
61 udelay(adap->mode);
63 adap->setmode(adap, 1);
64 udelay(adap->mode_setup);
65 sendbyte(adap, buf[i]);
69 int l3_write(struct l3_pins *adap, u8 addr, u8 *data, int len)
71 adap->setclk(adap, 1);
72 adap->setdat(adap, 1);
73 adap->setmode(adap, 1);
74 udelay(adap->mode);
76 adap->setmode(adap, 0);
77 udelay(adap->mode_setup);
78 sendbyte(adap, addr);
79 udelay(adap->mode_hold);
81 sendbytes(adap, data, len);
83 adap->setclk(adap, 1);
84 adap->setdat(adap, 1);
85 adap->setmode(adap, 0);
87 return len;
89 EXPORT_SYMBOL_GPL(l3_write);
92 static void l3_set_clk(struct l3_pins *adap, int val)
94 gpio_set_value(adap->gpio_clk, val);
97 static void l3_set_data(struct l3_pins *adap, int val)
99 gpio_set_value(adap->gpio_data, val);
102 static void l3_set_mode(struct l3_pins *adap, int val)
104 gpio_set_value(adap->gpio_mode, val);
107 int l3_set_gpio_ops(struct device *dev, struct l3_pins *adap)
109 int ret;
111 if (!adap->use_gpios)
112 return -EINVAL;
114 ret = devm_gpio_request_one(dev, adap->gpio_data,
115 GPIOF_OUT_INIT_LOW, "l3_data");
116 if (ret < 0)
117 return ret;
118 adap->setdat = l3_set_data;
120 ret = devm_gpio_request_one(dev, adap->gpio_clk,
121 GPIOF_OUT_INIT_LOW, "l3_clk");
122 if (ret < 0)
123 return ret;
124 adap->setclk = l3_set_clk;
126 ret = devm_gpio_request_one(dev, adap->gpio_mode,
127 GPIOF_OUT_INIT_LOW, "l3_mode");
128 if (ret < 0)
129 return ret;
130 adap->setmode = l3_set_mode;
132 return 0;
134 EXPORT_SYMBOL_GPL(l3_set_gpio_ops);
136 MODULE_DESCRIPTION("L3 bit-banging driver");
137 MODULE_AUTHOR("Christian Pellegrin <chripell@evolware.org>");
138 MODULE_LICENSE("GPL");