Linux Audio

Check our new training course

Loading...
v5.4
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * Linux I2C core ACPI support code
  4 *
  5 * Copyright (C) 2014 Intel Corp, Author: Lan Tianyu <tianyu.lan@intel.com>
 
 
 
 
 
  6 */
  7
  8#include <linux/acpi.h>
  9#include <linux/device.h>
 10#include <linux/err.h>
 11#include <linux/i2c.h>
 12#include <linux/list.h>
 13#include <linux/module.h>
 14#include <linux/slab.h>
 15
 16#include "i2c-core.h"
 17
 18struct i2c_acpi_handler_data {
 19	struct acpi_connection_info info;
 20	struct i2c_adapter *adapter;
 21};
 22
 23struct gsb_buffer {
 24	u8	status;
 25	u8	len;
 26	union {
 27		u16	wdata;
 28		u8	bdata;
 29		u8	data[0];
 30	};
 31} __packed;
 32
 33struct i2c_acpi_lookup {
 34	struct i2c_board_info *info;
 35	acpi_handle adapter_handle;
 36	acpi_handle device_handle;
 37	acpi_handle search_handle;
 38	int n;
 39	int index;
 40	u32 speed;
 41	u32 min_speed;
 42	u32 force_speed;
 43};
 44
 45/**
 46 * i2c_acpi_get_i2c_resource - Gets I2cSerialBus resource if type matches
 47 * @ares:	ACPI resource
 48 * @i2c:	Pointer to I2cSerialBus resource will be returned here
 49 *
 50 * Checks if the given ACPI resource is of type I2cSerialBus.
 51 * In this case, returns a pointer to it to the caller.
 52 *
 53 * Returns true if resource type is of I2cSerialBus, otherwise false.
 54 */
 55bool i2c_acpi_get_i2c_resource(struct acpi_resource *ares,
 56			       struct acpi_resource_i2c_serialbus **i2c)
 57{
 58	struct acpi_resource_i2c_serialbus *sb;
 59
 60	if (ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS)
 61		return false;
 62
 63	sb = &ares->data.i2c_serial_bus;
 64	if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C)
 65		return false;
 66
 67	*i2c = sb;
 68	return true;
 69}
 70EXPORT_SYMBOL_GPL(i2c_acpi_get_i2c_resource);
 71
 72static int i2c_acpi_fill_info(struct acpi_resource *ares, void *data)
 73{
 74	struct i2c_acpi_lookup *lookup = data;
 75	struct i2c_board_info *info = lookup->info;
 76	struct acpi_resource_i2c_serialbus *sb;
 77	acpi_status status;
 78
 79	if (info->addr || !i2c_acpi_get_i2c_resource(ares, &sb))
 
 
 
 
 80		return 1;
 81
 82	if (lookup->index != -1 && lookup->n++ != lookup->index)
 83		return 1;
 84
 85	status = acpi_get_handle(lookup->device_handle,
 86				 sb->resource_source.string_ptr,
 87				 &lookup->adapter_handle);
 88	if (ACPI_FAILURE(status))
 89		return 1;
 90
 91	info->addr = sb->slave_address;
 92	lookup->speed = sb->connection_speed;
 93	if (sb->access_mode == ACPI_I2C_10BIT_MODE)
 94		info->flags |= I2C_CLIENT_TEN;
 95
 96	return 1;
 97}
 98
 99static const struct acpi_device_id i2c_acpi_ignored_device_ids[] = {
100	/*
101	 * ACPI video acpi_devices, which are handled by the acpi-video driver
102	 * sometimes contain a SERIAL_TYPE_I2C ACPI resource, ignore these.
103	 */
104	{ ACPI_VIDEO_HID, 0 },
105	{}
106};
107
108static int i2c_acpi_do_lookup(struct acpi_device *adev,
109			      struct i2c_acpi_lookup *lookup)
110{
111	struct i2c_board_info *info = lookup->info;
112	struct list_head resource_list;
113	int ret;
114
115	if (acpi_bus_get_status(adev) || !adev->status.present)
 
116		return -EINVAL;
117
118	if (acpi_match_device_ids(adev, i2c_acpi_ignored_device_ids) == 0)
119		return -ENODEV;
120
121	memset(info, 0, sizeof(*info));
122	lookup->device_handle = acpi_device_handle(adev);
123
124	/* Look up for I2cSerialBus resource */
125	INIT_LIST_HEAD(&resource_list);
126	ret = acpi_dev_get_resources(adev, &resource_list,
127				     i2c_acpi_fill_info, lookup);
128	acpi_dev_free_resource_list(&resource_list);
129
130	if (ret < 0 || !info->addr)
131		return -EINVAL;
132
133	return 0;
134}
135
136static int i2c_acpi_add_resource(struct acpi_resource *ares, void *data)
137{
138	int *irq = data;
139	struct resource r;
140
141	if (*irq <= 0 && acpi_dev_resource_interrupt(ares, 0, &r))
142		*irq = i2c_dev_irq_from_resources(&r, 1);
143
144	return 1; /* No need to add resource to the list */
145}
146
147/**
148 * i2c_acpi_get_irq - get device IRQ number from ACPI
149 * @client: Pointer to the I2C client device
150 *
151 * Find the IRQ number used by a specific client device.
152 *
153 * Return: The IRQ number or an error code.
154 */
155int i2c_acpi_get_irq(struct i2c_client *client)
156{
157	struct acpi_device *adev = ACPI_COMPANION(&client->dev);
158	struct list_head resource_list;
159	int irq = -ENOENT;
160	int ret;
161
162	INIT_LIST_HEAD(&resource_list);
163
164	ret = acpi_dev_get_resources(adev, &resource_list,
165				     i2c_acpi_add_resource, &irq);
166	if (ret < 0)
167		return ret;
168
169	acpi_dev_free_resource_list(&resource_list);
170
171	if (irq == -ENOENT)
172		irq = acpi_dev_gpio_irq_get(adev, 0);
173
174	return irq;
175}
176
177static int i2c_acpi_get_info(struct acpi_device *adev,
178			     struct i2c_board_info *info,
179			     struct i2c_adapter *adapter,
180			     acpi_handle *adapter_handle)
181{
 
 
182	struct i2c_acpi_lookup lookup;
183	int ret;
184
185	memset(&lookup, 0, sizeof(lookup));
186	lookup.info = info;
187	lookup.index = -1;
188
189	if (acpi_device_enumerated(adev))
190		return -EINVAL;
191
192	ret = i2c_acpi_do_lookup(adev, &lookup);
193	if (ret)
194		return ret;
195
196	if (adapter) {
197		/* The adapter must match the one in I2cSerialBus() connector */
198		if (ACPI_HANDLE(&adapter->dev) != lookup.adapter_handle)
199			return -ENODEV;
200	} else {
201		struct acpi_device *adapter_adev;
202
203		/* The adapter must be present */
204		if (acpi_bus_get_device(lookup.adapter_handle, &adapter_adev))
205			return -ENODEV;
206		if (acpi_bus_get_status(adapter_adev) ||
207		    !adapter_adev->status.present)
208			return -ENODEV;
209	}
210
211	info->fwnode = acpi_fwnode_handle(adev);
212	if (adapter_handle)
213		*adapter_handle = lookup.adapter_handle;
214
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
215	acpi_set_modalias(adev, dev_name(&adev->dev), info->type,
216			  sizeof(info->type));
217
218	return 0;
219}
220
221static void i2c_acpi_register_device(struct i2c_adapter *adapter,
222				     struct acpi_device *adev,
223				     struct i2c_board_info *info)
224{
225	adev->power.flags.ignore_parent = true;
226	acpi_device_set_enumerated(adev);
227
228	if (!i2c_new_device(adapter, info)) {
229		adev->power.flags.ignore_parent = false;
230		dev_err(&adapter->dev,
231			"failed to add I2C device %s from ACPI\n",
232			dev_name(&adev->dev));
233	}
234}
235
236static acpi_status i2c_acpi_add_device(acpi_handle handle, u32 level,
237				       void *data, void **return_value)
238{
239	struct i2c_adapter *adapter = data;
240	struct acpi_device *adev;
241	struct i2c_board_info info;
242
243	if (acpi_bus_get_device(handle, &adev))
244		return AE_OK;
245
246	if (i2c_acpi_get_info(adev, &info, adapter, NULL))
247		return AE_OK;
248
249	i2c_acpi_register_device(adapter, adev, &info);
250
251	return AE_OK;
252}
253
254#define I2C_ACPI_MAX_SCAN_DEPTH 32
255
256/**
257 * i2c_acpi_register_devices - enumerate I2C slave devices behind adapter
258 * @adap: pointer to adapter
259 *
260 * Enumerate all I2C slave devices behind this adapter by walking the ACPI
261 * namespace. When a device is found it will be added to the Linux device
262 * model and bound to the corresponding ACPI handle.
263 */
264void i2c_acpi_register_devices(struct i2c_adapter *adap)
265{
266	acpi_status status;
267
268	if (!has_acpi_companion(&adap->dev))
269		return;
270
271	status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
272				     I2C_ACPI_MAX_SCAN_DEPTH,
273				     i2c_acpi_add_device, NULL,
274				     adap, NULL);
275	if (ACPI_FAILURE(status))
276		dev_warn(&adap->dev, "failed to enumerate I2C slaves\n");
277}
278
279const struct acpi_device_id *
280i2c_acpi_match_device(const struct acpi_device_id *matches,
281		      struct i2c_client *client)
282{
283	if (!(client && matches))
284		return NULL;
285
286	return acpi_match_device(matches, &client->dev);
287}
288
289static const struct acpi_device_id i2c_acpi_force_400khz_device_ids[] = {
290	/*
291	 * These Silead touchscreen controllers only work at 400KHz, for
292	 * some reason they do not work at 100KHz. On some devices the ACPI
293	 * tables list another device at their bus as only being capable
294	 * of 100KHz, testing has shown that these other devices work fine
295	 * at 400KHz (as can be expected of any recent i2c hw) so we force
296	 * the speed of the bus to 400 KHz if a Silead device is present.
297	 */
298	{ "MSSL1680", 0 },
299	{}
300};
301
302static acpi_status i2c_acpi_lookup_speed(acpi_handle handle, u32 level,
303					   void *data, void **return_value)
304{
305	struct i2c_acpi_lookup *lookup = data;
306	struct acpi_device *adev;
307
308	if (acpi_bus_get_device(handle, &adev))
309		return AE_OK;
310
311	if (i2c_acpi_do_lookup(adev, lookup))
312		return AE_OK;
313
314	if (lookup->search_handle != lookup->adapter_handle)
315		return AE_OK;
316
317	if (lookup->speed <= lookup->min_speed)
318		lookup->min_speed = lookup->speed;
319
320	if (acpi_match_device_ids(adev, i2c_acpi_force_400khz_device_ids) == 0)
321		lookup->force_speed = 400000;
322
323	return AE_OK;
324}
325
326/**
327 * i2c_acpi_find_bus_speed - find I2C bus speed from ACPI
328 * @dev: The device owning the bus
329 *
330 * Find the I2C bus speed by walking the ACPI namespace for all I2C slaves
331 * devices connected to this bus and use the speed of slowest device.
332 *
333 * Returns the speed in Hz or zero
334 */
335u32 i2c_acpi_find_bus_speed(struct device *dev)
336{
337	struct i2c_acpi_lookup lookup;
338	struct i2c_board_info dummy;
339	acpi_status status;
340
341	if (!has_acpi_companion(dev))
342		return 0;
343
344	memset(&lookup, 0, sizeof(lookup));
345	lookup.search_handle = ACPI_HANDLE(dev);
346	lookup.min_speed = UINT_MAX;
347	lookup.info = &dummy;
348	lookup.index = -1;
349
350	status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
351				     I2C_ACPI_MAX_SCAN_DEPTH,
352				     i2c_acpi_lookup_speed, NULL,
353				     &lookup, NULL);
354
355	if (ACPI_FAILURE(status)) {
356		dev_warn(dev, "unable to find I2C bus speed from ACPI\n");
357		return 0;
358	}
359
360	if (lookup.force_speed) {
361		if (lookup.force_speed != lookup.min_speed)
362			dev_warn(dev, FW_BUG "DSDT uses known not-working I2C bus speed %d, forcing it to %d\n",
363				 lookup.min_speed, lookup.force_speed);
364		return lookup.force_speed;
365	} else if (lookup.min_speed != UINT_MAX) {
366		return lookup.min_speed;
367	} else {
368		return 0;
369	}
370}
371EXPORT_SYMBOL_GPL(i2c_acpi_find_bus_speed);
372
373static int i2c_acpi_find_match_adapter(struct device *dev, const void *data)
374{
375	struct i2c_adapter *adapter = i2c_verify_adapter(dev);
376
377	if (!adapter)
378		return 0;
379
380	return ACPI_HANDLE(dev) == (acpi_handle)data;
381}
382
383struct i2c_adapter *i2c_acpi_find_adapter_by_handle(acpi_handle handle)
 
 
 
 
 
