booting-without-of.txt 59 KB

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