Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 2 | /* |
| 3 | * Test device tree file for dtoc |
| 4 | * |
| 5 | * Copyright 2017 Google, Inc |
Simon Glass | c20ee0e | 2017-08-29 14:15:50 -0600 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /dts-v1/; |
| 9 | |
| 10 | / { |
| 11 | #address-cells = <2>; |
| 12 | #size-cells = <2>; |
| 13 | |
| 14 | test1 { |
| 15 | u-boot,dm-pre-reloc; |
| 16 | compatible = "test1"; |
| 17 | reg = /bits/ 64 <0x1234 0x5678>; |
| 18 | }; |
| 19 | |
| 20 | test2 { |
| 21 | u-boot,dm-pre-reloc; |
| 22 | compatible = "test2"; |
| 23 | reg = /bits/ 64 <0x1234567890123456 0x9876543210987654>; |
| 24 | }; |
| 25 | |
| 26 | test3 { |
| 27 | u-boot,dm-pre-reloc; |
| 28 | compatible = "test3"; |
| 29 | reg = /bits/ 64 <0x1234567890123456 0x9876543210987654 2 3>; |
| 30 | }; |
| 31 | |
| 32 | }; |