1 #include <linux/module.h>
2 #include <linux/slab.h>
3 #include <linux/proc_fs.h>
4 #include <linux/ioport.h>
5 #include <linux/sysctl.h>
6 #include <linux/types.h>
8 #include <linux/init.h>
9 #include <linux/soundcard.h>
10 #include <asm/uaccess.h>
11 #include <asm/errno.h>
15 #include "tas_common.h"
19 struct tas_data_t *self; \
20 if (!tas_client || driver_hooks == NULL) \
22 self = dev_get_drvdata(&tas_client->dev); \
23 if (driver_hooks->proc) \
24 return driver_hooks->proc(self); \
29 #define CALL(proc,arg...) \
31 struct tas_data_t *self; \
32 if (!tas_client || driver_hooks == NULL) \
34 self = dev_get_drvdata(&tas_client->dev); \
35 if (driver_hooks->proc) \
36 return driver_hooks->proc(self, ## arg); \
42 static u8 tas_i2c_address
= 0x34;
43 static struct i2c_client
*tas_client
;
45 static int tas_attach_adapter(struct i2c_adapter
*);
46 static int tas_detach_client(struct i2c_client
*);
48 struct i2c_driver tas_driver
= {
52 .attach_adapter
= tas_attach_adapter
,
53 .detach_client
= tas_detach_client
,
56 struct tas_driver_hooks_t
*driver_hooks
;
59 tas_register_driver(struct tas_driver_hooks_t
*hooks
)
66 tas_get_mixer_level(int mixer
, uint
*level
)
68 CALL(get_mixer_level
,mixer
,level
);
72 tas_set_mixer_level(int mixer
,uint level
)
74 CALL(set_mixer_level
,mixer
,level
);
90 tas_supported_mixers(void)
92 CALL0(supported_mixers
);
96 tas_mixer_is_stereo(int mixer
)
98 CALL(mixer_is_stereo
,mixer
);
102 tas_stereo_mixers(void)
104 CALL0(stereo_mixers
);
108 tas_output_device_change(int device_id
,int layout_id
,int speaker_id
)
110 CALL(output_device_change
,device_id
,layout_id
,speaker_id
);
114 tas_device_ioctl(u_int cmd
, u_long arg
)
116 CALL(device_ioctl
,cmd
,arg
);
126 tas_detect_client(struct i2c_adapter
*adapter
, int address
)
128 static const char *client_name
= "tas Digital Equalizer";
129 struct i2c_client
*new_client
;
133 printk(KERN_ERR
"tas_detect_client called with no hooks !\n");
137 new_client
= kzalloc(sizeof(*new_client
), GFP_KERNEL
);
141 new_client
->addr
= address
;
142 new_client
->adapter
= adapter
;
143 new_client
->driver
= &tas_driver
;
144 strlcpy(new_client
->name
, client_name
, DEVICE_NAME_SIZE
);
146 if (driver_hooks
->init(new_client
))
149 /* Tell the i2c layer a new client has arrived */
150 if (i2c_attach_client(new_client
)) {
151 driver_hooks
->uninit(dev_get_drvdata(&new_client
->dev
));
155 tas_client
= new_client
;
164 tas_attach_adapter(struct i2c_adapter
*adapter
)
166 if (!strncmp(adapter
->name
, "mac-io", 6))
167 return tas_detect_client(adapter
, tas_i2c_address
);
172 tas_detach_client(struct i2c_client
*client
)
174 if (client
== tas_client
) {
175 driver_hooks
->uninit(dev_get_drvdata(&client
->dev
));
177 i2c_detach_client(client
);
186 i2c_del_driver(&tas_driver
);
190 tas_init(int driver_id
, const char *driver_name
)
193 struct device_node
*tas_node
;
195 printk(KERN_INFO
"tas driver [%s])\n", driver_name
);
197 #ifndef CONFIG_I2C_POWERMAC
198 request_module("i2c-powermac");
200 tas_node
= of_find_node_by_name("deq");
201 if (tas_node
== NULL
)
203 paddr
= of_get_property(tas_node
, "i2c-address", NULL
);
205 tas_i2c_address
= (*paddr
) >> 1;
206 printk(KERN_INFO
"using i2c address: 0x%x from device-tree\n",
209 printk(KERN_INFO
"using i2c address: 0x%x (default)\n",
211 of_node_put(tas_node
);
213 return i2c_add_driver(&tas_driver
);