]> git.dujemihanovic.xyz Git - u-boot.git/commit
dm: acpi: Enhance acpi_get_name()
authorSimon Glass <sjg@chromium.org>
Tue, 7 Jul 2020 19:12:11 +0000 (13:12 -0600)
committerBin Meng <bmeng.cn@gmail.com>
Fri, 17 Jul 2020 06:32:24 +0000 (14:32 +0800)
commitfefac0b0643b14e72c356cf05dabcbe7512c4709
treec3651cb15214fa2f99b31f5bc94a0e9a9aebe638
parent20349781a3ca833c67126888ddfce7c1517c772e
dm: acpi: Enhance acpi_get_name()

For many device types it is possible to figure out the name just by
looking at its uclass or parent. Add a function to handle this, since it
allows us to cover the vast majority of cases automatically.

However it is sometimes impossible to figure out an ACPI name for a device
just by looking at its uclass. For example a touch device may have a
vendor-specific name. Add a new "acpi,name" property to allow a custom
name to be created.

With this new feature we can drop the get_name() methods in the sandbox
I2C and SPI drivers. They were only added for testing purposes. Update the
tests to use the new values.

Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Wolfgang Wallner <wolfgang.wallner@br-automation.com>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
arch/sandbox/dts/test.dts
doc/device-tree-bindings/device.txt
drivers/core/acpi.c
drivers/i2c/sandbox_i2c.c
drivers/spi/sandbox_spi.c
include/acpi/acpi_device.h
lib/acpi/acpi_device.c
test/dm/acpi.c