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