Thomas Gleixner | 1a59d1b8 | 2019-05-27 08:55:05 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * common keywest i2c layer |
| 4 | * |
| 5 | * Copyright (c) by Takashi Iwai <tiwai@suse.de> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/init.h> |
| 10 | #include <linux/i2c.h> |
| 11 | #include <linux/delay.h> |
Takashi Iwai | 654e275 | 2015-08-25 14:04:44 +0200 | [diff] [blame] | 12 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include <sound/core.h> |
| 14 | #include "pmac.h" |
| 15 | |
| 16 | /* |
| 17 | * we have to keep a static variable here since i2c attach_adapter |
| 18 | * callback cannot pass a private data. |
| 19 | */ |
Takashi Iwai | 65b29f5 | 2005-11-17 15:09:46 +0100 | [diff] [blame] | 20 | static struct pmac_keywest *keywest_ctx; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
Wolfram Sang | 28760c1 | 2015-05-23 18:15:11 +0200 | [diff] [blame] | 22 | static bool keywest_probed; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 23 | |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 24 | static int keywest_probe(struct i2c_client *client, |
| 25 | const struct i2c_device_id *id) |
| 26 | { |
Wolfram Sang | 28760c1 | 2015-05-23 18:15:11 +0200 | [diff] [blame] | 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; |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 31 | i2c_set_clientdata(client, keywest_ctx); |
| 32 | return 0; |
| 33 | } |
| 34 | |
| 35 | /* |
| 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 |
| 38 | * initialization |
| 39 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 40 | static int keywest_attach_adapter(struct i2c_adapter *adapter) |
| 41 | { |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 42 | struct i2c_board_info info; |
Wolfram Sang | 04a9af2 | 2020-03-26 22:10:12 +0100 | [diff] [blame] | 43 | struct i2c_client *client; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
| 45 | if (! keywest_ctx) |
| 46 | return -EINVAL; |
| 47 | |
Jean Delvare | 903dba1 | 2009-05-14 14:37:21 +0200 | [diff] [blame] | 48 | if (strncmp(adapter->name, "mac-io", 6)) |
Wolfram Sang | ac397c8 | 2015-05-09 19:42:22 +0200 | [diff] [blame] | 49 | return -EINVAL; /* ignored */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 50 | |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 51 | memset(&info, 0, sizeof(struct i2c_board_info)); |
| 52 | strlcpy(info.type, "keywest", I2C_NAME_SIZE); |
| 53 | info.addr = keywest_ctx->addr; |
Wolfram Sang | 04a9af2 | 2020-03-26 22:10:12 +0100 | [diff] [blame] | 54 | client = i2c_new_client_device(adapter, &info); |
| 55 | if (IS_ERR(client)) |
| 56 | return PTR_ERR(client); |
| 57 | keywest_ctx->client = client; |
| 58 | |
Takashi Iwai | 18c4078 | 2009-10-01 07:46:33 +0200 | [diff] [blame] | 59 | /* |
| 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. |
| 63 | */ |
Lars-Peter Clausen | a7cde6d | 2013-09-29 10:51:04 +0200 | [diff] [blame] | 64 | if (!keywest_ctx->client->dev.driver) { |
Takashi Iwai | 18c4078 | 2009-10-01 07:46:33 +0200 | [diff] [blame] | 65 | i2c_unregister_device(keywest_ctx->client); |
| 66 | keywest_ctx->client = NULL; |
| 67 | return -ENODEV; |
| 68 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 70 | /* |
| 71 | * Let i2c-core delete that device on driver removal. |
| 72 | * This is safe because i2c-core holds the core_lock mutex for us. |
| 73 | */ |
| 74 | list_add_tail(&keywest_ctx->client->detected, |
Lars-Peter Clausen | a7cde6d | 2013-09-29 10:51:04 +0200 | [diff] [blame] | 75 | &to_i2c_driver(keywest_ctx->client->dev.driver)->clients); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 77 | } |
| 78 | |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 79 | static int keywest_remove(struct i2c_client *client) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
| 81 | if (! keywest_ctx) |
| 82 | return 0; |
| 83 | if (client == keywest_ctx->client) |
| 84 | keywest_ctx->client = NULL; |
| 85 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | return 0; |
| 87 | } |
| 88 | |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 89 | |
| 90 | static const struct i2c_device_id keywest_i2c_id[] = { |
Wolfram Sang | 28760c1 | 2015-05-23 18:15:11 +0200 | [diff] [blame] | 91 | { "MAC,tas3004", 0 }, /* instantiated by i2c-powermac */ |
| 92 | { "keywest", 0 }, /* instantiated by us if needed */ |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 93 | { } |
| 94 | }; |
Javier Martinez Canillas | a2bc2af | 2015-08-25 08:31:14 +0200 | [diff] [blame] | 95 | MODULE_DEVICE_TABLE(i2c, keywest_i2c_id); |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 96 | |
Jean Delvare | a656cbf | 2009-10-01 18:08:18 +0200 | [diff] [blame] | 97 | static struct i2c_driver keywest_driver = { |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 98 | .driver = { |
| 99 | .name = "PMac Keywest Audio", |
| 100 | }, |
Jean Delvare | 5de4155 | 2009-04-20 22:56:59 +0200 | [diff] [blame] | 101 | .probe = keywest_probe, |
| 102 | .remove = keywest_remove, |
| 103 | .id_table = keywest_i2c_id, |
| 104 | }; |
| 105 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | /* exported */ |
Takashi Iwai | 65b29f5 | 2005-11-17 15:09:46 +0100 | [diff] [blame] | 107 | void snd_pmac_keywest_cleanup(struct pmac_keywest *i2c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | { |
| 109 | if (keywest_ctx && keywest_ctx == i2c) { |
| 110 | i2c_del_driver(&keywest_driver); |
| 111 | keywest_ctx = NULL; |
| 112 | } |
| 113 | } |
| 114 | |
Bill Pemberton | 15afafc | 2012-12-06 12:35:23 -0500 | [diff] [blame] | 115 | int snd_pmac_tumbler_post_init(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | { |
| 117 | int err; |
| 118 | |
Takashi Iwai | 783eaf4 | 2006-09-17 22:00:51 +0200 | [diff] [blame] | 119 | if (!keywest_ctx || !keywest_ctx->client) |
| 120 | return -ENXIO; |
| 121 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | if ((err = keywest_ctx->init_client(keywest_ctx)) < 0) { |
| 123 | snd_printk(KERN_ERR "tumbler: %i :cannot initialize the MCS\n", err); |
| 124 | return err; |
| 125 | } |
| 126 | return 0; |
| 127 | } |
| 128 | |
| 129 | /* exported */ |
Bill Pemberton | 15afafc | 2012-12-06 12:35:23 -0500 | [diff] [blame] | 130 | int snd_pmac_keywest_init(struct pmac_keywest *i2c) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | { |
Wolfram Sang | ac397c8 | 2015-05-09 19:42:22 +0200 | [diff] [blame] | 132 | struct i2c_adapter *adap; |
| 133 | int err, i = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
| 135 | if (keywest_ctx) |
| 136 | return -EBUSY; |
| 137 | |
Wolfram Sang | ac397c8 | 2015-05-09 19:42:22 +0200 | [diff] [blame] | 138 | adap = i2c_get_adapter(0); |
| 139 | if (!adap) |
| 140 | return -EPROBE_DEFER; |
| 141 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | keywest_ctx = i2c; |
| 143 | |
| 144 | if ((err = i2c_add_driver(&keywest_driver))) { |
| 145 | snd_printk(KERN_ERR "cannot register keywest i2c driver\n"); |
Wolfram Sang | ac397c8 | 2015-05-09 19:42:22 +0200 | [diff] [blame] | 146 | i2c_put_adapter(adap); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 147 | return err; |
| 148 | } |
Wolfram Sang | ac397c8 | 2015-05-09 19:42:22 +0200 | [diff] [blame] | 149 | |
Wolfram Sang | 28760c1 | 2015-05-23 18:15:11 +0200 | [diff] [blame] | 150 | /* There was already a device from i2c-powermac. Great, let's return */ |
| 151 | if (keywest_probed) |
| 152 | return 0; |
| 153 | |
Wolfram Sang | ac397c8 | 2015-05-09 19:42:22 +0200 | [diff] [blame] | 154 | /* We assume Macs have consecutive I2C bus numbers starting at 0 */ |
| 155 | while (adap) { |
Wolfram Sang | 28760c1 | 2015-05-23 18:15:11 +0200 | [diff] [blame] | 156 | /* Scan for devices to be bound to */ |
Wolfram Sang | ac397c8 | 2015-05-09 19:42:22 +0200 | [diff] [blame] | 157 | err = keywest_attach_adapter(adap); |
| 158 | if (!err) |
| 159 | return 0; |
| 160 | i2c_put_adapter(adap); |
| 161 | adap = i2c_get_adapter(++i); |
| 162 | } |
| 163 | |
| 164 | return -ENODEV; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | } |