blob: 50619a0720a8fd070b5f83cb1fc9ced9ff79a858 [file] [log] [blame]
David Gibsonc125a182006-02-01 03:05:22 -08001 Booting the Linux/ppc kernel without Open Firmware
2 --------------------------------------------------
3
David Gibsonc125a182006-02-01 03:05:22 -08004(c) 2005 Benjamin Herrenschmidt <benh at kernel.crashing.org>,
5 IBM Corp.
6(c) 2005 Becky Bruce <becky.bruce at freescale.com>,
7 Freescale Semiconductor, FSL SOC and 32-bit additions
Vitaly Wool28f9ec32006-11-20 16:32:39 +03008(c) 2006 MontaVista Software, Inc.
9 Flash chip node definition
David Gibsonc125a182006-02-01 03:05:22 -080010
Stuart Yoder5e1e9ba2007-06-06 04:29:14 +100011Table of Contents
12=================
13
14 I - Introduction
15 1) Entry point for arch/powerpc
Sebastian Andrzej Siewiorda6b7372011-02-22 21:07:37 +010016 2) Entry point for arch/x86
Stuart Yoder5e1e9ba2007-06-06 04:29:14 +100017
18 II - The DT block format
19 1) Header
20 2) Device tree generalities
21 3) Device tree "structure" block
22 4) Device tree "strings" block
23
24 III - Required content of the device tree
25 1) Note about cells and address representation
26 2) Note about "compatible" properties
27 3) Note about "name" properties
28 4) Note about node and property names and character set
29 5) Required nodes and properties
30 a) The root node
31 b) The /cpus node
32 c) The /cpus/* nodes
33 d) the /memory node(s)
34 e) The /chosen node
35 f) the /soc<SOCname> node
36
37 IV - "dtc", the device tree compiler
38
39 V - Recommendations for a bootloader
40
41 VI - System-on-a-chip devices and nodes
42 1) Defining child nodes of an SOC
43 2) Representing devices without a current OF specification
Stuart Yoder5e1e9ba2007-06-06 04:29:14 +100044
Anton Vorontsovb9e0ba82010-08-11 20:56:03 +040045 VII - Specifying interrupt information for devices
Stuart Yoder5e1e9ba2007-06-06 04:29:14 +100046 1) interrupts property
47 2) interrupt-parent property
48 3) OpenPIC Interrupt Controllers
49 4) ISA Interrupt Controllers
50
Anton Vorontsovb9e0ba82010-08-11 20:56:03 +040051 VIII - Specifying device power management information (sleep property)
Scott Wood2dff4172008-07-11 17:31:15 -050052
Stuart Yoder5e1e9ba2007-06-06 04:29:14 +100053 Appendix A - Sample SOC node for MPC8540
54
55
56Revision Information
57====================
58
David Gibsonc125a182006-02-01 03:05:22 -080059 May 18, 2005: Rev 0.1 - Initial draft, no chapter III yet.
60
61 May 19, 2005: Rev 0.2 - Add chapter III and bits & pieces here or
62 clarifies the fact that a lot of things are
63 optional, the kernel only requires a very
64 small device tree, though it is encouraged
65 to provide an as complete one as possible.
66
67 May 24, 2005: Rev 0.3 - Precise that DT block has to be in RAM
68 - Misc fixes
69 - Define version 3 and new format version 16
70 for the DT block (version 16 needs kernel
71 patches, will be fwd separately).
72 String block now has a size, and full path
73 is replaced by unit name for more
74 compactness.
75 linux,phandle is made optional, only nodes
76 that are referenced by other nodes need it.
77 "name" property is now automatically
78 deduced from the unit name
79
80 June 1, 2005: Rev 0.4 - Correct confusion between OF_DT_END and
81 OF_DT_END_NODE in structure definition.
82 - Change version 16 format to always align
83 property data to 4 bytes. Since tokens are
84 already aligned, that means no specific
Matt LaPlante5d3f0832006-11-30 05:21:10 +010085 required alignment between property size
David Gibsonc125a182006-02-01 03:05:22 -080086 and property data. The old style variable
87 alignment would make it impossible to do
88 "simple" insertion of properties using
Domen Puncer5dd60162007-03-02 21:44:45 +110089 memmove (thanks Milton for
David Gibsonc125a182006-02-01 03:05:22 -080090 noticing). Updated kernel patch as well
Matt LaPlante5d3f0832006-11-30 05:21:10 +010091 - Correct a few more alignment constraints
David Gibsonc125a182006-02-01 03:05:22 -080092 - Add a chapter about the device-tree
93 compiler and the textural representation of
94 the tree that can be "compiled" by dtc.
95
David Gibsonc125a182006-02-01 03:05:22 -080096 November 21, 2005: Rev 0.5
97 - Additions/generalizations for 32-bit
98 - Changed to reflect the new arch/powerpc
99 structure
100 - Added chapter VI
101
102
103 ToDo:
104 - Add some definitions of interrupt tree (simple/complex)
Domen Puncer5dd60162007-03-02 21:44:45 +1100105 - Add some definitions for PCI host bridges
David Gibsonc125a182006-02-01 03:05:22 -0800106 - Add some common address format examples
107 - Add definitions for standard properties and "compatible"
108 names for cells that are not already defined by the existing
109 OF spec.
110 - Compare FSL SOC use of PCI to standard and make sure no new
111 node definition required.
112 - Add more information about node definitions for SOC devices
113 that currently have no standard, like the FSL CPM.
114
115
116I - Introduction
117================
118
Grant Likelycf4e5c62011-01-31 00:12:26 -0700119During the development of the Linux/ppc64 kernel, and more
David Gibsonc125a182006-02-01 03:05:22 -0800120specifically, the addition of new platform types outside of the old
121IBM pSeries/iSeries pair, it was decided to enforce some strict rules
122regarding the kernel entry and bootloader <-> kernel interfaces, in
123order to avoid the degeneration that had become the ppc32 kernel entry
124point and the way a new platform should be added to the kernel. The
125legacy iSeries platform breaks those rules as it predates this scheme,
126but no new board support will be accepted in the main tree that
Lennert Buytenhek475fc7c2010-09-21 23:22:40 +0000127doesn't follow them properly. In addition, since the advent of the
David Gibsonc125a182006-02-01 03:05:22 -0800128arch/powerpc merged architecture for ppc32 and ppc64, new 32-bit
129platforms and 32-bit platforms which move into arch/powerpc will be
130required to use these rules as well.
131
132The main requirement that will be defined in more detail below is
133the presence of a device-tree whose format is defined after Open
134Firmware specification. However, in order to make life easier
135to embedded board vendors, the kernel doesn't require the device-tree
136to represent every device in the system and only requires some nodes
137and properties to be present. This will be described in detail in
138section III, but, for example, the kernel does not require you to
139create a node for every PCI device in the system. It is a requirement
140to have a node for PCI host bridges in order to provide interrupt
Sylvestre Ledruf65e51d2011-04-04 15:04:46 -0700141routing information and memory/IO ranges, among others. It is also
Grant Likelycf4e5c62011-01-31 00:12:26 -0700142recommended to define nodes for on chip devices and other buses that
David Gibsonc125a182006-02-01 03:05:22 -0800143don't specifically fit in an existing OF specification. This creates a
144great flexibility in the way the kernel can then probe those and match
145drivers to device, without having to hard code all sorts of tables. It
146also makes it more flexible for board vendors to do minor hardware
147upgrades without significantly impacting the kernel code or cluttering
148it with special cases.
149
150
1511) Entry point for arch/powerpc
152-------------------------------
153
Grant Likelycf4e5c62011-01-31 00:12:26 -0700154 There is one single entry point to the kernel, at the start
David Gibsonc125a182006-02-01 03:05:22 -0800155 of the kernel image. That entry point supports two calling
156 conventions:
157
158 a) Boot from Open Firmware. If your firmware is compatible
159 with Open Firmware (IEEE 1275) or provides an OF compatible
160 client interface API (support for "interpret" callback of
161 forth words isn't required), you can enter the kernel with:
162
163 r5 : OF callback pointer as defined by IEEE 1275
Domen Puncer5dd60162007-03-02 21:44:45 +1100164 bindings to powerpc. Only the 32-bit client interface
David Gibsonc125a182006-02-01 03:05:22 -0800165 is currently supported
166
167 r3, r4 : address & length of an initrd if any or 0
168
169 The MMU is either on or off; the kernel will run the
170 trampoline located in arch/powerpc/kernel/prom_init.c to
171 extract the device-tree and other information from open
172 firmware and build a flattened device-tree as described
173 in b). prom_init() will then re-enter the kernel using
174 the second method. This trampoline code runs in the
175 context of the firmware, which is supposed to handle all
176 exceptions during that time.
177
178 b) Direct entry with a flattened device-tree block. This entry
179 point is called by a) after the OF trampoline and can also be
180 called directly by a bootloader that does not support the Open
181 Firmware client interface. It is also used by "kexec" to
182 implement "hot" booting of a new kernel from a previous
183 running one. This method is what I will describe in more
184 details in this document, as method a) is simply standard Open
185 Firmware, and thus should be implemented according to the
186 various standard documents defining it and its binding to the
187 PowerPC platform. The entry point definition then becomes:
188
189 r3 : physical pointer to the device-tree block
190 (defined in chapter II) in RAM
191
192 r4 : physical pointer to the kernel itself. This is
193 used by the assembly code to properly disable the MMU
194 in case you are entering the kernel with MMU enabled
195 and a non-1:1 mapping.
196
Matt LaPlante2fe0ae72006-10-03 22:50:39 +0200197 r5 : NULL (as to differentiate with method a)
David Gibsonc125a182006-02-01 03:05:22 -0800198
199 Note about SMP entry: Either your firmware puts your other
200 CPUs in some sleep loop or spin loop in ROM where you can get
201 them out via a soft reset or some other means, in which case
202 you don't need to care, or you'll have to enter the kernel
203 with all CPUs. The way to do that with method b) will be
204 described in a later revision of this document.
205
David Gibsonc125a182006-02-01 03:05:22 -0800206 Board supports (platforms) are not exclusive config options. An
207 arbitrary set of board supports can be built in a single kernel
208 image. The kernel will "know" what set of functions to use for a
209 given platform based on the content of the device-tree. Thus, you
210 should:
211
212 a) add your platform support as a _boolean_ option in
213 arch/powerpc/Kconfig, following the example of PPC_PSERIES,
214 PPC_PMAC and PPC_MAPLE. The later is probably a good
215 example of a board support to start from.
216
217 b) create your main platform file as
218 "arch/powerpc/platforms/myplatform/myboard_setup.c" and add it
219 to the Makefile under the condition of your CONFIG_
220 option. This file will define a structure of type "ppc_md"
221 containing the various callbacks that the generic code will
222 use to get to your platform specific code
223
Grant Likelycf4e5c62011-01-31 00:12:26 -0700224 A kernel image may support multiple platforms, but only if the
Domen Puncer5dd60162007-03-02 21:44:45 +1100225 platforms feature the same core architecture. A single kernel build
David Gibsonc125a182006-02-01 03:05:22 -0800226 cannot support both configurations with Book E and configurations
227 with classic Powerpc architectures.
228
Sebastian Andrzej Siewiorda6b7372011-02-22 21:07:37 +01002292) Entry point for arch/x86
230-------------------------------
231
232 There is one single 32bit entry point to the kernel at code32_start,
233 the decompressor (the real mode entry point goes to the same 32bit
234 entry point once it switched into protected mode). That entry point
235 supports one calling convention which is documented in
236 Documentation/x86/boot.txt
237 The physical pointer to the device-tree block (defined in chapter II)
238 is passed via setup_data which requires at least boot protocol 2.09.
239 The type filed is defined as
240
241 #define SETUP_DTB 2
242
243 This device-tree is used as an extension to the "boot page". As such it
244 does not parse / consider data which is already covered by the boot
245 page. This includes memory size, reserved ranges, command line arguments
246 or initrd address. It simply holds information which can not be retrieved
247 otherwise like interrupt routing or a list of devices behind an I2C bus.
David Gibsonc125a182006-02-01 03:05:22 -0800248
249II - The DT block format
250========================
251
252
253This chapter defines the actual format of the flattened device-tree
254passed to the kernel. The actual content of it and kernel requirements
255are described later. You can find example of code manipulating that
256format in various places, including arch/powerpc/kernel/prom_init.c
257which will generate a flattened device-tree from the Open Firmware
258representation, or the fs2dt utility which is part of the kexec tools
259which will generate one from a filesystem representation. It is
260expected that a bootloader like uboot provides a bit more support,
261that will be discussed later as well.
262
263Note: The block has to be in main memory. It has to be accessible in
264both real mode and virtual mode with no mapping other than main
265memory. If you are writing a simple flash bootloader, it should copy
266the block to RAM before passing it to the kernel.
267
268
2691) Header
270---------
271
Grant Likelycf4e5c62011-01-31 00:12:26 -0700272 The kernel is passed the physical address pointing to an area of memory
273 that is roughly described in include/linux/of_fdt.h by the structure
David Gibsonc125a182006-02-01 03:05:22 -0800274 boot_param_header:
275
276struct boot_param_header {
277 u32 magic; /* magic word OF_DT_HEADER */
278 u32 totalsize; /* total size of DT block */
279 u32 off_dt_struct; /* offset to structure */
280 u32 off_dt_strings; /* offset to strings */
281 u32 off_mem_rsvmap; /* offset to memory reserve map
Domen Puncer5dd60162007-03-02 21:44:45 +1100282 */
David Gibsonc125a182006-02-01 03:05:22 -0800283 u32 version; /* format version */
284 u32 last_comp_version; /* last compatible version */
285
286 /* version 2 fields below */
287 u32 boot_cpuid_phys; /* Which physical CPU id we're
288 booting on */
289 /* version 3 fields below */
290 u32 size_dt_strings; /* size of the strings block */
David Gibson0e0293c2007-03-14 11:50:40 +1100291
292 /* version 17 fields below */
293 u32 size_dt_struct; /* size of the DT structure block */
David Gibsonc125a182006-02-01 03:05:22 -0800294};
295
296 Along with the constants:
297
298/* Definitions used by the flattened device tree */
299#define OF_DT_HEADER 0xd00dfeed /* 4: version,
300 4: total size */
301#define OF_DT_BEGIN_NODE 0x1 /* Start node: full name
Domen Puncer5dd60162007-03-02 21:44:45 +1100302 */
David Gibsonc125a182006-02-01 03:05:22 -0800303#define OF_DT_END_NODE 0x2 /* End node */
304#define OF_DT_PROP 0x3 /* Property: name off,
305 size, content */
306#define OF_DT_END 0x9
307
308 All values in this header are in big endian format, the various
309 fields in this header are defined more precisely below. All
310 "offset" values are in bytes from the start of the header; that is
Grant Likelycf4e5c62011-01-31 00:12:26 -0700311 from the physical base address of the device tree block.
David Gibsonc125a182006-02-01 03:05:22 -0800312
313 - magic
314
315 This is a magic value that "marks" the beginning of the
316 device-tree block header. It contains the value 0xd00dfeed and is
317 defined by the constant OF_DT_HEADER
318
319 - totalsize
320
321 This is the total size of the DT block including the header. The
322 "DT" block should enclose all data structures defined in this
323 chapter (who are pointed to by offsets in this header). That is,
324 the device-tree structure, strings, and the memory reserve map.
325
326 - off_dt_struct
327
328 This is an offset from the beginning of the header to the start
329 of the "structure" part the device tree. (see 2) device tree)
330
331 - off_dt_strings
332
333 This is an offset from the beginning of the header to the start
334 of the "strings" part of the device-tree
335
336 - off_mem_rsvmap
337
338 This is an offset from the beginning of the header to the start
Domen Puncer5dd60162007-03-02 21:44:45 +1100339 of the reserved memory map. This map is a list of pairs of 64-
David Gibsonc125a182006-02-01 03:05:22 -0800340 bit integers. Each pair is a physical address and a size. The
David Gibsonc125a182006-02-01 03:05:22 -0800341 list is terminated by an entry of size 0. This map provides the
342 kernel with a list of physical memory areas that are "reserved"
343 and thus not to be used for memory allocations, especially during
344 early initialization. The kernel needs to allocate memory during
345 boot for things like un-flattening the device-tree, allocating an
346 MMU hash table, etc... Those allocations must be done in such a
347 way to avoid overriding critical things like, on Open Firmware
348 capable machines, the RTAS instance, or on some pSeries, the TCE
349 tables used for the iommu. Typically, the reserve map should
350 contain _at least_ this DT block itself (header,total_size). If
351 you are passing an initrd to the kernel, you should reserve it as
352 well. You do not need to reserve the kernel image itself. The map
Domen Puncer5dd60162007-03-02 21:44:45 +1100353 should be 64-bit aligned.
David Gibsonc125a182006-02-01 03:05:22 -0800354
355 - version
356
357 This is the version of this structure. Version 1 stops
358 here. Version 2 adds an additional field boot_cpuid_phys.
359 Version 3 adds the size of the strings block, allowing the kernel
360 to reallocate it easily at boot and free up the unused flattened
361 structure after expansion. Version 16 introduces a new more
362 "compact" format for the tree itself that is however not backward
David Gibson0e0293c2007-03-14 11:50:40 +1100363 compatible. Version 17 adds an additional field, size_dt_struct,
364 allowing it to be reallocated or moved more easily (this is
365 particularly useful for bootloaders which need to make
366 adjustments to a device tree based on probed information). You
367 should always generate a structure of the highest version defined
368 at the time of your implementation. Currently that is version 17,
369 unless you explicitly aim at being backward compatible.
David Gibsonc125a182006-02-01 03:05:22 -0800370
371 - last_comp_version
372
373 Last compatible version. This indicates down to what version of
374 the DT block you are backward compatible. For example, version 2
375 is backward compatible with version 1 (that is, a kernel build
376 for version 1 will be able to boot with a version 2 format). You
377 should put a 1 in this field if you generate a device tree of
David Gibson0e0293c2007-03-14 11:50:40 +1100378 version 1 to 3, or 16 if you generate a tree of version 16 or 17
David Gibsonc125a182006-02-01 03:05:22 -0800379 using the new unit name format.
380
381 - boot_cpuid_phys
382
383 This field only exist on version 2 headers. It indicate which
384 physical CPU ID is calling the kernel entry point. This is used,
385 among others, by kexec. If you are on an SMP system, this value
386 should match the content of the "reg" property of the CPU node in
387 the device-tree corresponding to the CPU calling the kernel entry
Sylvestre Ledruf65e51d2011-04-04 15:04:46 -0700388 point (see further chapters for more information on the required
David Gibsonc125a182006-02-01 03:05:22 -0800389 device-tree contents)
390
David Gibson0e0293c2007-03-14 11:50:40 +1100391 - size_dt_strings
392
393 This field only exists on version 3 and later headers. It
394 gives the size of the "strings" section of the device tree (which
395 starts at the offset given by off_dt_strings).
396
397 - size_dt_struct
398
399 This field only exists on version 17 and later headers. It gives
400 the size of the "structure" section of the device tree (which
401 starts at the offset given by off_dt_struct).
David Gibsonc125a182006-02-01 03:05:22 -0800402
403 So the typical layout of a DT block (though the various parts don't
404 need to be in that order) looks like this (addresses go from top to
405 bottom):
406
407
408 ------------------------------
Grant Likelycf4e5c62011-01-31 00:12:26 -0700409 base -> | struct boot_param_header |
David Gibsonc125a182006-02-01 03:05:22 -0800410 ------------------------------
411 | (alignment gap) (*) |
412 ------------------------------
413 | memory reserve map |
414 ------------------------------
415 | (alignment gap) |
416 ------------------------------
417 | |
418 | device-tree structure |
419 | |
420 ------------------------------
421 | (alignment gap) |
422 ------------------------------
423 | |
424 | device-tree strings |
425 | |
426 -----> ------------------------------
427 |
428 |
Grant Likelycf4e5c62011-01-31 00:12:26 -0700429 --- (base + totalsize)
David Gibsonc125a182006-02-01 03:05:22 -0800430
431 (*) The alignment gaps are not necessarily present; their presence
432 and size are dependent on the various alignment requirements of
433 the individual data blocks.
434
435
4362) Device tree generalities
437---------------------------
438
439This device-tree itself is separated in two different blocks, a
440structure block and a strings block. Both need to be aligned to a 4
441byte boundary.
442
443First, let's quickly describe the device-tree concept before detailing
444the storage format. This chapter does _not_ describe the detail of the
445required types of nodes & properties for the kernel, this is done
446later in chapter III.
447
448The device-tree layout is strongly inherited from the definition of
449the Open Firmware IEEE 1275 device-tree. It's basically a tree of
450nodes, each node having two or more named properties. A property can
451have a value or not.
452
453It is a tree, so each node has one and only one parent except for the
454root node who has no parent.
455
456A node has 2 names. The actual node name is generally contained in a
457property of type "name" in the node property list whose value is a
458zero terminated string and is mandatory for version 1 to 3 of the
David Gibson0e0293c2007-03-14 11:50:40 +1100459format definition (as it is in Open Firmware). Version 16 makes it
David Gibsonc125a182006-02-01 03:05:22 -0800460optional as it can generate it from the unit name defined below.
461
Matt LaPlante2fe0ae72006-10-03 22:50:39 +0200462There is also a "unit name" that is used to differentiate nodes with
David Gibsonc125a182006-02-01 03:05:22 -0800463the same name at the same level, it is usually made of the node
Matt LaPlante2fe0ae72006-10-03 22:50:39 +0200464names, the "@" sign, and a "unit address", which definition is
David Gibsonc125a182006-02-01 03:05:22 -0800465specific to the bus type the node sits on.
466
467The unit name doesn't exist as a property per-se but is included in
468the device-tree structure. It is typically used to represent "path" in
469the device-tree. More details about the actual format of these will be
470below.
471
Grant Likelycf4e5c62011-01-31 00:12:26 -0700472The kernel generic code does not make any formal use of the
David Gibsonc125a182006-02-01 03:05:22 -0800473unit address (though some board support code may do) so the only real
474requirement here for the unit address is to ensure uniqueness of
475the node unit name at a given level of the tree. Nodes with no notion
476of address and no possible sibling of the same name (like /memory or
477/cpus) may omit the unit address in the context of this specification,
478or use the "@0" default unit address. The unit name is used to define
479a node "full path", which is the concatenation of all parent node
480unit names separated with "/".
481
482The root node doesn't have a defined name, and isn't required to have
483a name property either if you are using version 3 or earlier of the
484format. It also has no unit address (no @ symbol followed by a unit
485address). The root node unit name is thus an empty string. The full
486path to the root node is "/".
487
488Every node which actually represents an actual device (that is, a node
489which isn't only a virtual "container" for more nodes, like "/cpus"
Grant Likelycf4e5c62011-01-31 00:12:26 -0700490is) is also required to have a "compatible" property indicating the
491specific hardware and an optional list of devices it is fully
492backwards compatible with.
David Gibsonc125a182006-02-01 03:05:22 -0800493
494Finally, every node that can be referenced from a property in another
Grant Likelycf4e5c62011-01-31 00:12:26 -0700495node is required to have either a "phandle" or a "linux,phandle"
496property. Real Open Firmware implementations provide a unique
497"phandle" value for every node that the "prom_init()" trampoline code
498turns into "linux,phandle" properties. However, this is made optional
499if the flattened device tree is used directly. An example of a node
David Gibsonc125a182006-02-01 03:05:22 -0800500referencing another node via "phandle" is when laying out the
501interrupt tree which will be described in a further version of this
502document.
503
Grant Likelycf4e5c62011-01-31 00:12:26 -0700504The "phandle" property is a 32-bit value that uniquely
David Gibsonc125a182006-02-01 03:05:22 -0800505identifies a node. You are free to use whatever values or system of
506values, internal pointers, or whatever to generate these, the only
507requirement is that every node for which you provide that property has
508a unique value for it.
509
510Here is an example of a simple device-tree. In this example, an "o"
511designates a node followed by the node unit name. Properties are
512presented with their name followed by their content. "content"
513represents an ASCII string (zero terminated) value, while <content>
Domen Puncer5dd60162007-03-02 21:44:45 +1100514represents a 32-bit hexadecimal value. The various nodes in this
David Gibsonc125a182006-02-01 03:05:22 -0800515example will be discussed in a later chapter. At this point, it is
516only meant to give you a idea of what a device-tree looks like. I have
517purposefully kept the "name" and "linux,phandle" properties which
518aren't necessary in order to give you a better idea of what the tree
519looks like in practice.
520
521 / o device-tree
522 |- name = "device-tree"
523 |- model = "MyBoardName"
524 |- compatible = "MyBoardFamilyName"
525 |- #address-cells = <2>
526 |- #size-cells = <2>
527 |- linux,phandle = <0>
528 |
529 o cpus
530 | | - name = "cpus"
531 | | - linux,phandle = <1>
532 | | - #address-cells = <1>
533 | | - #size-cells = <0>
534 | |
535 | o PowerPC,970@0
536 | |- name = "PowerPC,970"
537 | |- device_type = "cpu"
538 | |- reg = <0>
539 | |- clock-frequency = <5f5e1000>
Timur Tabi32aed2a2007-02-14 15:29:07 -0600540 | |- 64-bit
David Gibsonc125a182006-02-01 03:05:22 -0800541 | |- linux,phandle = <2>
542 |
543 o memory@0
544 | |- name = "memory"
545 | |- device_type = "memory"
546 | |- reg = <00000000 00000000 00000000 20000000>
547 | |- linux,phandle = <3>
548 |
549 o chosen
550 |- name = "chosen"
551 |- bootargs = "root=/dev/sda2"
David Gibsonc125a182006-02-01 03:05:22 -0800552 |- linux,phandle = <4>
553
554This tree is almost a minimal tree. It pretty much contains the
555minimal set of required nodes and properties to boot a linux kernel;
Sylvestre Ledruf65e51d2011-04-04 15:04:46 -0700556that is, some basic model information at the root, the CPUs, and the
David Gibsonc125a182006-02-01 03:05:22 -0800557physical memory layout. It also includes misc information passed
558through /chosen, like in this example, the platform type (mandatory)
559and the kernel command line arguments (optional).
560
Timur Tabi32aed2a2007-02-14 15:29:07 -0600561The /cpus/PowerPC,970@0/64-bit property is an example of a
David Gibsonc125a182006-02-01 03:05:22 -0800562property without a value. All other properties have a value. The
563significance of the #address-cells and #size-cells properties will be
564explained in chapter IV which defines precisely the required nodes and
565properties and their content.
566
567
5683) Device tree "structure" block
569
570The structure of the device tree is a linearized tree structure. The
571"OF_DT_BEGIN_NODE" token starts a new node, and the "OF_DT_END_NODE"
572ends that node definition. Child nodes are simply defined before
573"OF_DT_END_NODE" (that is nodes within the node). A 'token' is a 32
574bit value. The tree has to be "finished" with a OF_DT_END token
575
576Here's the basic structure of a single node:
577
578 * token OF_DT_BEGIN_NODE (that is 0x00000001)
579 * for version 1 to 3, this is the node full path as a zero
580 terminated string, starting with "/". For version 16 and later,
581 this is the node unit name only (or an empty string for the
582 root node)
583 * [align gap to next 4 bytes boundary]
584 * for each property:
585 * token OF_DT_PROP (that is 0x00000003)
Domen Puncer5dd60162007-03-02 21:44:45 +1100586 * 32-bit value of property value size in bytes (or 0 if no
587 value)
588 * 32-bit value of offset in string block of property name
David Gibsonc125a182006-02-01 03:05:22 -0800589 * property value data if any
590 * [align gap to next 4 bytes boundary]
591 * [child nodes if any]
592 * token OF_DT_END_NODE (that is 0x00000002)
593
Domen Puncer5dd60162007-03-02 21:44:45 +1100594So the node content can be summarized as a start token, a full path,
Matt LaPlante53cb4722006-10-03 22:55:17 +0200595a list of properties, a list of child nodes, and an end token. Every
David Gibsonc125a182006-02-01 03:05:22 -0800596child node is a full node structure itself as defined above.
597
David Gibsoneff2ebd2007-06-28 15:56:26 +1000598NOTE: The above definition requires that all property definitions for
599a particular node MUST precede any subnode definitions for that node.
600Although the structure would not be ambiguous if properties and
601subnodes were intermingled, the kernel parser requires that the
602properties come first (up until at least 2.6.22). Any tools
603manipulating a flattened tree must take care to preserve this
604constraint.
605
Matt LaPlante53cb4722006-10-03 22:55:17 +02006064) Device tree "strings" block
David Gibsonc125a182006-02-01 03:05:22 -0800607
608In order to save space, property names, which are generally redundant,
609are stored separately in the "strings" block. This block is simply the
610whole bunch of zero terminated strings for all property names
611concatenated together. The device-tree property definitions in the
612structure block will contain offset values from the beginning of the
613strings block.
614
615
616III - Required content of the device tree
617=========================================
618
619WARNING: All "linux,*" properties defined in this document apply only
620to a flattened device-tree. If your platform uses a real
621implementation of Open Firmware or an implementation compatible with
622the Open Firmware client interface, those properties will be created
623by the trampoline code in the kernel's prom_init() file. For example,
624that's where you'll have to add code to detect your board model and
Matt LaPlantea2ffd272006-10-03 22:49:15 +0200625set the platform number. However, when using the flattened device-tree
David Gibsonc125a182006-02-01 03:05:22 -0800626entry point, there is no prom_init() pass, and thus you have to
627provide those properties yourself.
628
629
6301) Note about cells and address representation
631----------------------------------------------
632
633The general rule is documented in the various Open Firmware
Domen Puncer5dd60162007-03-02 21:44:45 +1100634documentations. If you choose to describe a bus with the device-tree
David Gibsonc125a182006-02-01 03:05:22 -0800635and there exist an OF bus binding, then you should follow the
636specification. However, the kernel does not require every single
637device or bus to be described by the device tree.
638
639In general, the format of an address for a device is defined by the
640parent bus type, based on the #address-cells and #size-cells
Mark A. Greer5b14e5f2008-01-04 02:40:47 +1100641properties. Note that the parent's parent definitions of #address-cells
Matt LaPlanted9195882008-07-25 19:45:33 -0700642and #size-cells are not inherited so every node with children must specify
Mark A. Greer5b14e5f2008-01-04 02:40:47 +1100643them. The kernel requires the root node to have those properties defining
644addresses format for devices directly mapped on the processor bus.
David Gibsonc125a182006-02-01 03:05:22 -0800645
646Those 2 properties define 'cells' for representing an address and a
Domen Puncer5dd60162007-03-02 21:44:45 +1100647size. A "cell" is a 32-bit number. For example, if both contain 2
David Gibsonc125a182006-02-01 03:05:22 -0800648like the example tree given above, then an address and a size are both
Domen Puncer5dd60162007-03-02 21:44:45 +1100649composed of 2 cells, and each is a 64-bit number (cells are
David Gibsonc125a182006-02-01 03:05:22 -0800650concatenated and expected to be in big endian format). Another example
651is the way Apple firmware defines them, with 2 cells for an address
652and one cell for a size. Most 32-bit implementations should define
653#address-cells and #size-cells to 1, which represents a 32-bit value.
654Some 32-bit processors allow for physical addresses greater than 32
655bits; these processors should define #address-cells as 2.
656
657"reg" properties are always a tuple of the type "address size" where
658the number of cells of address and size is specified by the bus
659#address-cells and #size-cells. When a bus supports various address
660spaces and other flags relative to a given address allocation (like
661prefetchable, etc...) those flags are usually added to the top level
662bits of the physical address. For example, a PCI physical address is
663made of 3 cells, the bottom two containing the actual address itself
664while the top cell contains address space indication, flags, and pci
665bus & device numbers.
666
Grant Likelycf4e5c62011-01-31 00:12:26 -0700667For buses that support dynamic allocation, it's the accepted practice
David Gibsonc125a182006-02-01 03:05:22 -0800668to then not provide the address in "reg" (keep it 0) though while
669providing a flag indicating the address is dynamically allocated, and
670then, to provide a separate "assigned-addresses" property that
671contains the fully allocated addresses. See the PCI OF bindings for
672details.
673
674In general, a simple bus with no address space bits and no dynamic
675allocation is preferred if it reflects your hardware, as the existing
676kernel address parsing functions will work out of the box. If you
677define a bus type with a more complex address format, including things
678like address space bits, you'll have to add a bus translator to the
679prom_parse.c file of the recent kernels for your bus type.
680
Stephen Neuendorffere1fd1862007-12-04 12:08:57 +1100681The "reg" property only defines addresses and sizes (if #size-cells is
682non-0) within a given bus. In order to translate addresses upward
Domen Puncer5dd60162007-03-02 21:44:45 +1100683(that is into parent bus addresses, and possibly into CPU physical
Grant Likelycf4e5c62011-01-31 00:12:26 -0700684addresses), all buses must contain a "ranges" property. If the
David Gibsonc125a182006-02-01 03:05:22 -0800685"ranges" property is missing at a given level, it's assumed that
Stephen Neuendorffere1fd1862007-12-04 12:08:57 +1100686translation isn't possible, i.e., the registers are not visible on the
687parent bus. The format of the "ranges" property for a bus is a list
688of:
David Gibsonc125a182006-02-01 03:05:22 -0800689
690 bus address, parent bus address, size
691
692"bus address" is in the format of the bus this bus node is defining,
693that is, for a PCI bridge, it would be a PCI address. Thus, (bus
694address, size) defines a range of addresses for child devices. "parent
695bus address" is in the format of the parent bus of this bus. For
696example, for a PCI host controller, that would be a CPU address. For a
697PCI<->ISA bridge, that would be a PCI address. It defines the base
698address in the parent bus where the beginning of that range is mapped.
699
Grant Likelycf4e5c62011-01-31 00:12:26 -0700700For new 64-bit board support, I recommend either the 2/2 format or
David Gibsonc125a182006-02-01 03:05:22 -0800701Apple's 2/1 format which is slightly more compact since sizes usually
Grant Likelycf4e5c62011-01-31 00:12:26 -0700702fit in a single 32-bit word. New 32-bit board support should use a
David Gibsonc125a182006-02-01 03:05:22 -08007031/1 format, unless the processor supports physical addresses greater
704than 32-bits, in which case a 2/1 format is recommended.
705
Stephen Neuendorffere1fd1862007-12-04 12:08:57 +1100706Alternatively, the "ranges" property may be empty, indicating that the
707registers are visible on the parent bus using an identity mapping
708translation. In other words, the parent bus address space is the same
709as the child bus address space.
David Gibsonc125a182006-02-01 03:05:22 -0800710
7112) Note about "compatible" properties
712-------------------------------------
713
714These properties are optional, but recommended in devices and the root
715node. The format of a "compatible" property is a list of concatenated
716zero terminated strings. They allow a device to express its
717compatibility with a family of similar devices, in some cases,
718allowing a single driver to match against several devices regardless
719of their actual names.
720
7213) Note about "name" properties
722-------------------------------
723
724While earlier users of Open Firmware like OldWorld macintoshes tended
725to use the actual device name for the "name" property, it's nowadays
726considered a good practice to use a name that is closer to the device
Grant Likelycf4e5c62011-01-31 00:12:26 -0700727class (often equal to device_type). For example, nowadays, Ethernet
David Gibsonc125a182006-02-01 03:05:22 -0800728controllers are named "ethernet", an additional "model" property
729defining precisely the chip type/model, and "compatible" property
730defining the family in case a single driver can driver more than one
731of these chips. However, the kernel doesn't generally put any
732restriction on the "name" property; it is simply considered good
733practice to follow the standard and its evolutions as closely as
734possible.
735
736Note also that the new format version 16 makes the "name" property
737optional. If it's absent for a node, then the node's unit name is then
738used to reconstruct the name. That is, the part of the unit name
739before the "@" sign is used (or the entire unit name if no "@" sign
740is present).
741
7424) Note about node and property names and character set
743-------------------------------------------------------
744
Grant Likelycf4e5c62011-01-31 00:12:26 -0700745While Open Firmware provides more flexible usage of 8859-1, this
David Gibsonc125a182006-02-01 03:05:22 -0800746specification enforces more strict rules. Nodes and properties should
747be comprised only of ASCII characters 'a' to 'z', '0' to
748'9', ',', '.', '_', '+', '#', '?', and '-'. Node names additionally
749allow uppercase characters 'A' to 'Z' (property names should be
750lowercase. The fact that vendors like Apple don't respect this rule is
751irrelevant here). Additionally, node and property names should always
752begin with a character in the range 'a' to 'z' (or 'A' to 'Z' for node
753names).
754
755The maximum number of characters for both nodes and property names
756is 31. In the case of node names, this is only the leftmost part of
757a unit name (the pure "name" property), it doesn't include the unit
758address which can extend beyond that limit.
759
760
7615) Required nodes and properties
762--------------------------------
763 These are all that are currently required. However, it is strongly
764 recommended that you expose PCI host bridges as documented in the
Grant Likelycf4e5c62011-01-31 00:12:26 -0700765 PCI binding to Open Firmware, and your interrupt tree as documented
David Gibsonc125a182006-02-01 03:05:22 -0800766 in OF interrupt tree specification.
767
768 a) The root node
769
770 The root node requires some properties to be present:
771
772 - model : this is your board name/model
773 - #address-cells : address representation for "root" devices
774 - #size-cells: the size representation for "root" devices
David Gibsonc125a182006-02-01 03:05:22 -0800775 - compatible : the board "family" generally finds its way here,
776 for example, if you have 2 board models with a similar layout,
777 that typically get driven by the same platform code in the
Grant Likelycf4e5c62011-01-31 00:12:26 -0700778 kernel, you would specify the exact board model in the
779 compatible property followed by an entry that represents the SoC
780 model.
David Gibsonc125a182006-02-01 03:05:22 -0800781
782 The root node is also generally where you add additional properties
783 specific to your board like the serial number if any, that sort of
Matt LaPlante6c28f2c2006-10-03 22:46:31 +0200784 thing. It is recommended that if you add any "custom" property whose
David Gibsonc125a182006-02-01 03:05:22 -0800785 name may clash with standard defined ones, you prefix them with your
786 vendor name and a comma.
787
788 b) The /cpus node
789
790 This node is the parent of all individual CPU nodes. It doesn't
791 have any specific requirements, though it's generally good practice
792 to have at least:
793
794 #address-cells = <00000001>
795 #size-cells = <00000000>
796
797 This defines that the "address" for a CPU is a single cell, and has
798 no meaningful size. This is not necessary but the kernel will assume
799 that format when reading the "reg" properties of a CPU node, see
800 below
801
802 c) The /cpus/* nodes
803
804 So under /cpus, you are supposed to create a node for every CPU on
805 the machine. There is no specific restriction on the name of the
Grant Likelycf4e5c62011-01-31 00:12:26 -0700806 CPU, though it's common to call it <architecture>,<core>. For
David Gibsonc125a182006-02-01 03:05:22 -0800807 example, Apple uses PowerPC,G5 while IBM uses PowerPC,970FX.
Grant Likelycf4e5c62011-01-31 00:12:26 -0700808 However, the Generic Names convention suggests that it would be
809 better to simply use 'cpu' for each cpu node and use the compatible
810 property to identify the specific cpu core.
David Gibsonc125a182006-02-01 03:05:22 -0800811
812 Required properties:
813
814 - device_type : has to be "cpu"
Domen Puncer5dd60162007-03-02 21:44:45 +1100815 - reg : This is the physical CPU number, it's a single 32-bit cell
David Gibsonc125a182006-02-01 03:05:22 -0800816 and is also used as-is as the unit number for constructing the
817 unit name in the full path. For example, with 2 CPUs, you would
818 have the full path:
819 /cpus/PowerPC,970FX@0
820 /cpus/PowerPC,970FX@1
821 (unit addresses do not require leading zeroes)
Benjamin Herrenschmidt20474ab2007-10-28 08:49:28 +1100822 - d-cache-block-size : one cell, L1 data cache block size in bytes (*)
823 - i-cache-block-size : one cell, L1 instruction cache block size in
David Gibsonc125a182006-02-01 03:05:22 -0800824 bytes
825 - d-cache-size : one cell, size of L1 data cache in bytes
826 - i-cache-size : one cell, size of L1 instruction cache in bytes
David Gibsonc125a182006-02-01 03:05:22 -0800827
Benjamin Herrenschmidt20474ab2007-10-28 08:49:28 +1100828(*) The cache "block" size is the size on which the cache management
829instructions operate. Historically, this document used the cache
830"line" size here which is incorrect. The kernel will prefer the cache
831block size and will fallback to cache line size for backward
832compatibility.
833
David Gibsonc125a182006-02-01 03:05:22 -0800834 Recommended properties:
835
836 - timebase-frequency : a cell indicating the frequency of the
837 timebase in Hz. This is not directly used by the generic code,
838 but you are welcome to copy/paste the pSeries code for setting
839 the kernel timebase/decrementer calibration based on this
840 value.
841 - clock-frequency : a cell indicating the CPU core clock frequency
Domen Puncer5dd60162007-03-02 21:44:45 +1100842 in Hz. A new property will be defined for 64-bit values, but if
David Gibsonc125a182006-02-01 03:05:22 -0800843 your frequency is < 4Ghz, one cell is enough. Here as well as
844 for the above, the common code doesn't use that property, but
845 you are welcome to re-use the pSeries or Maple one. A future
846 kernel version might provide a common function for this.
Benjamin Herrenschmidt20474ab2007-10-28 08:49:28 +1100847 - d-cache-line-size : one cell, L1 data cache line size in bytes
848 if different from the block size
849 - i-cache-line-size : one cell, L1 instruction cache line size in
850 bytes if different from the block size
David Gibsonc125a182006-02-01 03:05:22 -0800851
852 You are welcome to add any property you find relevant to your board,
853 like some information about the mechanism used to soft-reset the
854 CPUs. For example, Apple puts the GPIO number for CPU soft reset
855 lines in there as a "soft-reset" property since they start secondary
856 CPUs by soft-resetting them.
857
858
859 d) the /memory node(s)
860
861 To define the physical memory layout of your board, you should
862 create one or more memory node(s). You can either create a single
863 node with all memory ranges in its reg property, or you can create
864 several nodes, as you wish. The unit address (@ part) used for the
865 full path is the address of the first range of memory defined by a
866 given node. If you use a single memory node, this will typically be
867 @0.
868
869 Required properties:
870
871 - device_type : has to be "memory"
872 - reg : This property contains all the physical memory ranges of
873 your board. It's a list of addresses/sizes concatenated
874 together, with the number of cells of each defined by the
875 #address-cells and #size-cells of the root node. For example,
Matt LaPlante6c28f2c2006-10-03 22:46:31 +0200876 with both of these properties being 2 like in the example given
David Gibsonc125a182006-02-01 03:05:22 -0800877 earlier, a 970 based machine with 6Gb of RAM could typically
878 have a "reg" property here that looks like:
879
880 00000000 00000000 00000000 80000000
881 00000001 00000000 00000001 00000000
882
883 That is a range starting at 0 of 0x80000000 bytes and a range
884 starting at 0x100000000 and of 0x100000000 bytes. You can see
885 that there is no memory covering the IO hole between 2Gb and
886 4Gb. Some vendors prefer splitting those ranges into smaller
887 segments, but the kernel doesn't care.
888
889 e) The /chosen node
890
Grant Likelycf4e5c62011-01-31 00:12:26 -0700891 This node is a bit "special". Normally, that's where Open Firmware
David Gibsonc125a182006-02-01 03:05:22 -0800892 puts some variable environment information, like the arguments, or
Stuart Yoderd1bff9e2007-02-19 11:25:05 -0600893 the default input/output devices.
David Gibsonc125a182006-02-01 03:05:22 -0800894
895 This specification makes a few of these mandatory, but also defines
896 some linux-specific properties that would be normally constructed by
897 the prom_init() trampoline when booting with an OF client interface,
898 but that you have to provide yourself when using the flattened format.
899
David Gibsonc125a182006-02-01 03:05:22 -0800900 Recommended properties:
901
902 - bootargs : This zero-terminated string is passed as the kernel
903 command line
904 - linux,stdout-path : This is the full path to your standard
905 console device if any. Typically, if you have serial devices on
906 your board, you may want to put the full path to the one set as
907 the default console in the firmware here, for the kernel to pick
Grant Likelycf4e5c62011-01-31 00:12:26 -0700908 it up as its own default console.
David Gibsonc125a182006-02-01 03:05:22 -0800909
910 Note that u-boot creates and fills in the chosen node for platforms
911 that use it.
912
Stuart Yoderd1bff9e2007-02-19 11:25:05 -0600913 (Note: a practice that is now obsolete was to include a property
914 under /chosen called interrupt-controller which had a phandle value
915 that pointed to the main interrupt controller)
916
David Gibsonc125a182006-02-01 03:05:22 -0800917 f) the /soc<SOCname> node
918
Grant Likelycf4e5c62011-01-31 00:12:26 -0700919 This node is used to represent a system-on-a-chip (SoC) and must be
920 present if the processor is a SoC. The top-level soc node contains
921 information that is global to all devices on the SoC. The node name
922 should contain a unit address for the SoC, which is the base address
923 of the memory-mapped register set for the SoC. The name of an SoC
David Gibsonc125a182006-02-01 03:05:22 -0800924 node should start with "soc", and the remainder of the name should
925 represent the part number for the soc. For example, the MPC8540's
926 soc node would be called "soc8540".
927
928 Required properties:
929
David Gibsonc125a182006-02-01 03:05:22 -0800930 - ranges : Should be defined as specified in 1) to describe the
Grant Likelycf4e5c62011-01-31 00:12:26 -0700931 translation of SoC addresses for memory mapped SoC registers.
932 - bus-frequency: Contains the bus frequency for the SoC node.
Becky Bruce7d4b95a2006-02-06 14:26:31 -0600933 Typically, the value of this field is filled in by the boot
Stefan Roeseefcc2da2009-04-16 15:11:54 -0600934 loader.
Grant Likelycf4e5c62011-01-31 00:12:26 -0700935 - compatible : Exact model of the SoC
Becky Bruce7d4b95a2006-02-06 14:26:31 -0600936
David Gibsonc125a182006-02-01 03:05:22 -0800937
938 Recommended properties:
939
940 - reg : This property defines the address and size of the
941 memory-mapped registers that are used for the SOC node itself.
942 It does not include the child device registers - these will be
943 defined inside each child node. The address specified in the
944 "reg" property should match the unit address of the SOC node.
945 - #address-cells : Address representation for "soc" devices. The
946 format of this field may vary depending on whether or not the
947 device registers are memory mapped. For memory mapped
948 registers, this field represents the number of cells needed to
949 represent the address of the registers. For SOCs that do not
950 use MMIO, a special address format should be defined that
951 contains enough cells to represent the required information.
952 See 1) above for more details on defining #address-cells.
953 - #size-cells : Size representation for "soc" devices
954 - #interrupt-cells : Defines the width of cells used to represent
955 interrupts. Typically this value is <2>, which includes a
956 32-bit number that represents the interrupt number, and a
957 32-bit number that represents the interrupt sense and level.
958 This field is only needed if the SOC contains an interrupt
959 controller.
960
961 The SOC node may contain child nodes for each SOC device that the
962 platform uses. Nodes should not be created for devices which exist
963 on the SOC but are not used by a particular platform. See chapter VI
Domen Puncer5dd60162007-03-02 21:44:45 +1100964 for more information on how to specify devices that are part of a SOC.
David Gibsonc125a182006-02-01 03:05:22 -0800965
966 Example SOC node for the MPC8540:
967
968 soc8540@e0000000 {
969 #address-cells = <1>;
970 #size-cells = <1>;
971 #interrupt-cells = <2>;
972 device_type = "soc";
973 ranges = <00000000 e0000000 00100000>
974 reg = <e0000000 00003000>;
Becky Bruce7d4b95a2006-02-06 14:26:31 -0600975 bus-frequency = <0>;
David Gibsonc125a182006-02-01 03:05:22 -0800976 }
977
978
979
980IV - "dtc", the device tree compiler
981====================================
982
983
984dtc source code can be found at
Justin P. Mattock0ea6e612010-07-23 20:51:24 -0700985<http://git.jdl.com/gitweb/?p=dtc.git>
David Gibsonc125a182006-02-01 03:05:22 -0800986
987WARNING: This version is still in early development stage; the
988resulting device-tree "blobs" have not yet been validated with the
Lennert Buytenhek475fc7c2010-09-21 23:22:40 +0000989kernel. The current generated block lacks a useful reserve map (it will
David Gibsonc125a182006-02-01 03:05:22 -0800990be fixed to generate an empty one, it's up to the bootloader to fill
991it up) among others. The error handling needs work, bugs are lurking,
992etc...
993
994dtc basically takes a device-tree in a given format and outputs a
995device-tree in another format. The currently supported formats are:
996
997 Input formats:
998 -------------
999
1000 - "dtb": "blob" format, that is a flattened device-tree block
1001 with
1002 header all in a binary blob.
1003 - "dts": "source" format. This is a text file containing a
1004 "source" for a device-tree. The format is defined later in this
1005 chapter.
1006 - "fs" format. This is a representation equivalent to the
1007 output of /proc/device-tree, that is nodes are directories and
1008 properties are files
1009
1010 Output formats:
1011 ---------------
1012
1013 - "dtb": "blob" format
1014 - "dts": "source" format
1015 - "asm": assembly language file. This is a file that can be
1016 sourced by gas to generate a device-tree "blob". That file can
1017 then simply be added to your Makefile. Additionally, the
Matt LaPlante6c28f2c2006-10-03 22:46:31 +02001018 assembly file exports some symbols that can be used.
David Gibsonc125a182006-02-01 03:05:22 -08001019
1020
1021The syntax of the dtc tool is
1022
1023 dtc [-I <input-format>] [-O <output-format>]
1024 [-o output-filename] [-V output_version] input_filename
1025
1026
Domen Puncer5dd60162007-03-02 21:44:45 +11001027The "output_version" defines what version of the "blob" format will be
David Gibsonc125a182006-02-01 03:05:22 -08001028generated. Supported versions are 1,2,3 and 16. The default is
1029currently version 3 but that may change in the future to version 16.
1030
1031Additionally, dtc performs various sanity checks on the tree, like the
Matt LaPlante6c28f2c2006-10-03 22:46:31 +02001032uniqueness of linux, phandle properties, validity of strings, etc...
David Gibsonc125a182006-02-01 03:05:22 -08001033
1034The format of the .dts "source" file is "C" like, supports C and C++
Matt LaPlante6c28f2c2006-10-03 22:46:31 +02001035style comments.
David Gibsonc125a182006-02-01 03:05:22 -08001036
1037/ {
1038}
1039
1040The above is the "device-tree" definition. It's the only statement
1041supported currently at the toplevel.
1042
1043/ {
1044 property1 = "string_value"; /* define a property containing a 0
1045 * terminated string
1046 */
1047
1048 property2 = <1234abcd>; /* define a property containing a
Domen Puncer5dd60162007-03-02 21:44:45 +11001049 * numerical 32-bit value (hexadecimal)
David Gibsonc125a182006-02-01 03:05:22 -08001050 */
1051
1052 property3 = <12345678 12345678 deadbeef>;
1053 /* define a property containing 3
Domen Puncer5dd60162007-03-02 21:44:45 +11001054 * numerical 32-bit values (cells) in
David Gibsonc125a182006-02-01 03:05:22 -08001055 * hexadecimal
1056 */
1057 property4 = [0a 0b 0c 0d de ea ad be ef];
1058 /* define a property whose content is
1059 * an arbitrary array of bytes
1060 */
1061
Uwe Kleine-Königb5950762010-11-01 15:38:34 -04001062 childnode@address { /* define a child node named "childnode"
David Gibsonc125a182006-02-01 03:05:22 -08001063 * whose unit name is "childnode at
1064 * address"
1065 */
1066
1067 childprop = "hello\n"; /* define a property "childprop" of
1068 * childnode (in this case, a string)
1069 */
1070 };
1071};
1072
1073Nodes can contain other nodes etc... thus defining the hierarchical
1074structure of the tree.
1075
1076Strings support common escape sequences from C: "\n", "\t", "\r",
1077"\(octal value)", "\x(hex value)".
1078
1079It is also suggested that you pipe your source file through cpp (gcc
1080preprocessor) so you can use #include's, #define for constants, etc...
1081
1082Finally, various options are planned but not yet implemented, like
1083automatic generation of phandles, labels (exported to the asm file so
1084you can point to a property content and change it easily from whatever
1085you link the device-tree with), label or path instead of numeric value
1086in some cells to "point" to a node (replaced by a phandle at compile
1087time), export of reserve map address to the asm file, ability to
1088specify reserve map content at compile time, etc...
1089
1090We may provide a .h include file with common definitions of that
1091proves useful for some properties (like building PCI properties or
1092interrupt maps) though it may be better to add a notion of struct
1093definitions to the compiler...
1094
1095
1096V - Recommendations for a bootloader
1097====================================
1098
1099
1100Here are some various ideas/recommendations that have been proposed
1101while all this has been defined and implemented.
1102
1103 - The bootloader may want to be able to use the device-tree itself
1104 and may want to manipulate it (to add/edit some properties,
1105 like physical memory size or kernel arguments). At this point, 2
1106 choices can be made. Either the bootloader works directly on the
1107 flattened format, or the bootloader has its own internal tree
1108 representation with pointers (similar to the kernel one) and
1109 re-flattens the tree when booting the kernel. The former is a bit
1110 more difficult to edit/modify, the later requires probably a bit
1111 more code to handle the tree structure. Note that the structure
1112 format has been designed so it's relatively easy to "insert"
1113 properties or nodes or delete them by just memmoving things
1114 around. It contains no internal offsets or pointers for this
1115 purpose.
1116
Matt LaPlanted6bc8ac2006-10-03 22:54:15 +02001117 - An example of code for iterating nodes & retrieving properties
David Gibsonc125a182006-02-01 03:05:22 -08001118 directly from the flattened tree format can be found in the kernel
Grant Likelycf4e5c62011-01-31 00:12:26 -07001119 file drivers/of/fdt.c. Look at the of_scan_flat_dt() function,
Matt LaPlanted6bc8ac2006-10-03 22:54:15 +02001120 its usage in early_init_devtree(), and the corresponding various
David Gibsonc125a182006-02-01 03:05:22 -08001121 early_init_dt_scan_*() callbacks. That code can be re-used in a
1122 GPL bootloader, and as the author of that code, I would be happy
Domen Puncer5dd60162007-03-02 21:44:45 +11001123 to discuss possible free licensing to any vendor who wishes to
David Gibsonc125a182006-02-01 03:05:22 -08001124 integrate all or part of this code into a non-GPL bootloader.
Grant Likelycf4e5c62011-01-31 00:12:26 -07001125 (reference needed; who is 'I' here? ---gcl Jan 31, 2011)
David Gibsonc125a182006-02-01 03:05:22 -08001126
1127
1128
1129VI - System-on-a-chip devices and nodes
1130=======================================
1131
1132Many companies are now starting to develop system-on-a-chip
Domen Puncer5dd60162007-03-02 21:44:45 +11001133processors, where the processor core (CPU) and many peripheral devices
David Gibsonc125a182006-02-01 03:05:22 -08001134exist on a single piece of silicon. For these SOCs, an SOC node
1135should be used that defines child nodes for the devices that make
1136up the SOC. While platforms are not required to use this model in
1137order to boot the kernel, it is highly encouraged that all SOC
1138implementations define as complete a flat-device-tree as possible to
1139describe the devices on the SOC. This will allow for the
1140genericization of much of the kernel code.
1141
1142
11431) Defining child nodes of an SOC
1144---------------------------------
1145
1146Each device that is part of an SOC may have its own node entry inside
1147the SOC node. For each device that is included in the SOC, the unit
1148address property represents the address offset for this device's
1149memory-mapped registers in the parent's address space. The parent's
1150address space is defined by the "ranges" property in the top-level soc
1151node. The "reg" property for each node that exists directly under the
1152SOC node should contain the address mapping from the child address space
1153to the parent SOC address space and the size of the device's
1154memory-mapped register file.
1155
1156For many devices that may exist inside an SOC, there are predefined
1157specifications for the format of the device tree node. All SOC child
1158nodes should follow these specifications, except where noted in this
1159document.
1160
1161See appendix A for an example partial SOC node definition for the
1162MPC8540.
1163
1164
Stuart Yoder27565902007-03-02 13:42:33 -060011652) Representing devices without a current OF specification
David Gibsonc125a182006-02-01 03:05:22 -08001166----------------------------------------------------------
1167
Grant Likelycf4e5c62011-01-31 00:12:26 -07001168Currently, there are many devices on SoCs that do not have a standard
1169representation defined as part of the Open Firmware specifications,
1170mainly because the boards that contain these SoCs are not currently
1171booted using Open Firmware. Binding documentation for new devices
1172should be added to the Documentation/devicetree/bindings directory.
1173That directory will expand as device tree support is added to more and
1174more SoCs.
1175
David Gibsonc125a182006-02-01 03:05:22 -08001176
Kumar Galab053dc52009-06-19 08:31:05 -05001177VII - Specifying interrupt information for devices
Stuart Yoder27565902007-03-02 13:42:33 -06001178===================================================
1179
Grant Likelycf4e5c62011-01-31 00:12:26 -07001180The device tree represents the buses and devices of a hardware
Stuart Yoder27565902007-03-02 13:42:33 -06001181system in a form similar to the physical bus topology of the
1182hardware.
1183
1184In addition, a logical 'interrupt tree' exists which represents the
1185hierarchy and routing of interrupts in the hardware.
1186
1187The interrupt tree model is fully described in the
1188document "Open Firmware Recommended Practice: Interrupt
1189Mapping Version 0.9". The document is available at:
1190<http://playground.sun.com/1275/practice>.
1191
11921) interrupts property
1193----------------------
1194
1195Devices that generate interrupts to a single interrupt controller
1196should use the conventional OF representation described in the
1197OF interrupt mapping documentation.
1198
1199Each device which generates interrupts must have an 'interrupt'
1200property. The interrupt property value is an arbitrary number of
1201of 'interrupt specifier' values which describe the interrupt or
1202interrupts for the device.
1203
1204The encoding of an interrupt specifier is determined by the
1205interrupt domain in which the device is located in the
1206interrupt tree. The root of an interrupt domain specifies in
1207its #interrupt-cells property the number of 32-bit cells
1208required to encode an interrupt specifier. See the OF interrupt
1209mapping documentation for a detailed description of domains.
1210
1211For example, the binding for the OpenPIC interrupt controller
1212specifies an #interrupt-cells value of 2 to encode the interrupt
1213number and level/sense information. All interrupt children in an
1214OpenPIC interrupt domain use 2 cells per interrupt in their interrupts
1215property.
1216
1217The PCI bus binding specifies a #interrupt-cell value of 1 to encode
1218which interrupt pin (INTA,INTB,INTC,INTD) is used.
1219
12202) interrupt-parent property
1221----------------------------
1222
1223The interrupt-parent property is specified to define an explicit
1224link between a device node and its interrupt parent in
1225the interrupt tree. The value of interrupt-parent is the
1226phandle of the parent node.
1227
Francis Galieguea33f3222010-04-23 00:08:02 +02001228If the interrupt-parent property is not defined for a node, its
Stuart Yoder27565902007-03-02 13:42:33 -06001229interrupt parent is assumed to be an ancestor in the node's
1230_device tree_ hierarchy.
1231
12323) OpenPIC Interrupt Controllers
1233--------------------------------
1234
1235OpenPIC interrupt controllers require 2 cells to encode
1236interrupt information. The first cell defines the interrupt
1237number. The second cell defines the sense and level
1238information.
1239
1240Sense and level information should be encoded as follows:
1241
1242 0 = low to high edge sensitive type enabled
1243 1 = active low level sensitive type enabled
1244 2 = active high level sensitive type enabled
1245 3 = high to low edge sensitive type enabled
1246
12474) ISA Interrupt Controllers
1248----------------------------
1249
1250ISA PIC interrupt controllers require 2 cells to encode
1251interrupt information. The first cell defines the interrupt
1252number. The second cell defines the sense and level
1253information.
1254
1255ISA PIC interrupt controllers should adhere to the ISA PIC
1256encodings listed below:
1257
1258 0 = active low level sensitive type enabled
1259 1 = active high level sensitive type enabled
1260 2 = high to low edge sensitive type enabled
1261 3 = low to high edge sensitive type enabled
1262
Kumar Galab053dc52009-06-19 08:31:05 -05001263VIII - Specifying Device Power Management Information (sleep property)
Scott Wood2dff4172008-07-11 17:31:15 -05001264===================================================================
1265
1266Devices on SOCs often have mechanisms for placing devices into low-power
1267states that are decoupled from the devices' own register blocks. Sometimes,
1268this information is more complicated than a cell-index property can
1269reasonably describe. Thus, each device controlled in such a manner
1270may contain a "sleep" property which describes these connections.
1271
1272The sleep property consists of one or more sleep resources, each of
1273which consists of a phandle to a sleep controller, followed by a
1274controller-specific sleep specifier of zero or more cells.
1275
1276The semantics of what type of low power modes are possible are defined
1277by the sleep controller. Some examples of the types of low power modes
1278that may be supported are:
1279
1280 - Dynamic: The device may be disabled or enabled at any time.
1281 - System Suspend: The device may request to be disabled or remain
1282 awake during system suspend, but will not be disabled until then.
1283 - Permanent: The device is disabled permanently (until the next hard
1284 reset).
1285
1286Some devices may share a clock domain with each other, such that they should
1287only be suspended when none of the devices are in use. Where reasonable,
1288such nodes should be placed on a virtual bus, where the bus has the sleep
1289property. If the clock domain is shared among devices that cannot be
1290reasonably grouped in this manner, then create a virtual sleep controller
1291(similar to an interrupt nexus, except that defining a standardized
1292sleep-map should wait until its necessity is demonstrated).
1293
David Gibsonc125a182006-02-01 03:05:22 -08001294Appendix A - Sample SOC node for MPC8540
1295========================================
1296
Scott Wood7e720632008-06-25 12:07:39 -05001297 soc@e0000000 {
David Gibsonc125a182006-02-01 03:05:22 -08001298 #address-cells = <1>;
1299 #size-cells = <1>;
Scott Wood7e720632008-06-25 12:07:39 -05001300 compatible = "fsl,mpc8540-ccsr", "simple-bus";
David Gibsonc125a182006-02-01 03:05:22 -08001301 device_type = "soc";
Scott Wood7e720632008-06-25 12:07:39 -05001302 ranges = <0x00000000 0xe0000000 0x00100000>
Becky Bruce7d4b95a2006-02-06 14:26:31 -06001303 bus-frequency = <0>;
Scott Wood7e720632008-06-25 12:07:39 -05001304 interrupt-parent = <&pic>;
David Gibsonc125a182006-02-01 03:05:22 -08001305
David Gibsonc125a182006-02-01 03:05:22 -08001306 ethernet@24000 {
Scott Wood2dff4172008-07-11 17:31:15 -05001307 #address-cells = <1>;
1308 #size-cells = <1>;
David Gibsonc125a182006-02-01 03:05:22 -08001309 device_type = "network";
1310 model = "TSEC";
Scott Wood2dff4172008-07-11 17:31:15 -05001311 compatible = "gianfar", "simple-bus";
Scott Wood7e720632008-06-25 12:07:39 -05001312 reg = <0x24000 0x1000>;
1313 local-mac-address = [ 00 E0 0C 00 73 00 ];
1314 interrupts = <29 2 30 2 34 2>;
1315 phy-handle = <&phy0>;
Scott Wood2dff4172008-07-11 17:31:15 -05001316 sleep = <&pmc 00000080>;
1317 ranges;
1318
1319 mdio@24520 {
Scott Wood7e720632008-06-25 12:07:39 -05001320 reg = <0x24520 0x20>;
Scott Wood2dff4172008-07-11 17:31:15 -05001321 compatible = "fsl,gianfar-mdio";
1322
Scott Wood7e720632008-06-25 12:07:39 -05001323 phy0: ethernet-phy@0 {
1324 interrupts = <5 1>;
Scott Wood2dff4172008-07-11 17:31:15 -05001325 reg = <0>;
1326 device_type = "ethernet-phy";
1327 };
1328
Scott Wood7e720632008-06-25 12:07:39 -05001329 phy1: ethernet-phy@1 {
1330 interrupts = <5 1>;
Scott Wood2dff4172008-07-11 17:31:15 -05001331 reg = <1>;
1332 device_type = "ethernet-phy";
1333 };
1334
Scott Wood7e720632008-06-25 12:07:39 -05001335 phy3: ethernet-phy@3 {
1336 interrupts = <7 1>;
Scott Wood2dff4172008-07-11 17:31:15 -05001337 reg = <3>;
1338 device_type = "ethernet-phy";
1339 };
1340 };
David Gibsonc125a182006-02-01 03:05:22 -08001341 };
1342
1343 ethernet@25000 {
David Gibsonc125a182006-02-01 03:05:22 -08001344 device_type = "network";
1345 model = "TSEC";
1346 compatible = "gianfar";
Scott Wood7e720632008-06-25 12:07:39 -05001347 reg = <0x25000 0x1000>;
1348 local-mac-address = [ 00 E0 0C 00 73 01 ];
1349 interrupts = <13 2 14 2 18 2>;
1350 phy-handle = <&phy1>;
Scott Wood2dff4172008-07-11 17:31:15 -05001351 sleep = <&pmc 00000040>;
David Gibsonc125a182006-02-01 03:05:22 -08001352 };
1353
1354 ethernet@26000 {
David Gibsonc125a182006-02-01 03:05:22 -08001355 device_type = "network";
1356 model = "FEC";
1357 compatible = "gianfar";
Scott Wood7e720632008-06-25 12:07:39 -05001358 reg = <0x26000 0x1000>;
1359 local-mac-address = [ 00 E0 0C 00 73 02 ];
1360 interrupts = <41 2>;
1361 phy-handle = <&phy3>;
Scott Wood2dff4172008-07-11 17:31:15 -05001362 sleep = <&pmc 00000020>;
David Gibsonc125a182006-02-01 03:05:22 -08001363 };
1364
1365 serial@4500 {
Scott Wood2dff4172008-07-11 17:31:15 -05001366 #address-cells = <1>;
1367 #size-cells = <1>;
1368 compatible = "fsl,mpc8540-duart", "simple-bus";
1369 sleep = <&pmc 00000002>;
1370 ranges;
1371
1372 serial@4500 {
1373 device_type = "serial";
1374 compatible = "ns16550";
Scott Wood7e720632008-06-25 12:07:39 -05001375 reg = <0x4500 0x100>;
Scott Wood2dff4172008-07-11 17:31:15 -05001376 clock-frequency = <0>;
Scott Wood7e720632008-06-25 12:07:39 -05001377 interrupts = <42 2>;
Scott Wood2dff4172008-07-11 17:31:15 -05001378 };
1379
1380 serial@4600 {
1381 device_type = "serial";
1382 compatible = "ns16550";
Scott Wood7e720632008-06-25 12:07:39 -05001383 reg = <0x4600 0x100>;
Scott Wood2dff4172008-07-11 17:31:15 -05001384 clock-frequency = <0>;
Scott Wood7e720632008-06-25 12:07:39 -05001385 interrupts = <42 2>;
Scott Wood2dff4172008-07-11 17:31:15 -05001386 };
David Gibsonc125a182006-02-01 03:05:22 -08001387 };
1388
Scott Wood7e720632008-06-25 12:07:39 -05001389 pic: pic@40000 {
David Gibsonc125a182006-02-01 03:05:22 -08001390 interrupt-controller;
1391 #address-cells = <0>;
Scott Wood7e720632008-06-25 12:07:39 -05001392 #interrupt-cells = <2>;
1393 reg = <0x40000 0x40000>;
David Gibsonc125a182006-02-01 03:05:22 -08001394 compatible = "chrp,open-pic";
1395 device_type = "open-pic";
David Gibsonc125a182006-02-01 03:05:22 -08001396 };
1397
1398 i2c@3000 {
Scott Wood7e720632008-06-25 12:07:39 -05001399 interrupts = <43 2>;
1400 reg = <0x3000 0x100>;
David Gibsonc125a182006-02-01 03:05:22 -08001401 compatible = "fsl-i2c";
1402 dfsrr;
Scott Wood2dff4172008-07-11 17:31:15 -05001403 sleep = <&pmc 00000004>;
David Gibsonc125a182006-02-01 03:05:22 -08001404 };
1405
Scott Wood2dff4172008-07-11 17:31:15 -05001406 pmc: power@e0070 {
1407 compatible = "fsl,mpc8540-pmc", "fsl,mpc8548-pmc";
Scott Wood7e720632008-06-25 12:07:39 -05001408 reg = <0xe0070 0x20>;
Scott Wood2dff4172008-07-11 17:31:15 -05001409 };
David Gibsonc125a182006-02-01 03:05:22 -08001410 };