]> git.sur5r.net Git - u-boot/blob - doc/device-tree-bindings/chosen.txt
rockchip: pinctrl: rk3399: add GMAC (RGMII only) support
[u-boot] / doc / device-tree-bindings / chosen.txt
1 The chosen node
2 ---------------
3 The chosen node does not represent a real device, but serves as a place
4 for passing data like which serial device to used to print the logs etc
5
6
7 stdout-path property
8 --------------------
9 Device trees may specify the device to be used for boot console output
10 with a stdout-path property under /chosen.
11
12 Example
13 -------
14 / {
15         chosen {
16                 stdout-path = "/serial@f00:115200";
17         };
18
19         serial@f00 {
20                 compatible = "vendor,some-uart";
21                 reg = <0xf00 0x10>;
22         };
23 };
24
25 tick-timer property
26 -------------------
27 In a system there are multiple timers, specify which timer to be used
28 as the tick-timer. Earlier it was hardcoded in the timer driver now
29 since device tree has all the timer nodes. Specify which timer to be
30 used as tick timer.
31
32 Example
33 -------
34 / {
35         chosen {
36                 tick-timer = "/timer2@f00";
37         };
38
39         timer2@f00 {
40                 compatible = "vendor,some-timer";
41                 reg = <0xf00 0x10>;
42         };
43 };