384{
385	struct device *dev;
386
387	dev = bus_find_device(&i2c_bus_type, NULL, handle,
388			      i2c_acpi_find_match_adapter);
389
390	return dev ? i2c_verify_adapter(dev) : NULL;
391}
392EXPORT_SYMBOL_GPL(i2c_acpi_find_adapter_by_handle);
393
394static struct i2c_client *i2c_acpi_find_client_by_adev(struct acpi_device *adev)
395{
396	struct device *dev;
397
398	dev = bus_find_device_by_acpi_dev(&i2c_bus_type, adev);
 
399	return dev ? i2c_verify_client(dev) : NULL;
400}
401
402static int i2c_acpi_notify(struct notifier_block *nb, unsigned long value,
403			   void *arg)
404{
405	struct acpi_device *adev = arg;
406	struct i2c_board_info info;
407	acpi_handle adapter_handle;
408	struct i2c_adapter *adapter;
409	struct i2c_client *client;
410
411	switch (value) {
412	case ACPI_RECONFIG_DEVICE_ADD:
413		if (i2c_acpi_get_info(adev, &info, NULL, &adapter_handle))
414			break;
415
416		adapter = i2c_acpi_find_adapter_by_handle(adapter_handle);
417		if (!adapter)
418			break;
419
420		i2c_acpi_register_device(adapter, adev, &info);
421		break;
422	case ACPI_RECONFIG_DEVICE_REMOVE:
423		if (!acpi_device_enumerated(adev))
424			break;
425
426		client = i2c_acpi_find_client_by_adev(adev);
427		if (!client)
428			break;
429
430		i2c_unregister_device(client);
431		put_device(&client->dev);
432		break;
433	}
434
435	return NOTIFY_OK;
436}
437
438struct notifier_block i2c_acpi_notifier = {
439	.notifier_call = i2c_acpi_notify,
440};
441
442/**
443 * i2c_acpi_new_device - Create i2c-client for the Nth I2cSerialBus resource
444 * @dev:     Device owning the ACPI resources to get the client from
445 * @index:   Index of ACPI resource to get
446 * @info:    describes the I2C device; note this is modified (addr gets set)
447 * Context: can sleep
448 *
449 * By default the i2c subsys creates an i2c-client for the first I2cSerialBus
450 * resource of an acpi_device, but some acpi_devices have multiple I2cSerialBus
451 * resources, in that case this function can be used to create an i2c-client
452 * for other I2cSerialBus resources in the Current Resource Settings table.
453 *
454 * Also see i2c_new_device, which this function calls to create the i2c-client.
455 *
456 * Returns a pointer to the new i2c-client, or error pointer in case of failure.
457 * Specifically, -EPROBE_DEFER is returned if the adapter is not found.
458 */
459struct i2c_client *i2c_acpi_new_device(struct device *dev, int index,
460				       struct i2c_board_info *info)
461{
462	struct i2c_acpi_lookup lookup;
463	struct i2c_adapter *adapter;
464	struct i2c_client *client;
465	struct acpi_device *adev;
466	LIST_HEAD(resource_list);
467	int ret;
468
469	adev = ACPI_COMPANION(dev);
470	if (!adev)
471		return ERR_PTR(-EINVAL);
472
473	memset(&lookup, 0, sizeof(lookup));
474	lookup.info = info;
475	lookup.device_handle = acpi_device_handle(adev);
476	lookup.index = index;
477
478	ret = acpi_dev_get_resources(adev, &resource_list,
479				     i2c_acpi_fill_info, &lookup);
480	if (ret < 0)
481		return ERR_PTR(ret);
482
483	acpi_dev_free_resource_list(&resource_list);
484
485	if (!info->addr)
486		return ERR_PTR(-EADDRNOTAVAIL);
487
488	adapter = i2c_acpi_find_adapter_by_handle(lookup.adapter_handle);
489	if (!adapter)
490		return ERR_PTR(-EPROBE_DEFER);
491
492	client = i2c_new_device(adapter, info);
493	if (!client)
494		return ERR_PTR(-ENODEV);
495
496	return client;
497}
498EXPORT_SYMBOL_GPL(i2c_acpi_new_device);
499
500#ifdef CONFIG_ACPI_I2C_OPREGION
501static int acpi_gsb_i2c_read_bytes(struct i2c_client *client,
502		u8 cmd, u8 *data, u8 data_len)
503{
504
505	struct i2c_msg msgs[2];
506	int ret;
507	u8 *buffer;
508
509	buffer = kzalloc(data_len, GFP_KERNEL);
510	if (!buffer)
511		return AE_NO_MEMORY;
512
513	msgs[0].addr = client->addr;
514	msgs[0].flags = client->flags;
515	msgs[0].len = 1;
516	msgs[0].buf = &cmd;
517
518	msgs[1].addr = client->addr;
519	msgs[1].flags = client->flags | I2C_M_RD;
520	msgs[1].len = data_len;
521	msgs[1].buf = buffer;
522
523	ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
524	if (ret < 0) {
525		/* Getting a NACK is unfortunately normal with some DSTDs */
526		if (ret == -EREMOTEIO)
527			dev_dbg(&client->adapter->dev, "i2c read %d bytes from client@%#x starting at reg %#x failed, error: %d\n",
528				data_len, client->addr, cmd, ret);
529		else
530			dev_err(&client->adapter->dev, "i2c read %d bytes from client@%#x starting at reg %#x failed, error: %d\n",
531				data_len, client->addr, cmd, ret);
532	/* 2 transfers must have completed successfully */
533	} else if (ret == 2) {
534		memcpy(data, buffer, data_len);
535		ret = 0;
536	} else {
537		ret = -EIO;
538	}
539
540	kfree(buffer);
541	return ret;
542}
543
544static int acpi_gsb_i2c_write_bytes(struct i2c_client *client,
545		u8 cmd, u8 *data, u8 data_len)
546{
547
548	struct i2c_msg msgs[1];
549	u8 *buffer;
550	int ret = AE_OK;
551
552	buffer = kzalloc(data_len + 1, GFP_KERNEL);
553	if (!buffer)
554		return AE_NO_MEMORY;
555
556	buffer[0] = cmd;
557	memcpy(buffer + 1, data, data_len);
558
559	msgs[0].addr = client->addr;
560	msgs[0].flags = client->flags;
561	msgs[0].len = data_len + 1;
562	msgs[0].buf = buffer;
563
564	ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
 
 
565
566	kfree(buffer);
567
568	if (ret < 0) {
569		dev_err(&client->adapter->dev, "i2c write failed: %d\n", ret);
570		return ret;
571	}
572
573	/* 1 transfer must have completed successfully */
574	return (ret == 1) ? 0 : -EIO;
575}
576
577static acpi_status
578i2c_acpi_space_handler(u32 function, acpi_physical_address command,
579			u32 bits, u64 *value64,
580			void *handler_context, void *region_context)
581{
582	struct gsb_buffer *gsb = (struct gsb_buffer *)value64;
583	struct i2c_acpi_handler_data *data = handler_context;
584	struct acpi_connection_info *info = &data->info;
585	struct acpi_resource_i2c_serialbus *sb;
586	struct i2c_adapter *adapter = data->adapter;
587	struct i2c_client *client;
588	struct acpi_resource *ares;
589	u32 accessor_type = function >> 16;
590	u8 action = function & ACPI_IO_MASK;
591	acpi_status ret;
592	int status;
593
594	ret = acpi_buffer_to_resource(info->connection, info->length, &ares);
595	if (ACPI_FAILURE(ret))
596		return ret;
597
598	client = kzalloc(sizeof(*client), GFP_KERNEL);
599	if (!client) {
600		ret = AE_NO_MEMORY;
601		goto err;
602	}
603
604	if (!value64 || !i2c_acpi_get_i2c_resource(ares, &sb)) {
 
 
 
 
 
 
605		ret = AE_BAD_PARAMETER;
606		goto err;
607	}
608
609	client->adapter = adapter;
610	client->addr = sb->slave_address;
611
612	if (sb->access_mode == ACPI_I2C_10BIT_MODE)
613		client->flags |= I2C_CLIENT_TEN;
614
615	switch (accessor_type) {
616	case ACPI_GSB_ACCESS_ATTRIB_SEND_RCV:
617		if (action == ACPI_READ) {
618			status = i2c_smbus_read_byte(client);
619			if (status >= 0) {
620				gsb->bdata = status;
621				status = 0;
622			}
623		} else {
624			status = i2c_smbus_write_byte(client, gsb->bdata);
625		}
626		break;
627
628	case ACPI_GSB_ACCESS_ATTRIB_BYTE:
629		if (action == ACPI_READ) {
630			status = i2c_smbus_read_byte_data(client, command);
631			if (status >= 0) {
632				gsb->bdata = status;
633				status = 0;
634			}
635		} else {
636			status = i2c_smbus_write_byte_data(client, command,
637					gsb->bdata);
638		}
639		break;
640
641	case ACPI_GSB_ACCESS_ATTRIB_WORD:
642		if (action == ACPI_READ) {
643			status = i2c_smbus_read_word_data(client, command);
644			if (status >= 0) {
645				gsb->wdata = status;
646				status = 0;
647			}
648		} else {
649			status = i2c_smbus_write_word_data(client, command,
650					gsb->wdata);
651		}
652		break;
653
654	case ACPI_GSB_ACCESS_ATTRIB_BLOCK:
655		if (action == ACPI_READ) {
656			status = i2c_smbus_read_block_data(client, command,
657					gsb->data);
658			if (status >= 0) {
659				gsb->len = status;
660				status = 0;
661			}
662		} else {
663			status = i2c_smbus_write_block_data(client, command,
664					gsb->len, gsb->data);
665		}
666		break;
667
668	case ACPI_GSB_ACCESS_ATTRIB_MULTIBYTE:
669		if (action == ACPI_READ) {
670			status = acpi_gsb_i2c_read_bytes(client, command,
671					gsb->data, info->access_length);
 
 
672		} else {
673			status = acpi_gsb_i2c_write_bytes(client, command,
674					gsb->data, info->access_length);
675		}
676		break;
677
678	default:
679		dev_warn(&adapter->dev, "protocol 0x%02x not supported for client 0x%02x\n",
680			 accessor_type, client->addr);
681		ret = AE_BAD_PARAMETER;
682		goto err;
683	}
684
685	gsb->status = status;
686
687 err:
688	kfree(client);
689	ACPI_FREE(ares);
690	return ret;
691}
692
693
694int i2c_acpi_install_space_handler(struct i2c_adapter *adapter)
695{
696	acpi_handle handle;
697	struct i2c_acpi_handler_data *data;
698	acpi_status status;
699
700	if (!adapter->dev.parent)
701		return -ENODEV;
702
703	handle = ACPI_HANDLE(adapter->dev.parent);
704
705	if (!handle)
706		return -ENODEV;
707
708	data = kzalloc(sizeof(struct i2c_acpi_handler_data),
709			    GFP_KERNEL);
710	if (!data)
711		return -ENOMEM;
712
713	data->adapter = adapter;
714	status = acpi_bus_attach_private_data(handle, (void *)data);
715	if (ACPI_FAILURE(status)) {
716		kfree(data);
717		return -ENOMEM;
718	}
719
720	status = acpi_install_address_space_handler(handle,
721				ACPI_ADR_SPACE_GSBUS,
722				&i2c_acpi_space_handler,
723				NULL,
724				data);
725	if (ACPI_FAILURE(status)) {
726		dev_err(&adapter->dev, "Error installing i2c space handler\n");
727		acpi_bus_detach_private_data(handle);
728		kfree(data);
729		return -ENOMEM;
730	}
731
732	acpi_walk_dep_device_list(handle);
733	return 0;
734}
735
736void i2c_acpi_remove_space_handler(struct i2c_adapter *adapter)
737{
738	acpi_handle handle;
739	struct i2c_acpi_handler_data *data;
740	acpi_status status;
741
742	if (!adapter->dev.parent)
743		return;
744
745	handle = ACPI_HANDLE(adapter->dev.parent);
746
747	if (!handle)
748		return;
749
750	acpi_remove_address_space_handler(handle,
751				ACPI_ADR_SPACE_GSBUS,
752				&i2c_acpi_space_handler);
753
754	status = acpi_bus_get_private_data(handle, (void **)&data);
755	if (ACPI_SUCCESS(status))
756		kfree(data);
757
758	acpi_bus_detach_private_data(handle);
759}
760#endif /* CONFIG_ACPI_I2C_OPREGION */
v4.17
 
  1/*
  2 * Linux I2C core ACPI support code
  3 *
  4 * Copyright (C) 2014 Intel Corp, Author: Lan Tianyu <tianyu.lan@intel.com>
  5 *
  6 * This program is free software; you can redistribute it and/or modify it
  7 * under the terms of the GNU General Public License as published by the Free
  8 * Software Foundation; either version 2 of the License, or (at your option)
  9 * any later version.
 10 */
 11
 12#include <linux/acpi.h>
 13#include <linux/device.h>
 14#include <linux/err.h>
 15#include <linux/i2c.h>
 16#include <linux/list.h>
 17#include <linux/module.h>
 18#include <linux/slab.h>
 19
 20#include "i2c-core.h"
 21
 22struct i2c_acpi_handler_data {
 23	struct acpi_connection_info info;
 24	struct i2c_adapter *adapter;
 25};
 26
 27struct gsb_buffer {
 28	u8	status;
 29	u8	len;
 30	union {
 31		u16	wdata;
 32		u8	bdata;
 33		u8	data[0];
 34	};
 35} __packed;
 36
 37struct i2c_acpi_lookup {
 38	struct i2c_board_info *info;
 39	acpi_handle adapter_handle;
 40	acpi_handle device_handle;
 41	acpi_handle search_handle;
 42	int n;
 43	int index;
 44	u32 speed;
 45	u32 min_speed;
 
 46};
 47
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 48static int i2c_acpi_fill_info(struct acpi_resource *ares, void *data)
 49{
 50	struct i2c_acpi_lookup *lookup = data;
 51	struct i2c_board_info *info = lookup->info;
 52	struct acpi_resource_i2c_serialbus *sb;
 53	acpi_status status;
 54
 55	if (info->addr || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS)
 56		return 1;
 57
 58	sb = &ares->data.i2c_serial_bus;
 59	if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C)
 60		return 1;
 61
 62	if (lookup->index != -1 && lookup->n++ != lookup->index)
 63		return 1;
 64
 65	status = acpi_get_handle(lookup->device_handle,
 66				 sb->resource_source.string_ptr,
 67				 &lookup->adapter_handle);
 68	if (!ACPI_SUCCESS(status))
 69		return 1;
 70
 71	info->addr = sb->slave_address;
 72	lookup->speed = sb->connection_speed;
 73	if (sb->access_mode == ACPI_I2C_10BIT_MODE)
 74		info->flags |= I2C_CLIENT_TEN;
 75
 76	return 1;
 77}
 78
 79static const struct acpi_device_id i2c_acpi_ignored_device_ids[] = {
 80	/*
 81	 * ACPI video acpi_devices, which are handled by the acpi-video driver
 82	 * sometimes contain a SERIAL_TYPE_I2C ACPI resource, ignore these.
 83	 */
 84	{ ACPI_VIDEO_HID, 0 },
 85	{}
 86};
 87
 88static int i2c_acpi_do_lookup(struct acpi_device *adev,
 89			      struct i2c_acpi_lookup *lookup)
 90{
 91	struct i2c_board_info *info = lookup->info;
 92	struct list_head resource_list;
 93	int ret;
 94
 95	if (acpi_bus_get_status(adev) || !adev->status.present ||
 96	    acpi_device_enumerated(adev))
 97		return -EINVAL;
 98
 99	if (acpi_match_device_ids(adev, i2c_acpi_ignored_device_ids) == 0)
100		return -ENODEV;
101
102	memset(info, 0, sizeof(*info));
103	lookup->device_handle = acpi_device_handle(adev);
104
105	/* Look up for I2cSerialBus resource */
106	INIT_LIST_HEAD(&resource_list);
107	ret = acpi_dev_get_resources(adev, &resource_list,
108				     i2c_acpi_fill_info, lookup);
109	acpi_dev_free_resource_list(&resource_list);
110
111	if (ret < 0 || !info->addr)
112		return -EINVAL;
113
114	return 0;
115}
116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
117static int i2c_acpi_get_info(struct acpi_device *adev,
118			     struct i2c_board_info *info,
119			     struct i2c_adapter *adapter,
120			     acpi_handle *adapter_handle)
121{
122	struct list_head resource_list;
123	struct resource_entry *entry;
124	struct i2c_acpi_lookup lookup;
125	int ret;
126
127	memset(&lookup, 0, sizeof(lookup));
128	lookup.info = info;
129	lookup.index = -1;
130
 
 
 
131	ret = i2c_acpi_do_lookup(adev, &lookup);
132	if (ret)
133		return ret;
134
135	if (adapter) {
136		/* The adapter must match the one in I2cSerialBus() connector */
137		if (ACPI_HANDLE(&adapter->dev) != lookup.adapter_handle)
138			return -ENODEV;
139	} else {
140		struct acpi_device *adapter_adev;
141
142		/* The adapter must be present */
143		if (acpi_bus_get_device(lookup.adapter_handle, &adapter_adev))
144			return -ENODEV;
145		if (acpi_bus_get_status(adapter_adev) ||
146		    !adapter_adev->status.present)
147			return -ENODEV;
148	}
149
150	info->fwnode = acpi_fwnode_handle(adev);
151	if (adapter_handle)
152		*adapter_handle = lookup.adapter_handle;
153
154	/* Then fill IRQ number if any */
155	INIT_LIST_HEAD(&resource_list);
156	ret = acpi_dev_get_resources(adev, &resource_list, NULL, NULL);
157	if (ret < 0)
158		return -EINVAL;
159
160	resource_list_for_each_entry(entry, &resource_list) {
161		if (resource_type(entry->res) == IORESOURCE_IRQ) {
162			info->irq = entry->res->start;
163			break;
164		}
165	}
166
167	acpi_dev_free_resource_list(&resource_list);
168
169	acpi_set_modalias(adev, dev_name(&adev->dev), info->type,
170			  sizeof(info->type));
171
172	return 0;
173}
174
175static void i2c_acpi_register_device(struct i2c_adapter *adapter,
176				     struct acpi_device *adev,
177				     struct i2c_board_info *info)
178{
179	adev->power.flags.ignore_parent = true;
180	acpi_device_set_enumerated(adev);
181
182	if (!i2c_new_device(adapter, info)) {
183		adev->power.flags.ignore_parent = false;
184		dev_err(&adapter->dev,
185			"failed to add I2C device %s from ACPI\n",
186			dev_name(&adev->dev));
187	}
188}
189
190static acpi_status i2c_acpi_add_device(acpi_handle handle, u32 level,
191				       void *data, void **return_value)
192{
193	struct i2c_adapter *adapter = data;
194	struct acpi_device *adev;
195	struct i2c_board_info info;
196
197	if (acpi_bus_get_device(handle, &adev))
198		return AE_OK;
199
200	if (i2c_acpi_get_info(adev, &info, adapter, NULL))
201		return AE_OK;
202
203	i2c_acpi_register_device(adapter, adev, &info);
204
205	return AE_OK;
206}
207
208#define I2C_ACPI_MAX_SCAN_DEPTH 32
209
210/**
211 * i2c_acpi_register_devices - enumerate I2C slave devices behind adapter
212 * @adap: pointer to adapter
213 *
214 * Enumerate all I2C slave devices behind this adapter by walking the ACPI
215 * namespace. When a device is found it will be added to the Linux device
216 * model and bound to the corresponding ACPI handle.
217 */
218void i2c_acpi_register_devices(struct i2c_adapter *adap)
219{
220	acpi_status status;
221
222	if (!has_acpi_companion(&adap->dev))
223		return;
224
225	status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
226				     I2C_ACPI_MAX_SCAN_DEPTH,
227				     i2c_acpi_add_device, NULL,
228				     adap, NULL);
229	if (ACPI_FAILURE(status))
230		dev_warn(&adap->dev, "failed to enumerate I2C slaves\n");
231}
232
233const struct acpi_device_id *
234i2c_acpi_match_device(const struct acpi_device_id *matches,
235		      struct i2c_client *client)
236{
237	if (!(client && matches))
238		return NULL;
239
240	return acpi_match_device(matches, &client->dev);
241}
242
 
 
 
 
 
 
 
 
 
 
 
 
 
