1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * common keywest i2c layer
5 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
9 #include <linux/init.h>
10 #include <linux/i2c.h>
11 #include <linux/delay.h>
12 #include <linux/module.h>
13 #include <sound/core.h>
17 * we have to keep a static variable here since i2c attach_adapter
18 * callback cannot pass a private data.
20 static struct pmac_keywest
*keywest_ctx
;
22 static bool keywest_probed
;
24 static int keywest_probe(struct i2c_client
*client
,
25 const struct i2c_device_id
*id
)
27 keywest_probed
= true;
28 /* If instantiated via i2c-powermac, we still need to set the client */
29 if (!keywest_ctx
->client
)
30 keywest_ctx
->client
= client
;
31 i2c_set_clientdata(client
, keywest_ctx
);
36 * This is kind of a hack, best would be to turn powermac to fixed i2c
37 * bus numbers and declare the sound device as part of platform
40 static int keywest_attach_adapter(struct i2c_adapter
*adapter
)
42 struct i2c_board_info info
;
43 struct i2c_client
*client
;
48 if (strncmp(adapter
->name
, "mac-io", 6))
49 return -EINVAL
; /* ignored */
51 memset(&info
, 0, sizeof(struct i2c_board_info
));
52 strlcpy(info
.type
, "keywest", I2C_NAME_SIZE
);
53 info
.addr
= keywest_ctx
->addr
;
54 client
= i2c_new_client_device(adapter
, &info
);
56 return PTR_ERR(client
);
57 keywest_ctx
->client
= client
;
60 * We know the driver is already loaded, so the device should be
61 * already bound. If not it means binding failed, and then there
62 * is no point in keeping the device instantiated.
64 if (!keywest_ctx
->client
->dev
.driver
) {
65 i2c_unregister_device(keywest_ctx
->client
);
66 keywest_ctx
->client
= NULL
;
71 * Let i2c-core delete that device on driver removal.
72 * This is safe because i2c-core holds the core_lock mutex for us.
74 list_add_tail(&keywest_ctx
->client
->detected
,
75 &to_i2c_driver(keywest_ctx
->client
->dev
.driver
)->clients
);
79 static int keywest_remove(struct i2c_client
*client
)
83 if (client
== keywest_ctx
->client
)
84 keywest_ctx
->client
= NULL
;
90 static const struct i2c_device_id keywest_i2c_id
[] = {
91 { "MAC,tas3004", 0 }, /* instantiated by i2c-powermac */
92 { "keywest", 0 }, /* instantiated by us if needed */
95 MODULE_DEVICE_TABLE(i2c
, keywest_i2c_id
);
97 static struct i2c_driver keywest_driver
= {
99 .name
= "PMac Keywest Audio",
101 .probe
= keywest_probe
,
102 .remove
= keywest_remove
,
103 .id_table
= keywest_i2c_id
,
107 void snd_pmac_keywest_cleanup(struct pmac_keywest
*i2c
)
109 if (keywest_ctx
&& keywest_ctx
== i2c
) {
110 i2c_del_driver(&keywest_driver
);
115 int snd_pmac_tumbler_post_init(void)
119 if (!keywest_ctx
|| !keywest_ctx
->client
)
122 if ((err
= keywest_ctx
->init_client(keywest_ctx
)) < 0) {
123 snd_printk(KERN_ERR
"tumbler: %i :cannot initialize the MCS\n", err
);
130 int snd_pmac_keywest_init(struct pmac_keywest
*i2c
)
132 struct i2c_adapter
*adap
;
138 adap
= i2c_get_adapter(0);
140 return -EPROBE_DEFER
;
144 if ((err
= i2c_add_driver(&keywest_driver
))) {
145 snd_printk(KERN_ERR
"cannot register keywest i2c driver\n");
146 i2c_put_adapter(adap
);
150 /* There was already a device from i2c-powermac. Great, let's return */
154 /* We assume Macs have consecutive I2C bus numbers starting at 0 */
156 /* Scan for devices to be bound to */
157 err
= keywest_attach_adapter(adap
);
160 i2c_put_adapter(adap
);
161 adap
= i2c_get_adapter(++i
);