2 * ALSA Driver for the PT2258 volume controller.
4 * Copyright (c) 2006 Jochen Voss <voss@seehuhn.de>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 #include <sound/core.h>
23 #include <sound/control.h>
24 #include <sound/tlv.h>
25 #include <sound/i2c.h>
26 #include <sound/pt2258.h>
28 MODULE_AUTHOR("Jochen Voss <voss@seehuhn.de>");
29 MODULE_DESCRIPTION("PT2258 volume controller (Princeton Technology Corp.)");
30 MODULE_LICENSE("GPL");
32 #define PT2258_CMD_RESET 0xc0
33 #define PT2258_CMD_UNMUTE 0xf8
34 #define PT2258_CMD_MUTE 0xf9
36 static const unsigned char pt2258_channel_code
[12] = {
37 0x80, 0x90, /* channel 1: -10dB, -1dB */
38 0x40, 0x50, /* channel 2: -10dB, -1dB */
39 0x00, 0x10, /* channel 3: -10dB, -1dB */
40 0x20, 0x30, /* channel 4: -10dB, -1dB */
41 0x60, 0x70, /* channel 5: -10dB, -1dB */
42 0xa0, 0xb0 /* channel 6: -10dB, -1dB */
45 int snd_pt2258_reset(struct snd_pt2258
*pt
)
47 unsigned char bytes
[2];
51 bytes
[0] = PT2258_CMD_RESET
;
52 snd_i2c_lock(pt
->i2c_bus
);
53 if (snd_i2c_sendbytes(pt
->i2c_dev
, bytes
, 1) != 1)
55 snd_i2c_unlock(pt
->i2c_bus
);
57 /* mute all channels */
59 bytes
[0] = PT2258_CMD_MUTE
;
60 snd_i2c_lock(pt
->i2c_bus
);
61 if (snd_i2c_sendbytes(pt
->i2c_dev
, bytes
, 1) != 1)
63 snd_i2c_unlock(pt
->i2c_bus
);
65 /* set all channels to 0dB */
66 for (i
= 0; i
< 6; ++i
)
70 snd_i2c_lock(pt
->i2c_bus
);
71 if (snd_i2c_sendbytes(pt
->i2c_dev
, bytes
, 2) != 2)
73 snd_i2c_unlock(pt
->i2c_bus
);
78 snd_i2c_unlock(pt
->i2c_bus
);
79 snd_printk(KERN_ERR
"PT2258 reset failed\n");
83 static int pt2258_stereo_volume_info(struct snd_kcontrol
*kcontrol
,
84 struct snd_ctl_elem_info
*uinfo
)
86 uinfo
->type
= SNDRV_CTL_ELEM_TYPE_INTEGER
;
88 uinfo
->value
.integer
.min
= 0;
89 uinfo
->value
.integer
.max
= 79;
93 static int pt2258_stereo_volume_get(struct snd_kcontrol
*kcontrol
,
94 struct snd_ctl_elem_value
*ucontrol
)
96 struct snd_pt2258
*pt
= kcontrol
->private_data
;
97 int base
= kcontrol
->private_value
;
99 /* chip does not support register reads */
100 ucontrol
->value
.integer
.value
[0] = 79 - pt
->volume
[base
];
101 ucontrol
->value
.integer
.value
[1] = 79 - pt
->volume
[base
+ 1];
105 static int pt2258_stereo_volume_put(struct snd_kcontrol
*kcontrol
,
106 struct snd_ctl_elem_value
*ucontrol
)
108 struct snd_pt2258
*pt
= kcontrol
->private_data
;
109 int base
= kcontrol
->private_value
;
110 unsigned char bytes
[2];
113 val0
= 79 - ucontrol
->value
.integer
.value
[0];
114 val1
= 79 - ucontrol
->value
.integer
.value
[1];
115 if (val0
< 0 || val0
> 79 || val1
< 0 || val1
> 79)
117 if (val0
== pt
->volume
[base
] && val1
== pt
->volume
[base
+ 1])
120 pt
->volume
[base
] = val0
;
121 bytes
[0] = pt2258_channel_code
[2 * base
] | (val0
/ 10);
122 bytes
[1] = pt2258_channel_code
[2 * base
+ 1] | (val0
% 10);
123 snd_i2c_lock(pt
->i2c_bus
);
124 if (snd_i2c_sendbytes(pt
->i2c_dev
, bytes
, 2) != 2)
126 snd_i2c_unlock(pt
->i2c_bus
);
128 pt
->volume
[base
+ 1] = val1
;
129 bytes
[0] = pt2258_channel_code
[2 * base
+ 2] | (val1
/ 10);
130 bytes
[1] = pt2258_channel_code
[2 * base
+ 3] | (val1
% 10);
131 snd_i2c_lock(pt
->i2c_bus
);
132 if (snd_i2c_sendbytes(pt
->i2c_dev
, bytes
, 2) != 2)
134 snd_i2c_unlock(pt
->i2c_bus
);
139 snd_i2c_unlock(pt
->i2c_bus
);
140 snd_printk(KERN_ERR
"PT2258 access failed\n");
144 #define pt2258_switch_info snd_ctl_boolean_mono_info
146 static int pt2258_switch_get(struct snd_kcontrol
*kcontrol
,
147 struct snd_ctl_elem_value
*ucontrol
)
149 struct snd_pt2258
*pt
= kcontrol
->private_data
;
151 ucontrol
->value
.integer
.value
[0] = !pt
->mute
;
155 static int pt2258_switch_put(struct snd_kcontrol
*kcontrol
,
156 struct snd_ctl_elem_value
*ucontrol
)
158 struct snd_pt2258
*pt
= kcontrol
->private_data
;
159 unsigned char bytes
[2];
162 val
= !ucontrol
->value
.integer
.value
[0];
167 bytes
[0] = val
? PT2258_CMD_MUTE
: PT2258_CMD_UNMUTE
;
168 snd_i2c_lock(pt
->i2c_bus
);
169 if (snd_i2c_sendbytes(pt
->i2c_dev
, bytes
, 1) != 1)
171 snd_i2c_unlock(pt
->i2c_bus
);
176 snd_i2c_unlock(pt
->i2c_bus
);
177 snd_printk(KERN_ERR
"PT2258 access failed 2\n");
181 static const DECLARE_TLV_DB_SCALE(pt2258_db_scale
, -7900, 100, 0);
183 int snd_pt2258_build_controls(struct snd_pt2258
*pt
)
185 struct snd_kcontrol_new knew
;
187 "Mic Loopback Playback Volume",
188 "Line Loopback Playback Volume",
189 "CD Loopback Playback Volume"
193 for (i
= 0; i
< 3; ++i
) {
194 memset(&knew
, 0, sizeof(knew
));
195 knew
.name
= names
[i
];
196 knew
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
198 knew
.access
= SNDRV_CTL_ELEM_ACCESS_READWRITE
|
199 SNDRV_CTL_ELEM_ACCESS_TLV_READ
;
200 knew
.private_value
= 2 * i
;
201 knew
.info
= pt2258_stereo_volume_info
;
202 knew
.get
= pt2258_stereo_volume_get
;
203 knew
.put
= pt2258_stereo_volume_put
;
204 knew
.tlv
.p
= pt2258_db_scale
;
206 err
= snd_ctl_add(pt
->card
, snd_ctl_new1(&knew
, pt
));
211 memset(&knew
, 0, sizeof(knew
));
212 knew
.name
= "Loopback Switch";
213 knew
.iface
= SNDRV_CTL_ELEM_IFACE_MIXER
;
214 knew
.info
= pt2258_switch_info
;
215 knew
.get
= pt2258_switch_get
;
216 knew
.put
= pt2258_switch_put
;
218 err
= snd_ctl_add(pt
->card
, snd_ctl_new1(&knew
, pt
));
225 EXPORT_SYMBOL(snd_pt2258_reset
);
226 EXPORT_SYMBOL(snd_pt2258_build_controls
);