PageRenderTime 59ms CodeModel.GetById 22ms RepoModel.GetById 1ms app.codeStats 0ms

/Documentation/powerpc/booting-without-of.txt

https://bitbucket.org/abioy/linux
Plain Text | 1474 lines | 1197 code | 277 blank | 0 comment | 0 complexity | 1b7eb950c8a73884eab80fa7d74f2ac0 MD5 | raw file
Possible License(s): CC-BY-SA-3.0, GPL-2.0, LGPL-2.0, AGPL-1.0
  1. Booting the Linux/ppc kernel without Open Firmware
  2. --------------------------------------------------
  3. (c) 2005 Benjamin Herrenschmidt <benh at kernel.crashing.org>,
  4. IBM Corp.
  5. (c) 2005 Becky Bruce <becky.bruce at freescale.com>,
  6. Freescale Semiconductor, FSL SOC and 32-bit additions
  7. (c) 2006 MontaVista Software, Inc.
  8. Flash chip node definition
  9. Table of Contents
  10. =================
  11. I - Introduction
  12. 1) Entry point for arch/powerpc
  13. 2) Board support
  14. II - The DT block format
  15. 1) Header
  16. 2) Device tree generalities
  17. 3) Device tree "structure" block
  18. 4) Device tree "strings" block
  19. III - Required content of the device tree
  20. 1) Note about cells and address representation
  21. 2) Note about "compatible" properties
  22. 3) Note about "name" properties
  23. 4) Note about node and property names and character set
  24. 5) Required nodes and properties
  25. a) The root node
  26. b) The /cpus node
  27. c) The /cpus/* nodes
  28. d) the /memory node(s)
  29. e) The /chosen node
  30. f) the /soc<SOCname> node
  31. IV - "dtc", the device tree compiler
  32. V - Recommendations for a bootloader
  33. VI - System-on-a-chip devices and nodes
  34. 1) Defining child nodes of an SOC
  35. 2) Representing devices without a current OF specification
  36. a) PHY nodes
  37. b) Interrupt controllers
  38. c) 4xx/Axon EMAC ethernet nodes
  39. d) Xilinx IP cores
  40. e) USB EHCI controllers
  41. f) MDIO on GPIOs
  42. g) SPI busses
  43. VII - Marvell Discovery mv64[345]6x System Controller chips
  44. 1) The /system-controller node
  45. 2) Child nodes of /system-controller
  46. a) Marvell Discovery MDIO bus
  47. b) Marvell Discovery ethernet controller
  48. c) Marvell Discovery PHY nodes
  49. d) Marvell Discovery SDMA nodes
  50. e) Marvell Discovery BRG nodes
  51. f) Marvell Discovery CUNIT nodes
  52. g) Marvell Discovery MPSCROUTING nodes
  53. h) Marvell Discovery MPSCINTR nodes
  54. i) Marvell Discovery MPSC nodes
  55. j) Marvell Discovery Watch Dog Timer nodes
  56. k) Marvell Discovery I2C nodes
  57. l) Marvell Discovery PIC (Programmable Interrupt Controller) nodes
  58. m) Marvell Discovery MPP (Multipurpose Pins) multiplexing nodes
  59. n) Marvell Discovery GPP (General Purpose Pins) nodes
  60. o) Marvell Discovery PCI host bridge node
  61. p) Marvell Discovery CPU Error nodes
  62. q) Marvell Discovery SRAM Controller nodes
  63. r) Marvell Discovery PCI Error Handler nodes
  64. s) Marvell Discovery Memory Controller nodes
  65. VIII - Specifying interrupt information for devices
  66. 1) interrupts property
  67. 2) interrupt-parent property
  68. 3) OpenPIC Interrupt Controllers
  69. 4) ISA Interrupt Controllers
  70. IX - Specifying GPIO information for devices
  71. 1) gpios property
  72. 2) gpio-controller nodes
  73. X - Specifying device power management information (sleep property)
  74. Appendix A - Sample SOC node for MPC8540
  75. Revision Information
  76. ====================
  77. May 18, 2005: Rev 0.1 - Initial draft, no chapter III yet.
  78. May 19, 2005: Rev 0.2 - Add chapter III and bits & pieces here or
  79. clarifies the fact that a lot of things are
  80. optional, the kernel only requires a very
  81. small device tree, though it is encouraged
  82. to provide an as complete one as possible.
  83. May 24, 2005: Rev 0.3 - Precise that DT block has to be in RAM
  84. - Misc fixes
  85. - Define version 3 and new format version 16
  86. for the DT block (version 16 needs kernel
  87. patches, will be fwd separately).
  88. String block now has a size, and full path
  89. is replaced by unit name for more
  90. compactness.
  91. linux,phandle is made optional, only nodes
  92. that are referenced by other nodes need it.
  93. "name" property is now automatically
  94. deduced from the unit name
  95. June 1, 2005: Rev 0.4 - Correct confusion between OF_DT_END and
  96. OF_DT_END_NODE in structure definition.
  97. - Change version 16 format to always align
  98. property data to 4 bytes. Since tokens are
  99. already aligned, that means no specific
  100. required alignment between property size
  101. and property data. The old style variable
  102. alignment would make it impossible to do
  103. "simple" insertion of properties using
  104. memmove (thanks Milton for
  105. noticing). Updated kernel patch as well
  106. - Correct a few more alignment constraints
  107. - Add a chapter about the device-tree
  108. compiler and the textural representation of
  109. the tree that can be "compiled" by dtc.
  110. November 21, 2005: Rev 0.5
  111. - Additions/generalizations for 32-bit
  112. - Changed to reflect the new arch/powerpc
  113. structure
  114. - Added chapter VI
  115. ToDo:
  116. - Add some definitions of interrupt tree (simple/complex)
  117. - Add some definitions for PCI host bridges
  118. - Add some common address format examples
  119. - Add definitions for standard properties and "compatible"
  120. names for cells that are not already defined by the existing
  121. OF spec.
  122. - Compare FSL SOC use of PCI to standard and make sure no new
  123. node definition required.
  124. - Add more information about node definitions for SOC devices
  125. that currently have no standard, like the FSL CPM.
  126. I - Introduction
  127. ================
  128. During the recent development of the Linux/ppc64 kernel, and more
  129. specifically, the addition of new platform types outside of the old
  130. IBM pSeries/iSeries pair, it was decided to enforce some strict rules
  131. regarding the kernel entry and bootloader <-> kernel interfaces, in
  132. order to avoid the degeneration that had become the ppc32 kernel entry
  133. point and the way a new platform should be added to the kernel. The
  134. legacy iSeries platform breaks those rules as it predates this scheme,
  135. but no new board support will be accepted in the main tree that
  136. doesn't follows them properly. In addition, since the advent of the
  137. arch/powerpc merged architecture for ppc32 and ppc64, new 32-bit
  138. platforms and 32-bit platforms which move into arch/powerpc will be
  139. required to use these rules as well.
  140. The main requirement that will be defined in more detail below is
  141. the presence of a device-tree whose format is defined after Open
  142. Firmware specification. However, in order to make life easier
  143. to embedded board vendors, the kernel doesn't require the device-tree
  144. to represent every device in the system and only requires some nodes
  145. and properties to be present. This will be described in detail in
  146. section III, but, for example, the kernel does not require you to
  147. create a node for every PCI device in the system. It is a requirement
  148. to have a node for PCI host bridges in order to provide interrupt
  149. routing informations and memory/IO ranges, among others. It is also
  150. recommended to define nodes for on chip devices and other busses that
  151. don't specifically fit in an existing OF specification. This creates a
  152. great flexibility in the way the kernel can then probe those and match
  153. drivers to device, without having to hard code all sorts of tables. It
  154. also makes it more flexible for board vendors to do minor hardware
  155. upgrades without significantly impacting the kernel code or cluttering
  156. it with special cases.
  157. 1) Entry point for arch/powerpc
  158. -------------------------------
  159. There is one and one single entry point to the kernel, at the start
  160. of the kernel image. That entry point supports two calling
  161. conventions:
  162. a) Boot from Open Firmware. If your firmware is compatible
  163. with Open Firmware (IEEE 1275) or provides an OF compatible
  164. client interface API (support for "interpret" callback of
  165. forth words isn't required), you can enter the kernel with:
  166. r5 : OF callback pointer as defined by IEEE 1275
  167. bindings to powerpc. Only the 32-bit client interface
  168. is currently supported
  169. r3, r4 : address & length of an initrd if any or 0
  170. The MMU is either on or off; the kernel will run the
  171. trampoline located in arch/powerpc/kernel/prom_init.c to
  172. extract the device-tree and other information from open
  173. firmware and build a flattened device-tree as described
  174. in b). prom_init() will then re-enter the kernel using
  175. the second method. This trampoline code runs in the
  176. context of the firmware, which is supposed to handle all
  177. exceptions during that time.
  178. b) Direct entry with a flattened device-tree block. This entry
  179. point is called by a) after the OF trampoline and can also be
  180. called directly by a bootloader that does not support the Open
  181. Firmware client interface. It is also used by "kexec" to
  182. implement "hot" booting of a new kernel from a previous
  183. running one. This method is what I will describe in more
  184. details in this document, as method a) is simply standard Open
  185. Firmware, and thus should be implemented according to the
  186. various standard documents defining it and its binding to the
  187. PowerPC platform. The entry point definition then becomes:
  188. r3 : physical pointer to the device-tree block
  189. (defined in chapter II) in RAM
  190. r4 : physical pointer to the kernel itself. This is
  191. used by the assembly code to properly disable the MMU
  192. in case you are entering the kernel with MMU enabled
  193. and a non-1:1 mapping.
  194. r5 : NULL (as to differentiate with method a)
  195. Note about SMP entry: Either your firmware puts your other
  196. CPUs in some sleep loop or spin loop in ROM where you can get
  197. them out via a soft reset or some other means, in which case
  198. you don't need to care, or you'll have to enter the kernel
  199. with all CPUs. The way to do that with method b) will be
  200. described in a later revision of this document.
  201. 2) Board support
  202. ----------------
  203. 64-bit kernels:
  204. Board supports (platforms) are not exclusive config options. An
  205. arbitrary set of board supports can be built in a single kernel
  206. image. The kernel will "know" what set of functions to use for a
  207. given platform based on the content of the device-tree. Thus, you
  208. should:
  209. a) add your platform support as a _boolean_ option in
  210. arch/powerpc/Kconfig, following the example of PPC_PSERIES,
  211. PPC_PMAC and PPC_MAPLE. The later is probably a good
  212. example of a board support to start from.
  213. b) create your main platform file as
  214. "arch/powerpc/platforms/myplatform/myboard_setup.c" and add it
  215. to the Makefile under the condition of your CONFIG_
  216. option. This file will define a structure of type "ppc_md"
  217. containing the various callbacks that the generic code will
  218. use to get to your platform specific code
  219. c) Add a reference to your "ppc_md" structure in the
  220. "machines" table in arch/powerpc/kernel/setup_64.c if you are
  221. a 64-bit platform.
  222. d) request and get assigned a platform number (see PLATFORM_*
  223. constants in arch/powerpc/include/asm/processor.h
  224. 32-bit embedded kernels:
  225. Currently, board support is essentially an exclusive config option.
  226. The kernel is configured for a single platform. Part of the reason
  227. for this is to keep kernels on embedded systems small and efficient;
  228. part of this is due to the fact the code is already that way. In the
  229. future, a kernel may support multiple platforms, but only if the
  230. platforms feature the same core architecture. A single kernel build
  231. cannot support both configurations with Book E and configurations
  232. with classic Powerpc architectures.
  233. 32-bit embedded platforms that are moved into arch/powerpc using a
  234. flattened device tree should adopt the merged tree practice of
  235. setting ppc_md up dynamically, even though the kernel is currently
  236. built with support for only a single platform at a time. This allows
  237. unification of the setup code, and will make it easier to go to a
  238. multiple-platform-support model in the future.
  239. NOTE: I believe the above will be true once Ben's done with the merge
  240. of the boot sequences.... someone speak up if this is wrong!
  241. To add a 32-bit embedded platform support, follow the instructions
  242. for 64-bit platforms above, with the exception that the Kconfig
  243. option should be set up such that the kernel builds exclusively for
  244. the platform selected. The processor type for the platform should
  245. enable another config option to select the specific board
  246. supported.
  247. NOTE: If Ben doesn't merge the setup files, may need to change this to
  248. point to setup_32.c
  249. I will describe later the boot process and various callbacks that
  250. your platform should implement.
  251. II - The DT block format
  252. ========================
  253. This chapter defines the actual format of the flattened device-tree
  254. passed to the kernel. The actual content of it and kernel requirements
  255. are described later. You can find example of code manipulating that
  256. format in various places, including arch/powerpc/kernel/prom_init.c
  257. which will generate a flattened device-tree from the Open Firmware
  258. representation, or the fs2dt utility which is part of the kexec tools
  259. which will generate one from a filesystem representation. It is
  260. expected that a bootloader like uboot provides a bit more support,
  261. that will be discussed later as well.
  262. Note: The block has to be in main memory. It has to be accessible in
  263. both real mode and virtual mode with no mapping other than main
  264. memory. If you are writing a simple flash bootloader, it should copy
  265. the block to RAM before passing it to the kernel.
  266. 1) Header
  267. ---------
  268. The kernel is entered with r3 pointing to an area of memory that is
  269. roughly described in arch/powerpc/include/asm/prom.h by the structure
  270. boot_param_header:
  271. struct boot_param_header {
  272. u32 magic; /* magic word OF_DT_HEADER */
  273. u32 totalsize; /* total size of DT block */
  274. u32 off_dt_struct; /* offset to structure */
  275. u32 off_dt_strings; /* offset to strings */
  276. u32 off_mem_rsvmap; /* offset to memory reserve map
  277. */
  278. u32 version; /* format version */
  279. u32 last_comp_version; /* last compatible version */
  280. /* version 2 fields below */
  281. u32 boot_cpuid_phys; /* Which physical CPU id we're
  282. booting on */
  283. /* version 3 fields below */
  284. u32 size_dt_strings; /* size of the strings block */
  285. /* version 17 fields below */
  286. u32 size_dt_struct; /* size of the DT structure block */
  287. };
  288. Along with the constants:
  289. /* Definitions used by the flattened device tree */
  290. #define OF_DT_HEADER 0xd00dfeed /* 4: version,
  291. 4: total size */
  292. #define OF_DT_BEGIN_NODE 0x1 /* Start node: full name
  293. */
  294. #define OF_DT_END_NODE 0x2 /* End node */
  295. #define OF_DT_PROP 0x3 /* Property: name off,
  296. size, content */
  297. #define OF_DT_END 0x9
  298. All values in this header are in big endian format, the various
  299. fields in this header are defined more precisely below. All
  300. "offset" values are in bytes from the start of the header; that is
  301. from the value of r3.
  302. - magic
  303. This is a magic value that "marks" the beginning of the
  304. device-tree block header. It contains the value 0xd00dfeed and is
  305. defined by the constant OF_DT_HEADER
  306. - totalsize
  307. This is the total size of the DT block including the header. The
  308. "DT" block should enclose all data structures defined in this
  309. chapter (who are pointed to by offsets in this header). That is,
  310. the device-tree structure, strings, and the memory reserve map.
  311. - off_dt_struct
  312. This is an offset from the beginning of the header to the start
  313. of the "structure" part the device tree. (see 2) device tree)
  314. - off_dt_strings
  315. This is an offset from the beginning of the header to the start
  316. of the "strings" part of the device-tree
  317. - off_mem_rsvmap
  318. This is an offset from the beginning of the header to the start
  319. of the reserved memory map. This map is a list of pairs of 64-
  320. bit integers. Each pair is a physical address and a size. The
  321. list is terminated by an entry of size 0. This map provides the
  322. kernel with a list of physical memory areas that are "reserved"
  323. and thus not to be used for memory allocations, especially during
  324. early initialization. The kernel needs to allocate memory during
  325. boot for things like un-flattening the device-tree, allocating an
  326. MMU hash table, etc... Those allocations must be done in such a
  327. way to avoid overriding critical things like, on Open Firmware
  328. capable machines, the RTAS instance, or on some pSeries, the TCE
  329. tables used for the iommu. Typically, the reserve map should
  330. contain _at least_ this DT block itself (header,total_size). If
  331. you are passing an initrd to the kernel, you should reserve it as
  332. well. You do not need to reserve the kernel image itself. The map
  333. should be 64-bit aligned.
  334. - version
  335. This is the version of this structure. Version 1 stops
  336. here. Version 2 adds an additional field boot_cpuid_phys.
  337. Version 3 adds the size of the strings block, allowing the kernel
  338. to reallocate it easily at boot and free up the unused flattened
  339. structure after expansion. Version 16 introduces a new more
  340. "compact" format for the tree itself that is however not backward
  341. compatible. Version 17 adds an additional field, size_dt_struct,
  342. allowing it to be reallocated or moved more easily (this is
  343. particularly useful for bootloaders which need to make
  344. adjustments to a device tree based on probed information). You
  345. should always generate a structure of the highest version defined
  346. at the time of your implementation. Currently that is version 17,
  347. unless you explicitly aim at being backward compatible.
  348. - last_comp_version
  349. Last compatible version. This indicates down to what version of
  350. the DT block you are backward compatible. For example, version 2
  351. is backward compatible with version 1 (that is, a kernel build
  352. for version 1 will be able to boot with a version 2 format). You
  353. should put a 1 in this field if you generate a device tree of
  354. version 1 to 3, or 16 if you generate a tree of version 16 or 17
  355. using the new unit name format.
  356. - boot_cpuid_phys
  357. This field only exist on version 2 headers. It indicate which
  358. physical CPU ID is calling the kernel entry point. This is used,
  359. among others, by kexec. If you are on an SMP system, this value
  360. should match the content of the "reg" property of the CPU node in
  361. the device-tree corresponding to the CPU calling the kernel entry
  362. point (see further chapters for more informations on the required
  363. device-tree contents)
  364. - size_dt_strings
  365. This field only exists on version 3 and later headers. It
  366. gives the size of the "strings" section of the device tree (which
  367. starts at the offset given by off_dt_strings).
  368. - size_dt_struct
  369. This field only exists on version 17 and later headers. It gives
  370. the size of the "structure" section of the device tree (which
  371. starts at the offset given by off_dt_struct).
  372. So the typical layout of a DT block (though the various parts don't
  373. need to be in that order) looks like this (addresses go from top to
  374. bottom):
  375. ------------------------------
  376. r3 -> | struct boot_param_header |
  377. ------------------------------
  378. | (alignment gap) (*) |
  379. ------------------------------
  380. | memory reserve map |
  381. ------------------------------
  382. | (alignment gap) |
  383. ------------------------------
  384. | |
  385. | device-tree structure |
  386. | |
  387. ------------------------------
  388. | (alignment gap) |
  389. ------------------------------
  390. | |
  391. | device-tree strings |
  392. | |
  393. -----> ------------------------------
  394. |
  395. |
  396. --- (r3 + totalsize)
  397. (*) The alignment gaps are not necessarily present; their presence
  398. and size are dependent on the various alignment requirements of
  399. the individual data blocks.
  400. 2) Device tree generalities
  401. ---------------------------
  402. This device-tree itself is separated in two different blocks, a
  403. structure block and a strings block. Both need to be aligned to a 4
  404. byte boundary.
  405. First, let's quickly describe the device-tree concept before detailing
  406. the storage format. This chapter does _not_ describe the detail of the
  407. required types of nodes & properties for the kernel, this is done
  408. later in chapter III.
  409. The device-tree layout is strongly inherited from the definition of
  410. the Open Firmware IEEE 1275 device-tree. It's basically a tree of
  411. nodes, each node having two or more named properties. A property can
  412. have a value or not.
  413. It is a tree, so each node has one and only one parent except for the
  414. root node who has no parent.
  415. A node has 2 names. The actual node name is generally contained in a
  416. property of type "name" in the node property list whose value is a
  417. zero terminated string and is mandatory for version 1 to 3 of the
  418. format definition (as it is in Open Firmware). Version 16 makes it
  419. optional as it can generate it from the unit name defined below.
  420. There is also a "unit name" that is used to differentiate nodes with
  421. the same name at the same level, it is usually made of the node
  422. names, the "@" sign, and a "unit address", which definition is
  423. specific to the bus type the node sits on.
  424. The unit name doesn't exist as a property per-se but is included in
  425. the device-tree structure. It is typically used to represent "path" in
  426. the device-tree. More details about the actual format of these will be
  427. below.
  428. The kernel powerpc generic code does not make any formal use of the
  429. unit address (though some board support code may do) so the only real
  430. requirement here for the unit address is to ensure uniqueness of
  431. the node unit name at a given level of the tree. Nodes with no notion
  432. of address and no possible sibling of the same name (like /memory or
  433. /cpus) may omit the unit address in the context of this specification,
  434. or use the "@0" default unit address. The unit name is used to define
  435. a node "full path", which is the concatenation of all parent node
  436. unit names separated with "/".
  437. The root node doesn't have a defined name, and isn't required to have
  438. a name property either if you are using version 3 or earlier of the
  439. format. It also has no unit address (no @ symbol followed by a unit
  440. address). The root node unit name is thus an empty string. The full
  441. path to the root node is "/".
  442. Every node which actually represents an actual device (that is, a node
  443. which isn't only a virtual "container" for more nodes, like "/cpus"
  444. is) is also required to have a "device_type" property indicating the
  445. type of node .
  446. Finally, every node that can be referenced from a property in another
  447. node is required to have a "linux,phandle" property. Real open
  448. firmware implementations provide a unique "phandle" value for every
  449. node that the "prom_init()" trampoline code turns into
  450. "linux,phandle" properties. However, this is made optional if the
  451. flattened device tree is used directly. An example of a node
  452. referencing another node via "phandle" is when laying out the
  453. interrupt tree which will be described in a further version of this
  454. document.
  455. This "linux, phandle" property is a 32-bit value that uniquely
  456. identifies a node. You are free to use whatever values or system of
  457. values, internal pointers, or whatever to generate these, the only
  458. requirement is that every node for which you provide that property has
  459. a unique value for it.
  460. Here is an example of a simple device-tree. In this example, an "o"
  461. designates a node followed by the node unit name. Properties are
  462. presented with their name followed by their content. "content"
  463. represents an ASCII string (zero terminated) value, while <content>
  464. represents a 32-bit hexadecimal value. The various nodes in this
  465. example will be discussed in a later chapter. At this point, it is
  466. only meant to give you a idea of what a device-tree looks like. I have
  467. purposefully kept the "name" and "linux,phandle" properties which
  468. aren't necessary in order to give you a better idea of what the tree
  469. looks like in practice.
  470. / o device-tree
  471. |- name = "device-tree"
  472. |- model = "MyBoardName"
  473. |- compatible = "MyBoardFamilyName"
  474. |- #address-cells = <2>
  475. |- #size-cells = <2>
  476. |- linux,phandle = <0>
  477. |
  478. o cpus
  479. | | - name = "cpus"
  480. | | - linux,phandle = <1>
  481. | | - #address-cells = <1>
  482. | | - #size-cells = <0>
  483. | |
  484. | o PowerPC,970@0
  485. | |- name = "PowerPC,970"
  486. | |- device_type = "cpu"
  487. | |- reg = <0>
  488. | |- clock-frequency = <5f5e1000>
  489. | |- 64-bit
  490. | |- linux,phandle = <2>
  491. |
  492. o memory@0
  493. | |- name = "memory"
  494. | |- device_type = "memory"
  495. | |- reg = <00000000 00000000 00000000 20000000>
  496. | |- linux,phandle = <3>
  497. |
  498. o chosen
  499. |- name = "chosen"
  500. |- bootargs = "root=/dev/sda2"
  501. |- linux,phandle = <4>
  502. This tree is almost a minimal tree. It pretty much contains the
  503. minimal set of required nodes and properties to boot a linux kernel;
  504. that is, some basic model informations at the root, the CPUs, and the
  505. physical memory layout. It also includes misc information passed
  506. through /chosen, like in this example, the platform type (mandatory)
  507. and the kernel command line arguments (optional).
  508. The /cpus/PowerPC,970@0/64-bit property is an example of a
  509. property without a value. All other properties have a value. The
  510. significance of the #address-cells and #size-cells properties will be
  511. explained in chapter IV which defines precisely the required nodes and
  512. properties and their content.
  513. 3) Device tree "structure" block
  514. The structure of the device tree is a linearized tree structure. The
  515. "OF_DT_BEGIN_NODE" token starts a new node, and the "OF_DT_END_NODE"
  516. ends that node definition. Child nodes are simply defined before
  517. "OF_DT_END_NODE" (that is nodes within the node). A 'token' is a 32
  518. bit value. The tree has to be "finished" with a OF_DT_END token
  519. Here's the basic structure of a single node:
  520. * token OF_DT_BEGIN_NODE (that is 0x00000001)
  521. * for version 1 to 3, this is the node full path as a zero
  522. terminated string, starting with "/". For version 16 and later,
  523. this is the node unit name only (or an empty string for the
  524. root node)
  525. * [align gap to next 4 bytes boundary]
  526. * for each property:
  527. * token OF_DT_PROP (that is 0x00000003)
  528. * 32-bit value of property value size in bytes (or 0 if no
  529. value)
  530. * 32-bit value of offset in string block of property name
  531. * property value data if any
  532. * [align gap to next 4 bytes boundary]
  533. * [child nodes if any]
  534. * token OF_DT_END_NODE (that is 0x00000002)
  535. So the node content can be summarized as a start token, a full path,
  536. a list of properties, a list of child nodes, and an end token. Every
  537. child node is a full node structure itself as defined above.
  538. NOTE: The above definition requires that all property definitions for
  539. a particular node MUST precede any subnode definitions for that node.
  540. Although the structure would not be ambiguous if properties and
  541. subnodes were intermingled, the kernel parser requires that the
  542. properties come first (up until at least 2.6.22). Any tools
  543. manipulating a flattened tree must take care to preserve this
  544. constraint.
  545. 4) Device tree "strings" block
  546. In order to save space, property names, which are generally redundant,
  547. are stored separately in the "strings" block. This block is simply the
  548. whole bunch of zero terminated strings for all property names
  549. concatenated together. The device-tree property definitions in the
  550. structure block will contain offset values from the beginning of the
  551. strings block.
  552. III - Required content of the device tree
  553. =========================================
  554. WARNING: All "linux,*" properties defined in this document apply only
  555. to a flattened device-tree. If your platform uses a real
  556. implementation of Open Firmware or an implementation compatible with
  557. the Open Firmware client interface, those properties will be created
  558. by the trampoline code in the kernel's prom_init() file. For example,
  559. that's where you'll have to add code to detect your board model and
  560. set the platform number. However, when using the flattened device-tree
  561. entry point, there is no prom_init() pass, and thus you have to
  562. provide those properties yourself.
  563. 1) Note about cells and address representation
  564. ----------------------------------------------
  565. The general rule is documented in the various Open Firmware
  566. documentations. If you choose to describe a bus with the device-tree
  567. and there exist an OF bus binding, then you should follow the
  568. specification. However, the kernel does not require every single
  569. device or bus to be described by the device tree.
  570. In general, the format of an address for a device is defined by the
  571. parent bus type, based on the #address-cells and #size-cells
  572. properties. Note that the parent's parent definitions of #address-cells
  573. and #size-cells are not inherited so every node with children must specify
  574. them. The kernel requires the root node to have those properties defining
  575. addresses format for devices directly mapped on the processor bus.
  576. Those 2 properties define 'cells' for representing an address and a
  577. size. A "cell" is a 32-bit number. For example, if both contain 2
  578. like the example tree given above, then an address and a size are both
  579. composed of 2 cells, and each is a 64-bit number (cells are
  580. concatenated and expected to be in big endian format). Another example
  581. is the way Apple firmware defines them, with 2 cells for an address
  582. and one cell for a size. Most 32-bit implementations should define
  583. #address-cells and #size-cells to 1, which represents a 32-bit value.
  584. Some 32-bit processors allow for physical addresses greater than 32
  585. bits; these processors should define #address-cells as 2.
  586. "reg" properties are always a tuple of the type "address size" where
  587. the number of cells of address and size is specified by the bus
  588. #address-cells and #size-cells. When a bus supports various address
  589. spaces and other flags relative to a given address allocation (like
  590. prefetchable, etc...) those flags are usually added to the top level
  591. bits of the physical address. For example, a PCI physical address is
  592. made of 3 cells, the bottom two containing the actual address itself
  593. while the top cell contains address space indication, flags, and pci
  594. bus & device numbers.
  595. For busses that support dynamic allocation, it's the accepted practice
  596. to then not provide the address in "reg" (keep it 0) though while
  597. providing a flag indicating the address is dynamically allocated, and
  598. then, to provide a separate "assigned-addresses" property that
  599. contains the fully allocated addresses. See the PCI OF bindings for
  600. details.
  601. In general, a simple bus with no address space bits and no dynamic
  602. allocation is preferred if it reflects your hardware, as the existing
  603. kernel address parsing functions will work out of the box. If you
  604. define a bus type with a more complex address format, including things
  605. like address space bits, you'll have to add a bus translator to the
  606. prom_parse.c file of the recent kernels for your bus type.
  607. The "reg" property only defines addresses and sizes (if #size-cells is
  608. non-0) within a given bus. In order to translate addresses upward
  609. (that is into parent bus addresses, and possibly into CPU physical
  610. addresses), all busses must contain a "ranges" property. If the
  611. "ranges" property is missing at a given level, it's assumed that
  612. translation isn't possible, i.e., the registers are not visible on the
  613. parent bus. The format of the "ranges" property for a bus is a list
  614. of:
  615. bus address, parent bus address, size
  616. "bus address" is in the format of the bus this bus node is defining,
  617. that is, for a PCI bridge, it would be a PCI address. Thus, (bus
  618. address, size) defines a range of addresses for child devices. "parent
  619. bus address" is in the format of the parent bus of this bus. For
  620. example, for a PCI host controller, that would be a CPU address. For a
  621. PCI<->ISA bridge, that would be a PCI address. It defines the base
  622. address in the parent bus where the beginning of that range is mapped.
  623. For a new 64-bit powerpc board, I recommend either the 2/2 format or
  624. Apple's 2/1 format which is slightly more compact since sizes usually
  625. fit in a single 32-bit word. New 32-bit powerpc boards should use a
  626. 1/1 format, unless the processor supports physical addresses greater
  627. than 32-bits, in which case a 2/1 format is recommended.
  628. Alternatively, the "ranges" property may be empty, indicating that the
  629. registers are visible on the parent bus using an identity mapping
  630. translation. In other words, the parent bus address space is the same
  631. as the child bus address space.
  632. 2) Note about "compatible" properties
  633. -------------------------------------
  634. These properties are optional, but recommended in devices and the root
  635. node. The format of a "compatible" property is a list of concatenated
  636. zero terminated strings. They allow a device to express its
  637. compatibility with a family of similar devices, in some cases,
  638. allowing a single driver to match against several devices regardless
  639. of their actual names.
  640. 3) Note about "name" properties
  641. -------------------------------
  642. While earlier users of Open Firmware like OldWorld macintoshes tended
  643. to use the actual device name for the "name" property, it's nowadays
  644. considered a good practice to use a name that is closer to the device
  645. class (often equal to device_type). For example, nowadays, ethernet
  646. controllers are named "ethernet", an additional "model" property
  647. defining precisely the chip type/model, and "compatible" property
  648. defining the family in case a single driver can driver more than one
  649. of these chips. However, the kernel doesn't generally put any
  650. restriction on the "name" property; it is simply considered good
  651. practice to follow the standard and its evolutions as closely as
  652. possible.
  653. Note also that the new format version 16 makes the "name" property
  654. optional. If it's absent for a node, then the node's unit name is then
  655. used to reconstruct the name. That is, the part of the unit name
  656. before the "@" sign is used (or the entire unit name if no "@" sign
  657. is present).
  658. 4) Note about node and property names and character set
  659. -------------------------------------------------------
  660. While open firmware provides more flexible usage of 8859-1, this
  661. specification enforces more strict rules. Nodes and properties should
  662. be comprised only of ASCII characters 'a' to 'z', '0' to
  663. '9', ',', '.', '_', '+', '#', '?', and '-'. Node names additionally
  664. allow uppercase characters 'A' to 'Z' (property names should be
  665. lowercase. The fact that vendors like Apple don't respect this rule is
  666. irrelevant here). Additionally, node and property names should always
  667. begin with a character in the range 'a' to 'z' (or 'A' to 'Z' for node
  668. names).
  669. The maximum number of characters for both nodes and property names
  670. is 31. In the case of node names, this is only the leftmost part of
  671. a unit name (the pure "name" property), it doesn't include the unit
  672. address which can extend beyond that limit.
  673. 5) Required nodes and properties
  674. --------------------------------
  675. These are all that are currently required. However, it is strongly
  676. recommended that you expose PCI host bridges as documented in the
  677. PCI binding to open firmware, and your interrupt tree as documented
  678. in OF interrupt tree specification.
  679. a) The root node
  680. The root node requires some properties to be present:
  681. - model : this is your board name/model
  682. - #address-cells : address representation for "root" devices
  683. - #size-cells: the size representation for "root" devices
  684. - device_type : This property shouldn't be necessary. However, if
  685. you decide to create a device_type for your root node, make sure it
  686. is _not_ "chrp" unless your platform is a pSeries or PAPR compliant
  687. one for 64-bit, or a CHRP-type machine for 32-bit as this will
  688. matched by the kernel this way.
  689. Additionally, some recommended properties are:
  690. - compatible : the board "family" generally finds its way here,
  691. for example, if you have 2 board models with a similar layout,
  692. that typically get driven by the same platform code in the
  693. kernel, you would use a different "model" property but put a
  694. value in "compatible". The kernel doesn't directly use that
  695. value but it is generally useful.
  696. The root node is also generally where you add additional properties
  697. specific to your board like the serial number if any, that sort of
  698. thing. It is recommended that if you add any "custom" property whose
  699. name may clash with standard defined ones, you prefix them with your
  700. vendor name and a comma.
  701. b) The /cpus node
  702. This node is the parent of all individual CPU nodes. It doesn't
  703. have any specific requirements, though it's generally good practice
  704. to have at least:
  705. #address-cells = <00000001>
  706. #size-cells = <00000000>
  707. This defines that the "address" for a CPU is a single cell, and has
  708. no meaningful size. This is not necessary but the kernel will assume
  709. that format when reading the "reg" properties of a CPU node, see
  710. below
  711. c) The /cpus/* nodes
  712. So under /cpus, you are supposed to create a node for every CPU on
  713. the machine. There is no specific restriction on the name of the
  714. CPU, though It's common practice to call it PowerPC,<name>. For
  715. example, Apple uses PowerPC,G5 while IBM uses PowerPC,970FX.
  716. Required properties:
  717. - device_type : has to be "cpu"
  718. - reg : This is the physical CPU number, it's a single 32-bit cell
  719. and is also used as-is as the unit number for constructing the
  720. unit name in the full path. For example, with 2 CPUs, you would
  721. have the full path:
  722. /cpus/PowerPC,970FX@0
  723. /cpus/PowerPC,970FX@1
  724. (unit addresses do not require leading zeroes)
  725. - d-cache-block-size : one cell, L1 data cache block size in bytes (*)
  726. - i-cache-block-size : one cell, L1 instruction cache block size in
  727. bytes
  728. - d-cache-size : one cell, size of L1 data cache in bytes
  729. - i-cache-size : one cell, size of L1 instruction cache in bytes
  730. (*) The cache "block" size is the size on which the cache management
  731. instructions operate. Historically, this document used the cache
  732. "line" size here which is incorrect. The kernel will prefer the cache
  733. block size and will fallback to cache line size for backward
  734. compatibility.
  735. Recommended properties:
  736. - timebase-frequency : a cell indicating the frequency of the
  737. timebase in Hz. This is not directly used by the generic code,
  738. but you are welcome to copy/paste the pSeries code for setting
  739. the kernel timebase/decrementer calibration based on this
  740. value.
  741. - clock-frequency : a cell indicating the CPU core clock frequency
  742. in Hz. A new property will be defined for 64-bit values, but if
  743. your frequency is < 4Ghz, one cell is enough. Here as well as
  744. for the above, the common code doesn't use that property, but
  745. you are welcome to re-use the pSeries or Maple one. A future
  746. kernel version might provide a common function for this.
  747. - d-cache-line-size : one cell, L1 data cache line size in bytes
  748. if different from the block size
  749. - i-cache-line-size : one cell, L1 instruction cache line size in
  750. bytes if different from the block size
  751. You are welcome to add any property you find relevant to your board,
  752. like some information about the mechanism used to soft-reset the
  753. CPUs. For example, Apple puts the GPIO number for CPU soft reset
  754. lines in there as a "soft-reset" property since they start secondary
  755. CPUs by soft-resetting them.
  756. d) the /memory node(s)
  757. To define the physical memory layout of your board, you should
  758. create one or more memory node(s). You can either create a single
  759. node with all memory ranges in its reg property, or you can create
  760. several nodes, as you wish. The unit address (@ part) used for the
  761. full path is the address of the first range of memory defined by a
  762. given node. If you use a single memory node, this will typically be
  763. @0.
  764. Required properties:
  765. - device_type : has to be "memory"
  766. - reg : This property contains all the physical memory ranges of
  767. your board. It's a list of addresses/sizes concatenated
  768. together, with the number of cells of each defined by the
  769. #address-cells and #size-cells of the root node. For example,
  770. with both of these properties being 2 like in the example given
  771. earlier, a 970 based machine with 6Gb of RAM could typically
  772. have a "reg" property here that looks like:
  773. 00000000 00000000 00000000 80000000
  774. 00000001 00000000 00000001 00000000
  775. That is a range starting at 0 of 0x80000000 bytes and a range
  776. starting at 0x100000000 and of 0x100000000 bytes. You can see
  777. that there is no memory covering the IO hole between 2Gb and
  778. 4Gb. Some vendors prefer splitting those ranges into smaller
  779. segments, but the kernel doesn't care.
  780. e) The /chosen node
  781. This node is a bit "special". Normally, that's where open firmware
  782. puts some variable environment information, like the arguments, or
  783. the default input/output devices.
  784. This specification makes a few of these mandatory, but also defines
  785. some linux-specific properties that would be normally constructed by
  786. the prom_init() trampoline when booting with an OF client interface,
  787. but that you have to provide yourself when using the flattened format.
  788. Recommended properties:
  789. - bootargs : This zero-terminated string is passed as the kernel
  790. command line
  791. - linux,stdout-path : This is the full path to your standard
  792. console device if any. Typically, if you have serial devices on
  793. your board, you may want to put the full path to the one set as
  794. the default console in the firmware here, for the kernel to pick
  795. it up as its own default console. If you look at the function
  796. set_preferred_console() in arch/ppc64/kernel/setup.c, you'll see
  797. that the kernel tries to find out the default console and has
  798. knowledge of various types like 8250 serial ports. You may want
  799. to extend this function to add your own.
  800. Note that u-boot creates and fills in the chosen node for platforms
  801. that use it.
  802. (Note: a practice that is now obsolete was to include a property
  803. under /chosen called interrupt-controller which had a phandle value
  804. that pointed to the main interrupt controller)
  805. f) the /soc<SOCname> node
  806. This node is used to represent a system-on-a-chip (SOC) and must be
  807. present if the processor is a SOC. The top-level soc node contains
  808. information that is global to all devices on the SOC. The node name
  809. should contain a unit address for the SOC, which is the base address
  810. of the memory-mapped register set for the SOC. The name of an soc
  811. node should start with "soc", and the remainder of the name should
  812. represent the part number for the soc. For example, the MPC8540's
  813. soc node would be called "soc8540".
  814. Required properties:
  815. - device_type : Should be "soc"
  816. - ranges : Should be defined as specified in 1) to describe the
  817. translation of SOC addresses for memory mapped SOC registers.
  818. - bus-frequency: Contains the bus frequency for the SOC node.
  819. Typically, the value of this field is filled in by the boot
  820. loader.
  821. Recommended properties:
  822. - reg : This property defines the address and size of the
  823. memory-mapped registers that are used for the SOC node itself.
  824. It does not include the child device registers - these will be
  825. defined inside each child node. The address specified in the
  826. "reg" property should match the unit address of the SOC node.
  827. - #address-cells : Address representation for "soc" devices. The
  828. format of this field may vary depending on whether or not the
  829. device registers are memory mapped. For memory mapped
  830. registers, this field represents the number of cells needed to
  831. represent the address of the registers. For SOCs that do not
  832. use MMIO, a special address format should be defined that
  833. contains enough cells to represent the required information.
  834. See 1) above for more details on defining #address-cells.
  835. - #size-cells : Size representation for "soc" devices
  836. - #interrupt-cells : Defines the width of cells used to represent
  837. interrupts. Typically this value is <2>, which includes a
  838. 32-bit number that represents the interrupt number, and a
  839. 32-bit number that represents the interrupt sense and level.
  840. This field is only needed if the SOC contains an interrupt
  841. controller.
  842. The SOC node may contain child nodes for each SOC device that the
  843. platform uses. Nodes should not be created for devices which exist
  844. on the SOC but are not used by a particular platform. See chapter VI
  845. for more information on how to specify devices that are part of a SOC.
  846. Example SOC node for the MPC8540:
  847. soc8540@e0000000 {
  848. #address-cells = <1>;
  849. #size-cells = <1>;
  850. #interrupt-cells = <2>;
  851. device_type = "soc";
  852. ranges = <00000000 e0000000 00100000>
  853. reg = <e0000000 00003000>;
  854. bus-frequency = <0>;
  855. }
  856. IV - "dtc", the device tree compiler
  857. ====================================
  858. dtc source code can be found at
  859. <http://ozlabs.org/~dgibson/dtc/dtc.tar.gz>
  860. WARNING: This version is still in early development stage; the
  861. resulting device-tree "blobs" have not yet been validated with the
  862. kernel. The current generated bloc lacks a useful reserve map (it will
  863. be fixed to generate an empty one, it's up to the bootloader to fill
  864. it up) among others. The error handling needs work, bugs are lurking,
  865. etc...
  866. dtc basically takes a device-tree in a given format and outputs a
  867. device-tree in another format. The currently supported formats are:
  868. Input formats:
  869. -------------
  870. - "dtb": "blob" format, that is a flattened device-tree block
  871. with
  872. header all in a binary blob.
  873. - "dts": "source" format. This is a text file containing a
  874. "source" for a device-tree. The format is defined later in this
  875. chapter.
  876. - "fs" format. This is a representation equivalent to the
  877. output of /proc/device-tree, that is nodes are directories and
  878. properties are files
  879. Output formats:
  880. ---------------
  881. - "dtb": "blob" format
  882. - "dts": "source" format
  883. - "asm": assembly language file. This is a file that can be
  884. sourced by gas to generate a device-tree "blob". That file can
  885. then simply be added to your Makefile. Additionally, the
  886. assembly file exports some symbols that can be used.
  887. The syntax of the dtc tool is
  888. dtc [-I <input-format>] [-O <output-format>]
  889. [-o output-filename] [-V output_version] input_filename
  890. The "output_version" defines what version of the "blob" format will be
  891. generated. Supported versions are 1,2,3 and 16. The default is
  892. currently version 3 but that may change in the future to version 16.
  893. Additionally, dtc performs various sanity checks on the tree, like the
  894. uniqueness of linux, phandle properties, validity of strings, etc...
  895. The format of the .dts "source" file is "C" like, supports C and C++
  896. style comments.
  897. / {
  898. }
  899. The above is the "device-tree" definition. It's the only statement
  900. supported currently at the toplevel.
  901. / {
  902. property1 = "string_value"; /* define a property containing a 0
  903. * terminated string
  904. */
  905. property2 = <1234abcd>; /* define a property containing a
  906. * numerical 32-bit value (hexadecimal)
  907. */
  908. property3 = <12345678 12345678 deadbeef>;
  909. /* define a property containing 3
  910. * numerical 32-bit values (cells) in
  911. * hexadecimal
  912. */
  913. property4 = [0a 0b 0c 0d de ea ad be ef];
  914. /* define a property whose content is
  915. * an arbitrary array of bytes
  916. */
  917. childnode@addresss { /* define a child node named "childnode"
  918. * whose unit name is "childnode at
  919. * address"
  920. */
  921. childprop = "hello\n"; /* define a property "childprop" of
  922. * childnode (in this case, a string)
  923. */
  924. };
  925. };
  926. Nodes can contain other nodes etc... thus defining the hierarchical
  927. structure of the tree.
  928. Strings support common escape sequences from C: "\n", "\t", "\r",
  929. "\(octal value)", "\x(hex value)".
  930. It is also suggested that you pipe your source file through cpp (gcc
  931. preprocessor) so you can use #include's, #define for constants, etc...
  932. Finally, various options are planned but not yet implemented, like
  933. automatic generation of phandles, labels (exported to the asm file so
  934. you can point to a property content and change it easily from whatever
  935. you link the device-tree with), label or path instead of numeric value
  936. in some cells to "point" to a node (replaced by a phandle at compile
  937. time), export of reserve map address to the asm file, ability to
  938. specify reserve map content at compile time, etc...
  939. We may provide a .h include file with common definitions of that
  940. proves useful for some properties (like building PCI properties or
  941. interrupt maps) though it may be better to add a notion of struct
  942. definitions to the compiler...
  943. V - Recommendations for a bootloader
  944. ====================================
  945. Here are some various ideas/recommendations that have been proposed
  946. while all this has been defined and implemented.
  947. - The bootloader may want to be able to use the device-tree itself
  948. and may want to manipulate it (to add/edit some properties,
  949. like physical memory size or kernel arguments). At this point, 2
  950. choices can be made. Either the bootloader works directly on the
  951. flattened format, or the bootloader has its own internal tree
  952. representation with pointers (similar to the kernel one) and
  953. re-flattens the tree when booting the kernel. The former is a bit
  954. more difficult to edit/modify, the later requires probably a bit
  955. more code to handle the tree structure. Note that the structure
  956. format has been designed so it's relatively easy to "insert"
  957. properties or nodes or delete them by just memmoving things
  958. around. It contains no internal offsets or pointers for this
  959. purpose.
  960. - An example of code for iterating nodes & retrieving properties
  961. directly from the flattened tree format can be found in the kernel
  962. file arch/ppc64/kernel/prom.c, look at scan_flat_dt() function,
  963. its usage in early_init_devtree(), and the corresponding various
  964. early_init_dt_scan_*() callbacks. That code can be re-used in a
  965. GPL bootloader, and as the author of that code, I would be happy
  966. to discuss possible free licensing to any vendor who wishes to
  967. integrate all or part of this code into a non-GPL bootloader.
  968. VI - System-on-a-chip devices and nodes
  969. =======================================
  970. Many companies are now starting to develop system-on-a-chip
  971. processors, where the processor core (CPU) and many peripheral devices
  972. exist on a single piece of silicon. For these SOCs, an SOC node
  973. should be used that defines child nodes for the devices that make
  974. up the SOC. While platforms are not required to use this model in
  975. order to boot the kernel, it is highly encouraged that all SOC
  976. implementations define as complete a flat-device-tree as possible to
  977. describe the devices on the SOC. This will allow for the
  978. genericization of much of the kernel code.
  979. 1) Defining child nodes of an SOC
  980. ---------------------------------
  981. Each device that is part of an SOC may have its own node entry inside
  982. the SOC node. For each device that is included in the SOC, the unit
  983. address property represents the address offset for this device's
  984. memory-mapped registers in the parent's address space. The parent's
  985. address space is defined by the "ranges" property in the top-level soc
  986. node. The "reg" property for each node that exists directly under the
  987. SOC node should contain the address mapping from the child address space
  988. to the parent SOC address space and the size of the device's
  989. memory-mapped register file.
  990. For many devices that may exist inside an SOC, there are predefined
  991. specifications for the format of the device tree node. All SOC child
  992. nodes should follow these specifications, except where noted in this
  993. document.
  994. See appendix A for an example partial SOC node definition for the
  995. MPC8540.
  996. 2) Representing devices without a current OF specification
  997. ----------------------------------------------------------
  998. Currently, there are many devices on SOCs that do not have a standard
  999. representation pre-defined as part of the open firmware
  1000. specifications, mainly because the boards that contain these SOCs are
  1001. not currently booted using open firmware. This section contains
  1002. descriptions for the SOC devices for which new nodes have been
  1003. defined; this list will expand as more and more SOC-containing
  1004. platforms are moved over to use the flattened-device-tree model.
  1005. VII - Specifying interrupt information for devices
  1006. ===================================================
  1007. The device tree represents the busses and devices of a hardware
  1008. system in a form similar to the physical bus topology of the
  1009. hardware.
  1010. In addition, a logical 'interrupt tree' exists which represents the
  1011. hierarchy and routing of interrupts in the hardware.
  1012. The interrupt tree model is fully described in the
  1013. document "Open Firmware Recommended Practice: Interrupt
  1014. Mapping Version 0.9". The document is available at:
  1015. <http://playground.sun.com/1275/practice>.
  1016. 1) interrupts property
  1017. ----------------------
  1018. Devices that generate interrupts to a single interrupt controller
  1019. should use the conventional OF representation described in the
  1020. OF interrupt mapping documentation.
  1021. Each device which generates interrupts must have an 'interrupt'
  1022. property. The interrupt property value is an arbitrary number of
  1023. of 'interrupt specifier' values which describe the interrupt or
  1024. interrupts for the device.
  1025. The encoding of an interrupt specifier is determined by the
  1026. interrupt domain in which the device is located in the
  1027. interrupt tree. The root of an interrupt domain specifies in
  1028. its #interrupt-cells property the number of 32-bit cells
  1029. required to encode an interrupt specifier. See the OF interrupt
  1030. mapping documentation for a detailed description of domains.
  1031. For example, the binding for the OpenPIC interrupt controller
  1032. specifies an #interrupt-cells value of 2 to encode the interrupt
  1033. number and level/sense information. All interrupt children in an
  1034. OpenPIC interrupt domain use 2 cells per interrupt in their interrupts
  1035. property.
  1036. The PCI bus binding specifies a #interrupt-cell value of 1 to encode
  1037. which interrupt pin (INTA,INTB,INTC,INTD) is used.
  1038. 2) interrupt-parent property
  1039. ----------------------------
  1040. The interrupt-parent property is specified to define an explicit
  1041. link between a device node and its interrupt parent in
  1042. the interrupt tree. The value of interrupt-parent is the
  1043. phandle of the parent node.
  1044. If the interrupt-parent property is not defined for a node, it's
  1045. interrupt parent is assumed to be an ancestor in the node's
  1046. _device tree_ hierarchy.
  1047. 3) OpenPIC Interrupt Controllers
  1048. --------------------------------
  1049. OpenPIC interrupt controllers require 2 cells to encode
  1050. interrupt information. The first cell defines the interrupt
  1051. number. The second cell defines the sense and level
  1052. information.
  1053. Sense and level information should be encoded as follows:
  1054. 0 = low to high edge sensitive type enabled
  1055. 1 = active low level sensitive type enabled
  1056. 2 = active high level sensitive type enabled
  1057. 3 = high to low edge sensitive type enabled
  1058. 4) ISA Interrupt Controllers
  1059. ----------------------------
  1060. ISA PIC interrupt controllers require 2 cells to encode
  1061. interrupt information. The first cell defines the interrupt
  1062. number. The second cell defines the sense and level
  1063. information.
  1064. ISA PIC interrupt controllers should adhere to the ISA PIC
  1065. encodings listed below:
  1066. 0 = active low level sensitive type enabled
  1067. 1 = active high level sensitive type enabled
  1068. 2 = high to low edge sensitive type enabled
  1069. 3 = low to high edge sensitive type enabled
  1070. VIII - Specifying Device Power Management Information (sleep property)
  1071. ===================================================================
  1072. Devices on SOCs often have mechanisms for placing devices into low-power
  1073. states that are decoupled from the devices' own register blocks. Sometimes,
  1074. this information is more complicated than a cell-index property can
  1075. reasonably describe. Thus, each device controlled in such a manner
  1076. may contain a "sleep" property which describes these connections.
  1077. The sleep property consists of one or more sleep resources, each of
  1078. which consists of a phandle to a sleep controller, followed by a
  1079. controller-specific sleep specifier of zero or more cells.
  1080. The semantics of what type of low power modes are possible are defined
  1081. by the sleep controller. Some examples of the types of low power modes
  1082. that may be supported are:
  1083. - Dynamic: The device may be disabled or enabled at any time.
  1084. - System Suspend: The device may request to be disabled or remain
  1085. awake during system suspend, but will not be disabled until then.
  1086. - Permanent: The device is disabled permanently (until the next hard
  1087. reset).
  1088. Some devices may share a clock domain with each other, such that they should
  1089. only be suspended when none of the devices are in use. Where reasonable,
  1090. such nodes should be placed on a virtual bus, where the bus has the sleep
  1091. property. If the clock domain is shared among devices that cannot be
  1092. reasonably grouped in this manner, then create a virtual sleep controller
  1093. (similar to an interrupt nexus, except that defining a standardized
  1094. sleep-map should wait until its necessity is demonstrated).
  1095. Appendix A - Sample SOC node for MPC8540
  1096. ========================================
  1097. soc@e0000000 {
  1098. #address-cells = <1>;
  1099. #size-cells = <1>;
  1100. compatible = "fsl,mpc8540-ccsr", "simple-bus";
  1101. device_type = "soc";
  1102. ranges = <0x00000000 0xe0000000 0x00100000>
  1103. bus-frequency = <0>;
  1104. interrupt-parent = <&pic>;
  1105. ethernet@24000 {
  1106. #address-cells = <1>;
  1107. #size-cells = <1>;
  1108. device_type = "network";
  1109. model = "TSEC";
  1110. compatible = "gianfar", "simple-bus";
  1111. reg = <0x24000 0x1000>;
  1112. local-mac-address = [ 00 E0 0C 00 73 00 ];
  1113. interrupts = <29 2 30 2 34 2>;
  1114. phy-handle = <&phy0>;
  1115. sleep = <&pmc 00000080>;
  1116. ranges;
  1117. mdio@24520 {
  1118. reg = <0x24520 0x20>;
  1119. compatible = "fsl,gianfar-mdio";
  1120. phy0: ethernet-phy@0 {
  1121. interrupts = <5 1>;
  1122. reg = <0>;
  1123. device_type = "ethernet-phy";
  1124. };
  1125. phy1: ethernet-phy@1 {
  1126. interrupts = <5 1>;
  1127. reg = <1>;
  1128. device_type = "ethernet-phy";
  1129. };
  1130. phy3: ethernet-phy@3 {
  1131. interrupts = <7 1>;
  1132. reg = <3>;
  1133. device_type = "ethernet-phy";
  1134. };
  1135. };
  1136. };
  1137. ethernet@25000 {
  1138. device_type = "network";
  1139. model = "TSEC";
  1140. compatible = "gianfar";
  1141. reg = <0x25000 0x1000>;
  1142. local-mac-address = [ 00 E0 0C 00 73 01 ];
  1143. interrupts = <13 2 14 2 18 2>;
  1144. phy-handle = <&phy1>;
  1145. sleep = <&pmc 00000040>;
  1146. };
  1147. ethernet@26000 {
  1148. device_type = "network";
  1149. model = "FEC";
  1150. compatible = "gianfar";
  1151. reg = <0x26000 0x1000>;
  1152. local-mac-address = [ 00 E0 0C 00 73 02 ];
  1153. interrupts = <41 2>;
  1154. phy-handle = <&phy3>;
  1155. sleep = <&pmc 00000020>;
  1156. };
  1157. serial@4500 {
  1158. #address-cells = <1>;
  1159. #size-cells = <1>;
  1160. compatible = "fsl,mpc8540-duart", "simple-bus";
  1161. sleep = <&pmc 00000002>;
  1162. ranges;
  1163. serial@4500 {
  1164. device_type = "serial";
  1165. compatible = "ns16550";
  1166. reg = <0x4500 0x100>;
  1167. clock-frequency = <0>;
  1168. interrupts = <42 2>;
  1169. };
  1170. serial@4600 {
  1171. device_type = "serial";
  1172. compatible = "ns16550";
  1173. reg = <0x4600 0x100>;
  1174. clock-frequency = <0>;
  1175. interrupts = <42 2>;
  1176. };
  1177. };
  1178. pic: pic@40000 {
  1179. interrupt-controller;
  1180. #address-cells = <0>;
  1181. #interrupt-cells = <2>;
  1182. reg = <0x40000 0x40000>;
  1183. compatible = "chrp,open-pic";
  1184. device_type = "open-pic";
  1185. };
  1186. i2c@3000 {
  1187. interrupts = <43 2>;
  1188. reg = <0x3000 0x100>;
  1189. compatible = "fsl-i2c";
  1190. dfsrr;
  1191. sleep = <&pmc 00000004>;
  1192. };
  1193. pmc: power@e0070 {
  1194. compatible = "fsl,mpc8540-pmc", "fsl,mpc8548-pmc";
  1195. reg = <0xe0070 0x20>;
  1196. };
  1197. };