243static acpi_status i2c_acpi_lookup_speed(acpi_handle handle, u32 level,
244					   void *data, void **return_value)
245{
246	struct i2c_acpi_lookup *lookup = data;
247	struct acpi_device *adev;
248
249	if (acpi_bus_get_device(handle, &adev))
250		return AE_OK;
251
252	if (i2c_acpi_do_lookup(adev, lookup))
253		return AE_OK;
254
255	if (lookup->search_handle != lookup->adapter_handle)
256		return AE_OK;
257
258	if (lookup->speed <= lookup->min_speed)
259		lookup->min_speed = lookup->speed;
260
 
 
 
261	return AE_OK;
262}
263
264/**
265 * i2c_acpi_find_bus_speed - find I2C bus speed from ACPI
266 * @dev: The device owning the bus
267 *
268 * Find the I2C bus speed by walking the ACPI namespace for all I2C slaves
269 * devices connected to this bus and use the speed of slowest device.
270 *
271 * Returns the speed in Hz or zero
272 */
273u32 i2c_acpi_find_bus_speed(struct device *dev)
274{
275	struct i2c_acpi_lookup lookup;
276	struct i2c_board_info dummy;
277	acpi_status status;
278
279	if (!has_acpi_companion(dev))
280		return 0;
281
282	memset(&lookup, 0, sizeof(lookup));
283	lookup.search_handle = ACPI_HANDLE(dev);
284	lookup.min_speed = UINT_MAX;
285	lookup.info = &dummy;
286	lookup.index = -1;
287
288	status = acpi_walk_namespace(ACPI_TYPE_DEVICE, ACPI_ROOT_OBJECT,
289				     I2C_ACPI_MAX_SCAN_DEPTH,
290				     i2c_acpi_lookup_speed, NULL,
291				     &lookup, NULL);
292
293	if (ACPI_FAILURE(status)) {
294		dev_warn(dev, "unable to find I2C bus speed from ACPI\n");
295		return 0;
296	}
297
298	return lookup.min_speed != UINT_MAX ? lookup.min_speed : 0;
 
 
 
 
 
 
 
 
 
299}
300EXPORT_SYMBOL_GPL(i2c_acpi_find_bus_speed);
301
302static int i2c_acpi_find_match_adapter(struct device *dev, void *data)
303{
304	struct i2c_adapter *adapter = i2c_verify_adapter(dev);
305
306	if (!adapter)
307		return 0;
308
309	return ACPI_HANDLE(dev) == (acpi_handle)data;
310}
311
312static int i2c_acpi_find_match_device(struct device *dev, void *data)
313{
314	return ACPI_COMPANION(dev) == data;
315}
316
317static struct i2c_adapter *i2c_acpi_find_adapter_by_handle(acpi_handle handle)
318{
319	struct device *dev;
320
321	dev = bus_find_device(&i2c_bus_type, NULL, handle,
322			      i2c_acpi_find_match_adapter);
 
323	return dev ? i2c_verify_adapter(dev) : NULL;
324}
 
