Difference between revisions of "Device Tree Reference"

From eLinux.org
Jump to: navigation, search
(Kernel Source Documentation: add pinctrl-bindings)
(Move man pages up to before in-kernel bindings documents)
Line 26: Line 26:
 
[[Device_tree_future#Devicetree_Specification | The ePAPR is currently being updated]] with a new
 
[[Device_tree_future#Devicetree_Specification | The ePAPR is currently being updated]] with a new
 
name of Devicetree Specification Documentation.
 
name of Devicetree Specification Documentation.
 +
 +
=== Man pages ===
 +
 +
man pages are a work in progress.
 +
 +
The current version of the pages can be [[Device_Tree_frowand#devicetree_man_pages | downloaded or built locally]].
  
 
=== Kernel Source Documentation ===
 
=== Kernel Source Documentation ===
Line 226: Line 232:
 
  "The device tree generator is a Xilinx EDK tool that plugs into the
 
  "The device tree generator is a Xilinx EDK tool that plugs into the
 
  Automatic BSP Generation features of the tool, XPS"
 
  Automatic BSP Generation features of the tool, XPS"
 
=== Man pages ===
 
 
man pages are a work in progress.
 
 
The current version of the pages can be [[Device_Tree_frowand#devicetree_man_pages | downloaded or built locally]].
 
  
 
=== Glossary ===
 
=== Glossary ===

Revision as of 00:34, 20 June 2016


Top Device Tree page

Reference Manual

Introduction

Device Tree Usage

The Device Tree Usage page was previously located at devicetree.org

It walks through how to write a device tree for a new machine.

It is intended to provide an overview of device tree concepts and how they are used to describe a machine.

Miscellaneous Tips

Linux Drivers Device Tree Guide

Standards

Power.org Standard for Embedded Power Architecture Platform Requirements (ePAPR) v1.1
Source: https://www.power.org/documentation/power-org-standard-for-embedded-power-architecture-platform-requirements-epapr-v1-1-2/

The ePAPR is currently being updated with a new name of Devicetree Specification Documentation.

Man pages

man pages are a work in progress.

The current version of the pages can be downloaded or built locally.

Kernel Source Documentation

The device tree core source files under drivers/of/ contain DocBook format comments, but there is not yet a DocBook document that includes them.

Documentation files about device tree is available in the Linux kernel source at Documentation/devicetree

Specific bindings specifications are located in the Linux kernel source at: Documentation/devicetree/bindings

Some especially useful files are:

Some subsystems have overview bindings descriptions under devicetree/bindings/:

Device Tree Source

  • dtc compiler repository documentation
  • differences between ePAPR and the Linux dtc compiler
  • presentations

Bindings

Bindings are documented in

Subsystem specific

  • gpio / pinctrl
  • interrupts
  • timers
  • etc

Overlays

Device Tree Source Validation

Compiling .dtb (FDT binary blob)

  • via kernel make system
    • all configured .dtb
      • make dtbs
    • specific .dtb
      • make arch/arm/boot/dts/qcom-apq8074-dragonboard.dtb
  • via generated script in build directory
    • arch/arm/boot/dts/.*.dtb.cmd
    • arch/${ARCH}/boot/dts/.*.dtb.cmd

Install

  • make dtbs_install
    • installs in /boot/dtbs/<kernel version>
  • many other ways to install ....

Boot loaders

Booting

Debugging

  • diffing .dts, .dtb, /proc/devicetree/
  • locating source location for properties
  • boot time messages
    • device creation
    • driver registration
    • binding driver to device
    • deferred binding

Debugging - random hints

You can set CONFIG_PROC_DEVICETREE to be able to see the device tree information in /proc after booting. Build the kernel with this option set to 'Y', boot the kernel, then 'cd /proc/device-tree'

/proc/device-tree still does not exist.  Now what???

Is CONFIG_PROC_FS enabled?
Is CONFIG_OF enabled?
Does /sys/firmware/devicetree/base exist?  (Note that this path is not an ABI, but currently
  /proc/devicetree is a soft link to this location.)
Did the bootloader load a devicetree?  (Check the boot console or use dmesg to print the boot messages.)

For newer kernels where the CONFIG_PROC_DEVICETREE option does not exist, /proc/device-tree will be created if CONFIG_PROC_FS is set to 'Y'.

You might also try CONFIG_DEBUG_DRIVER=Y.

Also, often, you can set the line: "#define DEBUG 1" to an individual C file, to produce add debug statements to the routines in that file. This will activate any pr_debug() lines in the source for that file.

Alternatively, you can add the following to drivers/of/Makefile:

CFLAGS_base.o := -DDEBUG
CFLAGS_device.o := -DDEBUG
CFLAGS_platform.o := -DDEBUG
CFLAGS_fdt.o := -DDEBUG

Tools

"The device tree generator is a Xilinx EDK tool that plugs into the
Automatic BSP Generation features of the tool, XPS"

Glossary

  • .dtb - File name suffix, by convention, for compiled devicetree.
  • .dts - File name suffix, by convention, for devicetree source.
  • .dtsi - File name suffix, by convention, for devicetree source to be included by a .dts or .dtsi file.
  • Binary Blob - File containing a compiled devicetree.
  • dtc - Devicetree compiler.
  • EDT Expanded Device Tree - A copy of an FDT, but converted to kernel data structures, in the kernel memory space.
  • FDT Flattened Device Tree - A copy of a binary blob in the kernel memory space.

Definitions