keywest.c 4.3 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
/*
 * common keywest i2c layer
 *
 * Copyright (c) by Takashi Iwai <tiwai@suse.de>
 *
 *   This program is free software; you can redistribute it and/or modify
 *   it under the terms of the GNU General Public License as published by
 *   the Free Software Foundation; either version 2 of the License, or
 *   (at your option) any later version.
 *
 *   This program is distributed in the hope that it will be useful,
 *   but WITHOUT ANY WARRANTY; without even the implied warranty of
 *   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *   GNU General Public License for more details.
 *
 *   You should have received a copy of the GNU General Public License
 *   along with this program; if not, write to the Free Software
 *   Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
 */


#include <linux/init.h>
#include <linux/i2c.h>
#include <linux/delay.h>
25
#include <linux/module.h>
L
Linus Torvalds 已提交
26 27 28 29 30 31 32
#include <sound/core.h>
#include "pmac.h"

/*
 * we have to keep a static variable here since i2c attach_adapter
 * callback cannot pass a private data.
 */
33
static struct pmac_keywest *keywest_ctx;
L
Linus Torvalds 已提交
34

35
static bool keywest_probed;
L
Linus Torvalds 已提交
36

37 38 39
static int keywest_probe(struct i2c_client *client,
			 const struct i2c_device_id *id)
{
40 41 42 43
	keywest_probed = true;
	/* If instantiated via i2c-powermac, we still need to set the client */
	if (!keywest_ctx->client)
		keywest_ctx->client = client;
44 45 46 47 48 49 50 51 52
	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
 */
L
Linus Torvalds 已提交
53 54
static int keywest_attach_adapter(struct i2c_adapter *adapter)
{
55
	struct i2c_board_info info;
L
Linus Torvalds 已提交
56 57 58 59

	if (! keywest_ctx)
		return -EINVAL;

60
	if (strncmp(adapter->name, "mac-io", 6))
61
		return -EINVAL; /* ignored */
L
Linus Torvalds 已提交
62

63 64 65 66
	memset(&info, 0, sizeof(struct i2c_board_info));
	strlcpy(info.type, "keywest", I2C_NAME_SIZE);
	info.addr = keywest_ctx->addr;
	keywest_ctx->client = i2c_new_device(adapter, &info);
67 68 69 70 71 72 73
	if (!keywest_ctx->client)
		return -ENODEV;
	/*
	 * 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.
	 */
74
	if (!keywest_ctx->client->dev.driver) {
75 76 77 78
		i2c_unregister_device(keywest_ctx->client);
		keywest_ctx->client = NULL;
		return -ENODEV;
	}
L
Linus Torvalds 已提交
79
	
80 81 82 83 84
	/*
	 * 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,
85
		      &to_i2c_driver(keywest_ctx->client->dev.driver)->clients);
L
Linus Torvalds 已提交
86 87 88
	return 0;
}

89
static int keywest_remove(struct i2c_client *client)
L
Linus Torvalds 已提交
90 91 92 93 94 95 96 97 98
{
	if (! keywest_ctx)
		return 0;
	if (client == keywest_ctx->client)
		keywest_ctx->client = NULL;

	return 0;
}

99 100

static const struct i2c_device_id keywest_i2c_id[] = {
101 102
	{ "MAC,tas3004", 0 },		/* instantiated by i2c-powermac */
	{ "keywest", 0 },		/* instantiated by us if needed */
103 104
	{ }
};
105
MODULE_DEVICE_TABLE(i2c, keywest_i2c_id);
106

J
Jean Delvare 已提交
107
static struct i2c_driver keywest_driver = {
108 109 110 111 112 113 114 115
	.driver = {
		.name = "PMac Keywest Audio",
	},
	.probe = keywest_probe,
	.remove = keywest_remove,
	.id_table = keywest_i2c_id,
};

L
Linus Torvalds 已提交
116
/* exported */
117
void snd_pmac_keywest_cleanup(struct pmac_keywest *i2c)
L
Linus Torvalds 已提交
118 119 120 121 122 123 124
{
	if (keywest_ctx && keywest_ctx == i2c) {
		i2c_del_driver(&keywest_driver);
		keywest_ctx = NULL;
	}
}

125
int snd_pmac_tumbler_post_init(void)
L
Linus Torvalds 已提交
126 127 128
{
	int err;
	
129 130 131
	if (!keywest_ctx || !keywest_ctx->client)
		return -ENXIO;

L
Linus Torvalds 已提交
132 133 134 135 136 137 138 139
	if ((err = keywest_ctx->init_client(keywest_ctx)) < 0) {
		snd_printk(KERN_ERR "tumbler: %i :cannot initialize the MCS\n", err);
		return err;
	}
	return 0;
}

/* exported */
140
int snd_pmac_keywest_init(struct pmac_keywest *i2c)
L
Linus Torvalds 已提交
141
{
142 143
	struct i2c_adapter *adap;
	int err, i = 0;
L
Linus Torvalds 已提交
144 145 146 147

	if (keywest_ctx)
		return -EBUSY;

148 149 150 151
	adap = i2c_get_adapter(0);
	if (!adap)
		return -EPROBE_DEFER;

L
Linus Torvalds 已提交
152 153 154 155
	keywest_ctx = i2c;

	if ((err = i2c_add_driver(&keywest_driver))) {
		snd_printk(KERN_ERR "cannot register keywest i2c driver\n");
156
		i2c_put_adapter(adap);
L
Linus Torvalds 已提交
157 158
		return err;
	}
159

160 161 162 163
	/* There was already a device from i2c-powermac. Great, let's return */
	if (keywest_probed)
		return 0;

164 165
	/* We assume Macs have consecutive I2C bus numbers starting at 0 */
	while (adap) {
166
		/* Scan for devices to be bound to */
167 168 169 170 171 172 173 174
		err = keywest_attach_adapter(adap);
		if (!err)
			return 0;
		i2c_put_adapter(adap);
		adap = i2c_get_adapter(++i);
	}

	return -ENODEV;
L
Linus Torvalds 已提交
175
}