325
326static struct i2c_client *i2c_acpi_find_client_by_adev(struct acpi_device *adev)
327{
328	struct device *dev;
329
330	dev = bus_find_device(&i2c_bus_type, NULL, adev,
331			      i2c_acpi_find_match_device);
332	return dev ? i2c_verify_client(dev) : NULL;
333}
334
335static int i2c_acpi_notify(struct notifier_block *nb, unsigned long value,
336			   void *arg)
337{
338	struct acpi_device *adev = arg;
339	struct i2c_board_info info;
340	acpi_handle adapter_handle;
341	struct i2c_adapter *adapter;
342	struct i2c_client *client;
343
344	switch (value) {
345	case ACPI_RECONFIG_DEVICE_ADD:
346		if (i2c_acpi_get_info(adev, &info, NULL, &adapter_handle))
347			break;
348
349		adapter = i2c_acpi_find_adapter_by_handle(adapter_handle);
350		if (!adapter)
351			break;
352
353		i2c_acpi_register_device(adapter, adev, &info);
354		break;
355	case ACPI_RECONFIG_DEVICE_REMOVE:
356		if (!acpi_device_enumerated(adev))
357			break;
358
359		client = i2c_acpi_find_client_by_adev(adev);
360		if (!client)
361			break;
362
363		i2c_unregister_device(client);
364		put_device(&client->dev);
365		break;
366	}
367
368	return NOTIFY_OK;
369}
370
371struct notifier_block i2c_acpi_notifier = {
372	.notifier_call = i2c_acpi_notify,
373};
374
375/**
376 * i2c_acpi_new_device - Create i2c-client for the Nth I2cSerialBus resource
377 * @dev:     Device owning the ACPI resources to get the client from
378 * @index:   Index of ACPI resource to get
379 * @info:    describes the I2C device; note this is modified (addr gets set)
380 * Context: can sleep
381 *
382 * By default the i2c subsys creates an i2c-client for the first I2cSerialBus
383 * resource of an acpi_device, but some acpi_devices have multiple I2cSerialBus
384 * resources, in that case this function can be used to create an i2c-client
385 * for other I2cSerialBus resources in the Current Resource Settings table.
386 *
387 * Also see i2c_new_device, which this function calls to create the i2c-client.
388 *
389 * Returns a pointer to the new i2c-client, or NULL if the adapter is not found.
 
390 */
391struct i2c_client *i2c_acpi_new_device(struct device *dev, int index,
392				       struct i2c_board_info *info)
393{
394	struct i2c_acpi_lookup lookup;
395	struct i2c_adapter *adapter;
 
396	struct acpi_device *adev;
397	LIST_HEAD(resource_list);
398	int ret;
399
400	adev = ACPI_COMPANION(dev);
401	if (!adev)
402		return NULL;
403
404	memset(&lookup, 0, sizeof(lookup));
405	lookup.info = info;
406	lookup.device_handle = acpi_device_handle(adev);
407	lookup.index = index;
408
409	ret = acpi_dev_get_resources(adev, &resource_list,
410				     i2c_acpi_fill_info, &lookup);
 
 
 
411	acpi_dev_free_resource_list(&resource_list);
412
413	if (ret < 0 || !info->addr)
414		return NULL;
415
416	adapter = i2c_acpi_find_adapter_by_handle(lookup.adapter_handle);
417	if (!adapter)
418		return NULL;
 
 
 
 
419
420	return i2c_new_device(adapter, info);
421}
422EXPORT_SYMBOL_GPL(i2c_acpi_new_device);
423
424#ifdef CONFIG_ACPI_I2C_OPREGION
425static int acpi_gsb_i2c_read_bytes(struct i2c_client *client,
426		u8 cmd, u8 *data, u8 data_len)
427{
428
429	struct i2c_msg msgs[2];
430	int ret;
431	u8 *buffer;
432
433	buffer = kzalloc(data_len, GFP_KERNEL);
434	if (!buffer)
435		return AE_NO_MEMORY;
436
437	msgs[0].addr = client->addr;
438	msgs[0].flags = client->flags;
439	msgs[0].len = 1;
440	msgs[0].buf = &cmd;
441
442	msgs[1].addr = client->addr;
443	msgs[1].flags = client->flags | I2C_M_RD;
444	msgs[1].len = data_len;
445	msgs[1].buf = buffer;
446
447	ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
448	if (ret < 0) {
449		/* Getting a NACK is unfortunately normal with some DSTDs */
450		if (ret == -EREMOTEIO)
451			dev_dbg(&client->adapter->dev, "i2c read %d bytes from client@%#x starting at reg %#x failed, error: %d\n",
452				data_len, client->addr, cmd, ret);
453		else
454			dev_err(&client->adapter->dev, "i2c read %d bytes from client@%#x starting at reg %#x failed, error: %d\n",
455				data_len, client->addr, cmd, ret);
 
 
 
 
456	} else {
457		memcpy(data, buffer, data_len);
458	}
459
460	kfree(buffer);
461	return ret;
462}
463
464static int acpi_gsb_i2c_write_bytes(struct i2c_client *client,
465		u8 cmd, u8 *data, u8 data_len)
466{
467
468	struct i2c_msg msgs[1];
469	u8 *buffer;
470	int ret = AE_OK;
471
472	buffer = kzalloc(data_len + 1, GFP_KERNEL);
473	if (!buffer)
474		return AE_NO_MEMORY;
475
476	buffer[0] = cmd;
477	memcpy(buffer + 1, data, data_len);
478
479	msgs[0].addr = client->addr;
480	msgs[0].flags = client->flags;
481	msgs[0].len = data_len + 1;
482	msgs[0].buf = buffer;
483
484	ret = i2c_transfer(client->adapter, msgs, ARRAY_SIZE(msgs));
485	if (ret < 0)
486		dev_err(&client->adapter->dev, "i2c write failed\n");
487
488	kfree(buffer);
489	return ret;
 
 
 
 
 
 
 
490}
491
492static acpi_status
493i2c_acpi_space_handler(u32 function, acpi_physical_address command,
494			u32 bits, u64 *value64,
495			void *handler_context, void *region_context)
496{
497	struct gsb_buffer *gsb = (struct gsb_buffer *)value64;
498	struct i2c_acpi_handler_data *data = handler_context;
499	struct acpi_connection_info *info = &data->info;
500	struct acpi_resource_i2c_serialbus *sb;
501	struct i2c_adapter *adapter = data->adapter;
502	struct i2c_client *client;
503	struct acpi_resource *ares;
504	u32 accessor_type = function >> 16;
505	u8 action = function & ACPI_IO_MASK;
506	acpi_status ret;
507	int status;
508
509	ret = acpi_buffer_to_resource(info->connection, info->length, &ares);
510	if (ACPI_FAILURE(ret))
511		return ret;
512
513	client = kzalloc(sizeof(*client), GFP_KERNEL);
514	if (!client) {
515		ret = AE_NO_MEMORY;
516		goto err;
517	}
518
519	if (!value64 || ares->type != ACPI_RESOURCE_TYPE_SERIAL_BUS) {
520		ret = AE_BAD_PARAMETER;
521		goto err;
522	}
523
524	sb = &ares->data.i2c_serial_bus;
525	if (sb->type != ACPI_RESOURCE_SERIAL_TYPE_I2C) {
526		ret = AE_BAD_PARAMETER;
527		goto err;
528	}
529
530	client->adapter = adapter;
531	client->addr = sb->slave_address;
532
533	if (sb->access_mode == ACPI_I2C_10BIT_MODE)
534		client->flags |= I2C_CLIENT_TEN;
535
536	switch (accessor_type) {
537	case ACPI_GSB_ACCESS_ATTRIB_SEND_RCV:
538		if (action == ACPI_READ) {
539			status = i2c_smbus_read_byte(client);
540			if (status >= 0) {
541				gsb->bdata = status;
542				status = 0;
543			}
544		} else {
545			status = i2c_smbus_write_byte(client, gsb->bdata);
546		}
547		break;
548
549	case ACPI_GSB_ACCESS_ATTRIB_BYTE:
550		if (action == ACPI_READ) {
551			status = i2c_smbus_read_byte_data(client, command);
552			if (status >= 0) {
553				gsb->bdata = status;
554				status = 0;
555			}
556		} else {
557			status = i2c_smbus_write_byte_data(client, command,
558					gsb->bdata);
559		}
560		break;
561
562	case ACPI_GSB_ACCESS_ATTRIB_WORD:
563		if (action == ACPI_READ) {
564			status = i2c_smbus_read_word_data(client, command);
565			if (status >= 0) {
566				gsb->wdata = status;
567				status = 0;
568			}
569		} else {
570			status = i2c_smbus_write_word_data(client, command,
571					gsb->wdata);
572		}
573		break;
574
575	case ACPI_GSB_ACCESS_ATTRIB_BLOCK:
576		if (action == ACPI_READ) {
577			status = i2c_smbus_read_block_data(client, command,
578					gsb->data);
579			if (status >= 0) {
580				gsb->len = status;
581				status = 0;
582			}
583		} else {
584			status = i2c_smbus_write_block_data(client, command,
585					gsb->len, gsb->data);
586		}
587		break;
588
589	case ACPI_GSB_ACCESS_ATTRIB_MULTIBYTE:
590		if (action == ACPI_READ) {
591			status = acpi_gsb_i2c_read_bytes(client, command,
592					gsb->data, info->access_length);
593			if (status > 0)
594				status = 0;
595		} else {
596			status = acpi_gsb_i2c_write_bytes(client, command,
597					gsb->data, info->access_length);
598		}
599		break;
600
601	default:
602		dev_warn(&adapter->dev, "protocol 0x%02x not supported for client 0x%02x\n",
603			 accessor_type, client->addr);
604		ret = AE_BAD_PARAMETER;
605		goto err;
606	}
607
608	gsb->status = status;
609
610 err:
611	kfree(client);
612	ACPI_FREE(ares);
613	return ret;
614}
615
616
617int i2c_acpi_install_space_handler(struct i2c_adapter *adapter)
618{
619	acpi_handle handle;
620	struct i2c_acpi_handler_data *data;
621	acpi_status status;
622
623	if (!adapter->dev.parent)
624		return -ENODEV;
625
626	handle = ACPI_HANDLE(adapter->dev.parent);
627
628	if (!handle)
629		return -ENODEV;
630
631	data = kzalloc(sizeof(struct i2c_acpi_handler_data),
632			    GFP_KERNEL);
633	if (!data)
634		return -ENOMEM;
635
636	data->adapter = adapter;
637	status = acpi_bus_attach_private_data(handle, (void *)data);
638	if (ACPI_FAILURE(status)) {
639		kfree(data);
640		return -ENOMEM;
641	}
642
643	status = acpi_install_address_space_handler(handle,
644				ACPI_ADR_SPACE_GSBUS,
645				&i2c_acpi_space_handler,
646				NULL,
647				data);
648	if (ACPI_FAILURE(status)) {
649		dev_err(&adapter->dev, "Error installing i2c space handler\n");
650		acpi_bus_detach_private_data(handle);
651		kfree(data);
652		return -ENOMEM;
653	}
654
655	acpi_walk_dep_device_list(handle);
656	return 0;
657}
658
659void i2c_acpi_remove_space_handler(struct i2c_adapter *adapter)
660{
661	acpi_handle handle;
662	struct i2c_acpi_handler_data *data;
663	acpi_status status;
664
665	if (!adapter->dev.parent)
666		return;
667
668	handle = ACPI_HANDLE(adapter->dev.parent);
669
670	if (!handle)
671		return;
672
673	acpi_remove_address_space_handler(handle,
674				ACPI_ADR_SPACE_GSBUS,
675				&i2c_acpi_space_handler);
676
677	status = acpi_bus_get_private_data(handle, (void **)&data);
678	if (ACPI_SUCCESS(status))
679		kfree(data);
680
681	acpi_bus_detach_private_data(handle);
682}
683#endif /* CONFIG_ACPI_I2C_OPREGION */