Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Difference between dts and ACPI

We can declare platform device information in dts file, rather than hard coding every data into operating system. Taking "arm" architecture as example. it supports dts and we will take dts from arch/arm/boot/dts/xx.dts. Convert this xx.dts into xx.dtb and loaded with kernel Image. I recently came across ACPI, when i came across x86 architecture, from the documents, what i understood is ACPI is similar to device tree. We can declare platform device information information in ACPI tables, my doubt is where exactly these ACPI tables present. How can i load this info to linux. What is the advantage of using ACPI over dts. Please correct me if i am wrong. Thanks in advance

like image 961
anikhan Avatar asked Aug 31 '15 12:08

anikhan


People also ask

What is the difference between DTS and Dtsi?

dtsi files are included files, containing definitions of SoC-level information, while . dts files are final device trees containing board-level information. The . dtsi extension denotes “device tree source include”.

What is UEFI ACPI?

Section 1.3 (Goals) of the UEFI specifications has a list of goals for UEFI. ACPI is a standardized interface to pass information (in the form of tables and bytecode) from the firmware to the OS. Some hardware is not discoverable and the OS could only support it by including a big list of presence-tests and drivers.


4 Answers

Not completely correct:

  • ACPI started as an interface between firmware (formerly BIOS) and OS for things like power management, but also things like platform device probing
  • DT was always (even long before ACPI existed) about declarative platform device descriptions (probing and configuration), so the OS can properly initialize all drivers, configure operation points, etc, etc.

ACPI was always very limited in scope and depends on firmware, while DT stands on its own (just requires the bootloader to pass the right dtb to the kernel).

ACPI is the unprofessional, hackish attempt of bios and board vendors to solve a small subset of the problems that DT already solved long ago. A major pro argument for those gallows-wearing folks probably is that ACPI/BIOS hides lots of low level configuration stuff (up to runtime device programming, eg. for power management) in the firmware blob, thus preventing the OS kernel to have full control over the machine. (which finally leads to things like broken machines by broken BIOS, etc). We, the kernel developers, often have to work around crappy BIOSes.

My strong advice: get of ACPI when you can.

like image 59
Enrico 'nekrad' Weigelt Avatar answered Sep 30 '22 16:09

Enrico 'nekrad' Weigelt


Breathe with lungs or gills? Depends on where you live.

A rough classification of architectures is

x86 - Server/PC - ACPI table 
ARM - embedded systems - Device Tree

On server/PC motherboards, the ACPI table is a part of the UEFI firmware, which resides on the flash chip. The OS would be installed later somewhere else (hard drive or so). The OS parses the ACPI table, but OS developers don't control what is already written in the firmware; or they don't even know the internal design of the board. The board vendor (firmware provider) needs to support whatever OS to be installed, not only Linux, so they have to follow standards (UEFI), instead of focusing on a Linux thing, such as device tree.

On embedded systems, OS and everything else are programmed once by the vendor and never again by the user. The OS is part of the firmware. So no need to worry about the OS support matrix, and just have a 1-to-1 relationship between the board and your OS image. U-Boot, kernel, initramfs, device tree blob reside on the same flash storage (i.e. NAND). So developers have access and control to what to be deployed as the device tree (must match real hardware though).

Hardware designers should be able to provide both an ACPI table and a device tree. Depending on the receiver, one will be preferred.

References:

  • https://unix.stackexchange.com/a/399701/170265
  • https://xenproject.org/2013/12/03/xen-on-arm-and-the-device-tree-vs-acpi-debate/
like image 45
lqu Avatar answered Sep 30 '22 17:09

lqu


IMHO

ACPI and DT are used for similar purposes, but they have their unique functionalities. Nowadays the effort of defining ACPI configs in DT.

ACPI and DT are used to solve different issues:

  1. ACPI's purpose was to improve power efficiency.
  2. DT's purpose was to remove platform files outside the kernel.

Device tree is mostly passed to the linux kernel before it boots up. ACPI is usually loaded while linux kernel is booting (check Documentation/acpi/enumeration.txt for more info)

for any other thing just comment.

like image 33
Devidas Avatar answered Sep 30 '22 15:09

Devidas


ACPI and DT used in different architecture.

  1. ACPI use in Intel Architecture eg: x86 arch
  2. DT use ARM architecture

you can manually differentiate this inside linux kernel source code.

  1. ACPI use .acpi_match_table{..}
  2. ARCH use .of_match_table{..}

Reference:

  1. ACPI vs DT : https://blog.linuxplumbersconf.org/2013/ocw/proposals/1173
like image 29
fai90 Avatar answered Sep 30 '22 17:09

fai90