[POWERPC] Cleanup mpic nodes in .dts
[deliverable/linux.git] / Documentation / powerpc / booting-without-of.txt
1 Booting the Linux/ppc kernel without Open Firmware
2 --------------------------------------------------
3
4 (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
8 (c) 2006 MontaVista Software, Inc.
9 Flash chip node definition
10
11 Table of Contents
12 =================
13
14 I - Introduction
15 1) Entry point for arch/powerpc
16 2) Board support
17
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
44 a) MDIO IO device
45 b) Gianfar-compatible ethernet nodes
46 c) PHY nodes
47 d) Interrupt controllers
48 e) I2C
49 f) Freescale SOC USB controllers
50 g) Freescale SOC SEC Security Engines
51 h) Board Control and Status (BCSR)
52 i) Freescale QUICC Engine module (QE)
53 j) CFI or JEDEC memory-mapped NOR flash
54 k) Global Utilities Block
55 l) Freescale Communications Processor Module
56 m) Chipselect/Local Bus
57 n) 4xx/Axon EMAC ethernet nodes
58 o) Xilinx IP cores
59 p) Freescale Synchronous Serial Interface
60 q) USB EHCI controllers
61 r) Freescale Display Interface Unit
62 s) Freescale on board FPGA
63 t) Freescael MSI interrupt controller
64
65 VII - Marvell Discovery mv64[345]6x System Controller chips
66 1) The /system-controller node
67 2) Child nodes of /system-controller
68 a) Marvell Discovery MDIO bus
69 b) Marvell Discovery ethernet controller
70 c) Marvell Discovery PHY nodes
71 d) Marvell Discovery SDMA nodes
72 e) Marvell Discovery BRG nodes
73 f) Marvell Discovery CUNIT nodes
74 g) Marvell Discovery MPSCROUTING nodes
75 h) Marvell Discovery MPSCINTR nodes
76 i) Marvell Discovery MPSC nodes
77 j) Marvell Discovery Watch Dog Timer nodes
78 k) Marvell Discovery I2C nodes
79 l) Marvell Discovery PIC (Programmable Interrupt Controller) nodes
80 m) Marvell Discovery MPP (Multipurpose Pins) multiplexing nodes
81 n) Marvell Discovery GPP (General Purpose Pins) nodes
82 o) Marvell Discovery PCI host bridge node
83 p) Marvell Discovery CPU Error nodes
84 q) Marvell Discovery SRAM Controller nodes
85 r) Marvell Discovery PCI Error Handler nodes
86 s) Marvell Discovery Memory Controller nodes
87
88 VIII - Specifying interrupt information for devices
89 1) interrupts property
90 2) interrupt-parent property
91 3) OpenPIC Interrupt Controllers
92 4) ISA Interrupt Controllers
93
94 VIII - Specifying GPIO information for devices
95 1) gpios property
96 2) gpio-controller nodes
97
98 Appendix A - Sample SOC node for MPC8540
99
100
101 Revision Information
102 ====================
103
104 May 18, 2005: Rev 0.1 - Initial draft, no chapter III yet.
105
106 May 19, 2005: Rev 0.2 - Add chapter III and bits & pieces here or
107 clarifies the fact that a lot of things are
108 optional, the kernel only requires a very
109 small device tree, though it is encouraged
110 to provide an as complete one as possible.
111
112 May 24, 2005: Rev 0.3 - Precise that DT block has to be in RAM
113 - Misc fixes
114 - Define version 3 and new format version 16
115 for the DT block (version 16 needs kernel
116 patches, will be fwd separately).
117 String block now has a size, and full path
118 is replaced by unit name for more
119 compactness.
120 linux,phandle is made optional, only nodes
121 that are referenced by other nodes need it.
122 "name" property is now automatically
123 deduced from the unit name
124
125 June 1, 2005: Rev 0.4 - Correct confusion between OF_DT_END and
126 OF_DT_END_NODE in structure definition.
127 - Change version 16 format to always align
128 property data to 4 bytes. Since tokens are
129 already aligned, that means no specific
130 required alignment between property size
131 and property data. The old style variable
132 alignment would make it impossible to do
133 "simple" insertion of properties using
134 memmove (thanks Milton for
135 noticing). Updated kernel patch as well
136 - Correct a few more alignment constraints
137 - Add a chapter about the device-tree
138 compiler and the textural representation of
139 the tree that can be "compiled" by dtc.
140
141 November 21, 2005: Rev 0.5
142 - Additions/generalizations for 32-bit
143 - Changed to reflect the new arch/powerpc
144 structure
145 - Added chapter VI
146
147
148 ToDo:
149 - Add some definitions of interrupt tree (simple/complex)
150 - Add some definitions for PCI host bridges
151 - Add some common address format examples
152 - Add definitions for standard properties and "compatible"
153 names for cells that are not already defined by the existing
154 OF spec.
155 - Compare FSL SOC use of PCI to standard and make sure no new
156 node definition required.
157 - Add more information about node definitions for SOC devices
158 that currently have no standard, like the FSL CPM.
159
160
161 I - Introduction
162 ================
163
164 During the recent development of the Linux/ppc64 kernel, and more
165 specifically, the addition of new platform types outside of the old
166 IBM pSeries/iSeries pair, it was decided to enforce some strict rules
167 regarding the kernel entry and bootloader <-> kernel interfaces, in
168 order to avoid the degeneration that had become the ppc32 kernel entry
169 point and the way a new platform should be added to the kernel. The
170 legacy iSeries platform breaks those rules as it predates this scheme,
171 but no new board support will be accepted in the main tree that
172 doesn't follows them properly. In addition, since the advent of the
173 arch/powerpc merged architecture for ppc32 and ppc64, new 32-bit
174 platforms and 32-bit platforms which move into arch/powerpc will be
175 required to use these rules as well.
176
177 The main requirement that will be defined in more detail below is
178 the presence of a device-tree whose format is defined after Open
179 Firmware specification. However, in order to make life easier
180 to embedded board vendors, the kernel doesn't require the device-tree
181 to represent every device in the system and only requires some nodes
182 and properties to be present. This will be described in detail in
183 section III, but, for example, the kernel does not require you to
184 create a node for every PCI device in the system. It is a requirement
185 to have a node for PCI host bridges in order to provide interrupt
186 routing informations and memory/IO ranges, among others. It is also
187 recommended to define nodes for on chip devices and other busses that
188 don't specifically fit in an existing OF specification. This creates a
189 great flexibility in the way the kernel can then probe those and match
190 drivers to device, without having to hard code all sorts of tables. It
191 also makes it more flexible for board vendors to do minor hardware
192 upgrades without significantly impacting the kernel code or cluttering
193 it with special cases.
194
195
196 1) Entry point for arch/powerpc
197 -------------------------------
198
199 There is one and one single entry point to the kernel, at the start
200 of the kernel image. That entry point supports two calling
201 conventions:
202
203 a) Boot from Open Firmware. If your firmware is compatible
204 with Open Firmware (IEEE 1275) or provides an OF compatible
205 client interface API (support for "interpret" callback of
206 forth words isn't required), you can enter the kernel with:
207
208 r5 : OF callback pointer as defined by IEEE 1275
209 bindings to powerpc. Only the 32-bit client interface
210 is currently supported
211
212 r3, r4 : address & length of an initrd if any or 0
213
214 The MMU is either on or off; the kernel will run the
215 trampoline located in arch/powerpc/kernel/prom_init.c to
216 extract the device-tree and other information from open
217 firmware and build a flattened device-tree as described
218 in b). prom_init() will then re-enter the kernel using
219 the second method. This trampoline code runs in the
220 context of the firmware, which is supposed to handle all
221 exceptions during that time.
222
223 b) Direct entry with a flattened device-tree block. This entry
224 point is called by a) after the OF trampoline and can also be
225 called directly by a bootloader that does not support the Open
226 Firmware client interface. It is also used by "kexec" to
227 implement "hot" booting of a new kernel from a previous
228 running one. This method is what I will describe in more
229 details in this document, as method a) is simply standard Open
230 Firmware, and thus should be implemented according to the
231 various standard documents defining it and its binding to the
232 PowerPC platform. The entry point definition then becomes:
233
234 r3 : physical pointer to the device-tree block
235 (defined in chapter II) in RAM
236
237 r4 : physical pointer to the kernel itself. This is
238 used by the assembly code to properly disable the MMU
239 in case you are entering the kernel with MMU enabled
240 and a non-1:1 mapping.
241
242 r5 : NULL (as to differentiate with method a)
243
244 Note about SMP entry: Either your firmware puts your other
245 CPUs in some sleep loop or spin loop in ROM where you can get
246 them out via a soft reset or some other means, in which case
247 you don't need to care, or you'll have to enter the kernel
248 with all CPUs. The way to do that with method b) will be
249 described in a later revision of this document.
250
251
252 2) Board support
253 ----------------
254
255 64-bit kernels:
256
257 Board supports (platforms) are not exclusive config options. An
258 arbitrary set of board supports can be built in a single kernel
259 image. The kernel will "know" what set of functions to use for a
260 given platform based on the content of the device-tree. Thus, you
261 should:
262
263 a) add your platform support as a _boolean_ option in
264 arch/powerpc/Kconfig, following the example of PPC_PSERIES,
265 PPC_PMAC and PPC_MAPLE. The later is probably a good
266 example of a board support to start from.
267
268 b) create your main platform file as
269 "arch/powerpc/platforms/myplatform/myboard_setup.c" and add it
270 to the Makefile under the condition of your CONFIG_
271 option. This file will define a structure of type "ppc_md"
272 containing the various callbacks that the generic code will
273 use to get to your platform specific code
274
275 c) Add a reference to your "ppc_md" structure in the
276 "machines" table in arch/powerpc/kernel/setup_64.c if you are
277 a 64-bit platform.
278
279 d) request and get assigned a platform number (see PLATFORM_*
280 constants in include/asm-powerpc/processor.h
281
282 32-bit embedded kernels:
283
284 Currently, board support is essentially an exclusive config option.
285 The kernel is configured for a single platform. Part of the reason
286 for this is to keep kernels on embedded systems small and efficient;
287 part of this is due to the fact the code is already that way. In the
288 future, a kernel may support multiple platforms, but only if the
289 platforms feature the same core architecture. A single kernel build
290 cannot support both configurations with Book E and configurations
291 with classic Powerpc architectures.
292
293 32-bit embedded platforms that are moved into arch/powerpc using a
294 flattened device tree should adopt the merged tree practice of
295 setting ppc_md up dynamically, even though the kernel is currently
296 built with support for only a single platform at a time. This allows
297 unification of the setup code, and will make it easier to go to a
298 multiple-platform-support model in the future.
299
300 NOTE: I believe the above will be true once Ben's done with the merge
301 of the boot sequences.... someone speak up if this is wrong!
302
303 To add a 32-bit embedded platform support, follow the instructions
304 for 64-bit platforms above, with the exception that the Kconfig
305 option should be set up such that the kernel builds exclusively for
306 the platform selected. The processor type for the platform should
307 enable another config option to select the specific board
308 supported.
309
310 NOTE: If Ben doesn't merge the setup files, may need to change this to
311 point to setup_32.c
312
313
314 I will describe later the boot process and various callbacks that
315 your platform should implement.
316
317
318 II - The DT block format
319 ========================
320
321
322 This chapter defines the actual format of the flattened device-tree
323 passed to the kernel. The actual content of it and kernel requirements
324 are described later. You can find example of code manipulating that
325 format in various places, including arch/powerpc/kernel/prom_init.c
326 which will generate a flattened device-tree from the Open Firmware
327 representation, or the fs2dt utility which is part of the kexec tools
328 which will generate one from a filesystem representation. It is
329 expected that a bootloader like uboot provides a bit more support,
330 that will be discussed later as well.
331
332 Note: The block has to be in main memory. It has to be accessible in
333 both real mode and virtual mode with no mapping other than main
334 memory. If you are writing a simple flash bootloader, it should copy
335 the block to RAM before passing it to the kernel.
336
337
338 1) Header
339 ---------
340
341 The kernel is entered with r3 pointing to an area of memory that is
342 roughly described in include/asm-powerpc/prom.h by the structure
343 boot_param_header:
344
345 struct boot_param_header {
346 u32 magic; /* magic word OF_DT_HEADER */
347 u32 totalsize; /* total size of DT block */
348 u32 off_dt_struct; /* offset to structure */
349 u32 off_dt_strings; /* offset to strings */
350 u32 off_mem_rsvmap; /* offset to memory reserve map
351 */
352 u32 version; /* format version */
353 u32 last_comp_version; /* last compatible version */
354
355 /* version 2 fields below */
356 u32 boot_cpuid_phys; /* Which physical CPU id we're
357 booting on */
358 /* version 3 fields below */
359 u32 size_dt_strings; /* size of the strings block */
360
361 /* version 17 fields below */
362 u32 size_dt_struct; /* size of the DT structure block */
363 };
364
365 Along with the constants:
366
367 /* Definitions used by the flattened device tree */
368 #define OF_DT_HEADER 0xd00dfeed /* 4: version,
369 4: total size */
370 #define OF_DT_BEGIN_NODE 0x1 /* Start node: full name
371 */
372 #define OF_DT_END_NODE 0x2 /* End node */
373 #define OF_DT_PROP 0x3 /* Property: name off,
374 size, content */
375 #define OF_DT_END 0x9
376
377 All values in this header are in big endian format, the various
378 fields in this header are defined more precisely below. All
379 "offset" values are in bytes from the start of the header; that is
380 from the value of r3.
381
382 - magic
383
384 This is a magic value that "marks" the beginning of the
385 device-tree block header. It contains the value 0xd00dfeed and is
386 defined by the constant OF_DT_HEADER
387
388 - totalsize
389
390 This is the total size of the DT block including the header. The
391 "DT" block should enclose all data structures defined in this
392 chapter (who are pointed to by offsets in this header). That is,
393 the device-tree structure, strings, and the memory reserve map.
394
395 - off_dt_struct
396
397 This is an offset from the beginning of the header to the start
398 of the "structure" part the device tree. (see 2) device tree)
399
400 - off_dt_strings
401
402 This is an offset from the beginning of the header to the start
403 of the "strings" part of the device-tree
404
405 - off_mem_rsvmap
406
407 This is an offset from the beginning of the header to the start
408 of the reserved memory map. This map is a list of pairs of 64-
409 bit integers. Each pair is a physical address and a size. The
410 list is terminated by an entry of size 0. This map provides the
411 kernel with a list of physical memory areas that are "reserved"
412 and thus not to be used for memory allocations, especially during
413 early initialization. The kernel needs to allocate memory during
414 boot for things like un-flattening the device-tree, allocating an
415 MMU hash table, etc... Those allocations must be done in such a
416 way to avoid overriding critical things like, on Open Firmware
417 capable machines, the RTAS instance, or on some pSeries, the TCE
418 tables used for the iommu. Typically, the reserve map should
419 contain _at least_ this DT block itself (header,total_size). If
420 you are passing an initrd to the kernel, you should reserve it as
421 well. You do not need to reserve the kernel image itself. The map
422 should be 64-bit aligned.
423
424 - version
425
426 This is the version of this structure. Version 1 stops
427 here. Version 2 adds an additional field boot_cpuid_phys.
428 Version 3 adds the size of the strings block, allowing the kernel
429 to reallocate it easily at boot and free up the unused flattened
430 structure after expansion. Version 16 introduces a new more
431 "compact" format for the tree itself that is however not backward
432 compatible. Version 17 adds an additional field, size_dt_struct,
433 allowing it to be reallocated or moved more easily (this is
434 particularly useful for bootloaders which need to make
435 adjustments to a device tree based on probed information). You
436 should always generate a structure of the highest version defined
437 at the time of your implementation. Currently that is version 17,
438 unless you explicitly aim at being backward compatible.
439
440 - last_comp_version
441
442 Last compatible version. This indicates down to what version of
443 the DT block you are backward compatible. For example, version 2
444 is backward compatible with version 1 (that is, a kernel build
445 for version 1 will be able to boot with a version 2 format). You
446 should put a 1 in this field if you generate a device tree of
447 version 1 to 3, or 16 if you generate a tree of version 16 or 17
448 using the new unit name format.
449
450 - boot_cpuid_phys
451
452 This field only exist on version 2 headers. It indicate which
453 physical CPU ID is calling the kernel entry point. This is used,
454 among others, by kexec. If you are on an SMP system, this value
455 should match the content of the "reg" property of the CPU node in
456 the device-tree corresponding to the CPU calling the kernel entry
457 point (see further chapters for more informations on the required
458 device-tree contents)
459
460 - size_dt_strings
461
462 This field only exists on version 3 and later headers. It
463 gives the size of the "strings" section of the device tree (which
464 starts at the offset given by off_dt_strings).
465
466 - size_dt_struct
467
468 This field only exists on version 17 and later headers. It gives
469 the size of the "structure" section of the device tree (which
470 starts at the offset given by off_dt_struct).
471
472 So the typical layout of a DT block (though the various parts don't
473 need to be in that order) looks like this (addresses go from top to
474 bottom):
475
476
477 ------------------------------
478 r3 -> | struct boot_param_header |
479 ------------------------------
480 | (alignment gap) (*) |
481 ------------------------------
482 | memory reserve map |
483 ------------------------------
484 | (alignment gap) |
485 ------------------------------
486 | |
487 | device-tree structure |
488 | |
489 ------------------------------
490 | (alignment gap) |
491 ------------------------------
492 | |
493 | device-tree strings |
494 | |
495 -----> ------------------------------
496 |
497 |
498 --- (r3 + totalsize)
499
500 (*) The alignment gaps are not necessarily present; their presence
501 and size are dependent on the various alignment requirements of
502 the individual data blocks.
503
504
505 2) Device tree generalities
506 ---------------------------
507
508 This device-tree itself is separated in two different blocks, a
509 structure block and a strings block. Both need to be aligned to a 4
510 byte boundary.
511
512 First, let's quickly describe the device-tree concept before detailing
513 the storage format. This chapter does _not_ describe the detail of the
514 required types of nodes & properties for the kernel, this is done
515 later in chapter III.
516
517 The device-tree layout is strongly inherited from the definition of
518 the Open Firmware IEEE 1275 device-tree. It's basically a tree of
519 nodes, each node having two or more named properties. A property can
520 have a value or not.
521
522 It is a tree, so each node has one and only one parent except for the
523 root node who has no parent.
524
525 A node has 2 names. The actual node name is generally contained in a
526 property of type "name" in the node property list whose value is a
527 zero terminated string and is mandatory for version 1 to 3 of the
528 format definition (as it is in Open Firmware). Version 16 makes it
529 optional as it can generate it from the unit name defined below.
530
531 There is also a "unit name" that is used to differentiate nodes with
532 the same name at the same level, it is usually made of the node
533 names, the "@" sign, and a "unit address", which definition is
534 specific to the bus type the node sits on.
535
536 The unit name doesn't exist as a property per-se but is included in
537 the device-tree structure. It is typically used to represent "path" in
538 the device-tree. More details about the actual format of these will be
539 below.
540
541 The kernel powerpc generic code does not make any formal use of the
542 unit address (though some board support code may do) so the only real
543 requirement here for the unit address is to ensure uniqueness of
544 the node unit name at a given level of the tree. Nodes with no notion
545 of address and no possible sibling of the same name (like /memory or
546 /cpus) may omit the unit address in the context of this specification,
547 or use the "@0" default unit address. The unit name is used to define
548 a node "full path", which is the concatenation of all parent node
549 unit names separated with "/".
550
551 The root node doesn't have a defined name, and isn't required to have
552 a name property either if you are using version 3 or earlier of the
553 format. It also has no unit address (no @ symbol followed by a unit
554 address). The root node unit name is thus an empty string. The full
555 path to the root node is "/".
556
557 Every node which actually represents an actual device (that is, a node
558 which isn't only a virtual "container" for more nodes, like "/cpus"
559 is) is also required to have a "device_type" property indicating the
560 type of node .
561
562 Finally, every node that can be referenced from a property in another
563 node is required to have a "linux,phandle" property. Real open
564 firmware implementations provide a unique "phandle" value for every
565 node that the "prom_init()" trampoline code turns into
566 "linux,phandle" properties. However, this is made optional if the
567 flattened device tree is used directly. An example of a node
568 referencing another node via "phandle" is when laying out the
569 interrupt tree which will be described in a further version of this
570 document.
571
572 This "linux, phandle" property is a 32-bit value that uniquely
573 identifies a node. You are free to use whatever values or system of
574 values, internal pointers, or whatever to generate these, the only
575 requirement is that every node for which you provide that property has
576 a unique value for it.
577
578 Here is an example of a simple device-tree. In this example, an "o"
579 designates a node followed by the node unit name. Properties are
580 presented with their name followed by their content. "content"
581 represents an ASCII string (zero terminated) value, while <content>
582 represents a 32-bit hexadecimal value. The various nodes in this
583 example will be discussed in a later chapter. At this point, it is
584 only meant to give you a idea of what a device-tree looks like. I have
585 purposefully kept the "name" and "linux,phandle" properties which
586 aren't necessary in order to give you a better idea of what the tree
587 looks like in practice.
588
589 / o device-tree
590 |- name = "device-tree"
591 |- model = "MyBoardName"
592 |- compatible = "MyBoardFamilyName"
593 |- #address-cells = <2>
594 |- #size-cells = <2>
595 |- linux,phandle = <0>
596 |
597 o cpus
598 | | - name = "cpus"
599 | | - linux,phandle = <1>
600 | | - #address-cells = <1>
601 | | - #size-cells = <0>
602 | |
603 | o PowerPC,970@0
604 | |- name = "PowerPC,970"
605 | |- device_type = "cpu"
606 | |- reg = <0>
607 | |- clock-frequency = <5f5e1000>
608 | |- 64-bit
609 | |- linux,phandle = <2>
610 |
611 o memory@0
612 | |- name = "memory"
613 | |- device_type = "memory"
614 | |- reg = <00000000 00000000 00000000 20000000>
615 | |- linux,phandle = <3>
616 |
617 o chosen
618 |- name = "chosen"
619 |- bootargs = "root=/dev/sda2"
620 |- linux,phandle = <4>
621
622 This tree is almost a minimal tree. It pretty much contains the
623 minimal set of required nodes and properties to boot a linux kernel;
624 that is, some basic model informations at the root, the CPUs, and the
625 physical memory layout. It also includes misc information passed
626 through /chosen, like in this example, the platform type (mandatory)
627 and the kernel command line arguments (optional).
628
629 The /cpus/PowerPC,970@0/64-bit property is an example of a
630 property without a value. All other properties have a value. The
631 significance of the #address-cells and #size-cells properties will be
632 explained in chapter IV which defines precisely the required nodes and
633 properties and their content.
634
635
636 3) Device tree "structure" block
637
638 The structure of the device tree is a linearized tree structure. The
639 "OF_DT_BEGIN_NODE" token starts a new node, and the "OF_DT_END_NODE"
640 ends that node definition. Child nodes are simply defined before
641 "OF_DT_END_NODE" (that is nodes within the node). A 'token' is a 32
642 bit value. The tree has to be "finished" with a OF_DT_END token
643
644 Here's the basic structure of a single node:
645
646 * token OF_DT_BEGIN_NODE (that is 0x00000001)
647 * for version 1 to 3, this is the node full path as a zero
648 terminated string, starting with "/". For version 16 and later,
649 this is the node unit name only (or an empty string for the
650 root node)
651 * [align gap to next 4 bytes boundary]
652 * for each property:
653 * token OF_DT_PROP (that is 0x00000003)
654 * 32-bit value of property value size in bytes (or 0 if no
655 value)
656 * 32-bit value of offset in string block of property name
657 * property value data if any
658 * [align gap to next 4 bytes boundary]
659 * [child nodes if any]
660 * token OF_DT_END_NODE (that is 0x00000002)
661
662 So the node content can be summarized as a start token, a full path,
663 a list of properties, a list of child nodes, and an end token. Every
664 child node is a full node structure itself as defined above.
665
666 NOTE: The above definition requires that all property definitions for
667 a particular node MUST precede any subnode definitions for that node.
668 Although the structure would not be ambiguous if properties and
669 subnodes were intermingled, the kernel parser requires that the
670 properties come first (up until at least 2.6.22). Any tools
671 manipulating a flattened tree must take care to preserve this
672 constraint.
673
674 4) Device tree "strings" block
675
676 In order to save space, property names, which are generally redundant,
677 are stored separately in the "strings" block. This block is simply the
678 whole bunch of zero terminated strings for all property names
679 concatenated together. The device-tree property definitions in the
680 structure block will contain offset values from the beginning of the
681 strings block.
682
683
684 III - Required content of the device tree
685 =========================================
686
687 WARNING: All "linux,*" properties defined in this document apply only
688 to a flattened device-tree. If your platform uses a real
689 implementation of Open Firmware or an implementation compatible with
690 the Open Firmware client interface, those properties will be created
691 by the trampoline code in the kernel's prom_init() file. For example,
692 that's where you'll have to add code to detect your board model and
693 set the platform number. However, when using the flattened device-tree
694 entry point, there is no prom_init() pass, and thus you have to
695 provide those properties yourself.
696
697
698 1) Note about cells and address representation
699 ----------------------------------------------
700
701 The general rule is documented in the various Open Firmware
702 documentations. If you choose to describe a bus with the device-tree
703 and there exist an OF bus binding, then you should follow the
704 specification. However, the kernel does not require every single
705 device or bus to be described by the device tree.
706
707 In general, the format of an address for a device is defined by the
708 parent bus type, based on the #address-cells and #size-cells
709 properties. Note that the parent's parent definitions of #address-cells
710 and #size-cells are not inhereted so every node with children must specify
711 them. The kernel requires the root node to have those properties defining
712 addresses format for devices directly mapped on the processor bus.
713
714 Those 2 properties define 'cells' for representing an address and a
715 size. A "cell" is a 32-bit number. For example, if both contain 2
716 like the example tree given above, then an address and a size are both
717 composed of 2 cells, and each is a 64-bit number (cells are
718 concatenated and expected to be in big endian format). Another example
719 is the way Apple firmware defines them, with 2 cells for an address
720 and one cell for a size. Most 32-bit implementations should define
721 #address-cells and #size-cells to 1, which represents a 32-bit value.
722 Some 32-bit processors allow for physical addresses greater than 32
723 bits; these processors should define #address-cells as 2.
724
725 "reg" properties are always a tuple of the type "address size" where
726 the number of cells of address and size is specified by the bus
727 #address-cells and #size-cells. When a bus supports various address
728 spaces and other flags relative to a given address allocation (like
729 prefetchable, etc...) those flags are usually added to the top level
730 bits of the physical address. For example, a PCI physical address is
731 made of 3 cells, the bottom two containing the actual address itself
732 while the top cell contains address space indication, flags, and pci
733 bus & device numbers.
734
735 For busses that support dynamic allocation, it's the accepted practice
736 to then not provide the address in "reg" (keep it 0) though while
737 providing a flag indicating the address is dynamically allocated, and
738 then, to provide a separate "assigned-addresses" property that
739 contains the fully allocated addresses. See the PCI OF bindings for
740 details.
741
742 In general, a simple bus with no address space bits and no dynamic
743 allocation is preferred if it reflects your hardware, as the existing
744 kernel address parsing functions will work out of the box. If you
745 define a bus type with a more complex address format, including things
746 like address space bits, you'll have to add a bus translator to the
747 prom_parse.c file of the recent kernels for your bus type.
748
749 The "reg" property only defines addresses and sizes (if #size-cells is
750 non-0) within a given bus. In order to translate addresses upward
751 (that is into parent bus addresses, and possibly into CPU physical
752 addresses), all busses must contain a "ranges" property. If the
753 "ranges" property is missing at a given level, it's assumed that
754 translation isn't possible, i.e., the registers are not visible on the
755 parent bus. The format of the "ranges" property for a bus is a list
756 of:
757
758 bus address, parent bus address, size
759
760 "bus address" is in the format of the bus this bus node is defining,
761 that is, for a PCI bridge, it would be a PCI address. Thus, (bus
762 address, size) defines a range of addresses for child devices. "parent
763 bus address" is in the format of the parent bus of this bus. For
764 example, for a PCI host controller, that would be a CPU address. For a
765 PCI<->ISA bridge, that would be a PCI address. It defines the base
766 address in the parent bus where the beginning of that range is mapped.
767
768 For a new 64-bit powerpc board, I recommend either the 2/2 format or
769 Apple's 2/1 format which is slightly more compact since sizes usually
770 fit in a single 32-bit word. New 32-bit powerpc boards should use a
771 1/1 format, unless the processor supports physical addresses greater
772 than 32-bits, in which case a 2/1 format is recommended.
773
774 Alternatively, the "ranges" property may be empty, indicating that the
775 registers are visible on the parent bus using an identity mapping
776 translation. In other words, the parent bus address space is the same
777 as the child bus address space.
778
779 2) Note about "compatible" properties
780 -------------------------------------
781
782 These properties are optional, but recommended in devices and the root
783 node. The format of a "compatible" property is a list of concatenated
784 zero terminated strings. They allow a device to express its
785 compatibility with a family of similar devices, in some cases,
786 allowing a single driver to match against several devices regardless
787 of their actual names.
788
789 3) Note about "name" properties
790 -------------------------------
791
792 While earlier users of Open Firmware like OldWorld macintoshes tended
793 to use the actual device name for the "name" property, it's nowadays
794 considered a good practice to use a name that is closer to the device
795 class (often equal to device_type). For example, nowadays, ethernet
796 controllers are named "ethernet", an additional "model" property
797 defining precisely the chip type/model, and "compatible" property
798 defining the family in case a single driver can driver more than one
799 of these chips. However, the kernel doesn't generally put any
800 restriction on the "name" property; it is simply considered good
801 practice to follow the standard and its evolutions as closely as
802 possible.
803
804 Note also that the new format version 16 makes the "name" property
805 optional. If it's absent for a node, then the node's unit name is then
806 used to reconstruct the name. That is, the part of the unit name
807 before the "@" sign is used (or the entire unit name if no "@" sign
808 is present).
809
810 4) Note about node and property names and character set
811 -------------------------------------------------------
812
813 While open firmware provides more flexible usage of 8859-1, this
814 specification enforces more strict rules. Nodes and properties should
815 be comprised only of ASCII characters 'a' to 'z', '0' to
816 '9', ',', '.', '_', '+', '#', '?', and '-'. Node names additionally
817 allow uppercase characters 'A' to 'Z' (property names should be
818 lowercase. The fact that vendors like Apple don't respect this rule is
819 irrelevant here). Additionally, node and property names should always
820 begin with a character in the range 'a' to 'z' (or 'A' to 'Z' for node
821 names).
822
823 The maximum number of characters for both nodes and property names
824 is 31. In the case of node names, this is only the leftmost part of
825 a unit name (the pure "name" property), it doesn't include the unit
826 address which can extend beyond that limit.
827
828
829 5) Required nodes and properties
830 --------------------------------
831 These are all that are currently required. However, it is strongly
832 recommended that you expose PCI host bridges as documented in the
833 PCI binding to open firmware, and your interrupt tree as documented
834 in OF interrupt tree specification.
835
836 a) The root node
837
838 The root node requires some properties to be present:
839
840 - model : this is your board name/model
841 - #address-cells : address representation for "root" devices
842 - #size-cells: the size representation for "root" devices
843 - device_type : This property shouldn't be necessary. However, if
844 you decide to create a device_type for your root node, make sure it
845 is _not_ "chrp" unless your platform is a pSeries or PAPR compliant
846 one for 64-bit, or a CHRP-type machine for 32-bit as this will
847 matched by the kernel this way.
848
849 Additionally, some recommended properties are:
850
851 - compatible : the board "family" generally finds its way here,
852 for example, if you have 2 board models with a similar layout,
853 that typically get driven by the same platform code in the
854 kernel, you would use a different "model" property but put a
855 value in "compatible". The kernel doesn't directly use that
856 value but it is generally useful.
857
858 The root node is also generally where you add additional properties
859 specific to your board like the serial number if any, that sort of
860 thing. It is recommended that if you add any "custom" property whose
861 name may clash with standard defined ones, you prefix them with your
862 vendor name and a comma.
863
864 b) The /cpus node
865
866 This node is the parent of all individual CPU nodes. It doesn't
867 have any specific requirements, though it's generally good practice
868 to have at least:
869
870 #address-cells = <00000001>
871 #size-cells = <00000000>
872
873 This defines that the "address" for a CPU is a single cell, and has
874 no meaningful size. This is not necessary but the kernel will assume
875 that format when reading the "reg" properties of a CPU node, see
876 below
877
878 c) The /cpus/* nodes
879
880 So under /cpus, you are supposed to create a node for every CPU on
881 the machine. There is no specific restriction on the name of the
882 CPU, though It's common practice to call it PowerPC,<name>. For
883 example, Apple uses PowerPC,G5 while IBM uses PowerPC,970FX.
884
885 Required properties:
886
887 - device_type : has to be "cpu"
888 - reg : This is the physical CPU number, it's a single 32-bit cell
889 and is also used as-is as the unit number for constructing the
890 unit name in the full path. For example, with 2 CPUs, you would
891 have the full path:
892 /cpus/PowerPC,970FX@0
893 /cpus/PowerPC,970FX@1
894 (unit addresses do not require leading zeroes)
895 - d-cache-block-size : one cell, L1 data cache block size in bytes (*)
896 - i-cache-block-size : one cell, L1 instruction cache block size in
897 bytes
898 - d-cache-size : one cell, size of L1 data cache in bytes
899 - i-cache-size : one cell, size of L1 instruction cache in bytes
900
901 (*) The cache "block" size is the size on which the cache management
902 instructions operate. Historically, this document used the cache
903 "line" size here which is incorrect. The kernel will prefer the cache
904 block size and will fallback to cache line size for backward
905 compatibility.
906
907 Recommended properties:
908
909 - timebase-frequency : a cell indicating the frequency of the
910 timebase in Hz. This is not directly used by the generic code,
911 but you are welcome to copy/paste the pSeries code for setting
912 the kernel timebase/decrementer calibration based on this
913 value.
914 - clock-frequency : a cell indicating the CPU core clock frequency
915 in Hz. A new property will be defined for 64-bit values, but if
916 your frequency is < 4Ghz, one cell is enough. Here as well as
917 for the above, the common code doesn't use that property, but
918 you are welcome to re-use the pSeries or Maple one. A future
919 kernel version might provide a common function for this.
920 - d-cache-line-size : one cell, L1 data cache line size in bytes
921 if different from the block size
922 - i-cache-line-size : one cell, L1 instruction cache line size in
923 bytes if different from the block size
924
925 You are welcome to add any property you find relevant to your board,
926 like some information about the mechanism used to soft-reset the
927 CPUs. For example, Apple puts the GPIO number for CPU soft reset
928 lines in there as a "soft-reset" property since they start secondary
929 CPUs by soft-resetting them.
930
931
932 d) the /memory node(s)
933
934 To define the physical memory layout of your board, you should
935 create one or more memory node(s). You can either create a single
936 node with all memory ranges in its reg property, or you can create
937 several nodes, as you wish. The unit address (@ part) used for the
938 full path is the address of the first range of memory defined by a
939 given node. If you use a single memory node, this will typically be
940 @0.
941
942 Required properties:
943
944 - device_type : has to be "memory"
945 - reg : This property contains all the physical memory ranges of
946 your board. It's a list of addresses/sizes concatenated
947 together, with the number of cells of each defined by the
948 #address-cells and #size-cells of the root node. For example,
949 with both of these properties being 2 like in the example given
950 earlier, a 970 based machine with 6Gb of RAM could typically
951 have a "reg" property here that looks like:
952
953 00000000 00000000 00000000 80000000
954 00000001 00000000 00000001 00000000
955
956 That is a range starting at 0 of 0x80000000 bytes and a range
957 starting at 0x100000000 and of 0x100000000 bytes. You can see
958 that there is no memory covering the IO hole between 2Gb and
959 4Gb. Some vendors prefer splitting those ranges into smaller
960 segments, but the kernel doesn't care.
961
962 e) The /chosen node
963
964 This node is a bit "special". Normally, that's where open firmware
965 puts some variable environment information, like the arguments, or
966 the default input/output devices.
967
968 This specification makes a few of these mandatory, but also defines
969 some linux-specific properties that would be normally constructed by
970 the prom_init() trampoline when booting with an OF client interface,
971 but that you have to provide yourself when using the flattened format.
972
973 Recommended properties:
974
975 - bootargs : This zero-terminated string is passed as the kernel
976 command line
977 - linux,stdout-path : This is the full path to your standard
978 console device if any. Typically, if you have serial devices on
979 your board, you may want to put the full path to the one set as
980 the default console in the firmware here, for the kernel to pick
981 it up as its own default console. If you look at the function
982 set_preferred_console() in arch/ppc64/kernel/setup.c, you'll see
983 that the kernel tries to find out the default console and has
984 knowledge of various types like 8250 serial ports. You may want
985 to extend this function to add your own.
986
987 Note that u-boot creates and fills in the chosen node for platforms
988 that use it.
989
990 (Note: a practice that is now obsolete was to include a property
991 under /chosen called interrupt-controller which had a phandle value
992 that pointed to the main interrupt controller)
993
994 f) the /soc<SOCname> node
995
996 This node is used to represent a system-on-a-chip (SOC) and must be
997 present if the processor is a SOC. The top-level soc node contains
998 information that is global to all devices on the SOC. The node name
999 should contain a unit address for the SOC, which is the base address
1000 of the memory-mapped register set for the SOC. The name of an soc
1001 node should start with "soc", and the remainder of the name should
1002 represent the part number for the soc. For example, the MPC8540's
1003 soc node would be called "soc8540".
1004
1005 Required properties:
1006
1007 - device_type : Should be "soc"
1008 - ranges : Should be defined as specified in 1) to describe the
1009 translation of SOC addresses for memory mapped SOC registers.
1010 - bus-frequency: Contains the bus frequency for the SOC node.
1011 Typically, the value of this field is filled in by the boot
1012 loader.
1013
1014
1015 Recommended properties:
1016
1017 - reg : This property defines the address and size of the
1018 memory-mapped registers that are used for the SOC node itself.
1019 It does not include the child device registers - these will be
1020 defined inside each child node. The address specified in the
1021 "reg" property should match the unit address of the SOC node.
1022 - #address-cells : Address representation for "soc" devices. The
1023 format of this field may vary depending on whether or not the
1024 device registers are memory mapped. For memory mapped
1025 registers, this field represents the number of cells needed to
1026 represent the address of the registers. For SOCs that do not
1027 use MMIO, a special address format should be defined that
1028 contains enough cells to represent the required information.
1029 See 1) above for more details on defining #address-cells.
1030 - #size-cells : Size representation for "soc" devices
1031 - #interrupt-cells : Defines the width of cells used to represent
1032 interrupts. Typically this value is <2>, which includes a
1033 32-bit number that represents the interrupt number, and a
1034 32-bit number that represents the interrupt sense and level.
1035 This field is only needed if the SOC contains an interrupt
1036 controller.
1037
1038 The SOC node may contain child nodes for each SOC device that the
1039 platform uses. Nodes should not be created for devices which exist
1040 on the SOC but are not used by a particular platform. See chapter VI
1041 for more information on how to specify devices that are part of a SOC.
1042
1043 Example SOC node for the MPC8540:
1044
1045 soc8540@e0000000 {
1046 #address-cells = <1>;
1047 #size-cells = <1>;
1048 #interrupt-cells = <2>;
1049 device_type = "soc";
1050 ranges = <00000000 e0000000 00100000>
1051 reg = <e0000000 00003000>;
1052 bus-frequency = <0>;
1053 }
1054
1055
1056
1057 IV - "dtc", the device tree compiler
1058 ====================================
1059
1060
1061 dtc source code can be found at
1062 <http://ozlabs.org/~dgibson/dtc/dtc.tar.gz>
1063
1064 WARNING: This version is still in early development stage; the
1065 resulting device-tree "blobs" have not yet been validated with the
1066 kernel. The current generated bloc lacks a useful reserve map (it will
1067 be fixed to generate an empty one, it's up to the bootloader to fill
1068 it up) among others. The error handling needs work, bugs are lurking,
1069 etc...
1070
1071 dtc basically takes a device-tree in a given format and outputs a
1072 device-tree in another format. The currently supported formats are:
1073
1074 Input formats:
1075 -------------
1076
1077 - "dtb": "blob" format, that is a flattened device-tree block
1078 with
1079 header all in a binary blob.
1080 - "dts": "source" format. This is a text file containing a
1081 "source" for a device-tree. The format is defined later in this
1082 chapter.
1083 - "fs" format. This is a representation equivalent to the
1084 output of /proc/device-tree, that is nodes are directories and
1085 properties are files
1086
1087 Output formats:
1088 ---------------
1089
1090 - "dtb": "blob" format
1091 - "dts": "source" format
1092 - "asm": assembly language file. This is a file that can be
1093 sourced by gas to generate a device-tree "blob". That file can
1094 then simply be added to your Makefile. Additionally, the
1095 assembly file exports some symbols that can be used.
1096
1097
1098 The syntax of the dtc tool is
1099
1100 dtc [-I <input-format>] [-O <output-format>]
1101 [-o output-filename] [-V output_version] input_filename
1102
1103
1104 The "output_version" defines what version of the "blob" format will be
1105 generated. Supported versions are 1,2,3 and 16. The default is
1106 currently version 3 but that may change in the future to version 16.
1107
1108 Additionally, dtc performs various sanity checks on the tree, like the
1109 uniqueness of linux, phandle properties, validity of strings, etc...
1110
1111 The format of the .dts "source" file is "C" like, supports C and C++
1112 style comments.
1113
1114 / {
1115 }
1116
1117 The above is the "device-tree" definition. It's the only statement
1118 supported currently at the toplevel.
1119
1120 / {
1121 property1 = "string_value"; /* define a property containing a 0
1122 * terminated string
1123 */
1124
1125 property2 = <1234abcd>; /* define a property containing a
1126 * numerical 32-bit value (hexadecimal)
1127 */
1128
1129 property3 = <12345678 12345678 deadbeef>;
1130 /* define a property containing 3
1131 * numerical 32-bit values (cells) in
1132 * hexadecimal
1133 */
1134 property4 = [0a 0b 0c 0d de ea ad be ef];
1135 /* define a property whose content is
1136 * an arbitrary array of bytes
1137 */
1138
1139 childnode@addresss { /* define a child node named "childnode"
1140 * whose unit name is "childnode at
1141 * address"
1142 */
1143
1144 childprop = "hello\n"; /* define a property "childprop" of
1145 * childnode (in this case, a string)
1146 */
1147 };
1148 };
1149
1150 Nodes can contain other nodes etc... thus defining the hierarchical
1151 structure of the tree.
1152
1153 Strings support common escape sequences from C: "\n", "\t", "\r",
1154 "\(octal value)", "\x(hex value)".
1155
1156 It is also suggested that you pipe your source file through cpp (gcc
1157 preprocessor) so you can use #include's, #define for constants, etc...
1158
1159 Finally, various options are planned but not yet implemented, like
1160 automatic generation of phandles, labels (exported to the asm file so
1161 you can point to a property content and change it easily from whatever
1162 you link the device-tree with), label or path instead of numeric value
1163 in some cells to "point" to a node (replaced by a phandle at compile
1164 time), export of reserve map address to the asm file, ability to
1165 specify reserve map content at compile time, etc...
1166
1167 We may provide a .h include file with common definitions of that
1168 proves useful for some properties (like building PCI properties or
1169 interrupt maps) though it may be better to add a notion of struct
1170 definitions to the compiler...
1171
1172
1173 V - Recommendations for a bootloader
1174 ====================================
1175
1176
1177 Here are some various ideas/recommendations that have been proposed
1178 while all this has been defined and implemented.
1179
1180 - The bootloader may want to be able to use the device-tree itself
1181 and may want to manipulate it (to add/edit some properties,
1182 like physical memory size or kernel arguments). At this point, 2
1183 choices can be made. Either the bootloader works directly on the
1184 flattened format, or the bootloader has its own internal tree
1185 representation with pointers (similar to the kernel one) and
1186 re-flattens the tree when booting the kernel. The former is a bit
1187 more difficult to edit/modify, the later requires probably a bit
1188 more code to handle the tree structure. Note that the structure
1189 format has been designed so it's relatively easy to "insert"
1190 properties or nodes or delete them by just memmoving things
1191 around. It contains no internal offsets or pointers for this
1192 purpose.
1193
1194 - An example of code for iterating nodes & retrieving properties
1195 directly from the flattened tree format can be found in the kernel
1196 file arch/ppc64/kernel/prom.c, look at scan_flat_dt() function,
1197 its usage in early_init_devtree(), and the corresponding various
1198 early_init_dt_scan_*() callbacks. That code can be re-used in a
1199 GPL bootloader, and as the author of that code, I would be happy
1200 to discuss possible free licensing to any vendor who wishes to
1201 integrate all or part of this code into a non-GPL bootloader.
1202
1203
1204
1205 VI - System-on-a-chip devices and nodes
1206 =======================================
1207
1208 Many companies are now starting to develop system-on-a-chip
1209 processors, where the processor core (CPU) and many peripheral devices
1210 exist on a single piece of silicon. For these SOCs, an SOC node
1211 should be used that defines child nodes for the devices that make
1212 up the SOC. While platforms are not required to use this model in
1213 order to boot the kernel, it is highly encouraged that all SOC
1214 implementations define as complete a flat-device-tree as possible to
1215 describe the devices on the SOC. This will allow for the
1216 genericization of much of the kernel code.
1217
1218
1219 1) Defining child nodes of an SOC
1220 ---------------------------------
1221
1222 Each device that is part of an SOC may have its own node entry inside
1223 the SOC node. For each device that is included in the SOC, the unit
1224 address property represents the address offset for this device's
1225 memory-mapped registers in the parent's address space. The parent's
1226 address space is defined by the "ranges" property in the top-level soc
1227 node. The "reg" property for each node that exists directly under the
1228 SOC node should contain the address mapping from the child address space
1229 to the parent SOC address space and the size of the device's
1230 memory-mapped register file.
1231
1232 For many devices that may exist inside an SOC, there are predefined
1233 specifications for the format of the device tree node. All SOC child
1234 nodes should follow these specifications, except where noted in this
1235 document.
1236
1237 See appendix A for an example partial SOC node definition for the
1238 MPC8540.
1239
1240
1241 2) Representing devices without a current OF specification
1242 ----------------------------------------------------------
1243
1244 Currently, there are many devices on SOCs that do not have a standard
1245 representation pre-defined as part of the open firmware
1246 specifications, mainly because the boards that contain these SOCs are
1247 not currently booted using open firmware. This section contains
1248 descriptions for the SOC devices for which new nodes have been
1249 defined; this list will expand as more and more SOC-containing
1250 platforms are moved over to use the flattened-device-tree model.
1251
1252 a) MDIO IO device
1253
1254 The MDIO is a bus to which the PHY devices are connected. For each
1255 device that exists on this bus, a child node should be created. See
1256 the definition of the PHY node below for an example of how to define
1257 a PHY.
1258
1259 Required properties:
1260 - reg : Offset and length of the register set for the device
1261 - compatible : Should define the compatible device type for the
1262 mdio. Currently, this is most likely to be "fsl,gianfar-mdio"
1263
1264 Example:
1265
1266 mdio@24520 {
1267 reg = <24520 20>;
1268 compatible = "fsl,gianfar-mdio";
1269
1270 ethernet-phy@0 {
1271 ......
1272 };
1273 };
1274
1275
1276 b) Gianfar-compatible ethernet nodes
1277
1278 Required properties:
1279
1280 - device_type : Should be "network"
1281 - model : Model of the device. Can be "TSEC", "eTSEC", or "FEC"
1282 - compatible : Should be "gianfar"
1283 - reg : Offset and length of the register set for the device
1284 - mac-address : List of bytes representing the ethernet address of
1285 this controller
1286 - interrupts : <a b> where a is the interrupt number and b is a
1287 field that represents an encoding of the sense and level
1288 information for the interrupt. This should be encoded based on
1289 the information in section 2) depending on the type of interrupt
1290 controller you have.
1291 - interrupt-parent : the phandle for the interrupt controller that
1292 services interrupts for this device.
1293 - phy-handle : The phandle for the PHY connected to this ethernet
1294 controller.
1295 - fixed-link : <a b c d e> where a is emulated phy id - choose any,
1296 but unique to the all specified fixed-links, b is duplex - 0 half,
1297 1 full, c is link speed - d#10/d#100/d#1000, d is pause - 0 no
1298 pause, 1 pause, e is asym_pause - 0 no asym_pause, 1 asym_pause.
1299
1300 Recommended properties:
1301
1302 - phy-connection-type : a string naming the controller/PHY interface type,
1303 i.e., "mii" (default), "rmii", "gmii", "rgmii", "rgmii-id", "sgmii",
1304 "tbi", or "rtbi". This property is only really needed if the connection
1305 is of type "rgmii-id", as all other connection types are detected by
1306 hardware.
1307
1308
1309 Example:
1310
1311 ethernet@24000 {
1312 #size-cells = <0>;
1313 device_type = "network";
1314 model = "TSEC";
1315 compatible = "gianfar";
1316 reg = <24000 1000>;
1317 mac-address = [ 00 E0 0C 00 73 00 ];
1318 interrupts = <d 3 e 3 12 3>;
1319 interrupt-parent = <40000>;
1320 phy-handle = <2452000>
1321 };
1322
1323
1324
1325 c) PHY nodes
1326
1327 Required properties:
1328
1329 - device_type : Should be "ethernet-phy"
1330 - interrupts : <a b> where a is the interrupt number and b is a
1331 field that represents an encoding of the sense and level
1332 information for the interrupt. This should be encoded based on
1333 the information in section 2) depending on the type of interrupt
1334 controller you have.
1335 - interrupt-parent : the phandle for the interrupt controller that
1336 services interrupts for this device.
1337 - reg : The ID number for the phy, usually a small integer
1338 - linux,phandle : phandle for this node; likely referenced by an
1339 ethernet controller node.
1340
1341
1342 Example:
1343
1344 ethernet-phy@0 {
1345 linux,phandle = <2452000>
1346 interrupt-parent = <40000>;
1347 interrupts = <35 1>;
1348 reg = <0>;
1349 device_type = "ethernet-phy";
1350 };
1351
1352
1353 d) Interrupt controllers
1354
1355 Some SOC devices contain interrupt controllers that are different
1356 from the standard Open PIC specification. The SOC device nodes for
1357 these types of controllers should be specified just like a standard
1358 OpenPIC controller. Sense and level information should be encoded
1359 as specified in section 2) of this chapter for each device that
1360 specifies an interrupt.
1361
1362 Example :
1363
1364 pic@40000 {
1365 linux,phandle = <40000>;
1366 interrupt-controller;
1367 #address-cells = <0>;
1368 reg = <40000 40000>;
1369 compatible = "chrp,open-pic";
1370 device_type = "open-pic";
1371 };
1372
1373
1374 e) I2C
1375
1376 Required properties :
1377
1378 - device_type : Should be "i2c"
1379 - reg : Offset and length of the register set for the device
1380
1381 Recommended properties :
1382
1383 - compatible : Should be "fsl-i2c" for parts compatible with
1384 Freescale I2C specifications.
1385 - interrupts : <a b> where a is the interrupt number and b is a
1386 field that represents an encoding of the sense and level
1387 information for the interrupt. This should be encoded based on
1388 the information in section 2) depending on the type of interrupt
1389 controller you have.
1390 - interrupt-parent : the phandle for the interrupt controller that
1391 services interrupts for this device.
1392 - dfsrr : boolean; if defined, indicates that this I2C device has
1393 a digital filter sampling rate register
1394 - fsl5200-clocking : boolean; if defined, indicated that this device
1395 uses the FSL 5200 clocking mechanism.
1396
1397 Example :
1398
1399 i2c@3000 {
1400 interrupt-parent = <40000>;
1401 interrupts = <1b 3>;
1402 reg = <3000 18>;
1403 device_type = "i2c";
1404 compatible = "fsl-i2c";
1405 dfsrr;
1406 };
1407
1408
1409 f) Freescale SOC USB controllers
1410
1411 The device node for a USB controller that is part of a Freescale
1412 SOC is as described in the document "Open Firmware Recommended
1413 Practice : Universal Serial Bus" with the following modifications
1414 and additions :
1415
1416 Required properties :
1417 - compatible : Should be "fsl-usb2-mph" for multi port host USB
1418 controllers, or "fsl-usb2-dr" for dual role USB controllers
1419 - phy_type : For multi port host USB controllers, should be one of
1420 "ulpi", or "serial". For dual role USB controllers, should be
1421 one of "ulpi", "utmi", "utmi_wide", or "serial".
1422 - reg : Offset and length of the register set for the device
1423 - port0 : boolean; if defined, indicates port0 is connected for
1424 fsl-usb2-mph compatible controllers. Either this property or
1425 "port1" (or both) must be defined for "fsl-usb2-mph" compatible
1426 controllers.
1427 - port1 : boolean; if defined, indicates port1 is connected for
1428 fsl-usb2-mph compatible controllers. Either this property or
1429 "port0" (or both) must be defined for "fsl-usb2-mph" compatible
1430 controllers.
1431 - dr_mode : indicates the working mode for "fsl-usb2-dr" compatible
1432 controllers. Can be "host", "peripheral", or "otg". Default to
1433 "host" if not defined for backward compatibility.
1434
1435 Recommended properties :
1436 - interrupts : <a b> where a is the interrupt number and b is a
1437 field that represents an encoding of the sense and level
1438 information for the interrupt. This should be encoded based on
1439 the information in section 2) depending on the type of interrupt
1440 controller you have.
1441 - interrupt-parent : the phandle for the interrupt controller that
1442 services interrupts for this device.
1443
1444 Example multi port host USB controller device node :
1445 usb@22000 {
1446 compatible = "fsl-usb2-mph";
1447 reg = <22000 1000>;
1448 #address-cells = <1>;
1449 #size-cells = <0>;
1450 interrupt-parent = <700>;
1451 interrupts = <27 1>;
1452 phy_type = "ulpi";
1453 port0;
1454 port1;
1455 };
1456
1457 Example dual role USB controller device node :
1458 usb@23000 {
1459 compatible = "fsl-usb2-dr";
1460 reg = <23000 1000>;
1461 #address-cells = <1>;
1462 #size-cells = <0>;
1463 interrupt-parent = <700>;
1464 interrupts = <26 1>;
1465 dr_mode = "otg";
1466 phy = "ulpi";
1467 };
1468
1469
1470 g) Freescale SOC SEC Security Engines
1471
1472 Required properties:
1473
1474 - device_type : Should be "crypto"
1475 - model : Model of the device. Should be "SEC1" or "SEC2"
1476 - compatible : Should be "talitos"
1477 - reg : Offset and length of the register set for the device
1478 - interrupts : <a b> where a is the interrupt number and b is a
1479 field that represents an encoding of the sense and level
1480 information for the interrupt. This should be encoded based on
1481 the information in section 2) depending on the type of interrupt
1482 controller you have.
1483 - interrupt-parent : the phandle for the interrupt controller that
1484 services interrupts for this device.
1485 - num-channels : An integer representing the number of channels
1486 available.
1487 - channel-fifo-len : An integer representing the number of
1488 descriptor pointers each channel fetch fifo can hold.
1489 - exec-units-mask : The bitmask representing what execution units
1490 (EUs) are available. It's a single 32-bit cell. EU information
1491 should be encoded following the SEC's Descriptor Header Dword
1492 EU_SEL0 field documentation, i.e. as follows:
1493
1494 bit 0 = reserved - should be 0
1495 bit 1 = set if SEC has the ARC4 EU (AFEU)
1496 bit 2 = set if SEC has the DES/3DES EU (DEU)
1497 bit 3 = set if SEC has the message digest EU (MDEU)
1498 bit 4 = set if SEC has the random number generator EU (RNG)
1499 bit 5 = set if SEC has the public key EU (PKEU)
1500 bit 6 = set if SEC has the AES EU (AESU)
1501 bit 7 = set if SEC has the Kasumi EU (KEU)
1502
1503 bits 8 through 31 are reserved for future SEC EUs.
1504
1505 - descriptor-types-mask : The bitmask representing what descriptors
1506 are available. It's a single 32-bit cell. Descriptor type
1507 information should be encoded following the SEC's Descriptor
1508 Header Dword DESC_TYPE field documentation, i.e. as follows:
1509
1510 bit 0 = set if SEC supports the aesu_ctr_nonsnoop desc. type
1511 bit 1 = set if SEC supports the ipsec_esp descriptor type
1512 bit 2 = set if SEC supports the common_nonsnoop desc. type
1513 bit 3 = set if SEC supports the 802.11i AES ccmp desc. type
1514 bit 4 = set if SEC supports the hmac_snoop_no_afeu desc. type
1515 bit 5 = set if SEC supports the srtp descriptor type
1516 bit 6 = set if SEC supports the non_hmac_snoop_no_afeu desc.type
1517 bit 7 = set if SEC supports the pkeu_assemble descriptor type
1518 bit 8 = set if SEC supports the aesu_key_expand_output desc.type
1519 bit 9 = set if SEC supports the pkeu_ptmul descriptor type
1520 bit 10 = set if SEC supports the common_nonsnoop_afeu desc. type
1521 bit 11 = set if SEC supports the pkeu_ptadd_dbl descriptor type
1522
1523 ..and so on and so forth.
1524
1525 Example:
1526
1527 /* MPC8548E */
1528 crypto@30000 {
1529 device_type = "crypto";
1530 model = "SEC2";
1531 compatible = "talitos";
1532 reg = <30000 10000>;
1533 interrupts = <1d 3>;
1534 interrupt-parent = <40000>;
1535 num-channels = <4>;
1536 channel-fifo-len = <18>;
1537 exec-units-mask = <000000fe>;
1538 descriptor-types-mask = <012b0ebf>;
1539 };
1540
1541 h) Board Control and Status (BCSR)
1542
1543 Required properties:
1544
1545 - device_type : Should be "board-control"
1546 - reg : Offset and length of the register set for the device
1547
1548 Example:
1549
1550 bcsr@f8000000 {
1551 device_type = "board-control";
1552 reg = <f8000000 8000>;
1553 };
1554
1555 i) Freescale QUICC Engine module (QE)
1556 This represents qe module that is installed on PowerQUICC II Pro.
1557
1558 NOTE: This is an interim binding; it should be updated to fit
1559 in with the CPM binding later in this document.
1560
1561 Basically, it is a bus of devices, that could act more or less
1562 as a complete entity (UCC, USB etc ). All of them should be siblings on
1563 the "root" qe node, using the common properties from there.
1564 The description below applies to the qe of MPC8360 and
1565 more nodes and properties would be extended in the future.
1566
1567 i) Root QE device
1568
1569 Required properties:
1570 - compatible : should be "fsl,qe";
1571 - model : precise model of the QE, Can be "QE", "CPM", or "CPM2"
1572 - reg : offset and length of the device registers.
1573 - bus-frequency : the clock frequency for QUICC Engine.
1574
1575 Recommended properties
1576 - brg-frequency : the internal clock source frequency for baud-rate
1577 generators in Hz.
1578
1579 Example:
1580 qe@e0100000 {
1581 #address-cells = <1>;
1582 #size-cells = <1>;
1583 #interrupt-cells = <2>;
1584 compatible = "fsl,qe";
1585 ranges = <0 e0100000 00100000>;
1586 reg = <e0100000 480>;
1587 brg-frequency = <0>;
1588 bus-frequency = <179A7B00>;
1589 }
1590
1591
1592 ii) SPI (Serial Peripheral Interface)
1593
1594 Required properties:
1595 - cell-index : SPI controller index.
1596 - compatible : should be "fsl,spi".
1597 - mode : the SPI operation mode, it can be "cpu" or "cpu-qe".
1598 - reg : Offset and length of the register set for the device
1599 - interrupts : <a b> where a is the interrupt number and b is a
1600 field that represents an encoding of the sense and level
1601 information for the interrupt. This should be encoded based on
1602 the information in section 2) depending on the type of interrupt
1603 controller you have.
1604 - interrupt-parent : the phandle for the interrupt controller that
1605 services interrupts for this device.
1606
1607 Example:
1608 spi@4c0 {
1609 cell-index = <0>;
1610 compatible = "fsl,spi";
1611 reg = <4c0 40>;
1612 interrupts = <82 0>;
1613 interrupt-parent = <700>;
1614 mode = "cpu";
1615 };
1616
1617
1618 iii) USB (Universal Serial Bus Controller)
1619
1620 Required properties:
1621 - compatible : could be "qe_udc" or "fhci-hcd".
1622 - mode : the could be "host" or "slave".
1623 - reg : Offset and length of the register set for the device
1624 - interrupts : <a b> where a is the interrupt number and b is a
1625 field that represents an encoding of the sense and level
1626 information for the interrupt. This should be encoded based on
1627 the information in section 2) depending on the type of interrupt
1628 controller you have.
1629 - interrupt-parent : the phandle for the interrupt controller that
1630 services interrupts for this device.
1631
1632 Example(slave):
1633 usb@6c0 {
1634 compatible = "qe_udc";
1635 reg = <6c0 40>;
1636 interrupts = <8b 0>;
1637 interrupt-parent = <700>;
1638 mode = "slave";
1639 };
1640
1641
1642 iv) UCC (Unified Communications Controllers)
1643
1644 Required properties:
1645 - device_type : should be "network", "hldc", "uart", "transparent"
1646 "bisync", "atm", or "serial".
1647 - compatible : could be "ucc_geth" or "fsl_atm" and so on.
1648 - cell-index : the ucc number(1-8), corresponding to UCCx in UM.
1649 - reg : Offset and length of the register set for the device
1650 - interrupts : <a b> where a is the interrupt number and b is a
1651 field that represents an encoding of the sense and level
1652 information for the interrupt. This should be encoded based on
1653 the information in section 2) depending on the type of interrupt
1654 controller you have.
1655 - interrupt-parent : the phandle for the interrupt controller that
1656 services interrupts for this device.
1657 - pio-handle : The phandle for the Parallel I/O port configuration.
1658 - port-number : for UART drivers, the port number to use, between 0 and 3.
1659 This usually corresponds to the /dev/ttyQE device, e.g. <0> = /dev/ttyQE0.
1660 The port number is added to the minor number of the device. Unlike the
1661 CPM UART driver, the port-number is required for the QE UART driver.
1662 - soft-uart : for UART drivers, if specified this means the QE UART device
1663 driver should use "Soft-UART" mode, which is needed on some SOCs that have
1664 broken UART hardware. Soft-UART is provided via a microcode upload.
1665 - rx-clock-name: the UCC receive clock source
1666 "none": clock source is disabled
1667 "brg1" through "brg16": clock source is BRG1-BRG16, respectively
1668 "clk1" through "clk24": clock source is CLK1-CLK24, respectively
1669 - tx-clock-name: the UCC transmit clock source
1670 "none": clock source is disabled
1671 "brg1" through "brg16": clock source is BRG1-BRG16, respectively
1672 "clk1" through "clk24": clock source is CLK1-CLK24, respectively
1673 The following two properties are deprecated. rx-clock has been replaced
1674 with rx-clock-name, and tx-clock has been replaced with tx-clock-name.
1675 Drivers that currently use the deprecated properties should continue to
1676 do so, in order to support older device trees, but they should be updated
1677 to check for the new properties first.
1678 - rx-clock : represents the UCC receive clock source.
1679 0x00 : clock source is disabled;
1680 0x1~0x10 : clock source is BRG1~BRG16 respectively;
1681 0x11~0x28: clock source is QE_CLK1~QE_CLK24 respectively.
1682 - tx-clock: represents the UCC transmit clock source;
1683 0x00 : clock source is disabled;
1684 0x1~0x10 : clock source is BRG1~BRG16 respectively;
1685 0x11~0x28: clock source is QE_CLK1~QE_CLK24 respectively.
1686
1687 Required properties for network device_type:
1688 - mac-address : list of bytes representing the ethernet address.
1689 - phy-handle : The phandle for the PHY connected to this controller.
1690
1691 Recommended properties:
1692 - phy-connection-type : a string naming the controller/PHY interface type,
1693 i.e., "mii" (default), "rmii", "gmii", "rgmii", "rgmii-id" (Internal
1694 Delay), "rgmii-txid" (delay on TX only), "rgmii-rxid" (delay on RX only),
1695 "tbi", or "rtbi".
1696
1697 Example:
1698 ucc@2000 {
1699 device_type = "network";
1700 compatible = "ucc_geth";
1701 cell-index = <1>;
1702 reg = <2000 200>;
1703 interrupts = <a0 0>;
1704 interrupt-parent = <700>;
1705 mac-address = [ 00 04 9f 00 23 23 ];
1706 rx-clock = "none";
1707 tx-clock = "clk9";
1708 phy-handle = <212000>;
1709 phy-connection-type = "gmii";
1710 pio-handle = <140001>;
1711 };
1712
1713
1714 v) Parallel I/O Ports
1715
1716 This node configures Parallel I/O ports for CPUs with QE support.
1717 The node should reside in the "soc" node of the tree. For each
1718 device that using parallel I/O ports, a child node should be created.
1719 See the definition of the Pin configuration nodes below for more
1720 information.
1721
1722 Required properties:
1723 - device_type : should be "par_io".
1724 - reg : offset to the register set and its length.
1725 - num-ports : number of Parallel I/O ports
1726
1727 Example:
1728 par_io@1400 {
1729 reg = <1400 100>;
1730 #address-cells = <1>;
1731 #size-cells = <0>;
1732 device_type = "par_io";
1733 num-ports = <7>;
1734 ucc_pin@01 {
1735 ......
1736 };
1737
1738
1739 vi) Pin configuration nodes
1740
1741 Required properties:
1742 - linux,phandle : phandle of this node; likely referenced by a QE
1743 device.
1744 - pio-map : array of pin configurations. Each pin is defined by 6
1745 integers. The six numbers are respectively: port, pin, dir,
1746 open_drain, assignment, has_irq.
1747 - port : port number of the pin; 0-6 represent port A-G in UM.
1748 - pin : pin number in the port.
1749 - dir : direction of the pin, should encode as follows:
1750
1751 0 = The pin is disabled
1752 1 = The pin is an output
1753 2 = The pin is an input
1754 3 = The pin is I/O
1755
1756 - open_drain : indicates the pin is normal or wired-OR:
1757
1758 0 = The pin is actively driven as an output
1759 1 = The pin is an open-drain driver. As an output, the pin is
1760 driven active-low, otherwise it is three-stated.
1761
1762 - assignment : function number of the pin according to the Pin Assignment
1763 tables in User Manual. Each pin can have up to 4 possible functions in
1764 QE and two options for CPM.
1765 - has_irq : indicates if the pin is used as source of external
1766 interrupts.
1767
1768 Example:
1769 ucc_pin@01 {
1770 linux,phandle = <140001>;
1771 pio-map = <
1772 /* port pin dir open_drain assignment has_irq */
1773 0 3 1 0 1 0 /* TxD0 */
1774 0 4 1 0 1 0 /* TxD1 */
1775 0 5 1 0 1 0 /* TxD2 */
1776 0 6 1 0 1 0 /* TxD3 */
1777 1 6 1 0 3 0 /* TxD4 */
1778 1 7 1 0 1 0 /* TxD5 */
1779 1 9 1 0 2 0 /* TxD6 */
1780 1 a 1 0 2 0 /* TxD7 */
1781 0 9 2 0 1 0 /* RxD0 */
1782 0 a 2 0 1 0 /* RxD1 */
1783 0 b 2 0 1 0 /* RxD2 */
1784 0 c 2 0 1 0 /* RxD3 */
1785 0 d 2 0 1 0 /* RxD4 */
1786 1 1 2 0 2 0 /* RxD5 */
1787 1 0 2 0 2 0 /* RxD6 */
1788 1 4 2 0 2 0 /* RxD7 */
1789 0 7 1 0 1 0 /* TX_EN */
1790 0 8 1 0 1 0 /* TX_ER */
1791 0 f 2 0 1 0 /* RX_DV */
1792 0 10 2 0 1 0 /* RX_ER */
1793 0 0 2 0 1 0 /* RX_CLK */
1794 2 9 1 0 3 0 /* GTX_CLK - CLK10 */
1795 2 8 2 0 1 0>; /* GTX125 - CLK9 */
1796 };
1797
1798 vii) Multi-User RAM (MURAM)
1799
1800 Required properties:
1801 - compatible : should be "fsl,qe-muram", "fsl,cpm-muram".
1802 - mode : the could be "host" or "slave".
1803 - ranges : Should be defined as specified in 1) to describe the
1804 translation of MURAM addresses.
1805 - data-only : sub-node which defines the address area under MURAM
1806 bus that can be allocated as data/parameter
1807
1808 Example:
1809
1810 muram@10000 {
1811 compatible = "fsl,qe-muram", "fsl,cpm-muram";
1812 ranges = <0 00010000 0000c000>;
1813
1814 data-only@0{
1815 compatible = "fsl,qe-muram-data",
1816 "fsl,cpm-muram-data";
1817 reg = <0 c000>;
1818 };
1819 };
1820
1821 viii) Uploaded QE firmware
1822
1823 If a new firwmare has been uploaded to the QE (usually by the
1824 boot loader), then a 'firmware' child node should be added to the QE
1825 node. This node provides information on the uploaded firmware that
1826 device drivers may need.
1827
1828 Required properties:
1829 - id: The string name of the firmware. This is taken from the 'id'
1830 member of the qe_firmware structure of the uploaded firmware.
1831 Device drivers can search this string to determine if the
1832 firmware they want is already present.
1833 - extended-modes: The Extended Modes bitfield, taken from the
1834 firmware binary. It is a 64-bit number represented
1835 as an array of two 32-bit numbers.
1836 - virtual-traps: The virtual traps, taken from the firmware binary.
1837 It is an array of 8 32-bit numbers.
1838
1839 Example:
1840
1841 firmware {
1842 id = "Soft-UART";
1843 extended-modes = <0 0>;
1844 virtual-traps = <0 0 0 0 0 0 0 0>;
1845 }
1846
1847 j) CFI or JEDEC memory-mapped NOR flash
1848
1849 Flash chips (Memory Technology Devices) are often used for solid state
1850 file systems on embedded devices.
1851
1852 - compatible : should contain the specific model of flash chip(s)
1853 used, if known, followed by either "cfi-flash" or "jedec-flash"
1854 - reg : Address range of the flash chip
1855 - bank-width : Width (in bytes) of the flash bank. Equal to the
1856 device width times the number of interleaved chips.
1857 - device-width : (optional) Width of a single flash chip. If
1858 omitted, assumed to be equal to 'bank-width'.
1859 - #address-cells, #size-cells : Must be present if the flash has
1860 sub-nodes representing partitions (see below). In this case
1861 both #address-cells and #size-cells must be equal to 1.
1862
1863 For JEDEC compatible devices, the following additional properties
1864 are defined:
1865
1866 - vendor-id : Contains the flash chip's vendor id (1 byte).
1867 - device-id : Contains the flash chip's device id (1 byte).
1868
1869 In addition to the information on the flash bank itself, the
1870 device tree may optionally contain additional information
1871 describing partitions of the flash address space. This can be
1872 used on platforms which have strong conventions about which
1873 portions of the flash are used for what purposes, but which don't
1874 use an on-flash partition table such as RedBoot.
1875
1876 Each partition is represented as a sub-node of the flash device.
1877 Each node's name represents the name of the corresponding
1878 partition of the flash device.
1879
1880 Flash partitions
1881 - reg : The partition's offset and size within the flash bank.
1882 - label : (optional) The label / name for this flash partition.
1883 If omitted, the label is taken from the node name (excluding
1884 the unit address).
1885 - read-only : (optional) This parameter, if present, is a hint to
1886 Linux that this flash partition should only be mounted
1887 read-only. This is usually used for flash partitions
1888 containing early-boot firmware images or data which should not
1889 be clobbered.
1890
1891 Example:
1892
1893 flash@ff000000 {
1894 compatible = "amd,am29lv128ml", "cfi-flash";
1895 reg = <ff000000 01000000>;
1896 bank-width = <4>;
1897 device-width = <1>;
1898 #address-cells = <1>;
1899 #size-cells = <1>;
1900 fs@0 {
1901 label = "fs";
1902 reg = <0 f80000>;
1903 };
1904 firmware@f80000 {
1905 label ="firmware";
1906 reg = <f80000 80000>;
1907 read-only;
1908 };
1909 };
1910
1911 k) Global Utilities Block
1912
1913 The global utilities block controls power management, I/O device
1914 enabling, power-on-reset configuration monitoring, general-purpose
1915 I/O signal configuration, alternate function selection for multiplexed
1916 signals, and clock control.
1917
1918 Required properties:
1919
1920 - compatible : Should define the compatible device type for
1921 global-utilities.
1922 - reg : Offset and length of the register set for the device.
1923
1924 Recommended properties:
1925
1926 - fsl,has-rstcr : Indicates that the global utilities register set
1927 contains a functioning "reset control register" (i.e. the board
1928 is wired to reset upon setting the HRESET_REQ bit in this register).
1929
1930 Example:
1931
1932 global-utilities@e0000 { /* global utilities block */
1933 compatible = "fsl,mpc8548-guts";
1934 reg = <e0000 1000>;
1935 fsl,has-rstcr;
1936 };
1937
1938 l) Freescale Communications Processor Module
1939
1940 NOTE: This is an interim binding, and will likely change slightly,
1941 as more devices are supported. The QE bindings especially are
1942 incomplete.
1943
1944 i) Root CPM node
1945
1946 Properties:
1947 - compatible : "fsl,cpm1", "fsl,cpm2", or "fsl,qe".
1948 - reg : A 48-byte region beginning with CPCR.
1949
1950 Example:
1951 cpm@119c0 {
1952 #address-cells = <1>;
1953 #size-cells = <1>;
1954 #interrupt-cells = <2>;
1955 compatible = "fsl,mpc8272-cpm", "fsl,cpm2";
1956 reg = <119c0 30>;
1957 }
1958
1959 ii) Properties common to mulitple CPM/QE devices
1960
1961 - fsl,cpm-command : This value is ORed with the opcode and command flag
1962 to specify the device on which a CPM command operates.
1963
1964 - fsl,cpm-brg : Indicates which baud rate generator the device
1965 is associated with. If absent, an unused BRG
1966 should be dynamically allocated. If zero, the
1967 device uses an external clock rather than a BRG.
1968
1969 - reg : Unless otherwise specified, the first resource represents the
1970 scc/fcc/ucc registers, and the second represents the device's
1971 parameter RAM region (if it has one).
1972
1973 iii) Serial
1974
1975 Currently defined compatibles:
1976 - fsl,cpm1-smc-uart
1977 - fsl,cpm2-smc-uart
1978 - fsl,cpm1-scc-uart
1979 - fsl,cpm2-scc-uart
1980 - fsl,qe-uart
1981
1982 Example:
1983
1984 serial@11a00 {
1985 device_type = "serial";
1986 compatible = "fsl,mpc8272-scc-uart",
1987 "fsl,cpm2-scc-uart";
1988 reg = <11a00 20 8000 100>;
1989 interrupts = <28 8>;
1990 interrupt-parent = <&PIC>;
1991 fsl,cpm-brg = <1>;
1992 fsl,cpm-command = <00800000>;
1993 };
1994
1995 iii) Network
1996
1997 Currently defined compatibles:
1998 - fsl,cpm1-scc-enet
1999 - fsl,cpm2-scc-enet
2000 - fsl,cpm1-fec-enet
2001 - fsl,cpm2-fcc-enet (third resource is GFEMR)
2002 - fsl,qe-enet
2003
2004 Example:
2005
2006 ethernet@11300 {
2007 device_type = "network";
2008 compatible = "fsl,mpc8272-fcc-enet",
2009 "fsl,cpm2-fcc-enet";
2010 reg = <11300 20 8400 100 11390 1>;
2011 local-mac-address = [ 00 00 00 00 00 00 ];
2012 interrupts = <20 8>;
2013 interrupt-parent = <&PIC>;
2014 phy-handle = <&PHY0>;
2015 fsl,cpm-command = <12000300>;
2016 };
2017
2018 iv) MDIO
2019
2020 Currently defined compatibles:
2021 fsl,pq1-fec-mdio (reg is same as first resource of FEC device)
2022 fsl,cpm2-mdio-bitbang (reg is port C registers)
2023
2024 Properties for fsl,cpm2-mdio-bitbang:
2025 fsl,mdio-pin : pin of port C controlling mdio data
2026 fsl,mdc-pin : pin of port C controlling mdio clock
2027
2028 Example:
2029
2030 mdio@10d40 {
2031 device_type = "mdio";
2032 compatible = "fsl,mpc8272ads-mdio-bitbang",
2033 "fsl,mpc8272-mdio-bitbang",
2034 "fsl,cpm2-mdio-bitbang";
2035 reg = <10d40 14>;
2036 #address-cells = <1>;
2037 #size-cells = <0>;
2038 fsl,mdio-pin = <12>;
2039 fsl,mdc-pin = <13>;
2040 };
2041
2042 v) Baud Rate Generators
2043
2044 Currently defined compatibles:
2045 fsl,cpm-brg
2046 fsl,cpm1-brg
2047 fsl,cpm2-brg
2048
2049 Properties:
2050 - reg : There may be an arbitrary number of reg resources; BRG
2051 numbers are assigned to these in order.
2052 - clock-frequency : Specifies the base frequency driving
2053 the BRG.
2054
2055 Example:
2056
2057 brg@119f0 {
2058 compatible = "fsl,mpc8272-brg",
2059 "fsl,cpm2-brg",
2060 "fsl,cpm-brg";
2061 reg = <119f0 10 115f0 10>;
2062 clock-frequency = <d#25000000>;
2063 };
2064
2065 vi) Interrupt Controllers
2066
2067 Currently defined compatibles:
2068 - fsl,cpm1-pic
2069 - only one interrupt cell
2070 - fsl,pq1-pic
2071 - fsl,cpm2-pic
2072 - second interrupt cell is level/sense:
2073 - 2 is falling edge
2074 - 8 is active low
2075
2076 Example:
2077
2078 interrupt-controller@10c00 {
2079 #interrupt-cells = <2>;
2080 interrupt-controller;
2081 reg = <10c00 80>;
2082 compatible = "mpc8272-pic", "fsl,cpm2-pic";
2083 };
2084
2085 vii) USB (Universal Serial Bus Controller)
2086
2087 Properties:
2088 - compatible : "fsl,cpm1-usb", "fsl,cpm2-usb", "fsl,qe-usb"
2089
2090 Example:
2091 usb@11bc0 {
2092 #address-cells = <1>;
2093 #size-cells = <0>;
2094 compatible = "fsl,cpm2-usb";
2095 reg = <11b60 18 8b00 100>;
2096 interrupts = <b 8>;
2097 interrupt-parent = <&PIC>;
2098 fsl,cpm-command = <2e600000>;
2099 };
2100
2101 viii) Multi-User RAM (MURAM)
2102
2103 The multi-user/dual-ported RAM is expressed as a bus under the CPM node.
2104
2105 Ranges must be set up subject to the following restrictions:
2106
2107 - Children's reg nodes must be offsets from the start of all muram, even
2108 if the user-data area does not begin at zero.
2109 - If multiple range entries are used, the difference between the parent
2110 address and the child address must be the same in all, so that a single
2111 mapping can cover them all while maintaining the ability to determine
2112 CPM-side offsets with pointer subtraction. It is recommended that
2113 multiple range entries not be used.
2114 - A child address of zero must be translatable, even if no reg resources
2115 contain it.
2116
2117 A child "data" node must exist, compatible with "fsl,cpm-muram-data", to
2118 indicate the portion of muram that is usable by the OS for arbitrary
2119 purposes. The data node may have an arbitrary number of reg resources,
2120 all of which contribute to the allocatable muram pool.
2121
2122 Example, based on mpc8272:
2123
2124 muram@0 {
2125 #address-cells = <1>;
2126 #size-cells = <1>;
2127 ranges = <0 0 10000>;
2128
2129 data@0 {
2130 compatible = "fsl,cpm-muram-data";
2131 reg = <0 2000 9800 800>;
2132 };
2133 };
2134
2135 m) Chipselect/Local Bus
2136
2137 Properties:
2138 - name : Should be localbus
2139 - #address-cells : Should be either two or three. The first cell is the
2140 chipselect number, and the remaining cells are the
2141 offset into the chipselect.
2142 - #size-cells : Either one or two, depending on how large each chipselect
2143 can be.
2144 - ranges : Each range corresponds to a single chipselect, and cover
2145 the entire access window as configured.
2146
2147 Example:
2148 localbus@f0010100 {
2149 compatible = "fsl,mpc8272-localbus",
2150 "fsl,pq2-localbus";
2151 #address-cells = <2>;
2152 #size-cells = <1>;
2153 reg = <f0010100 40>;
2154
2155 ranges = <0 0 fe000000 02000000
2156 1 0 f4500000 00008000>;
2157
2158 flash@0,0 {
2159 compatible = "jedec-flash";
2160 reg = <0 0 2000000>;
2161 bank-width = <4>;
2162 device-width = <1>;
2163 };
2164
2165 board-control@1,0 {
2166 reg = <1 0 20>;
2167 compatible = "fsl,mpc8272ads-bcsr";
2168 };
2169 };
2170
2171
2172 n) 4xx/Axon EMAC ethernet nodes
2173
2174 The EMAC ethernet controller in IBM and AMCC 4xx chips, and also
2175 the Axon bridge. To operate this needs to interact with a ths
2176 special McMAL DMA controller, and sometimes an RGMII or ZMII
2177 interface. In addition to the nodes and properties described
2178 below, the node for the OPB bus on which the EMAC sits must have a
2179 correct clock-frequency property.
2180
2181 i) The EMAC node itself
2182
2183 Required properties:
2184 - device_type : "network"
2185
2186 - compatible : compatible list, contains 2 entries, first is
2187 "ibm,emac-CHIP" where CHIP is the host ASIC (440gx,
2188 405gp, Axon) and second is either "ibm,emac" or
2189 "ibm,emac4". For Axon, thus, we have: "ibm,emac-axon",
2190 "ibm,emac4"
2191 - interrupts : <interrupt mapping for EMAC IRQ and WOL IRQ>
2192 - interrupt-parent : optional, if needed for interrupt mapping
2193 - reg : <registers mapping>
2194 - local-mac-address : 6 bytes, MAC address
2195 - mal-device : phandle of the associated McMAL node
2196 - mal-tx-channel : 1 cell, index of the tx channel on McMAL associated
2197 with this EMAC
2198 - mal-rx-channel : 1 cell, index of the rx channel on McMAL associated
2199 with this EMAC
2200 - cell-index : 1 cell, hardware index of the EMAC cell on a given
2201 ASIC (typically 0x0 and 0x1 for EMAC0 and EMAC1 on
2202 each Axon chip)
2203 - max-frame-size : 1 cell, maximum frame size supported in bytes
2204 - rx-fifo-size : 1 cell, Rx fifo size in bytes for 10 and 100 Mb/sec
2205 operations.
2206 For Axon, 2048
2207 - tx-fifo-size : 1 cell, Tx fifo size in bytes for 10 and 100 Mb/sec
2208 operations.
2209 For Axon, 2048.
2210 - fifo-entry-size : 1 cell, size of a fifo entry (used to calculate
2211 thresholds).
2212 For Axon, 0x00000010
2213 - mal-burst-size : 1 cell, MAL burst size (used to calculate thresholds)
2214 in bytes.
2215 For Axon, 0x00000100 (I think ...)
2216 - phy-mode : string, mode of operations of the PHY interface.
2217 Supported values are: "mii", "rmii", "smii", "rgmii",
2218 "tbi", "gmii", rtbi", "sgmii".
2219 For Axon on CAB, it is "rgmii"
2220 - mdio-device : 1 cell, required iff using shared MDIO registers
2221 (440EP). phandle of the EMAC to use to drive the
2222 MDIO lines for the PHY used by this EMAC.
2223 - zmii-device : 1 cell, required iff connected to a ZMII. phandle of
2224 the ZMII device node
2225 - zmii-channel : 1 cell, required iff connected to a ZMII. Which ZMII
2226 channel or 0xffffffff if ZMII is only used for MDIO.
2227 - rgmii-device : 1 cell, required iff connected to an RGMII. phandle
2228 of the RGMII device node.
2229 For Axon: phandle of plb5/plb4/opb/rgmii
2230 - rgmii-channel : 1 cell, required iff connected to an RGMII. Which
2231 RGMII channel is used by this EMAC.
2232 Fox Axon: present, whatever value is appropriate for each
2233 EMAC, that is the content of the current (bogus) "phy-port"
2234 property.
2235
2236 Optional properties:
2237 - phy-address : 1 cell, optional, MDIO address of the PHY. If absent,
2238 a search is performed.
2239 - phy-map : 1 cell, optional, bitmap of addresses to probe the PHY
2240 for, used if phy-address is absent. bit 0x00000001 is
2241 MDIO address 0.
2242 For Axon it can be absent, thouugh my current driver
2243 doesn't handle phy-address yet so for now, keep
2244 0x00ffffff in it.
2245 - rx-fifo-size-gige : 1 cell, Rx fifo size in bytes for 1000 Mb/sec
2246 operations (if absent the value is the same as
2247 rx-fifo-size). For Axon, either absent or 2048.
2248 - tx-fifo-size-gige : 1 cell, Tx fifo size in bytes for 1000 Mb/sec
2249 operations (if absent the value is the same as
2250 tx-fifo-size). For Axon, either absent or 2048.
2251 - tah-device : 1 cell, optional. If connected to a TAH engine for
2252 offload, phandle of the TAH device node.
2253 - tah-channel : 1 cell, optional. If appropriate, channel used on the
2254 TAH engine.
2255
2256 Example:
2257
2258 EMAC0: ethernet@40000800 {
2259 device_type = "network";
2260 compatible = "ibm,emac-440gp", "ibm,emac";
2261 interrupt-parent = <&UIC1>;
2262 interrupts = <1c 4 1d 4>;
2263 reg = <40000800 70>;
2264 local-mac-address = [00 04 AC E3 1B 1E];
2265 mal-device = <&MAL0>;
2266 mal-tx-channel = <0 1>;
2267 mal-rx-channel = <0>;
2268 cell-index = <0>;
2269 max-frame-size = <5dc>;
2270 rx-fifo-size = <1000>;
2271 tx-fifo-size = <800>;
2272 phy-mode = "rmii";
2273 phy-map = <00000001>;
2274 zmii-device = <&ZMII0>;
2275 zmii-channel = <0>;
2276 };
2277
2278 ii) McMAL node
2279
2280 Required properties:
2281 - device_type : "dma-controller"
2282 - compatible : compatible list, containing 2 entries, first is
2283 "ibm,mcmal-CHIP" where CHIP is the host ASIC (like
2284 emac) and the second is either "ibm,mcmal" or
2285 "ibm,mcmal2".
2286 For Axon, "ibm,mcmal-axon","ibm,mcmal2"
2287 - interrupts : <interrupt mapping for the MAL interrupts sources:
2288 5 sources: tx_eob, rx_eob, serr, txde, rxde>.
2289 For Axon: This is _different_ from the current
2290 firmware. We use the "delayed" interrupts for txeob
2291 and rxeob. Thus we end up with mapping those 5 MPIC
2292 interrupts, all level positive sensitive: 10, 11, 32,
2293 33, 34 (in decimal)
2294 - dcr-reg : < DCR registers range >
2295 - dcr-parent : if needed for dcr-reg
2296 - num-tx-chans : 1 cell, number of Tx channels
2297 - num-rx-chans : 1 cell, number of Rx channels
2298
2299 iii) ZMII node
2300
2301 Required properties:
2302 - compatible : compatible list, containing 2 entries, first is
2303 "ibm,zmii-CHIP" where CHIP is the host ASIC (like
2304 EMAC) and the second is "ibm,zmii".
2305 For Axon, there is no ZMII node.
2306 - reg : <registers mapping>
2307
2308 iv) RGMII node
2309
2310 Required properties:
2311 - compatible : compatible list, containing 2 entries, first is
2312 "ibm,rgmii-CHIP" where CHIP is the host ASIC (like
2313 EMAC) and the second is "ibm,rgmii".
2314 For Axon, "ibm,rgmii-axon","ibm,rgmii"
2315 - reg : <registers mapping>
2316 - revision : as provided by the RGMII new version register if
2317 available.
2318 For Axon: 0x0000012a
2319
2320 o) Xilinx IP cores
2321
2322 The Xilinx EDK toolchain ships with a set of IP cores (devices) for use
2323 in Xilinx Spartan and Virtex FPGAs. The devices cover the whole range
2324 of standard device types (network, serial, etc.) and miscellanious
2325 devices (gpio, LCD, spi, etc). Also, since these devices are
2326 implemented within the fpga fabric every instance of the device can be
2327 synthesised with different options that change the behaviour.
2328
2329 Each IP-core has a set of parameters which the FPGA designer can use to
2330 control how the core is synthesized. Historically, the EDK tool would
2331 extract the device parameters relevant to device drivers and copy them
2332 into an 'xparameters.h' in the form of #define symbols. This tells the
2333 device drivers how the IP cores are configured, but it requres the kernel
2334 to be recompiled every time the FPGA bitstream is resynthesized.
2335
2336 The new approach is to export the parameters into the device tree and
2337 generate a new device tree each time the FPGA bitstream changes. The
2338 parameters which used to be exported as #defines will now become
2339 properties of the device node. In general, device nodes for IP-cores
2340 will take the following form:
2341
2342 (name): (generic-name)@(base-address) {
2343 compatible = "xlnx,(ip-core-name)-(HW_VER)"
2344 [, (list of compatible devices), ...];
2345 reg = <(baseaddr) (size)>;
2346 interrupt-parent = <&interrupt-controller-phandle>;
2347 interrupts = < ... >;
2348 xlnx,(parameter1) = "(string-value)";
2349 xlnx,(parameter2) = <(int-value)>;
2350 };
2351
2352 (generic-name): an open firmware-style name that describes the
2353 generic class of device. Preferably, this is one word, such
2354 as 'serial' or 'ethernet'.
2355 (ip-core-name): the name of the ip block (given after the BEGIN
2356 directive in system.mhs). Should be in lowercase
2357 and all underscores '_' converted to dashes '-'.
2358 (name): is derived from the "PARAMETER INSTANCE" value.
2359 (parameter#): C_* parameters from system.mhs. The C_ prefix is
2360 dropped from the parameter name, the name is converted
2361 to lowercase and all underscore '_' characters are
2362 converted to dashes '-'.
2363 (baseaddr): the baseaddr parameter value (often named C_BASEADDR).
2364 (HW_VER): from the HW_VER parameter.
2365 (size): the address range size (often C_HIGHADDR - C_BASEADDR + 1).
2366
2367 Typically, the compatible list will include the exact IP core version
2368 followed by an older IP core version which implements the same
2369 interface or any other device with the same interface.
2370
2371 'reg', 'interrupt-parent' and 'interrupts' are all optional properties.
2372
2373 For example, the following block from system.mhs:
2374
2375 BEGIN opb_uartlite
2376 PARAMETER INSTANCE = opb_uartlite_0
2377 PARAMETER HW_VER = 1.00.b
2378 PARAMETER C_BAUDRATE = 115200
2379 PARAMETER C_DATA_BITS = 8
2380 PARAMETER C_ODD_PARITY = 0
2381 PARAMETER C_USE_PARITY = 0
2382 PARAMETER C_CLK_FREQ = 50000000
2383 PARAMETER C_BASEADDR = 0xEC100000
2384 PARAMETER C_HIGHADDR = 0xEC10FFFF
2385 BUS_INTERFACE SOPB = opb_7
2386 PORT OPB_Clk = CLK_50MHz
2387 PORT Interrupt = opb_uartlite_0_Interrupt
2388 PORT RX = opb_uartlite_0_RX
2389 PORT TX = opb_uartlite_0_TX
2390 PORT OPB_Rst = sys_bus_reset_0
2391 END
2392
2393 becomes the following device tree node:
2394
2395 opb_uartlite_0: serial@ec100000 {
2396 device_type = "serial";
2397 compatible = "xlnx,opb-uartlite-1.00.b";
2398 reg = <ec100000 10000>;
2399 interrupt-parent = <&opb_intc_0>;
2400 interrupts = <1 0>; // got this from the opb_intc parameters
2401 current-speed = <d#115200>; // standard serial device prop
2402 clock-frequency = <d#50000000>; // standard serial device prop
2403 xlnx,data-bits = <8>;
2404 xlnx,odd-parity = <0>;
2405 xlnx,use-parity = <0>;
2406 };
2407
2408 Some IP cores actually implement 2 or more logical devices. In
2409 this case, the device should still describe the whole IP core with
2410 a single node and add a child node for each logical device. The
2411 ranges property can be used to translate from parent IP-core to the
2412 registers of each device. In addition, the parent node should be
2413 compatible with the bus type 'xlnx,compound', and should contain
2414 #address-cells and #size-cells, as with any other bus. (Note: this
2415 makes the assumption that both logical devices have the same bus
2416 binding. If this is not true, then separate nodes should be used
2417 for each logical device). The 'cell-index' property can be used to
2418 enumerate logical devices within an IP core. For example, the
2419 following is the system.mhs entry for the dual ps2 controller found
2420 on the ml403 reference design.
2421
2422 BEGIN opb_ps2_dual_ref
2423 PARAMETER INSTANCE = opb_ps2_dual_ref_0
2424 PARAMETER HW_VER = 1.00.a
2425 PARAMETER C_BASEADDR = 0xA9000000
2426 PARAMETER C_HIGHADDR = 0xA9001FFF
2427 BUS_INTERFACE SOPB = opb_v20_0
2428 PORT Sys_Intr1 = ps2_1_intr
2429 PORT Sys_Intr2 = ps2_2_intr
2430 PORT Clkin1 = ps2_clk_rx_1
2431 PORT Clkin2 = ps2_clk_rx_2
2432 PORT Clkpd1 = ps2_clk_tx_1
2433 PORT Clkpd2 = ps2_clk_tx_2
2434 PORT Rx1 = ps2_d_rx_1
2435 PORT Rx2 = ps2_d_rx_2
2436 PORT Txpd1 = ps2_d_tx_1
2437 PORT Txpd2 = ps2_d_tx_2
2438 END
2439
2440 It would result in the following device tree nodes:
2441
2442 opb_ps2_dual_ref_0: opb-ps2-dual-ref@a9000000 {
2443 #address-cells = <1>;
2444 #size-cells = <1>;
2445 compatible = "xlnx,compound";
2446 ranges = <0 a9000000 2000>;
2447 // If this device had extra parameters, then they would
2448 // go here.
2449 ps2@0 {
2450 compatible = "xlnx,opb-ps2-dual-ref-1.00.a";
2451 reg = <0 40>;
2452 interrupt-parent = <&opb_intc_0>;
2453 interrupts = <3 0>;
2454 cell-index = <0>;
2455 };
2456 ps2@1000 {
2457 compatible = "xlnx,opb-ps2-dual-ref-1.00.a";
2458 reg = <1000 40>;
2459 interrupt-parent = <&opb_intc_0>;
2460 interrupts = <3 0>;
2461 cell-index = <0>;
2462 };
2463 };
2464
2465 Also, the system.mhs file defines bus attachments from the processor
2466 to the devices. The device tree structure should reflect the bus
2467 attachments. Again an example; this system.mhs fragment:
2468
2469 BEGIN ppc405_virtex4
2470 PARAMETER INSTANCE = ppc405_0
2471 PARAMETER HW_VER = 1.01.a
2472 BUS_INTERFACE DPLB = plb_v34_0
2473 BUS_INTERFACE IPLB = plb_v34_0
2474 END
2475
2476 BEGIN opb_intc
2477 PARAMETER INSTANCE = opb_intc_0
2478 PARAMETER HW_VER = 1.00.c
2479 PARAMETER C_BASEADDR = 0xD1000FC0
2480 PARAMETER C_HIGHADDR = 0xD1000FDF
2481 BUS_INTERFACE SOPB = opb_v20_0
2482 END
2483
2484 BEGIN opb_uart16550
2485 PARAMETER INSTANCE = opb_uart16550_0
2486 PARAMETER HW_VER = 1.00.d
2487 PARAMETER C_BASEADDR = 0xa0000000
2488 PARAMETER C_HIGHADDR = 0xa0001FFF
2489 BUS_INTERFACE SOPB = opb_v20_0
2490 END
2491
2492 BEGIN plb_v34
2493 PARAMETER INSTANCE = plb_v34_0
2494 PARAMETER HW_VER = 1.02.a
2495 END
2496
2497 BEGIN plb_bram_if_cntlr
2498 PARAMETER INSTANCE = plb_bram_if_cntlr_0
2499 PARAMETER HW_VER = 1.00.b
2500 PARAMETER C_BASEADDR = 0xFFFF0000
2501 PARAMETER C_HIGHADDR = 0xFFFFFFFF
2502 BUS_INTERFACE SPLB = plb_v34_0
2503 END
2504
2505 BEGIN plb2opb_bridge
2506 PARAMETER INSTANCE = plb2opb_bridge_0
2507 PARAMETER HW_VER = 1.01.a
2508 PARAMETER C_RNG0_BASEADDR = 0x20000000
2509 PARAMETER C_RNG0_HIGHADDR = 0x3FFFFFFF
2510 PARAMETER C_RNG1_BASEADDR = 0x60000000
2511 PARAMETER C_RNG1_HIGHADDR = 0x7FFFFFFF
2512 PARAMETER C_RNG2_BASEADDR = 0x80000000
2513 PARAMETER C_RNG2_HIGHADDR = 0xBFFFFFFF
2514 PARAMETER C_RNG3_BASEADDR = 0xC0000000
2515 PARAMETER C_RNG3_HIGHADDR = 0xDFFFFFFF
2516 BUS_INTERFACE SPLB = plb_v34_0
2517 BUS_INTERFACE MOPB = opb_v20_0
2518 END
2519
2520 Gives this device tree (some properties removed for clarity):
2521
2522 plb@0 {
2523 #address-cells = <1>;
2524 #size-cells = <1>;
2525 compatible = "xlnx,plb-v34-1.02.a";
2526 device_type = "ibm,plb";
2527 ranges; // 1:1 translation
2528
2529 plb_bram_if_cntrl_0: bram@ffff0000 {
2530 reg = <ffff0000 10000>;
2531 }
2532
2533 opb@20000000 {
2534 #address-cells = <1>;
2535 #size-cells = <1>;
2536 ranges = <20000000 20000000 20000000
2537 60000000 60000000 20000000
2538 80000000 80000000 40000000
2539 c0000000 c0000000 20000000>;
2540
2541 opb_uart16550_0: serial@a0000000 {
2542 reg = <a00000000 2000>;
2543 };
2544
2545 opb_intc_0: interrupt-controller@d1000fc0 {
2546 reg = <d1000fc0 20>;
2547 };
2548 };
2549 };
2550
2551 That covers the general approach to binding xilinx IP cores into the
2552 device tree. The following are bindings for specific devices:
2553
2554 i) Xilinx ML300 Framebuffer
2555
2556 Simple framebuffer device from the ML300 reference design (also on the
2557 ML403 reference design as well as others).
2558
2559 Optional properties:
2560 - resolution = <xres yres> : pixel resolution of framebuffer. Some
2561 implementations use a different resolution.
2562 Default is <d#640 d#480>
2563 - virt-resolution = <xvirt yvirt> : Size of framebuffer in memory.
2564 Default is <d#1024 d#480>.
2565 - rotate-display (empty) : rotate display 180 degrees.
2566
2567 ii) Xilinx SystemACE
2568
2569 The Xilinx SystemACE device is used to program FPGAs from an FPGA
2570 bitstream stored on a CF card. It can also be used as a generic CF
2571 interface device.
2572
2573 Optional properties:
2574 - 8-bit (empty) : Set this property for SystemACE in 8 bit mode
2575
2576 iii) Xilinx EMAC and Xilinx TEMAC
2577
2578 Xilinx Ethernet devices. In addition to general xilinx properties
2579 listed above, nodes for these devices should include a phy-handle
2580 property, and may include other common network device properties
2581 like local-mac-address.
2582
2583 iv) Xilinx Uartlite
2584
2585 Xilinx uartlite devices are simple fixed speed serial ports.
2586
2587 Requred properties:
2588 - current-speed : Baud rate of uartlite
2589
2590 v) Xilinx hwicap
2591
2592 Xilinx hwicap devices provide access to the configuration logic
2593 of the FPGA through the Internal Configuration Access Port
2594 (ICAP). The ICAP enables partial reconfiguration of the FPGA,
2595 readback of the configuration information, and some control over
2596 'warm boots' of the FPGA fabric.
2597
2598 Required properties:
2599 - xlnx,family : The family of the FPGA, necessary since the
2600 capabilities of the underlying ICAP hardware
2601 differ between different families. May be
2602 'virtex2p', 'virtex4', or 'virtex5'.
2603
2604 vi) Xilinx Uart 16550
2605
2606 Xilinx UART 16550 devices are very similar to the NS16550 but with
2607 different register spacing and an offset from the base address.
2608
2609 Requred properties:
2610 - clock-frequency : Frequency of the clock input
2611 - reg-offset : A value of 3 is required
2612 - reg-shift : A value of 2 is required
2613
2614
2615 p) Freescale Synchronous Serial Interface
2616
2617 The SSI is a serial device that communicates with audio codecs. It can
2618 be programmed in AC97, I2S, left-justified, or right-justified modes.
2619
2620 Required properties:
2621 - compatible : compatible list, containing "fsl,ssi"
2622 - cell-index : the SSI, <0> = SSI1, <1> = SSI2, and so on
2623 - reg : offset and length of the register set for the device
2624 - interrupts : <a b> where a is the interrupt number and b is a
2625 field that represents an encoding of the sense and
2626 level information for the interrupt. This should be
2627 encoded based on the information in section 2)
2628 depending on the type of interrupt controller you
2629 have.
2630 - interrupt-parent : the phandle for the interrupt controller that
2631 services interrupts for this device.
2632 - fsl,mode : the operating mode for the SSI interface
2633 "i2s-slave" - I2S mode, SSI is clock slave
2634 "i2s-master" - I2S mode, SSI is clock master
2635 "lj-slave" - left-justified mode, SSI is clock slave
2636 "lj-master" - l.j. mode, SSI is clock master
2637 "rj-slave" - right-justified mode, SSI is clock slave
2638 "rj-master" - r.j., SSI is clock master
2639 "ac97-slave" - AC97 mode, SSI is clock slave
2640 "ac97-master" - AC97 mode, SSI is clock master
2641
2642 Optional properties:
2643 - codec-handle : phandle to a 'codec' node that defines an audio
2644 codec connected to this SSI. This node is typically
2645 a child of an I2C or other control node.
2646
2647 Child 'codec' node required properties:
2648 - compatible : compatible list, contains the name of the codec
2649
2650 Child 'codec' node optional properties:
2651 - clock-frequency : The frequency of the input clock, which typically
2652 comes from an on-board dedicated oscillator.
2653
2654 * Freescale 83xx DMA Controller
2655
2656 Freescale PowerPC 83xx have on chip general purpose DMA controllers.
2657
2658 Required properties:
2659
2660 - compatible : compatible list, contains 2 entries, first is
2661 "fsl,CHIP-dma", where CHIP is the processor
2662 (mpc8349, mpc8360, etc.) and the second is
2663 "fsl,elo-dma"
2664 - reg : <registers mapping for DMA general status reg>
2665 - ranges : Should be defined as specified in 1) to describe the
2666 DMA controller channels.
2667 - cell-index : controller index. 0 for controller @ 0x8100
2668 - interrupts : <interrupt mapping for DMA IRQ>
2669 - interrupt-parent : optional, if needed for interrupt mapping
2670
2671
2672 - DMA channel nodes:
2673 - compatible : compatible list, contains 2 entries, first is
2674 "fsl,CHIP-dma-channel", where CHIP is the processor
2675 (mpc8349, mpc8350, etc.) and the second is
2676 "fsl,elo-dma-channel"
2677 - reg : <registers mapping for channel>
2678 - cell-index : dma channel index starts at 0.
2679
2680 Optional properties:
2681 - interrupts : <interrupt mapping for DMA channel IRQ>
2682 (on 83xx this is expected to be identical to
2683 the interrupts property of the parent node)
2684 - interrupt-parent : optional, if needed for interrupt mapping
2685
2686 Example:
2687 dma@82a8 {
2688 #address-cells = <1>;
2689 #size-cells = <1>;
2690 compatible = "fsl,mpc8349-dma", "fsl,elo-dma";
2691 reg = <82a8 4>;
2692 ranges = <0 8100 1a4>;
2693 interrupt-parent = <&ipic>;
2694 interrupts = <47 8>;
2695 cell-index = <0>;
2696 dma-channel@0 {
2697 compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
2698 cell-index = <0>;
2699 reg = <0 80>;
2700 };
2701 dma-channel@80 {
2702 compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
2703 cell-index = <1>;
2704 reg = <80 80>;
2705 };
2706 dma-channel@100 {
2707 compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
2708 cell-index = <2>;
2709 reg = <100 80>;
2710 };
2711 dma-channel@180 {
2712 compatible = "fsl,mpc8349-dma-channel", "fsl,elo-dma-channel";
2713 cell-index = <3>;
2714 reg = <180 80>;
2715 };
2716 };
2717
2718 * Freescale 85xx/86xx DMA Controller
2719
2720 Freescale PowerPC 85xx/86xx have on chip general purpose DMA controllers.
2721
2722 Required properties:
2723
2724 - compatible : compatible list, contains 2 entries, first is
2725 "fsl,CHIP-dma", where CHIP is the processor
2726 (mpc8540, mpc8540, etc.) and the second is
2727 "fsl,eloplus-dma"
2728 - reg : <registers mapping for DMA general status reg>
2729 - cell-index : controller index. 0 for controller @ 0x21000,
2730 1 for controller @ 0xc000
2731 - ranges : Should be defined as specified in 1) to describe the
2732 DMA controller channels.
2733
2734 - DMA channel nodes:
2735 - compatible : compatible list, contains 2 entries, first is
2736 "fsl,CHIP-dma-channel", where CHIP is the processor
2737 (mpc8540, mpc8560, etc.) and the second is
2738 "fsl,eloplus-dma-channel"
2739 - cell-index : dma channel index starts at 0.
2740 - reg : <registers mapping for channel>
2741 - interrupts : <interrupt mapping for DMA channel IRQ>
2742 - interrupt-parent : optional, if needed for interrupt mapping
2743
2744 Example:
2745 dma@21300 {
2746 #address-cells = <1>;
2747 #size-cells = <1>;
2748 compatible = "fsl,mpc8540-dma", "fsl,eloplus-dma";
2749 reg = <21300 4>;
2750 ranges = <0 21100 200>;
2751 cell-index = <0>;
2752 dma-channel@0 {
2753 compatible = "fsl,mpc8540-dma-channel", "fsl,eloplus-dma-channel";
2754 reg = <0 80>;
2755 cell-index = <0>;
2756 interrupt-parent = <&mpic>;
2757 interrupts = <14 2>;
2758 };
2759 dma-channel@80 {
2760 compatible = "fsl,mpc8540-dma-channel", "fsl,eloplus-dma-channel";
2761 reg = <80 80>;
2762 cell-index = <1>;
2763 interrupt-parent = <&mpic>;
2764 interrupts = <15 2>;
2765 };
2766 dma-channel@100 {
2767 compatible = "fsl,mpc8540-dma-channel", "fsl,eloplus-dma-channel";
2768 reg = <100 80>;
2769 cell-index = <2>;
2770 interrupt-parent = <&mpic>;
2771 interrupts = <16 2>;
2772 };
2773 dma-channel@180 {
2774 compatible = "fsl,mpc8540-dma-channel", "fsl,eloplus-dma-channel";
2775 reg = <180 80>;
2776 cell-index = <3>;
2777 interrupt-parent = <&mpic>;
2778 interrupts = <17 2>;
2779 };
2780 };
2781
2782 * Freescale 8xxx/3.0 Gb/s SATA nodes
2783
2784 SATA nodes are defined to describe on-chip Serial ATA controllers.
2785 Each SATA port should have its own node.
2786
2787 Required properties:
2788 - compatible : compatible list, contains 2 entries, first is
2789 "fsl,CHIP-sata", where CHIP is the processor
2790 (mpc8315, mpc8379, etc.) and the second is
2791 "fsl,pq-sata"
2792 - interrupts : <interrupt mapping for SATA IRQ>
2793 - cell-index : controller index.
2794 1 for controller @ 0x18000
2795 2 for controller @ 0x19000
2796 3 for controller @ 0x1a000
2797 4 for controller @ 0x1b000
2798
2799 Optional properties:
2800 - interrupt-parent : optional, if needed for interrupt mapping
2801 - reg : <registers mapping>
2802
2803 Example:
2804
2805 sata@18000 {
2806 compatible = "fsl,mpc8379-sata", "fsl,pq-sata";
2807 reg = <0x18000 0x1000>;
2808 cell-index = <1>;
2809 interrupts = <2c 8>;
2810 interrupt-parent = < &ipic >;
2811 };
2812
2813 q) USB EHCI controllers
2814
2815 Required properties:
2816 - compatible : should be "usb-ehci".
2817 - reg : should contain at least address and length of the standard EHCI
2818 register set for the device. Optional platform-dependent registers
2819 (debug-port or other) can be also specified here, but only after
2820 definition of standard EHCI registers.
2821 - interrupts : one EHCI interrupt should be described here.
2822 If device registers are implemented in big endian mode, the device
2823 node should have "big-endian-regs" property.
2824 If controller implementation operates with big endian descriptors,
2825 "big-endian-desc" property should be specified.
2826 If both big endian registers and descriptors are used by the controller
2827 implementation, "big-endian" property can be specified instead of having
2828 both "big-endian-regs" and "big-endian-desc".
2829
2830 Example (Sequoia 440EPx):
2831 ehci@e0000300 {
2832 compatible = "ibm,usb-ehci-440epx", "usb-ehci";
2833 interrupt-parent = <&UIC0>;
2834 interrupts = <1a 4>;
2835 reg = <0 e0000300 90 0 e0000390 70>;
2836 big-endian;
2837 };
2838
2839 r) Freescale Display Interface Unit
2840
2841 The Freescale DIU is a LCD controller, with proper hardware, it can also
2842 drive DVI monitors.
2843
2844 Required properties:
2845 - compatible : should be "fsl-diu".
2846 - reg : should contain at least address and length of the DIU register
2847 set.
2848 - Interrupts : one DIU interrupt should be describe here.
2849
2850 Example (MPC8610HPCD)
2851 display@2c000 {
2852 compatible = "fsl,diu";
2853 reg = <0x2c000 100>;
2854 interrupts = <72 2>;
2855 interrupt-parent = <&mpic>;
2856 };
2857
2858 s) Freescale on board FPGA
2859
2860 This is the memory-mapped registers for on board FPGA.
2861
2862 Required properities:
2863 - compatible : should be "fsl,fpga-pixis".
2864 - reg : should contain the address and the lenght of the FPPGA register
2865 set.
2866
2867 Example (MPC8610HPCD)
2868 board-control@e8000000 {
2869 compatible = "fsl,fpga-pixis";
2870 reg = <0xe8000000 32>;
2871 };
2872
2873 t) Freescale MSI interrupt controller
2874
2875 Reguired properities:
2876 - compatible : compatible list, contains 2 entries,
2877 first is "fsl,CHIP-msi", where CHIP is the processor(mpc8610, mpc8572,
2878 etc.) and the second is "fsl,mpic-msi" or "fsl,ipic-msi" depending on
2879 the parent type.
2880 - reg : should contain the address and the length of the shared message
2881 interrupt register set.
2882 - msi-available-ranges: use <start count> style section to define which
2883 msi interrupt can be used in the 256 msi interrupts. This property is
2884 optional, without this, all the 256 MSI interrupts can be used.
2885 - interrupts : each one of the interrupts here is one entry per 32 MSIs,
2886 and routed to the host interrupt controller. the interrupts should
2887 be set as edge sensitive.
2888 - interrupt-parent: the phandle for the interrupt controller
2889 that services interrupts for this device. for 83xx cpu, the interrupts
2890 are routed to IPIC, and for 85xx/86xx cpu the interrupts are routed
2891 to MPIC.
2892
2893 Example
2894 msi@41600 {
2895 compatible = "fsl,mpc8610-msi", "fsl,mpic-msi";
2896 reg = <0x41600 0x80>;
2897 msi-available-ranges = <0 0x100>;
2898 interrupts = <
2899 0xe0 0
2900 0xe1 0
2901 0xe2 0
2902 0xe3 0
2903 0xe4 0
2904 0xe5 0
2905 0xe6 0
2906 0xe7 0>;
2907 interrupt-parent = <&mpic>;
2908 };
2909
2910
2911 VII - Marvell Discovery mv64[345]6x System Controller chips
2912 ===========================================================
2913
2914 The Marvell mv64[345]60 series of system controller chips contain
2915 many of the peripherals needed to implement a complete computer
2916 system. In this section, we define device tree nodes to describe
2917 the system controller chip itself and each of the peripherals
2918 which it contains. Compatible string values for each node are
2919 prefixed with the string "marvell,", for Marvell Technology Group Ltd.
2920
2921 1) The /system-controller node
2922
2923 This node is used to represent the system-controller and must be
2924 present when the system uses a system contller chip. The top-level
2925 system-controller node contains information that is global to all
2926 devices within the system controller chip. The node name begins
2927 with "system-controller" followed by the unit address, which is
2928 the base address of the memory-mapped register set for the system
2929 controller chip.
2930
2931 Required properties:
2932
2933 - ranges : Describes the translation of system controller addresses
2934 for memory mapped registers.
2935 - clock-frequency: Contains the main clock frequency for the system
2936 controller chip.
2937 - reg : This property defines the address and size of the
2938 memory-mapped registers contained within the system controller
2939 chip. The address specified in the "reg" property should match
2940 the unit address of the system-controller node.
2941 - #address-cells : Address representation for system controller
2942 devices. This field represents the number of cells needed to
2943 represent the address of the memory-mapped registers of devices
2944 within the system controller chip.
2945 - #size-cells : Size representation for for the memory-mapped
2946 registers within the system controller chip.
2947 - #interrupt-cells : Defines the width of cells used to represent
2948 interrupts.
2949
2950 Optional properties:
2951
2952 - model : The specific model of the system controller chip. Such
2953 as, "mv64360", "mv64460", or "mv64560".
2954 - compatible : A string identifying the compatibility identifiers
2955 of the system controller chip.
2956
2957 The system-controller node contains child nodes for each system
2958 controller device that the platform uses. Nodes should not be created
2959 for devices which exist on the system controller chip but are not used
2960
2961 Example Marvell Discovery mv64360 system-controller node:
2962
2963 system-controller@f1000000 { /* Marvell Discovery mv64360 */
2964 #address-cells = <1>;
2965 #size-cells = <1>;
2966 model = "mv64360"; /* Default */
2967 compatible = "marvell,mv64360";
2968 clock-frequency = <133333333>;
2969 reg = <0xf1000000 0x10000>;
2970 virtual-reg = <0xf1000000>;
2971 ranges = <0x88000000 0x88000000 0x1000000 /* PCI 0 I/O Space */
2972 0x80000000 0x80000000 0x8000000 /* PCI 0 MEM Space */
2973 0xa0000000 0xa0000000 0x4000000 /* User FLASH */
2974 0x00000000 0xf1000000 0x0010000 /* Bridge's regs */
2975 0xf2000000 0xf2000000 0x0040000>;/* Integrated SRAM */
2976
2977 [ child node definitions... ]
2978 }
2979
2980 2) Child nodes of /system-controller
2981
2982 a) Marvell Discovery MDIO bus
2983
2984 The MDIO is a bus to which the PHY devices are connected. For each
2985 device that exists on this bus, a child node should be created. See
2986 the definition of the PHY node below for an example of how to define
2987 a PHY.
2988
2989 Required properties:
2990 - #address-cells : Should be <1>
2991 - #size-cells : Should be <0>
2992 - device_type : Should be "mdio"
2993 - compatible : Should be "marvell,mv64360-mdio"
2994
2995 Example:
2996
2997 mdio {
2998 #address-cells = <1>;
2999 #size-cells = <0>;
3000 device_type = "mdio";
3001 compatible = "marvell,mv64360-mdio";
3002
3003 ethernet-phy@0 {
3004 ......
3005 };
3006 };
3007
3008
3009 b) Marvell Discovery ethernet controller
3010
3011 The Discover ethernet controller is described with two levels
3012 of nodes. The first level describes an ethernet silicon block
3013 and the second level describes up to 3 ethernet nodes within
3014 that block. The reason for the multiple levels is that the
3015 registers for the node are interleaved within a single set
3016 of registers. The "ethernet-block" level describes the
3017 shared register set, and the "ethernet" nodes describe ethernet
3018 port-specific properties.
3019
3020 Ethernet block node
3021
3022 Required properties:
3023 - #address-cells : <1>
3024 - #size-cells : <0>
3025 - compatible : "marvell,mv64360-eth-block"
3026 - reg : Offset and length of the register set for this block
3027
3028 Example Discovery Ethernet block node:
3029 ethernet-block@2000 {
3030 #address-cells = <1>;
3031 #size-cells = <0>;
3032 compatible = "marvell,mv64360-eth-block";
3033 reg = <0x2000 0x2000>;
3034 ethernet@0 {
3035 .......
3036 };
3037 };
3038
3039 Ethernet port node
3040
3041 Required properties:
3042 - device_type : Should be "network".
3043 - compatible : Should be "marvell,mv64360-eth".
3044 - reg : Should be <0>, <1>, or <2>, according to which registers
3045 within the silicon block the device uses.
3046 - interrupts : <a> where a is the interrupt number for the port.
3047 - interrupt-parent : the phandle for the interrupt controller
3048 that services interrupts for this device.
3049 - phy : the phandle for the PHY connected to this ethernet
3050 controller.
3051 - local-mac-address : 6 bytes, MAC address
3052
3053 Example Discovery Ethernet port node:
3054 ethernet@0 {
3055 device_type = "network";
3056 compatible = "marvell,mv64360-eth";
3057 reg = <0>;
3058 interrupts = <32>;
3059 interrupt-parent = <&PIC>;
3060 phy = <&PHY0>;
3061 local-mac-address = [ 00 00 00 00 00 00 ];
3062 };
3063
3064
3065
3066 c) Marvell Discovery PHY nodes
3067
3068 Required properties:
3069 - device_type : Should be "ethernet-phy"
3070 - interrupts : <a> where a is the interrupt number for this phy.
3071 - interrupt-parent : the phandle for the interrupt controller that
3072 services interrupts for this device.
3073 - reg : The ID number for the phy, usually a small integer
3074
3075 Example Discovery PHY node:
3076 ethernet-phy@1 {
3077 device_type = "ethernet-phy";
3078 compatible = "broadcom,bcm5421";
3079 interrupts = <76>; /* GPP 12 */
3080 interrupt-parent = <&PIC>;
3081 reg = <1>;
3082 };
3083
3084
3085 d) Marvell Discovery SDMA nodes
3086
3087 Represent DMA hardware associated with the MPSC (multiprotocol
3088 serial controllers).
3089
3090 Required properties:
3091 - compatible : "marvell,mv64360-sdma"
3092 - reg : Offset and length of the register set for this device
3093 - interrupts : <a> where a is the interrupt number for the DMA
3094 device.
3095 - interrupt-parent : the phandle for the interrupt controller
3096 that services interrupts for this device.
3097
3098 Example Discovery SDMA node:
3099 sdma@4000 {
3100 compatible = "marvell,mv64360-sdma";
3101 reg = <0x4000 0xc18>;
3102 virtual-reg = <0xf1004000>;
3103 interrupts = <36>;
3104 interrupt-parent = <&PIC>;
3105 };
3106
3107
3108 e) Marvell Discovery BRG nodes
3109
3110 Represent baud rate generator hardware associated with the MPSC
3111 (multiprotocol serial controllers).
3112
3113 Required properties:
3114 - compatible : "marvell,mv64360-brg"
3115 - reg : Offset and length of the register set for this device
3116 - clock-src : A value from 0 to 15 which selects the clock
3117 source for the baud rate generator. This value corresponds
3118 to the CLKS value in the BRGx configuration register. See
3119 the mv64x60 User's Manual.
3120 - clock-frequence : The frequency (in Hz) of the baud rate
3121 generator's input clock.
3122 - current-speed : The current speed setting (presumably by
3123 firmware) of the baud rate generator.
3124
3125 Example Discovery BRG node:
3126 brg@b200 {
3127 compatible = "marvell,mv64360-brg";
3128 reg = <0xb200 0x8>;
3129 clock-src = <8>;
3130 clock-frequency = <133333333>;
3131 current-speed = <9600>;
3132 };
3133
3134
3135 f) Marvell Discovery CUNIT nodes
3136
3137 Represent the Serial Communications Unit device hardware.
3138
3139 Required properties:
3140 - reg : Offset and length of the register set for this device
3141
3142 Example Discovery CUNIT node:
3143 cunit@f200 {
3144 reg = <0xf200 0x200>;
3145 };
3146
3147
3148 g) Marvell Discovery MPSCROUTING nodes
3149
3150 Represent the Discovery's MPSC routing hardware
3151
3152 Required properties:
3153 - reg : Offset and length of the register set for this device
3154
3155 Example Discovery CUNIT node:
3156 mpscrouting@b500 {
3157 reg = <0xb400 0xc>;
3158 };
3159
3160
3161 h) Marvell Discovery MPSCINTR nodes
3162
3163 Represent the Discovery's MPSC DMA interrupt hardware registers
3164 (SDMA cause and mask registers).
3165
3166 Required properties:
3167 - reg : Offset and length of the register set for this device
3168
3169 Example Discovery MPSCINTR node:
3170 mpsintr@b800 {
3171 reg = <0xb800 0x100>;
3172 };
3173
3174
3175 i) Marvell Discovery MPSC nodes
3176
3177 Represent the Discovery's MPSC (Multiprotocol Serial Controller)
3178 serial port.
3179
3180 Required properties:
3181 - device_type : "serial"
3182 - compatible : "marvell,mv64360-mpsc"
3183 - reg : Offset and length of the register set for this device
3184 - sdma : the phandle for the SDMA node used by this port
3185 - brg : the phandle for the BRG node used by this port
3186 - cunit : the phandle for the CUNIT node used by this port
3187 - mpscrouting : the phandle for the MPSCROUTING node used by this port
3188 - mpscintr : the phandle for the MPSCINTR node used by this port
3189 - cell-index : the hardware index of this cell in the MPSC core
3190 - max_idle : value needed for MPSC CHR3 (Maximum Frame Length)
3191 register
3192 - interrupts : <a> where a is the interrupt number for the MPSC.
3193 - interrupt-parent : the phandle for the interrupt controller
3194 that services interrupts for this device.
3195
3196 Example Discovery MPSCINTR node:
3197 mpsc@8000 {
3198 device_type = "serial";
3199 compatible = "marvell,mv64360-mpsc";
3200 reg = <0x8000 0x38>;
3201 virtual-reg = <0xf1008000>;
3202 sdma = <&SDMA0>;
3203 brg = <&BRG0>;
3204 cunit = <&CUNIT>;
3205 mpscrouting = <&MPSCROUTING>;
3206 mpscintr = <&MPSCINTR>;
3207 cell-index = <0>;
3208 max_idle = <40>;
3209 interrupts = <40>;
3210 interrupt-parent = <&PIC>;
3211 };
3212
3213
3214 j) Marvell Discovery Watch Dog Timer nodes
3215
3216 Represent the Discovery's watchdog timer hardware
3217
3218 Required properties:
3219 - compatible : "marvell,mv64360-wdt"
3220 - reg : Offset and length of the register set for this device
3221
3222 Example Discovery Watch Dog Timer node:
3223 wdt@b410 {
3224 compatible = "marvell,mv64360-wdt";
3225 reg = <0xb410 0x8>;
3226 };
3227
3228
3229 k) Marvell Discovery I2C nodes
3230
3231 Represent the Discovery's I2C hardware
3232
3233 Required properties:
3234 - device_type : "i2c"
3235 - compatible : "marvell,mv64360-i2c"
3236 - reg : Offset and length of the register set for this device
3237 - interrupts : <a> where a is the interrupt number for the I2C.
3238 - interrupt-parent : the phandle for the interrupt controller
3239 that services interrupts for this device.
3240
3241 Example Discovery I2C node:
3242 compatible = "marvell,mv64360-i2c";
3243 reg = <0xc000 0x20>;
3244 virtual-reg = <0xf100c000>;
3245 interrupts = <37>;
3246 interrupt-parent = <&PIC>;
3247 };
3248
3249
3250 l) Marvell Discovery PIC (Programmable Interrupt Controller) nodes
3251
3252 Represent the Discovery's PIC hardware
3253
3254 Required properties:
3255 - #interrupt-cells : <1>
3256 - #address-cells : <0>
3257 - compatible : "marvell,mv64360-pic"
3258 - reg : Offset and length of the register set for this device
3259 - interrupt-controller
3260
3261 Example Discovery PIC node:
3262 pic {
3263 #interrupt-cells = <1>;
3264 #address-cells = <0>;
3265 compatible = "marvell,mv64360-pic";
3266 reg = <0x0 0x88>;
3267 interrupt-controller;
3268 };
3269
3270
3271 m) Marvell Discovery MPP (Multipurpose Pins) multiplexing nodes
3272
3273 Represent the Discovery's MPP hardware
3274
3275 Required properties:
3276 - compatible : "marvell,mv64360-mpp"
3277 - reg : Offset and length of the register set for this device
3278
3279 Example Discovery MPP node:
3280 mpp@f000 {
3281 compatible = "marvell,mv64360-mpp";
3282 reg = <0xf000 0x10>;
3283 };
3284
3285
3286 n) Marvell Discovery GPP (General Purpose Pins) nodes
3287
3288 Represent the Discovery's GPP hardware
3289
3290 Required properties:
3291 - compatible : "marvell,mv64360-gpp"
3292 - reg : Offset and length of the register set for this device
3293
3294 Example Discovery GPP node:
3295 gpp@f000 {
3296 compatible = "marvell,mv64360-gpp";
3297 reg = <0xf100 0x20>;
3298 };
3299
3300
3301 o) Marvell Discovery PCI host bridge node
3302
3303 Represents the Discovery's PCI host bridge device. The properties
3304 for this node conform to Rev 2.1 of the PCI Bus Binding to IEEE
3305 1275-1994. A typical value for the compatible property is
3306 "marvell,mv64360-pci".
3307
3308 Example Discovery PCI host bridge node
3309 pci@80000000 {
3310 #address-cells = <3>;
3311 #size-cells = <2>;
3312 #interrupt-cells = <1>;
3313 device_type = "pci";
3314 compatible = "marvell,mv64360-pci";
3315 reg = <0xcf8 0x8>;
3316 ranges = <0x01000000 0x0 0x0
3317 0x88000000 0x0 0x01000000
3318 0x02000000 0x0 0x80000000
3319 0x80000000 0x0 0x08000000>;
3320 bus-range = <0 255>;
3321 clock-frequency = <66000000>;
3322 interrupt-parent = <&PIC>;
3323 interrupt-map-mask = <0xf800 0x0 0x0 0x7>;
3324 interrupt-map = <
3325 /* IDSEL 0x0a */
3326 0x5000 0 0 1 &PIC 80
3327 0x5000 0 0 2 &PIC 81
3328 0x5000 0 0 3 &PIC 91
3329 0x5000 0 0 4 &PIC 93
3330
3331 /* IDSEL 0x0b */
3332 0x5800 0 0 1 &PIC 91
3333 0x5800 0 0 2 &PIC 93
3334 0x5800 0 0 3 &PIC 80
3335 0x5800 0 0 4 &PIC 81
3336
3337 /* IDSEL 0x0c */
3338 0x6000 0 0 1 &PIC 91
3339 0x6000 0 0 2 &PIC 93
3340 0x6000 0 0 3 &PIC 80
3341 0x6000 0 0 4 &PIC 81
3342
3343 /* IDSEL 0x0d */
3344 0x6800 0 0 1 &PIC 93
3345 0x6800 0 0 2 &PIC 80
3346 0x6800 0 0 3 &PIC 81
3347 0x6800 0 0 4 &PIC 91
3348 >;
3349 };
3350
3351
3352 p) Marvell Discovery CPU Error nodes
3353
3354 Represent the Discovery's CPU error handler device.
3355
3356 Required properties:
3357 - compatible : "marvell,mv64360-cpu-error"
3358 - reg : Offset and length of the register set for this device
3359 - interrupts : the interrupt number for this device
3360 - interrupt-parent : the phandle for the interrupt controller
3361 that services interrupts for this device.
3362
3363 Example Discovery CPU Error node:
3364 cpu-error@0070 {
3365 compatible = "marvell,mv64360-cpu-error";
3366 reg = <0x70 0x10 0x128 0x28>;
3367 interrupts = <3>;
3368 interrupt-parent = <&PIC>;
3369 };
3370
3371
3372 q) Marvell Discovery SRAM Controller nodes
3373
3374 Represent the Discovery's SRAM controller device.
3375
3376 Required properties:
3377 - compatible : "marvell,mv64360-sram-ctrl"
3378 - reg : Offset and length of the register set for this device
3379 - interrupts : the interrupt number for this device
3380 - interrupt-parent : the phandle for the interrupt controller
3381 that services interrupts for this device.
3382
3383 Example Discovery SRAM Controller node:
3384 sram-ctrl@0380 {
3385 compatible = "marvell,mv64360-sram-ctrl";
3386 reg = <0x380 0x80>;
3387 interrupts = <13>;
3388 interrupt-parent = <&PIC>;
3389 };
3390
3391
3392 r) Marvell Discovery PCI Error Handler nodes
3393
3394 Represent the Discovery's PCI error handler device.
3395
3396 Required properties:
3397 - compatible : "marvell,mv64360-pci-error"
3398 - reg : Offset and length of the register set for this device
3399 - interrupts : the interrupt number for this device
3400 - interrupt-parent : the phandle for the interrupt controller
3401 that services interrupts for this device.
3402
3403 Example Discovery PCI Error Handler node:
3404 pci-error@1d40 {
3405 compatible = "marvell,mv64360-pci-error";
3406 reg = <0x1d40 0x40 0xc28 0x4>;
3407 interrupts = <12>;
3408 interrupt-parent = <&PIC>;
3409 };
3410
3411
3412 s) Marvell Discovery Memory Controller nodes
3413
3414 Represent the Discovery's memory controller device.
3415
3416 Required properties:
3417 - compatible : "marvell,mv64360-mem-ctrl"
3418 - reg : Offset and length of the register set for this device
3419 - interrupts : the interrupt number for this device
3420 - interrupt-parent : the phandle for the interrupt controller
3421 that services interrupts for this device.
3422
3423 Example Discovery Memory Controller node:
3424 mem-ctrl@1400 {
3425 compatible = "marvell,mv64360-mem-ctrl";
3426 reg = <0x1400 0x60>;
3427 interrupts = <17>;
3428 interrupt-parent = <&PIC>;
3429 };
3430
3431
3432 VIII - Specifying interrupt information for devices
3433 ===================================================
3434
3435 The device tree represents the busses and devices of a hardware
3436 system in a form similar to the physical bus topology of the
3437 hardware.
3438
3439 In addition, a logical 'interrupt tree' exists which represents the
3440 hierarchy and routing of interrupts in the hardware.
3441
3442 The interrupt tree model is fully described in the
3443 document "Open Firmware Recommended Practice: Interrupt
3444 Mapping Version 0.9". The document is available at:
3445 <http://playground.sun.com/1275/practice>.
3446
3447 1) interrupts property
3448 ----------------------
3449
3450 Devices that generate interrupts to a single interrupt controller
3451 should use the conventional OF representation described in the
3452 OF interrupt mapping documentation.
3453
3454 Each device which generates interrupts must have an 'interrupt'
3455 property. The interrupt property value is an arbitrary number of
3456 of 'interrupt specifier' values which describe the interrupt or
3457 interrupts for the device.
3458
3459 The encoding of an interrupt specifier is determined by the
3460 interrupt domain in which the device is located in the
3461 interrupt tree. The root of an interrupt domain specifies in
3462 its #interrupt-cells property the number of 32-bit cells
3463 required to encode an interrupt specifier. See the OF interrupt
3464 mapping documentation for a detailed description of domains.
3465
3466 For example, the binding for the OpenPIC interrupt controller
3467 specifies an #interrupt-cells value of 2 to encode the interrupt
3468 number and level/sense information. All interrupt children in an
3469 OpenPIC interrupt domain use 2 cells per interrupt in their interrupts
3470 property.
3471
3472 The PCI bus binding specifies a #interrupt-cell value of 1 to encode
3473 which interrupt pin (INTA,INTB,INTC,INTD) is used.
3474
3475 2) interrupt-parent property
3476 ----------------------------
3477
3478 The interrupt-parent property is specified to define an explicit
3479 link between a device node and its interrupt parent in
3480 the interrupt tree. The value of interrupt-parent is the
3481 phandle of the parent node.
3482
3483 If the interrupt-parent property is not defined for a node, it's
3484 interrupt parent is assumed to be an ancestor in the node's
3485 _device tree_ hierarchy.
3486
3487 3) OpenPIC Interrupt Controllers
3488 --------------------------------
3489
3490 OpenPIC interrupt controllers require 2 cells to encode
3491 interrupt information. The first cell defines the interrupt
3492 number. The second cell defines the sense and level
3493 information.
3494
3495 Sense and level information should be encoded as follows:
3496
3497 0 = low to high edge sensitive type enabled
3498 1 = active low level sensitive type enabled
3499 2 = active high level sensitive type enabled
3500 3 = high to low edge sensitive type enabled
3501
3502 4) ISA Interrupt Controllers
3503 ----------------------------
3504
3505 ISA PIC interrupt controllers require 2 cells to encode
3506 interrupt information. The first cell defines the interrupt
3507 number. The second cell defines the sense and level
3508 information.
3509
3510 ISA PIC interrupt controllers should adhere to the ISA PIC
3511 encodings listed below:
3512
3513 0 = active low level sensitive type enabled
3514 1 = active high level sensitive type enabled
3515 2 = high to low edge sensitive type enabled
3516 3 = low to high edge sensitive type enabled
3517
3518 VIII - Specifying GPIO information for devices
3519 ==============================================
3520
3521 1) gpios property
3522 -----------------
3523
3524 Nodes that makes use of GPIOs should define them using `gpios' property,
3525 format of which is: <&gpio-controller1-phandle gpio1-specifier
3526 &gpio-controller2-phandle gpio2-specifier
3527 0 /* holes are permitted, means no GPIO 3 */
3528 &gpio-controller4-phandle gpio4-specifier
3529 ...>;
3530
3531 Note that gpio-specifier length is controller dependent.
3532
3533 gpio-specifier may encode: bank, pin position inside the bank,
3534 whether pin is open-drain and whether pin is logically inverted.
3535
3536 Example of the node using GPIOs:
3537
3538 node {
3539 gpios = <&qe_pio_e 18 0>;
3540 };
3541
3542 In this example gpio-specifier is "18 0" and encodes GPIO pin number,
3543 and empty GPIO flags as accepted by the "qe_pio_e" gpio-controller.
3544
3545 2) gpio-controller nodes
3546 ------------------------
3547
3548 Every GPIO controller node must have #gpio-cells property defined,
3549 this information will be used to translate gpio-specifiers.
3550
3551 Example of two SOC GPIO banks defined as gpio-controller nodes:
3552
3553 qe_pio_a: gpio-controller@1400 {
3554 #gpio-cells = <2>;
3555 compatible = "fsl,qe-pario-bank-a", "fsl,qe-pario-bank";
3556 reg = <0x1400 0x18>;
3557 gpio-controller;
3558 };
3559
3560 qe_pio_e: gpio-controller@1460 {
3561 #gpio-cells = <2>;
3562 compatible = "fsl,qe-pario-bank-e", "fsl,qe-pario-bank";
3563 reg = <0x1460 0x18>;
3564 gpio-controller;
3565 };
3566
3567 Appendix A - Sample SOC node for MPC8540
3568 ========================================
3569
3570 Note that the #address-cells and #size-cells for the SoC node
3571 in this example have been explicitly listed; these are likely
3572 not necessary as they are usually the same as the root node.
3573
3574 soc8540@e0000000 {
3575 #address-cells = <1>;
3576 #size-cells = <1>;
3577 #interrupt-cells = <2>;
3578 device_type = "soc";
3579 ranges = <00000000 e0000000 00100000>
3580 reg = <e0000000 00003000>;
3581 bus-frequency = <0>;
3582
3583 mdio@24520 {
3584 reg = <24520 20>;
3585 device_type = "mdio";
3586 compatible = "gianfar";
3587
3588 ethernet-phy@0 {
3589 linux,phandle = <2452000>
3590 interrupt-parent = <40000>;
3591 interrupts = <35 1>;
3592 reg = <0>;
3593 device_type = "ethernet-phy";
3594 };
3595
3596 ethernet-phy@1 {
3597 linux,phandle = <2452001>
3598 interrupt-parent = <40000>;
3599 interrupts = <35 1>;
3600 reg = <1>;
3601 device_type = "ethernet-phy";
3602 };
3603
3604 ethernet-phy@3 {
3605 linux,phandle = <2452002>
3606 interrupt-parent = <40000>;
3607 interrupts = <35 1>;
3608 reg = <3>;
3609 device_type = "ethernet-phy";
3610 };
3611
3612 };
3613
3614 ethernet@24000 {
3615 #size-cells = <0>;
3616 device_type = "network";
3617 model = "TSEC";
3618 compatible = "gianfar";
3619 reg = <24000 1000>;
3620 mac-address = [ 00 E0 0C 00 73 00 ];
3621 interrupts = <d 3 e 3 12 3>;
3622 interrupt-parent = <40000>;
3623 phy-handle = <2452000>;
3624 };
3625
3626 ethernet@25000 {
3627 #address-cells = <1>;
3628 #size-cells = <0>;
3629 device_type = "network";
3630 model = "TSEC";
3631 compatible = "gianfar";
3632 reg = <25000 1000>;
3633 mac-address = [ 00 E0 0C 00 73 01 ];
3634 interrupts = <13 3 14 3 18 3>;
3635 interrupt-parent = <40000>;
3636 phy-handle = <2452001>;
3637 };
3638
3639 ethernet@26000 {
3640 #address-cells = <1>;
3641 #size-cells = <0>;
3642 device_type = "network";
3643 model = "FEC";
3644 compatible = "gianfar";
3645 reg = <26000 1000>;
3646 mac-address = [ 00 E0 0C 00 73 02 ];
3647 interrupts = <19 3>;
3648 interrupt-parent = <40000>;
3649 phy-handle = <2452002>;
3650 };
3651
3652 serial@4500 {
3653 device_type = "serial";
3654 compatible = "ns16550";
3655 reg = <4500 100>;
3656 clock-frequency = <0>;
3657 interrupts = <1a 3>;
3658 interrupt-parent = <40000>;
3659 };
3660
3661 pic@40000 {
3662 linux,phandle = <40000>;
3663 interrupt-controller;
3664 #address-cells = <0>;
3665 reg = <40000 40000>;
3666 compatible = "chrp,open-pic";
3667 device_type = "open-pic";
3668 };
3669
3670 i2c@3000 {
3671 interrupt-parent = <40000>;
3672 interrupts = <1b 3>;
3673 reg = <3000 18>;
3674 device_type = "i2c";
3675 compatible = "fsl-i2c";
3676 dfsrr;
3677 };
3678
3679 };
This page took 0.117639 seconds and 6 git commands to generate.