mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 08:42:12 +02:00
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>
50 lines
1.6 KiB
Plaintext
50 lines
1.6 KiB
Plaintext
Devices
|
|
=======
|
|
|
|
Device bindings are described by their own individual binding files.
|
|
|
|
U-Boot provides for some optional properties which are documented here. See
|
|
also hid-over-i2c.txt which describes HID devices. See also
|
|
Documentation/firmware-guide/acpi/enumeration.rst in the Linux kernel for
|
|
the acpi,compatible property.
|
|
|
|
- acpi,has-power-resource : (boolean) true if this device has a power resource.
|
|
This causes an ACPI PowerResource to be written containing the properties
|
|
provided by this binding, to describe how to handle powering the device up
|
|
and down using GPIOs
|
|
- acpi,compatible : compatible string to report
|
|
- acpi,ddn : Contains the string to use as the _DDN (DOS (Disk Operating
|
|
System) Device Name)
|
|
- acpi,hid : Contains the string to use as the HID (Hardware ID)
|
|
identifier _HID
|
|
- acpi,name : Provides the ACPI name for a device, which is a string consisting
|
|
of four alphanumeric character (upper case)
|
|
- acpi,uid : _UID value for device
|
|
- linux,probed : Tells U-Boot to add 'linux,probed' to the ACPI tables so that
|
|
Linux will only load the driver if the device can be detected (e.g. on I2C
|
|
bus). Note that this is an out-of-tree Linux feature.
|
|
|
|
|
|
Example
|
|
-------
|
|
|
|
elan_touchscreen: elan-touchscreen@10 {
|
|
compatible = "i2c-chip";
|
|
reg = <0x10>;
|
|
acpi,hid = "ELAN0001";
|
|
acpi,ddn = "ELAN Touchscreen";
|
|
interrupts-extended = <&acpi_gpe GPIO_21_IRQ IRQ_TYPE_EDGE_FALLING>;
|
|
linux,probed;
|
|
};
|
|
|
|
pcie-a0@14,0 {
|
|
reg = <0x0000a000 0 0 0 0>;
|
|
acpi,name = "RP01";
|
|
wifi: wifi {
|
|
compatible = "intel,generic-wifi";
|
|
acpi,ddn = "Intel WiFi";
|
|
acpi,name = "WF00";
|
|
interrupts-extended = <&acpi_gpe 0x3c 0>;
|
|
};
|
|
};
|