2019-05-27 06:55:05 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2005-04-16 22:20:36 +00:00
|
|
|
/*
|
|
|
|
* common keywest i2c layer
|
|
|
|
*
|
|
|
|
* Copyright (c) by Takashi Iwai <tiwai@suse.de>
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <linux/init.h>
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/delay.h>
|
2015-08-25 12:04:44 +00:00
|
|
|
#include <linux/module.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
#include <sound/core.h>
|
|
|
|
#include "pmac.h"
|
|
|
|
|
2005-11-17 14:09:46 +00:00
|
|
|
static struct pmac_keywest *keywest_ctx;
|
2015-05-23 16:15:11 +00:00
|
|
|
static bool keywest_probed;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-04-20 20:56:59 +00:00
|
|
|
static int keywest_probe(struct i2c_client *client,
|
|
|
|
const struct i2c_device_id *id)
|
|
|
|
{
|
2015-05-23 16:15:11 +00:00
|
|
|
keywest_probed = true;
|
|
|
|
/* If instantiated via i2c-powermac, we still need to set the client */
|
|
|
|
if (!keywest_ctx->client)
|
|
|
|
keywest_ctx->client = client;
|
2009-04-20 20:56:59 +00:00
|
|
|
i2c_set_clientdata(client, keywest_ctx);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This is kind of a hack, best would be to turn powermac to fixed i2c
|
|
|
|
* bus numbers and declare the sound device as part of platform
|
|
|
|
* initialization
|
|
|
|
*/
|
2005-04-16 22:20:36 +00:00
|
|
|
static int keywest_attach_adapter(struct i2c_adapter *adapter)
|
|
|
|
{
|
2009-04-20 20:56:59 +00:00
|
|
|
struct i2c_board_info info;
|
2020-03-26 21:10:12 +00:00
|
|
|
struct i2c_client *client;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (! keywest_ctx)
|
|
|
|
return -EINVAL;
|
|
|
|
|
2009-05-14 12:37:21 +00:00
|
|
|
if (strncmp(adapter->name, "mac-io", 6))
|
2015-05-09 17:42:22 +00:00
|
|
|
return -EINVAL; /* ignored */
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-04-20 20:56:59 +00:00
|
|
|
memset(&info, 0, sizeof(struct i2c_board_info));
|
ALSA: Convert strlcpy to strscpy when return value is unused
strlcpy is deprecated. see: Documentation/process/deprecated.rst
Change the calls that do not use the strlcpy return value to the
preferred strscpy.
Done with cocci script:
@@
expression e1, e2, e3;
@@
- strlcpy(
+ strscpy(
e1, e2, e3);
This cocci script leaves the instances where the return value is
used unchanged.
After this patch, sound/ has 3 uses of strlcpy() that need to be
manually inspected for conversion and changed one day.
$ git grep -w strlcpy sound/
sound/usb/card.c: len = strlcpy(card->longname, s, sizeof(card->longname));
sound/usb/mixer.c: return strlcpy(buf, p->name, buflen);
sound/usb/mixer.c: return strlcpy(buf, p->names[index], buflen);
Miscellenea:
o Remove trailing whitespace in conversion of sound/core/hwdep.c
Link: https://lore.kernel.org/lkml/CAHk-=wgfRnXz0W3D37d01q3JFkr_i_uTL=V6A6G1oUZcprmknw@mail.gmail.com/
Signed-off-by: Joe Perches <joe@perches.com>
Acked-by: Mark Brown <broonie@kernel.org>
Link: https://lore.kernel.org/r/22b393d1790bb268769d0bab7bacf0866dcb0c14.camel@perches.com
Signed-off-by: Takashi Iwai <tiwai@suse.de>
2021-01-04 17:17:34 +00:00
|
|
|
strscpy(info.type, "keywest", I2C_NAME_SIZE);
|
2009-04-20 20:56:59 +00:00
|
|
|
info.addr = keywest_ctx->addr;
|
2020-03-26 21:10:12 +00:00
|
|
|
client = i2c_new_client_device(adapter, &info);
|
|
|
|
if (IS_ERR(client))
|
|
|
|
return PTR_ERR(client);
|
|
|
|
keywest_ctx->client = client;
|
|
|
|
|
2009-10-01 05:46:33 +00:00
|
|
|
/*
|
|
|
|
* We know the driver is already loaded, so the device should be
|
|
|
|
* already bound. If not it means binding failed, and then there
|
|
|
|
* is no point in keeping the device instantiated.
|
|
|
|
*/
|
2013-09-29 08:51:04 +00:00
|
|
|
if (!keywest_ctx->client->dev.driver) {
|
2009-10-01 05:46:33 +00:00
|
|
|
i2c_unregister_device(keywest_ctx->client);
|
|
|
|
keywest_ctx->client = NULL;
|
|
|
|
return -ENODEV;
|
|
|
|
}
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2009-04-20 20:56:59 +00:00
|
|
|
/*
|
|
|
|
* Let i2c-core delete that device on driver removal.
|
|
|
|
* This is safe because i2c-core holds the core_lock mutex for us.
|
|
|
|
*/
|
|
|
|
list_add_tail(&keywest_ctx->client->detected,
|
2013-09-29 08:51:04 +00:00
|
|
|
&to_i2c_driver(keywest_ctx->client->dev.driver)->clients);
|
2005-04-16 22:20:36 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-20 20:56:59 +00:00
|
|
|
static int keywest_remove(struct i2c_client *client)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
if (! keywest_ctx)
|
|
|
|
return 0;
|
|
|
|
if (client == keywest_ctx->client)
|
|
|
|
keywest_ctx->client = NULL;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2009-04-20 20:56:59 +00:00
|
|
|
|
|
|
|
static const struct i2c_device_id keywest_i2c_id[] = {
|
2015-05-23 16:15:11 +00:00
|
|
|
{ "MAC,tas3004", 0 }, /* instantiated by i2c-powermac */
|
|
|
|
{ "keywest", 0 }, /* instantiated by us if needed */
|
2009-04-20 20:56:59 +00:00
|
|
|
{ }
|
|
|
|
};
|
2015-08-25 06:31:14 +00:00
|
|
|
MODULE_DEVICE_TABLE(i2c, keywest_i2c_id);
|
2009-04-20 20:56:59 +00:00
|
|
|
|
2009-10-01 16:08:18 +00:00
|
|
|
static struct i2c_driver keywest_driver = {
|
2009-04-20 20:56:59 +00:00
|
|
|
.driver = {
|
|
|
|
.name = "PMac Keywest Audio",
|
|
|
|
},
|
|
|
|
.probe = keywest_probe,
|
|
|
|
.remove = keywest_remove,
|
|
|
|
.id_table = keywest_i2c_id,
|
|
|
|
};
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
/* exported */
|
2005-11-17 14:09:46 +00:00
|
|
|
void snd_pmac_keywest_cleanup(struct pmac_keywest *i2c)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
if (keywest_ctx && keywest_ctx == i2c) {
|
|
|
|
i2c_del_driver(&keywest_driver);
|
|
|
|
keywest_ctx = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-12-06 17:35:23 +00:00
|
|
|
int snd_pmac_tumbler_post_init(void)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
|
|
|
int err;
|
|
|
|
|
2006-09-17 20:00:51 +00:00
|
|
|
if (!keywest_ctx || !keywest_ctx->client)
|
|
|
|
return -ENXIO;
|
|
|
|
|
2021-06-08 14:05:38 +00:00
|
|
|
err = keywest_ctx->init_client(keywest_ctx);
|
|
|
|
if (err < 0) {
|
2005-04-16 22:20:36 +00:00
|
|
|
snd_printk(KERN_ERR "tumbler: %i :cannot initialize the MCS\n", err);
|
|
|
|
return err;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* exported */
|
2012-12-06 17:35:23 +00:00
|
|
|
int snd_pmac_keywest_init(struct pmac_keywest *i2c)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2015-05-09 17:42:22 +00:00
|
|
|
struct i2c_adapter *adap;
|
|
|
|
int err, i = 0;
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
if (keywest_ctx)
|
|
|
|
return -EBUSY;
|
|
|
|
|
2015-05-09 17:42:22 +00:00
|
|
|
adap = i2c_get_adapter(0);
|
|
|
|
if (!adap)
|
|
|
|
return -EPROBE_DEFER;
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
keywest_ctx = i2c;
|
|
|
|
|
2021-06-08 14:05:38 +00:00
|
|
|
err = i2c_add_driver(&keywest_driver);
|
|
|
|
if (err) {
|
2005-04-16 22:20:36 +00:00
|
|
|
snd_printk(KERN_ERR "cannot register keywest i2c driver\n");
|
2015-05-09 17:42:22 +00:00
|
|
|
i2c_put_adapter(adap);
|
2005-04-16 22:20:36 +00:00
|
|
|
return err;
|
|
|
|
}
|
2015-05-09 17:42:22 +00:00
|
|
|
|
2015-05-23 16:15:11 +00:00
|
|
|
/* There was already a device from i2c-powermac. Great, let's return */
|
|
|
|
if (keywest_probed)
|
|
|
|
return 0;
|
|
|
|
|
2015-05-09 17:42:22 +00:00
|
|
|
/* We assume Macs have consecutive I2C bus numbers starting at 0 */
|
|
|
|
while (adap) {
|
2015-05-23 16:15:11 +00:00
|
|
|
/* Scan for devices to be bound to */
|
2015-05-09 17:42:22 +00:00
|
|
|
err = keywest_attach_adapter(adap);
|
|
|
|
if (!err)
|
|
|
|
return 0;
|
|
|
|
i2c_put_adapter(adap);
|
|
|
|
adap = i2c_get_adapter(++i);
|
|
|
|
}
|
|
|
|
|
|
|
|
return -ENODEV;
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|