Files

156 lines
3.4 KiB
C
Raw Permalink Normal View History

// SPDX-License-Identifier: GPL-2.0-or-later
2005-04-16 15:20:36 -07: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>
#include <linux/module.h>
2005-04-16 15:20:36 -07:00
#include <sound/core.h>
#include "pmac.h"
2005-11-17 15:09:46 +01:00
static struct pmac_keywest *keywest_ctx;
static bool keywest_probed;
2005-04-16 15:20:36 -07:00
static int keywest_probe(struct i2c_client *client)
{
keywest_probed = true;
/* If instantiated via i2c-powermac, we still need to set the client */
if (!keywest_ctx->client)
keywest_ctx->client = client;
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 15:20:36 -07:00
static int keywest_attach_adapter(struct i2c_adapter *adapter)
{
struct i2c_board_info info;
struct i2c_client *client;
2005-04-16 15:20:36 -07:00
if (! keywest_ctx)
return -EINVAL;
if (strncmp(adapter->name, "mac-io", 6))
return -EINVAL; /* ignored */
2005-04-16 15:20:36 -07:00
memset(&info, 0, sizeof(struct i2c_board_info));
strscpy(info.type, "keywest", I2C_NAME_SIZE);
info.addr = keywest_ctx->addr;
client = i2c_new_client_device(adapter, &info);
if (IS_ERR(client))
return PTR_ERR(client);
keywest_ctx->client = client;
/*
* 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.
*/
if (!keywest_ctx->client->dev.driver) {
i2c_unregister_device(keywest_ctx->client);
keywest_ctx->client = NULL;
return -ENODEV;
}
2005-04-16 15:20:36 -07:00
return 0;
}
2022-08-15 10:02:30 +02:00
static void keywest_remove(struct i2c_client *client)
2005-04-16 15:20:36 -07:00
{
if (! keywest_ctx)
2022-08-15 10:02:30 +02:00
return;
2005-04-16 15:20:36 -07:00
if (client == keywest_ctx->client)
keywest_ctx->client = NULL;
}
static const struct i2c_device_id keywest_i2c_id[] = {
{ "MAC,tas3004" }, /* instantiated by i2c-powermac */
{ "keywest" }, /* instantiated by us if needed */
{ }
};
MODULE_DEVICE_TABLE(i2c, keywest_i2c_id);
2009-10-01 18:08:18 +02:00
static struct i2c_driver keywest_driver = {
.driver = {
.name = "PMac Keywest Audio",
},
.probe = keywest_probe,
.remove = keywest_remove,
.id_table = keywest_i2c_id,
};
2005-04-16 15:20:36 -07:00
/* exported */
2005-11-17 15:09:46 +01:00
void snd_pmac_keywest_cleanup(struct pmac_keywest *i2c)
2005-04-16 15:20:36 -07:00
{
if (keywest_ctx && keywest_ctx == i2c) {
2024-11-01 23:07:14 +01:00
i2c_unregister_device(keywest_ctx->client);
2005-04-16 15:20:36 -07:00
i2c_del_driver(&keywest_driver);
keywest_ctx = NULL;
}
}
2012-12-06 12:35:23 -05:00
int snd_pmac_tumbler_post_init(void)
2005-04-16 15:20:36 -07:00
{
int err;
if (!keywest_ctx || !keywest_ctx->client)
return -ENXIO;
err = keywest_ctx->init_client(keywest_ctx);
if (err < 0) {
2024-08-07 15:34:39 +02:00
dev_err(&keywest_ctx->client->dev,
"tumbler: %i :cannot initialize the MCS\n", err);
2005-04-16 15:20:36 -07:00
return err;
}
return 0;
}
/* exported */
2012-12-06 12:35:23 -05:00
int snd_pmac_keywest_init(struct pmac_keywest *i2c)
2005-04-16 15:20:36 -07:00
{
struct i2c_adapter *adap;
int err, i = 0;
2005-04-16 15:20:36 -07:00
if (keywest_ctx)
return -EBUSY;
adap = i2c_get_adapter(0);
if (!adap)
return -EPROBE_DEFER;
2005-04-16 15:20:36 -07:00
keywest_ctx = i2c;
err = i2c_add_driver(&keywest_driver);
if (err) {
2024-08-07 15:34:39 +02:00
dev_err(&i2c->client->dev, "cannot register keywest i2c driver\n");
i2c_put_adapter(adap);
2005-04-16 15:20:36 -07:00
return err;
}
/* There was already a device from i2c-powermac. Great, let's return */
if (keywest_probed)
return 0;
/* We assume Macs have consecutive I2C bus numbers starting at 0 */
while (adap) {
/* Scan for devices to be bound to */
err = keywest_attach_adapter(adap);
if (!err)
return 0;
i2c_put_adapter(adap);
adap = i2c_get_adapter(++i);
}
return -ENODEV;
2005-04-16 15:20:36 -07:00
}