blob: 835e0cfc3bf34017f736e25f5e20ac092d451e03 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Driver for the i2c/i2s based DAC3550a sound chip used
3 * on some Apple iBooks. Also known as "DACA".
4 *
5 * This file is subject to the terms and conditions of the GNU General Public
6 * License. See the file COPYING in the main directory of this archive
7 * for more details.
8 */
9
10#include <linux/module.h>
11#include <linux/slab.h>
12#include <linux/delay.h>
13#include <linux/proc_fs.h>
14#include <linux/ioport.h>
15#include <linux/sysctl.h>
16#include <linux/types.h>
17#include <linux/i2c.h>
18#include <linux/init.h>
19#include <asm/uaccess.h>
20#include <asm/errno.h>
21#include <asm/io.h>
22
23#include "dmasound.h"
24
25/* FYI: This code was derived from the tas3001c.c Texas/Tumbler mixer
26 * control code, as well as info derived from the AppleDACAAudio driver
27 * from Darwin CVS (main thing I derived being register numbers and
28 * values, as well as when to make the calls). */
29
30#define I2C_DRIVERID_DACA (0xFDCB)
31
32#define DACA_VERSION "0.1"
33#define DACA_DATE "20010930"
34
35static int cur_left_vol;
36static int cur_right_vol;
37static struct i2c_client *daca_client;
38
39static int daca_attach_adapter(struct i2c_adapter *adapter);
40static int daca_detect_client(struct i2c_adapter *adapter, int address);
41static int daca_detach_client(struct i2c_client *client);
42
43struct i2c_driver daca_driver = {
Laurent Riffardd74cdab2005-11-26 20:46:32 +010044 .driver = {
45 .owner = THIS_MODULE,
46 .name = "DAC3550A driver V " DACA_VERSION,
47 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 .id = I2C_DRIVERID_DACA,
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 .attach_adapter = daca_attach_adapter,
50 .detach_client = daca_detach_client,
51};
52
53#define VOL_MAX ((1<<20) - 1)
54
55void daca_get_volume(uint * left_vol, uint *right_vol)
56{
57 *left_vol = cur_left_vol >> 5;
58 *right_vol = cur_right_vol >> 5;
59}
60
61int daca_set_volume(uint left_vol, uint right_vol)
62{
63 unsigned short voldata;
64
65 if (!daca_client)
66 return -1;
67
68 /* Derived from experience, not from any specific values */
69 left_vol <<= 5;
70 right_vol <<= 5;
71
72 if (left_vol > VOL_MAX)
73 left_vol = VOL_MAX;
74 if (right_vol > VOL_MAX)
75 right_vol = VOL_MAX;
76
77 voldata = ((left_vol >> 14) & 0x3f) << 8;
78 voldata |= (right_vol >> 14) & 0x3f;
79
80 if (i2c_smbus_write_word_data(daca_client, 2, voldata) < 0) {
81 printk("daca: failed to set volume \n");
82 return -1;
83 }
84
85 cur_left_vol = left_vol;
86 cur_right_vol = right_vol;
87
88 return 0;
89}
90
91int daca_leave_sleep(void)
92{
93 if (!daca_client)
94 return -1;
95
96 /* Do a short sleep, just to make sure I2C bus is awake and paying
97 * attention to us
98 */
99 msleep(20);
100 /* Write the sample rate reg the value it needs */
101 i2c_smbus_write_byte_data(daca_client, 1, 8);
102 daca_set_volume(cur_left_vol >> 5, cur_right_vol >> 5);
103 /* Another short delay, just to make sure the other I2C bus writes
104 * have taken...
105 */
106 msleep(20);
107 /* Write the global config reg - invert right power amp,
108 * DAC on, use 5-volt mode */
109 i2c_smbus_write_byte_data(daca_client, 3, 0x45);
110
111 return 0;
112}
113
114int daca_enter_sleep(void)
115{
116 if (!daca_client)
117 return -1;
118
119 i2c_smbus_write_byte_data(daca_client, 1, 8);
120 daca_set_volume(cur_left_vol >> 5, cur_right_vol >> 5);
121
122 /* Write the global config reg - invert right power amp,
123 * DAC on, enter low-power mode, use 5-volt mode
124 */
125 i2c_smbus_write_byte_data(daca_client, 3, 0x65);
126
127 return 0;
128}
129
130static int daca_attach_adapter(struct i2c_adapter *adapter)
131{
132 if (!strncmp(adapter->name, "mac-io", 6))
133 daca_detect_client(adapter, 0x4d);
134 return 0;
135}
136
137static int daca_init_client(struct i2c_client * new_client)
138{
139 /*
140 * Probe is not working with the current i2c-keywest
141 * driver. We try to use addr 0x4d on each adapters
142 * instead, by setting the format register.
143 *
144 * FIXME: I'm sure that can be obtained from the
145 * device-tree. --BenH.
146 */
147
148 /* Write the global config reg - invert right power amp,
149 * DAC on, use 5-volt mode
150 */
151 if (i2c_smbus_write_byte_data(new_client, 3, 0x45))
152 return -1;
153
154 i2c_smbus_write_byte_data(new_client, 1, 8);
155 daca_client = new_client;
156 daca_set_volume(15000, 15000);
157
158 return 0;
159}
160
161static int daca_detect_client(struct i2c_adapter *adapter, int address)
162{
163 const char *client_name = "DAC 3550A Digital Equalizer";
164 struct i2c_client *new_client;
165 int rc = -ENODEV;
166
167 new_client = kmalloc(sizeof(*new_client), GFP_KERNEL);
168 if (!new_client)
169 return -ENOMEM;
170 memset(new_client, 0, sizeof(*new_client));
171
172 new_client->addr = address;
173 new_client->adapter = adapter;
174 new_client->driver = &daca_driver;
175 new_client->flags = 0;
176 strcpy(new_client->name, client_name);
177
178 if (daca_init_client(new_client))
179 goto bail;
180
181 /* Tell the i2c layer a new client has arrived */
182 if (i2c_attach_client(new_client))
183 goto bail;
184
185 return 0;
186 bail:
187 kfree(new_client);
188 return rc;
189}
190
191
192static int daca_detach_client(struct i2c_client *client)
193{
194 if (client == daca_client)
195 daca_client = NULL;
196
197 i2c_detach_client(client);
198 kfree(client);
199 return 0;
200}
201
202void daca_cleanup(void)
203{
204 i2c_del_driver(&daca_driver);
205}
206
207int daca_init(void)
208{
209 printk("dac3550a driver version %s (%s)\n",DACA_VERSION,DACA_DATE);
210 return i2c_add_driver(&daca_driver);
211}