xref: /openbmc/linux/sound/ppc/keywest.c (revision 15afafc2)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * common keywest i2c layer
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Copyright (c) by Takashi Iwai <tiwai@suse.de>
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  *   This program is free software; you can redistribute it and/or modify
71da177e4SLinus Torvalds  *   it under the terms of the GNU General Public License as published by
81da177e4SLinus Torvalds  *   the Free Software Foundation; either version 2 of the License, or
91da177e4SLinus Torvalds  *   (at your option) any later version.
101da177e4SLinus Torvalds  *
111da177e4SLinus Torvalds  *   This program is distributed in the hope that it will be useful,
121da177e4SLinus Torvalds  *   but WITHOUT ANY WARRANTY; without even the implied warranty of
131da177e4SLinus Torvalds  *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
141da177e4SLinus Torvalds  *   GNU General Public License for more details.
151da177e4SLinus Torvalds  *
161da177e4SLinus Torvalds  *   You should have received a copy of the GNU General Public License
171da177e4SLinus Torvalds  *   along with this program; if not, write to the Free Software
181da177e4SLinus Torvalds  *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
191da177e4SLinus Torvalds  */
201da177e4SLinus Torvalds 
211da177e4SLinus Torvalds 
221da177e4SLinus Torvalds #include <linux/init.h>
231da177e4SLinus Torvalds #include <linux/i2c.h>
241da177e4SLinus Torvalds #include <linux/delay.h>
251da177e4SLinus Torvalds #include <sound/core.h>
261da177e4SLinus Torvalds #include "pmac.h"
271da177e4SLinus Torvalds 
281da177e4SLinus Torvalds /*
291da177e4SLinus Torvalds  * we have to keep a static variable here since i2c attach_adapter
301da177e4SLinus Torvalds  * callback cannot pass a private data.
311da177e4SLinus Torvalds  */
3265b29f50STakashi Iwai static struct pmac_keywest *keywest_ctx;
331da177e4SLinus Torvalds 
341da177e4SLinus Torvalds 
355de4155bSJean Delvare static int keywest_probe(struct i2c_client *client,
365de4155bSJean Delvare 			 const struct i2c_device_id *id)
375de4155bSJean Delvare {
385de4155bSJean Delvare 	i2c_set_clientdata(client, keywest_ctx);
395de4155bSJean Delvare 	return 0;
405de4155bSJean Delvare }
415de4155bSJean Delvare 
425de4155bSJean Delvare /*
435de4155bSJean Delvare  * This is kind of a hack, best would be to turn powermac to fixed i2c
445de4155bSJean Delvare  * bus numbers and declare the sound device as part of platform
455de4155bSJean Delvare  * initialization
465de4155bSJean Delvare  */
471da177e4SLinus Torvalds static int keywest_attach_adapter(struct i2c_adapter *adapter)
481da177e4SLinus Torvalds {
495de4155bSJean Delvare 	struct i2c_board_info info;
501da177e4SLinus Torvalds 
511da177e4SLinus Torvalds 	if (! keywest_ctx)
521da177e4SLinus Torvalds 		return -EINVAL;
531da177e4SLinus Torvalds 
54903dba1eSJean Delvare 	if (strncmp(adapter->name, "mac-io", 6))
551da177e4SLinus Torvalds 		return 0; /* ignored */
561da177e4SLinus Torvalds 
575de4155bSJean Delvare 	memset(&info, 0, sizeof(struct i2c_board_info));
585de4155bSJean Delvare 	strlcpy(info.type, "keywest", I2C_NAME_SIZE);
595de4155bSJean Delvare 	info.addr = keywest_ctx->addr;
605de4155bSJean Delvare 	keywest_ctx->client = i2c_new_device(adapter, &info);
6118c40784STakashi Iwai 	if (!keywest_ctx->client)
6218c40784STakashi Iwai 		return -ENODEV;
6318c40784STakashi Iwai 	/*
6418c40784STakashi Iwai 	 * We know the driver is already loaded, so the device should be
6518c40784STakashi Iwai 	 * already bound. If not it means binding failed, and then there
6618c40784STakashi Iwai 	 * is no point in keeping the device instantiated.
6718c40784STakashi Iwai 	 */
6818c40784STakashi Iwai 	if (!keywest_ctx->client->driver) {
6918c40784STakashi Iwai 		i2c_unregister_device(keywest_ctx->client);
7018c40784STakashi Iwai 		keywest_ctx->client = NULL;
7118c40784STakashi Iwai 		return -ENODEV;
7218c40784STakashi Iwai 	}
731da177e4SLinus Torvalds 
745de4155bSJean Delvare 	/*
755de4155bSJean Delvare 	 * Let i2c-core delete that device on driver removal.
765de4155bSJean Delvare 	 * This is safe because i2c-core holds the core_lock mutex for us.
775de4155bSJean Delvare 	 */
785de4155bSJean Delvare 	list_add_tail(&keywest_ctx->client->detected,
795de4155bSJean Delvare 		      &keywest_ctx->client->driver->clients);
801da177e4SLinus Torvalds 	return 0;
811da177e4SLinus Torvalds }
821da177e4SLinus Torvalds 
835de4155bSJean Delvare static int keywest_remove(struct i2c_client *client)
841da177e4SLinus Torvalds {
851da177e4SLinus Torvalds 	if (! keywest_ctx)
861da177e4SLinus Torvalds 		return 0;
871da177e4SLinus Torvalds 	if (client == keywest_ctx->client)
881da177e4SLinus Torvalds 		keywest_ctx->client = NULL;
891da177e4SLinus Torvalds 
901da177e4SLinus Torvalds 	return 0;
911da177e4SLinus Torvalds }
921da177e4SLinus Torvalds 
935de4155bSJean Delvare 
945de4155bSJean Delvare static const struct i2c_device_id keywest_i2c_id[] = {
955de4155bSJean Delvare 	{ "keywest", 0 },
965de4155bSJean Delvare 	{ }
975de4155bSJean Delvare };
985de4155bSJean Delvare 
99a656cbf0SJean Delvare static struct i2c_driver keywest_driver = {
1005de4155bSJean Delvare 	.driver = {
1015de4155bSJean Delvare 		.name = "PMac Keywest Audio",
1025de4155bSJean Delvare 	},
1035de4155bSJean Delvare 	.attach_adapter = keywest_attach_adapter,
1045de4155bSJean Delvare 	.probe = keywest_probe,
1055de4155bSJean Delvare 	.remove = keywest_remove,
1065de4155bSJean Delvare 	.id_table = keywest_i2c_id,
1075de4155bSJean Delvare };
1085de4155bSJean Delvare 
1091da177e4SLinus Torvalds /* exported */
11065b29f50STakashi Iwai void snd_pmac_keywest_cleanup(struct pmac_keywest *i2c)
1111da177e4SLinus Torvalds {
1121da177e4SLinus Torvalds 	if (keywest_ctx && keywest_ctx == i2c) {
1131da177e4SLinus Torvalds 		i2c_del_driver(&keywest_driver);
1141da177e4SLinus Torvalds 		keywest_ctx = NULL;
1151da177e4SLinus Torvalds 	}
1161da177e4SLinus Torvalds }
1171da177e4SLinus Torvalds 
11815afafc2SBill Pemberton int snd_pmac_tumbler_post_init(void)
1191da177e4SLinus Torvalds {
1201da177e4SLinus Torvalds 	int err;
1211da177e4SLinus Torvalds 
122783eaf46STakashi Iwai 	if (!keywest_ctx || !keywest_ctx->client)
123783eaf46STakashi Iwai 		return -ENXIO;
124783eaf46STakashi Iwai 
1251da177e4SLinus Torvalds 	if ((err = keywest_ctx->init_client(keywest_ctx)) < 0) {
1261da177e4SLinus Torvalds 		snd_printk(KERN_ERR "tumbler: %i :cannot initialize the MCS\n", err);
1271da177e4SLinus Torvalds 		return err;
1281da177e4SLinus Torvalds 	}
1291da177e4SLinus Torvalds 	return 0;
1301da177e4SLinus Torvalds }
1311da177e4SLinus Torvalds 
1321da177e4SLinus Torvalds /* exported */
13315afafc2SBill Pemberton int snd_pmac_keywest_init(struct pmac_keywest *i2c)
1341da177e4SLinus Torvalds {
1351da177e4SLinus Torvalds 	int err;
1361da177e4SLinus Torvalds 
1371da177e4SLinus Torvalds 	if (keywest_ctx)
1381da177e4SLinus Torvalds 		return -EBUSY;
1391da177e4SLinus Torvalds 
1401da177e4SLinus Torvalds 	keywest_ctx = i2c;
1411da177e4SLinus Torvalds 
1421da177e4SLinus Torvalds 	if ((err = i2c_add_driver(&keywest_driver))) {
1431da177e4SLinus Torvalds 		snd_printk(KERN_ERR "cannot register keywest i2c driver\n");
1441da177e4SLinus Torvalds 		return err;
1451da177e4SLinus Torvalds 	}
1461da177e4SLinus Torvalds 	return 0;
1471da177e4SLinus Torvalds }
148