blob: 8e16dc0f0fa6dcfd0811bbd84dcbb4fcaae623de [file] [log] [blame]
Simon Glass3c19dc82019-10-31 07:42:55 -06001#!/usr/bin/env python3
Tom Rini83d290c2018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glassc0791922017-06-18 22:09:06 -06003# Copyright (c) 2012 The Chromium OS Authors.
4#
Simon Glassc0791922017-06-18 22:09:06 -06005
6"""Tests for the dtb_platdata module
7
Simon Glass3def0cf2018-07-06 10:27:20 -06008This includes unit tests for some functions and functional tests for the dtoc
9tool.
Simon Glassc0791922017-06-18 22:09:06 -060010"""
11
12import collections
13import os
14import struct
Walter Lozano361e7332020-06-25 01:10:08 -030015import sys
Walter Lozano6c74d1b2020-07-28 19:06:23 -030016import tempfile
Simon Glassc0791922017-06-18 22:09:06 -060017import unittest
18
Simon Glassbf776672020-04-17 18:09:04 -060019from dtoc import dtb_platdata
Simon Glassc0791922017-06-18 22:09:06 -060020from dtb_platdata import conv_name_to_c
21from dtb_platdata import get_compat_name
22from dtb_platdata import get_value
23from dtb_platdata import tab_to
Simon Glassbf776672020-04-17 18:09:04 -060024from dtoc import fdt
25from dtoc import fdt_util
26from patman import test_util
27from patman import tools
Simon Glassc0791922017-06-18 22:09:06 -060028
29our_path = os.path.dirname(os.path.realpath(__file__))
30
31
Simon Glassaab660f2017-11-12 21:52:17 -070032HEADER = '''/*
33 * DO NOT MODIFY
34 *
35 * This file was generated by dtoc from a .dtb (device tree binary) file.
36 */
37
38#include <stdbool.h>
Masahiro Yamadab08c8c42018-03-05 01:20:11 +090039#include <linux/libfdt.h>'''
Simon Glassaab660f2017-11-12 21:52:17 -070040
41C_HEADER = '''/*
42 * DO NOT MODIFY
43 *
44 * This file was generated by dtoc from a .dtb (device tree binary) file.
45 */
46
47#include <common.h>
48#include <dm.h>
49#include <dt-structs.h>
50'''
51
Walter Lozano51f12632020-06-25 01:10:13 -030052C_EMPTY_POPULATE_PHANDLE_DATA = '''void dm_populate_phandle_data(void) {
53}
54'''
Simon Glassaab660f2017-11-12 21:52:17 -070055
Simon Glassfe57c782018-07-06 10:27:37 -060056
57def get_dtb_file(dts_fname, capture_stderr=False):
Simon Glassc0791922017-06-18 22:09:06 -060058 """Compile a .dts file to a .dtb
59
60 Args:
61 dts_fname: Filename of .dts file in the current directory
Simon Glassfe57c782018-07-06 10:27:37 -060062 capture_stderr: True to capture and discard stderr output
Simon Glassc0791922017-06-18 22:09:06 -060063
64 Returns:
65 Filename of compiled file in output directory
66 """
Simon Glassfe57c782018-07-06 10:27:37 -060067 return fdt_util.EnsureCompiled(os.path.join(our_path, dts_fname),
68 capture_stderr=capture_stderr)
Simon Glassc0791922017-06-18 22:09:06 -060069
70
71class TestDtoc(unittest.TestCase):
72 """Tests for dtoc"""
73 @classmethod
74 def setUpClass(cls):
75 tools.PrepareOutputDir(None)
Simon Glassf02d0eb2020-07-07 21:32:06 -060076 cls.maxDiff = None
Simon Glassc0791922017-06-18 22:09:06 -060077
78 @classmethod
79 def tearDownClass(cls):
80 tools._RemoveOutputDir()
81
Simon Glass57f0bc42018-07-06 10:27:25 -060082 def _WritePythonString(self, fname, data):
83 """Write a string with tabs expanded as done in this Python file
84
85 Args:
86 fname: Filename to write to
87 data: Raw string to convert
88 """
89 data = data.replace('\t', '\\t')
90 with open(fname, 'w') as fd:
91 fd.write(data)
92
93 def _CheckStrings(self, expected, actual):
94 """Check that a string matches its expected value
95
96 If the strings do not match, they are written to the /tmp directory in
97 the same Python format as is used here in the test. This allows for
98 easy comparison and update of the tests.
99
100 Args:
101 expected: Expected string
102 actual: Actual string
103 """
104 if expected != actual:
105 self._WritePythonString('/tmp/binman.expected', expected)
106 self._WritePythonString('/tmp/binman.actual', actual)
Simon Glass90a81322019-05-17 22:00:31 -0600107 print('Failures written to /tmp/binman.{expected,actual}')
Simon Glass57f0bc42018-07-06 10:27:25 -0600108 self.assertEquals(expected, actual)
109
Walter Lozano361e7332020-06-25 01:10:08 -0300110
111 def run_test(self, args, dtb_file, output):
112 dtb_platdata.run_steps(args, dtb_file, False, output, True)
113
Simon Glassc0791922017-06-18 22:09:06 -0600114 def test_name(self):
115 """Test conversion of device tree names to C identifiers"""
116 self.assertEqual('serial_at_0x12', conv_name_to_c('serial@0x12'))
117 self.assertEqual('vendor_clock_frequency',
118 conv_name_to_c('vendor,clock-frequency'))
119 self.assertEqual('rockchip_rk3399_sdhci_5_1',
120 conv_name_to_c('rockchip,rk3399-sdhci-5.1'))
121
122 def test_tab_to(self):
123 """Test operation of tab_to() function"""
124 self.assertEqual('fred ', tab_to(0, 'fred'))
125 self.assertEqual('fred\t', tab_to(1, 'fred'))
126 self.assertEqual('fred was here ', tab_to(1, 'fred was here'))
127 self.assertEqual('fred was here\t\t', tab_to(3, 'fred was here'))
128 self.assertEqual('exactly8 ', tab_to(1, 'exactly8'))
129 self.assertEqual('exactly8\t', tab_to(2, 'exactly8'))
130
131 def test_get_value(self):
132 """Test operation of get_value() function"""
133 self.assertEqual('0x45',
134 get_value(fdt.TYPE_INT, struct.pack('>I', 0x45)))
135 self.assertEqual('0x45',
136 get_value(fdt.TYPE_BYTE, struct.pack('<I', 0x45)))
137 self.assertEqual('0x0',
138 get_value(fdt.TYPE_BYTE, struct.pack('>I', 0x45)))
139 self.assertEqual('"test"', get_value(fdt.TYPE_STRING, 'test'))
140 self.assertEqual('true', get_value(fdt.TYPE_BOOL, None))
141
142 def test_get_compat_name(self):
143 """Test operation of get_compat_name() function"""
144 Prop = collections.namedtuple('Prop', ['value'])
145 Node = collections.namedtuple('Node', ['props'])
146
147 prop = Prop(['rockchip,rk3399-sdhci-5.1', 'arasan,sdhci-5.1'])
148 node = Node({'compatible': prop})
Walter Lozanodcb3ed62020-07-23 00:22:03 -0300149 self.assertEqual((['rockchip_rk3399_sdhci_5_1', 'arasan_sdhci_5_1']),
Simon Glassc0791922017-06-18 22:09:06 -0600150 get_compat_name(node))
151
152 prop = Prop(['rockchip,rk3399-sdhci-5.1'])
153 node = Node({'compatible': prop})
Walter Lozanodcb3ed62020-07-23 00:22:03 -0300154 self.assertEqual((['rockchip_rk3399_sdhci_5_1']),
Simon Glassc0791922017-06-18 22:09:06 -0600155 get_compat_name(node))
156
157 prop = Prop(['rockchip,rk3399-sdhci-5.1', 'arasan,sdhci-5.1', 'third'])
158 node = Node({'compatible': prop})
Walter Lozanodcb3ed62020-07-23 00:22:03 -0300159 self.assertEqual((['rockchip_rk3399_sdhci_5_1',
160 'arasan_sdhci_5_1', 'third']),
Simon Glassc0791922017-06-18 22:09:06 -0600161 get_compat_name(node))
162
163 def test_empty_file(self):
164 """Test output from a device tree file with no nodes"""
165 dtb_file = get_dtb_file('dtoc_test_empty.dts')
166 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300167 self.run_test(['struct'], dtb_file, output)
Simon Glassc0791922017-06-18 22:09:06 -0600168 with open(output) as infile:
169 lines = infile.read().splitlines()
Simon Glassaab660f2017-11-12 21:52:17 -0700170 self.assertEqual(HEADER.splitlines(), lines)
Simon Glassc0791922017-06-18 22:09:06 -0600171
Walter Lozano361e7332020-06-25 01:10:08 -0300172 self.run_test(['platdata'], dtb_file, output)
Simon Glassc0791922017-06-18 22:09:06 -0600173 with open(output) as infile:
174 lines = infile.read().splitlines()
Walter Lozano51f12632020-06-25 01:10:13 -0300175 self.assertEqual(C_HEADER.splitlines() + [''] +
176 C_EMPTY_POPULATE_PHANDLE_DATA.splitlines(), lines)
Simon Glassc0791922017-06-18 22:09:06 -0600177
178 def test_simple(self):
179 """Test output from some simple nodes with various types of data"""
180 dtb_file = get_dtb_file('dtoc_test_simple.dts')
181 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300182 self.run_test(['struct'], dtb_file, output)
Simon Glassc0791922017-06-18 22:09:06 -0600183 with open(output) as infile:
184 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600185 self._CheckStrings(HEADER + '''
Simon Glass5ec741f2017-08-29 14:15:51 -0600186struct dtd_sandbox_i2c_test {
187};
188struct dtd_sandbox_pmic_test {
189\tbool\t\tlow_power;
190\tfdt64_t\t\treg[2];
191};
Simon Glassc0791922017-06-18 22:09:06 -0600192struct dtd_sandbox_spl_test {
Simon Glassf02d0eb2020-07-07 21:32:06 -0600193\tconst char * acpi_name;
Simon Glassc0791922017-06-18 22:09:06 -0600194\tbool\t\tboolval;
195\tunsigned char\tbytearray[3];
196\tunsigned char\tbyteval;
197\tfdt32_t\t\tintarray[4];
198\tfdt32_t\t\tintval;
199\tunsigned char\tlongbytearray[9];
Simon Glass2a2d91d2018-07-06 10:27:28 -0600200\tunsigned char\tnotstring[5];
Simon Glassc0791922017-06-18 22:09:06 -0600201\tconst char *\tstringarray[3];
202\tconst char *\tstringval;
203};
204struct dtd_sandbox_spl_test_2 {
205};
206''', data)
207
Walter Lozano361e7332020-06-25 01:10:08 -0300208 self.run_test(['platdata'], dtb_file, output)
Simon Glassc0791922017-06-18 22:09:06 -0600209 with open(output) as infile:
210 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600211 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600212/* Node /i2c@0 index 0 */
213static struct dtd_sandbox_i2c_test dtv_i2c_at_0 = {
214};
215U_BOOT_DEVICE(i2c_at_0) = {
216\t.name\t\t= "sandbox_i2c_test",
217\t.platdata\t= &dtv_i2c_at_0,
218\t.platdata_size\t= sizeof(dtv_i2c_at_0),
Simon Glasse41651f2020-10-03 11:31:35 -0600219\t.parent_idx\t= -1,
Simon Glass1b272732020-10-03 11:31:25 -0600220};
221
222/* Node /i2c@0/pmic@9 index 1 */
223static struct dtd_sandbox_pmic_test dtv_pmic_at_9 = {
224\t.low_power\t\t= true,
225\t.reg\t\t\t= {0x9, 0x0},
226};
227U_BOOT_DEVICE(pmic_at_9) = {
228\t.name\t\t= "sandbox_pmic_test",
229\t.platdata\t= &dtv_pmic_at_9,
230\t.platdata_size\t= sizeof(dtv_pmic_at_9),
Simon Glasse41651f2020-10-03 11:31:35 -0600231\t.parent_idx\t= 0,
Simon Glass1b272732020-10-03 11:31:25 -0600232};
233
234/* Node /spl-test index 2 */
Walter Lozano51f12632020-06-25 01:10:13 -0300235static struct dtd_sandbox_spl_test dtv_spl_test = {
Simon Glass1953ce72019-05-17 22:00:32 -0600236\t.boolval\t\t= true,
Simon Glassc0791922017-06-18 22:09:06 -0600237\t.bytearray\t\t= {0x6, 0x0, 0x0},
238\t.byteval\t\t= 0x5,
Simon Glass1953ce72019-05-17 22:00:32 -0600239\t.intarray\t\t= {0x2, 0x3, 0x4, 0x0},
Simon Glassc0791922017-06-18 22:09:06 -0600240\t.intval\t\t\t= 0x1,
Simon Glass21d54ac2017-08-29 14:15:49 -0600241\t.longbytearray\t\t= {0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, 0x10,
242\t\t0x11},
Simon Glass1953ce72019-05-17 22:00:32 -0600243\t.notstring\t\t= {0x20, 0x21, 0x22, 0x10, 0x0},
Simon Glassc0791922017-06-18 22:09:06 -0600244\t.stringarray\t\t= {"multi-word", "message", ""},
Simon Glass1953ce72019-05-17 22:00:32 -0600245\t.stringval\t\t= "message",
Simon Glassc0791922017-06-18 22:09:06 -0600246};
247U_BOOT_DEVICE(spl_test) = {
248\t.name\t\t= "sandbox_spl_test",
249\t.platdata\t= &dtv_spl_test,
250\t.platdata_size\t= sizeof(dtv_spl_test),
Simon Glasse41651f2020-10-03 11:31:35 -0600251\t.parent_idx\t= -1,
Simon Glassc0791922017-06-18 22:09:06 -0600252};
253
Simon Glass1b272732020-10-03 11:31:25 -0600254/* Node /spl-test2 index 3 */
Walter Lozano51f12632020-06-25 01:10:13 -0300255static struct dtd_sandbox_spl_test dtv_spl_test2 = {
Simon Glassf02d0eb2020-07-07 21:32:06 -0600256\t.acpi_name\t\t= "\\\\_SB.GPO0",
Simon Glassc0791922017-06-18 22:09:06 -0600257\t.bytearray\t\t= {0x1, 0x23, 0x34},
258\t.byteval\t\t= 0x8,
Simon Glass1953ce72019-05-17 22:00:32 -0600259\t.intarray\t\t= {0x5, 0x0, 0x0, 0x0},
Simon Glassc0791922017-06-18 22:09:06 -0600260\t.intval\t\t\t= 0x3,
Simon Glasse144caf2020-10-03 11:31:27 -0600261\t.longbytearray\t\t= {0x9, 0xa, 0xb, 0xc, 0x0, 0x0, 0x0, 0x0,
Simon Glass21d54ac2017-08-29 14:15:49 -0600262\t\t0x0},
Simon Glassc0791922017-06-18 22:09:06 -0600263\t.stringarray\t\t= {"another", "multi-word", "message"},
Simon Glass1953ce72019-05-17 22:00:32 -0600264\t.stringval\t\t= "message2",
Simon Glassc0791922017-06-18 22:09:06 -0600265};
266U_BOOT_DEVICE(spl_test2) = {
267\t.name\t\t= "sandbox_spl_test",
268\t.platdata\t= &dtv_spl_test2,
269\t.platdata_size\t= sizeof(dtv_spl_test2),
Simon Glasse41651f2020-10-03 11:31:35 -0600270\t.parent_idx\t= -1,
Simon Glassc0791922017-06-18 22:09:06 -0600271};
272
Simon Glass1b272732020-10-03 11:31:25 -0600273/* Node /spl-test3 index 4 */
Walter Lozano51f12632020-06-25 01:10:13 -0300274static struct dtd_sandbox_spl_test dtv_spl_test3 = {
Simon Glasse144caf2020-10-03 11:31:27 -0600275\t.longbytearray\t\t= {0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, 0x10,
276\t\t0x0},
Simon Glassc0791922017-06-18 22:09:06 -0600277\t.stringarray\t\t= {"one", "", ""},
278};
279U_BOOT_DEVICE(spl_test3) = {
280\t.name\t\t= "sandbox_spl_test",
281\t.platdata\t= &dtv_spl_test3,
282\t.platdata_size\t= sizeof(dtv_spl_test3),
Simon Glasse41651f2020-10-03 11:31:35 -0600283\t.parent_idx\t= -1,
Simon Glassc0791922017-06-18 22:09:06 -0600284};
285
Simon Glass1b272732020-10-03 11:31:25 -0600286/* Node /spl-test4 index 5 */
Walter Lozano51f12632020-06-25 01:10:13 -0300287static struct dtd_sandbox_spl_test_2 dtv_spl_test4 = {
Simon Glassc0791922017-06-18 22:09:06 -0600288};
289U_BOOT_DEVICE(spl_test4) = {
290\t.name\t\t= "sandbox_spl_test_2",
291\t.platdata\t= &dtv_spl_test4,
292\t.platdata_size\t= sizeof(dtv_spl_test4),
Simon Glasse41651f2020-10-03 11:31:35 -0600293\t.parent_idx\t= -1,
Simon Glassc0791922017-06-18 22:09:06 -0600294};
295
Walter Lozano51f12632020-06-25 01:10:13 -0300296''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glassc0791922017-06-18 22:09:06 -0600297
Walter Lozanodac82282020-07-03 08:07:17 -0300298 def test_driver_alias(self):
299 """Test output from a device tree file with a driver alias"""
300 dtb_file = get_dtb_file('dtoc_test_driver_alias.dts')
301 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300302 self.run_test(['struct'], dtb_file, output)
Walter Lozanodac82282020-07-03 08:07:17 -0300303 with open(output) as infile:
304 data = infile.read()
305 self._CheckStrings(HEADER + '''
306struct dtd_sandbox_gpio {
307\tconst char *\tgpio_bank_name;
308\tbool\t\tgpio_controller;
309\tfdt32_t\t\tsandbox_gpio_count;
310};
Walter Lozanodac82282020-07-03 08:07:17 -0300311''', data)
312
Walter Lozano361e7332020-06-25 01:10:08 -0300313 self.run_test(['platdata'], dtb_file, output)
Walter Lozanodac82282020-07-03 08:07:17 -0300314 with open(output) as infile:
315 data = infile.read()
316 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600317/* Node /gpios@0 index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300318static struct dtd_sandbox_gpio dtv_gpios_at_0 = {
Walter Lozanodac82282020-07-03 08:07:17 -0300319\t.gpio_bank_name\t\t= "a",
320\t.gpio_controller\t= true,
321\t.sandbox_gpio_count\t= 0x14,
322};
323U_BOOT_DEVICE(gpios_at_0) = {
324\t.name\t\t= "sandbox_gpio",
325\t.platdata\t= &dtv_gpios_at_0,
326\t.platdata_size\t= sizeof(dtv_gpios_at_0),
Simon Glasse41651f2020-10-03 11:31:35 -0600327\t.parent_idx\t= -1,
Walter Lozanodac82282020-07-03 08:07:17 -0300328};
329
Walter Lozano51f12632020-06-25 01:10:13 -0300330void dm_populate_phandle_data(void) {
331}
Walter Lozanodac82282020-07-03 08:07:17 -0300332''', data)
333
Walter Lozano361e7332020-06-25 01:10:08 -0300334 def test_invalid_driver(self):
335 """Test output from a device tree file with an invalid driver"""
336 dtb_file = get_dtb_file('dtoc_test_invalid_driver.dts')
337 output = tools.GetOutputFilename('output')
338 with test_util.capture_sys_output() as (stdout, stderr):
339 dtb_platdata.run_steps(['struct'], dtb_file, False, output)
340 with open(output) as infile:
341 data = infile.read()
342 self._CheckStrings(HEADER + '''
343struct dtd_invalid {
344};
345''', data)
346
347 with test_util.capture_sys_output() as (stdout, stderr):
348 dtb_platdata.run_steps(['platdata'], dtb_file, False, output)
349 with open(output) as infile:
350 data = infile.read()
351 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600352/* Node /spl-test index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300353static struct dtd_invalid dtv_spl_test = {
Walter Lozano361e7332020-06-25 01:10:08 -0300354};
355U_BOOT_DEVICE(spl_test) = {
356\t.name\t\t= "invalid",
357\t.platdata\t= &dtv_spl_test,
358\t.platdata_size\t= sizeof(dtv_spl_test),
Simon Glasse41651f2020-10-03 11:31:35 -0600359\t.parent_idx\t= -1,
Walter Lozano361e7332020-06-25 01:10:08 -0300360};
361
Walter Lozano51f12632020-06-25 01:10:13 -0300362void dm_populate_phandle_data(void) {
363}
Walter Lozano361e7332020-06-25 01:10:08 -0300364''', data)
365
Simon Glassc0791922017-06-18 22:09:06 -0600366 def test_phandle(self):
367 """Test output from a node containing a phandle reference"""
368 dtb_file = get_dtb_file('dtoc_test_phandle.dts')
369 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300370 self.run_test(['struct'], dtb_file, output)
Simon Glassc0791922017-06-18 22:09:06 -0600371 with open(output) as infile:
372 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600373 self._CheckStrings(HEADER + '''
Simon Glassc0791922017-06-18 22:09:06 -0600374struct dtd_source {
Simon Glass634eba42017-08-29 14:15:59 -0600375\tstruct phandle_2_arg clocks[4];
Simon Glassc0791922017-06-18 22:09:06 -0600376};
377struct dtd_target {
378\tfdt32_t\t\tintval;
379};
380''', data)
381
Walter Lozano361e7332020-06-25 01:10:08 -0300382 self.run_test(['platdata'], dtb_file, output)
Simon Glassc0791922017-06-18 22:09:06 -0600383 with open(output) as infile:
384 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600385 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600386/* Node /phandle2-target index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300387static struct dtd_target dtv_phandle2_target = {
Simon Glass634eba42017-08-29 14:15:59 -0600388\t.intval\t\t\t= 0x1,
389};
390U_BOOT_DEVICE(phandle2_target) = {
391\t.name\t\t= "target",
392\t.platdata\t= &dtv_phandle2_target,
393\t.platdata_size\t= sizeof(dtv_phandle2_target),
Simon Glasse41651f2020-10-03 11:31:35 -0600394\t.parent_idx\t= -1,
Simon Glass634eba42017-08-29 14:15:59 -0600395};
396
Simon Glass1b272732020-10-03 11:31:25 -0600397/* Node /phandle3-target index 1 */
Walter Lozano51f12632020-06-25 01:10:13 -0300398static struct dtd_target dtv_phandle3_target = {
Simon Glass634eba42017-08-29 14:15:59 -0600399\t.intval\t\t\t= 0x2,
400};
401U_BOOT_DEVICE(phandle3_target) = {
402\t.name\t\t= "target",
403\t.platdata\t= &dtv_phandle3_target,
404\t.platdata_size\t= sizeof(dtv_phandle3_target),
Simon Glasse41651f2020-10-03 11:31:35 -0600405\t.parent_idx\t= -1,
Simon Glass634eba42017-08-29 14:15:59 -0600406};
407
Simon Glass1b272732020-10-03 11:31:25 -0600408/* Node /phandle-target index 4 */
409static struct dtd_target dtv_phandle_target = {
410\t.intval\t\t\t= 0x0,
411};
412U_BOOT_DEVICE(phandle_target) = {
413\t.name\t\t= "target",
414\t.platdata\t= &dtv_phandle_target,
415\t.platdata_size\t= sizeof(dtv_phandle_target),
Simon Glasse41651f2020-10-03 11:31:35 -0600416\t.parent_idx\t= -1,
Simon Glass1b272732020-10-03 11:31:25 -0600417};
418
419/* Node /phandle-source index 2 */
Walter Lozano51f12632020-06-25 01:10:13 -0300420static struct dtd_source dtv_phandle_source = {
Simon Glass35d50372017-08-29 14:15:57 -0600421\t.clocks\t\t\t= {
Simon Glass8a38abf2020-10-03 11:31:40 -0600422\t\t\t{4, {}},
423\t\t\t{0, {11}},
424\t\t\t{1, {12, 13}},
425\t\t\t{4, {}},},
Simon Glassc0791922017-06-18 22:09:06 -0600426};
427U_BOOT_DEVICE(phandle_source) = {
428\t.name\t\t= "source",
429\t.platdata\t= &dtv_phandle_source,
430\t.platdata_size\t= sizeof(dtv_phandle_source),
Simon Glasse41651f2020-10-03 11:31:35 -0600431\t.parent_idx\t= -1,
Simon Glassc0791922017-06-18 22:09:06 -0600432};
433
Simon Glass1b272732020-10-03 11:31:25 -0600434/* Node /phandle-source2 index 3 */
Walter Lozano51f12632020-06-25 01:10:13 -0300435static struct dtd_source dtv_phandle_source2 = {
Simon Glass760b7172018-07-06 10:27:31 -0600436\t.clocks\t\t\t= {
Simon Glass8a38abf2020-10-03 11:31:40 -0600437\t\t\t{4, {}},},
Simon Glass760b7172018-07-06 10:27:31 -0600438};
439U_BOOT_DEVICE(phandle_source2) = {
440\t.name\t\t= "source",
441\t.platdata\t= &dtv_phandle_source2,
442\t.platdata_size\t= sizeof(dtv_phandle_source2),
Simon Glasse41651f2020-10-03 11:31:35 -0600443\t.parent_idx\t= -1,
Simon Glass760b7172018-07-06 10:27:31 -0600444};
445
Walter Lozano51f12632020-06-25 01:10:13 -0300446void dm_populate_phandle_data(void) {
Walter Lozano51f12632020-06-25 01:10:13 -0300447}
Simon Glassc0791922017-06-18 22:09:06 -0600448''', data)
449
Simon Glass8512ea22018-07-06 10:27:35 -0600450 def test_phandle_single(self):
451 """Test output from a node containing a phandle reference"""
452 dtb_file = get_dtb_file('dtoc_test_phandle_single.dts')
453 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300454 self.run_test(['struct'], dtb_file, output)
Simon Glass8512ea22018-07-06 10:27:35 -0600455 with open(output) as infile:
456 data = infile.read()
457 self._CheckStrings(HEADER + '''
458struct dtd_source {
459\tstruct phandle_0_arg clocks[1];
460};
461struct dtd_target {
462\tfdt32_t\t\tintval;
463};
464''', data)
465
466 def test_phandle_reorder(self):
467 """Test that phandle targets are generated before their references"""
468 dtb_file = get_dtb_file('dtoc_test_phandle_reorder.dts')
469 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300470 self.run_test(['platdata'], dtb_file, output)
Simon Glass8512ea22018-07-06 10:27:35 -0600471 with open(output) as infile:
472 data = infile.read()
473 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600474/* Node /phandle-target index 1 */
Walter Lozano51f12632020-06-25 01:10:13 -0300475static struct dtd_target dtv_phandle_target = {
Simon Glass8512ea22018-07-06 10:27:35 -0600476};
477U_BOOT_DEVICE(phandle_target) = {
478\t.name\t\t= "target",
479\t.platdata\t= &dtv_phandle_target,
480\t.platdata_size\t= sizeof(dtv_phandle_target),
Simon Glasse41651f2020-10-03 11:31:35 -0600481\t.parent_idx\t= -1,
Simon Glass8512ea22018-07-06 10:27:35 -0600482};
483
Simon Glass1b272732020-10-03 11:31:25 -0600484/* Node /phandle-source2 index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300485static struct dtd_source dtv_phandle_source2 = {
Simon Glass8512ea22018-07-06 10:27:35 -0600486\t.clocks\t\t\t= {
Simon Glass8a38abf2020-10-03 11:31:40 -0600487\t\t\t{1, {}},},
Simon Glass8512ea22018-07-06 10:27:35 -0600488};
489U_BOOT_DEVICE(phandle_source2) = {
490\t.name\t\t= "source",
491\t.platdata\t= &dtv_phandle_source2,
492\t.platdata_size\t= sizeof(dtv_phandle_source2),
Simon Glasse41651f2020-10-03 11:31:35 -0600493\t.parent_idx\t= -1,
Simon Glass8512ea22018-07-06 10:27:35 -0600494};
495
Walter Lozano51f12632020-06-25 01:10:13 -0300496void dm_populate_phandle_data(void) {
Walter Lozano51f12632020-06-25 01:10:13 -0300497}
Simon Glass8512ea22018-07-06 10:27:35 -0600498''', data)
499
Walter Lozano6c3fc502020-06-25 01:10:17 -0300500 def test_phandle_cd_gpio(self):
501 """Test that phandle targets are generated when unsing cd-gpios"""
502 dtb_file = get_dtb_file('dtoc_test_phandle_cd_gpios.dts')
503 output = tools.GetOutputFilename('output')
504 dtb_platdata.run_steps(['platdata'], dtb_file, False, output, True)
505 with open(output) as infile:
506 data = infile.read()
507 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600508/* Node /phandle2-target index 0 */
Walter Lozano6c3fc502020-06-25 01:10:17 -0300509static struct dtd_target dtv_phandle2_target = {
510\t.intval\t\t\t= 0x1,
511};
512U_BOOT_DEVICE(phandle2_target) = {
513\t.name\t\t= "target",
514\t.platdata\t= &dtv_phandle2_target,
515\t.platdata_size\t= sizeof(dtv_phandle2_target),
Simon Glasse41651f2020-10-03 11:31:35 -0600516\t.parent_idx\t= -1,
Walter Lozano6c3fc502020-06-25 01:10:17 -0300517};
518
Simon Glass1b272732020-10-03 11:31:25 -0600519/* Node /phandle3-target index 1 */
Walter Lozano6c3fc502020-06-25 01:10:17 -0300520static struct dtd_target dtv_phandle3_target = {
521\t.intval\t\t\t= 0x2,
522};
523U_BOOT_DEVICE(phandle3_target) = {
524\t.name\t\t= "target",
525\t.platdata\t= &dtv_phandle3_target,
526\t.platdata_size\t= sizeof(dtv_phandle3_target),
Simon Glasse41651f2020-10-03 11:31:35 -0600527\t.parent_idx\t= -1,
Walter Lozano6c3fc502020-06-25 01:10:17 -0300528};
529
Simon Glass1b272732020-10-03 11:31:25 -0600530/* Node /phandle-target index 4 */
531static struct dtd_target dtv_phandle_target = {
532\t.intval\t\t\t= 0x0,
533};
534U_BOOT_DEVICE(phandle_target) = {
535\t.name\t\t= "target",
536\t.platdata\t= &dtv_phandle_target,
537\t.platdata_size\t= sizeof(dtv_phandle_target),
Simon Glasse41651f2020-10-03 11:31:35 -0600538\t.parent_idx\t= -1,
Simon Glass1b272732020-10-03 11:31:25 -0600539};
540
541/* Node /phandle-source index 2 */
Walter Lozano6c3fc502020-06-25 01:10:17 -0300542static struct dtd_source dtv_phandle_source = {
543\t.cd_gpios\t\t= {
Simon Glass8a38abf2020-10-03 11:31:40 -0600544\t\t\t{4, {}},
545\t\t\t{0, {11}},
546\t\t\t{1, {12, 13}},
547\t\t\t{4, {}},},
Walter Lozano6c3fc502020-06-25 01:10:17 -0300548};
549U_BOOT_DEVICE(phandle_source) = {
550\t.name\t\t= "source",
551\t.platdata\t= &dtv_phandle_source,
552\t.platdata_size\t= sizeof(dtv_phandle_source),
Simon Glasse41651f2020-10-03 11:31:35 -0600553\t.parent_idx\t= -1,
Walter Lozano6c3fc502020-06-25 01:10:17 -0300554};
555
Simon Glass1b272732020-10-03 11:31:25 -0600556/* Node /phandle-source2 index 3 */
Walter Lozano6c3fc502020-06-25 01:10:17 -0300557static struct dtd_source dtv_phandle_source2 = {
558\t.cd_gpios\t\t= {
Simon Glass8a38abf2020-10-03 11:31:40 -0600559\t\t\t{4, {}},},
Walter Lozano6c3fc502020-06-25 01:10:17 -0300560};
561U_BOOT_DEVICE(phandle_source2) = {
562\t.name\t\t= "source",
563\t.platdata\t= &dtv_phandle_source2,
564\t.platdata_size\t= sizeof(dtv_phandle_source2),
Simon Glasse41651f2020-10-03 11:31:35 -0600565\t.parent_idx\t= -1,
Walter Lozano6c3fc502020-06-25 01:10:17 -0300566};
567
568void dm_populate_phandle_data(void) {
Walter Lozano6c3fc502020-06-25 01:10:17 -0300569}
570''', data)
571
Simon Glass8512ea22018-07-06 10:27:35 -0600572 def test_phandle_bad(self):
573 """Test a node containing an invalid phandle fails"""
Simon Glass4b4bc062018-10-01 21:12:43 -0600574 dtb_file = get_dtb_file('dtoc_test_phandle_bad.dts',
575 capture_stderr=True)
Simon Glass8512ea22018-07-06 10:27:35 -0600576 output = tools.GetOutputFilename('output')
577 with self.assertRaises(ValueError) as e:
Walter Lozano361e7332020-06-25 01:10:08 -0300578 self.run_test(['struct'], dtb_file, output)
Simon Glass8512ea22018-07-06 10:27:35 -0600579 self.assertIn("Cannot parse 'clocks' in node 'phandle-source'",
580 str(e.exception))
581
582 def test_phandle_bad2(self):
583 """Test a phandle target missing its #*-cells property"""
Simon Glass4b4bc062018-10-01 21:12:43 -0600584 dtb_file = get_dtb_file('dtoc_test_phandle_bad2.dts',
585 capture_stderr=True)
Simon Glass8512ea22018-07-06 10:27:35 -0600586 output = tools.GetOutputFilename('output')
587 with self.assertRaises(ValueError) as e:
Walter Lozano361e7332020-06-25 01:10:08 -0300588 self.run_test(['struct'], dtb_file, output)
Walter Lozanoad340172020-06-25 01:10:16 -0300589 self.assertIn("Node 'phandle-target' has no cells property",
Simon Glass8512ea22018-07-06 10:27:35 -0600590 str(e.exception))
591
Simon Glassc20ee0e2017-08-29 14:15:50 -0600592 def test_addresses64(self):
593 """Test output from a node with a 'reg' property with na=2, ns=2"""
594 dtb_file = get_dtb_file('dtoc_test_addr64.dts')
595 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300596 self.run_test(['struct'], dtb_file, output)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600597 with open(output) as infile:
598 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600599 self._CheckStrings(HEADER + '''
Simon Glassc20ee0e2017-08-29 14:15:50 -0600600struct dtd_test1 {
601\tfdt64_t\t\treg[2];
602};
603struct dtd_test2 {
604\tfdt64_t\t\treg[2];
605};
606struct dtd_test3 {
607\tfdt64_t\t\treg[4];
608};
609''', data)
610
Walter Lozano361e7332020-06-25 01:10:08 -0300611 self.run_test(['platdata'], dtb_file, output)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600612 with open(output) as infile:
613 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600614 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600615/* Node /test1 index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300616static struct dtd_test1 dtv_test1 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600617\t.reg\t\t\t= {0x1234, 0x5678},
618};
619U_BOOT_DEVICE(test1) = {
620\t.name\t\t= "test1",
621\t.platdata\t= &dtv_test1,
622\t.platdata_size\t= sizeof(dtv_test1),
Simon Glasse41651f2020-10-03 11:31:35 -0600623\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600624};
625
Simon Glass1b272732020-10-03 11:31:25 -0600626/* Node /test2 index 1 */
Walter Lozano51f12632020-06-25 01:10:13 -0300627static struct dtd_test2 dtv_test2 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600628\t.reg\t\t\t= {0x1234567890123456, 0x9876543210987654},
629};
630U_BOOT_DEVICE(test2) = {
631\t.name\t\t= "test2",
632\t.platdata\t= &dtv_test2,
633\t.platdata_size\t= sizeof(dtv_test2),
Simon Glasse41651f2020-10-03 11:31:35 -0600634\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600635};
636
Simon Glass1b272732020-10-03 11:31:25 -0600637/* Node /test3 index 2 */
Walter Lozano51f12632020-06-25 01:10:13 -0300638static struct dtd_test3 dtv_test3 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600639\t.reg\t\t\t= {0x1234567890123456, 0x9876543210987654, 0x2, 0x3},
640};
641U_BOOT_DEVICE(test3) = {
642\t.name\t\t= "test3",
643\t.platdata\t= &dtv_test3,
644\t.platdata_size\t= sizeof(dtv_test3),
Simon Glasse41651f2020-10-03 11:31:35 -0600645\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600646};
647
Walter Lozano51f12632020-06-25 01:10:13 -0300648''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600649
650 def test_addresses32(self):
651 """Test output from a node with a 'reg' property with na=1, ns=1"""
652 dtb_file = get_dtb_file('dtoc_test_addr32.dts')
653 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300654 self.run_test(['struct'], dtb_file, output)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600655 with open(output) as infile:
656 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600657 self._CheckStrings(HEADER + '''
Simon Glassc20ee0e2017-08-29 14:15:50 -0600658struct dtd_test1 {
659\tfdt32_t\t\treg[2];
660};
661struct dtd_test2 {
662\tfdt32_t\t\treg[4];
663};
664''', data)
665
Walter Lozano361e7332020-06-25 01:10:08 -0300666 self.run_test(['platdata'], dtb_file, output)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600667 with open(output) as infile:
668 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600669 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600670/* Node /test1 index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300671static struct dtd_test1 dtv_test1 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600672\t.reg\t\t\t= {0x1234, 0x5678},
673};
674U_BOOT_DEVICE(test1) = {
675\t.name\t\t= "test1",
676\t.platdata\t= &dtv_test1,
677\t.platdata_size\t= sizeof(dtv_test1),
Simon Glasse41651f2020-10-03 11:31:35 -0600678\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600679};
680
Simon Glass1b272732020-10-03 11:31:25 -0600681/* Node /test2 index 1 */
Walter Lozano51f12632020-06-25 01:10:13 -0300682static struct dtd_test2 dtv_test2 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600683\t.reg\t\t\t= {0x12345678, 0x98765432, 0x2, 0x3},
684};
685U_BOOT_DEVICE(test2) = {
686\t.name\t\t= "test2",
687\t.platdata\t= &dtv_test2,
688\t.platdata_size\t= sizeof(dtv_test2),
Simon Glasse41651f2020-10-03 11:31:35 -0600689\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600690};
691
Walter Lozano51f12632020-06-25 01:10:13 -0300692''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600693
694 def test_addresses64_32(self):
695 """Test output from a node with a 'reg' property with na=2, ns=1"""
696 dtb_file = get_dtb_file('dtoc_test_addr64_32.dts')
697 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300698 self.run_test(['struct'], dtb_file, output)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600699 with open(output) as infile:
700 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600701 self._CheckStrings(HEADER + '''
Simon Glassc20ee0e2017-08-29 14:15:50 -0600702struct dtd_test1 {
703\tfdt64_t\t\treg[2];
704};
705struct dtd_test2 {
706\tfdt64_t\t\treg[2];
707};
708struct dtd_test3 {
709\tfdt64_t\t\treg[4];
710};
711''', data)
712
Walter Lozano361e7332020-06-25 01:10:08 -0300713 self.run_test(['platdata'], dtb_file, output)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600714 with open(output) as infile:
715 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600716 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600717/* Node /test1 index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300718static struct dtd_test1 dtv_test1 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600719\t.reg\t\t\t= {0x123400000000, 0x5678},
720};
721U_BOOT_DEVICE(test1) = {
722\t.name\t\t= "test1",
723\t.platdata\t= &dtv_test1,
724\t.platdata_size\t= sizeof(dtv_test1),
Simon Glasse41651f2020-10-03 11:31:35 -0600725\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600726};
727
Simon Glass1b272732020-10-03 11:31:25 -0600728/* Node /test2 index 1 */
Walter Lozano51f12632020-06-25 01:10:13 -0300729static struct dtd_test2 dtv_test2 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600730\t.reg\t\t\t= {0x1234567890123456, 0x98765432},
731};
732U_BOOT_DEVICE(test2) = {
733\t.name\t\t= "test2",
734\t.platdata\t= &dtv_test2,
735\t.platdata_size\t= sizeof(dtv_test2),
Simon Glasse41651f2020-10-03 11:31:35 -0600736\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600737};
738
Simon Glass1b272732020-10-03 11:31:25 -0600739/* Node /test3 index 2 */
Walter Lozano51f12632020-06-25 01:10:13 -0300740static struct dtd_test3 dtv_test3 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600741\t.reg\t\t\t= {0x1234567890123456, 0x98765432, 0x2, 0x3},
742};
743U_BOOT_DEVICE(test3) = {
744\t.name\t\t= "test3",
745\t.platdata\t= &dtv_test3,
746\t.platdata_size\t= sizeof(dtv_test3),
Simon Glasse41651f2020-10-03 11:31:35 -0600747\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600748};
749
Walter Lozano51f12632020-06-25 01:10:13 -0300750''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600751
752 def test_addresses32_64(self):
753 """Test output from a node with a 'reg' property with na=1, ns=2"""
754 dtb_file = get_dtb_file('dtoc_test_addr32_64.dts')
755 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300756 self.run_test(['struct'], dtb_file, output)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600757 with open(output) as infile:
758 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600759 self._CheckStrings(HEADER + '''
Simon Glassc20ee0e2017-08-29 14:15:50 -0600760struct dtd_test1 {
761\tfdt64_t\t\treg[2];
762};
763struct dtd_test2 {
764\tfdt64_t\t\treg[2];
765};
766struct dtd_test3 {
767\tfdt64_t\t\treg[4];
768};
769''', data)
770
Walter Lozano361e7332020-06-25 01:10:08 -0300771 self.run_test(['platdata'], dtb_file, output)
Simon Glassc20ee0e2017-08-29 14:15:50 -0600772 with open(output) as infile:
773 data = infile.read()
Simon Glass57f0bc42018-07-06 10:27:25 -0600774 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600775/* Node /test1 index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300776static struct dtd_test1 dtv_test1 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600777\t.reg\t\t\t= {0x1234, 0x567800000000},
778};
779U_BOOT_DEVICE(test1) = {
780\t.name\t\t= "test1",
781\t.platdata\t= &dtv_test1,
782\t.platdata_size\t= sizeof(dtv_test1),
Simon Glasse41651f2020-10-03 11:31:35 -0600783\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600784};
785
Simon Glass1b272732020-10-03 11:31:25 -0600786/* Node /test2 index 1 */
Walter Lozano51f12632020-06-25 01:10:13 -0300787static struct dtd_test2 dtv_test2 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600788\t.reg\t\t\t= {0x12345678, 0x9876543210987654},
789};
790U_BOOT_DEVICE(test2) = {
791\t.name\t\t= "test2",
792\t.platdata\t= &dtv_test2,
793\t.platdata_size\t= sizeof(dtv_test2),
Simon Glasse41651f2020-10-03 11:31:35 -0600794\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600795};
796
Simon Glass1b272732020-10-03 11:31:25 -0600797/* Node /test3 index 2 */
Walter Lozano51f12632020-06-25 01:10:13 -0300798static struct dtd_test3 dtv_test3 = {
Simon Glassc20ee0e2017-08-29 14:15:50 -0600799\t.reg\t\t\t= {0x12345678, 0x9876543210987654, 0x2, 0x3},
800};
801U_BOOT_DEVICE(test3) = {
802\t.name\t\t= "test3",
803\t.platdata\t= &dtv_test3,
804\t.platdata_size\t= sizeof(dtv_test3),
Simon Glasse41651f2020-10-03 11:31:35 -0600805\t.parent_idx\t= -1,
Simon Glassc20ee0e2017-08-29 14:15:50 -0600806};
807
Walter Lozano51f12632020-06-25 01:10:13 -0300808''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass8512ea22018-07-06 10:27:35 -0600809
810 def test_bad_reg(self):
811 """Test that a reg property with an invalid type generates an error"""
Simon Glassfe57c782018-07-06 10:27:37 -0600812 # Capture stderr since dtc will emit warnings for this file
813 dtb_file = get_dtb_file('dtoc_test_bad_reg.dts', capture_stderr=True)
Simon Glass8512ea22018-07-06 10:27:35 -0600814 output = tools.GetOutputFilename('output')
815 with self.assertRaises(ValueError) as e:
Walter Lozano361e7332020-06-25 01:10:08 -0300816 self.run_test(['struct'], dtb_file, output)
Simon Glass8512ea22018-07-06 10:27:35 -0600817 self.assertIn("Node 'spl-test' reg property is not an int",
818 str(e.exception))
819
820 def test_bad_reg2(self):
821 """Test that a reg property with an invalid cell count is detected"""
Simon Glassfe57c782018-07-06 10:27:37 -0600822 # Capture stderr since dtc will emit warnings for this file
823 dtb_file = get_dtb_file('dtoc_test_bad_reg2.dts', capture_stderr=True)
Simon Glass8512ea22018-07-06 10:27:35 -0600824 output = tools.GetOutputFilename('output')
825 with self.assertRaises(ValueError) as e:
Walter Lozano361e7332020-06-25 01:10:08 -0300826 self.run_test(['struct'], dtb_file, output)
Simon Glass8512ea22018-07-06 10:27:35 -0600827 self.assertIn("Node 'spl-test' reg property has 3 cells which is not a multiple of na + ns = 1 + 1)",
828 str(e.exception))
829
830 def test_add_prop(self):
831 """Test that a subequent node can add a new property to a struct"""
832 dtb_file = get_dtb_file('dtoc_test_add_prop.dts')
833 output = tools.GetOutputFilename('output')
Walter Lozano361e7332020-06-25 01:10:08 -0300834 self.run_test(['struct'], dtb_file, output)
Simon Glass8512ea22018-07-06 10:27:35 -0600835 with open(output) as infile:
836 data = infile.read()
837 self._CheckStrings(HEADER + '''
838struct dtd_sandbox_spl_test {
839\tfdt32_t\t\tintarray;
840\tfdt32_t\t\tintval;
841};
842''', data)
843
Walter Lozano361e7332020-06-25 01:10:08 -0300844 self.run_test(['platdata'], dtb_file, output)
Simon Glass8512ea22018-07-06 10:27:35 -0600845 with open(output) as infile:
846 data = infile.read()
847 self._CheckStrings(C_HEADER + '''
Simon Glass1b272732020-10-03 11:31:25 -0600848/* Node /spl-test index 0 */
Walter Lozano51f12632020-06-25 01:10:13 -0300849static struct dtd_sandbox_spl_test dtv_spl_test = {
Simon Glass8512ea22018-07-06 10:27:35 -0600850\t.intval\t\t\t= 0x1,
851};
852U_BOOT_DEVICE(spl_test) = {
853\t.name\t\t= "sandbox_spl_test",
854\t.platdata\t= &dtv_spl_test,
855\t.platdata_size\t= sizeof(dtv_spl_test),
Simon Glasse41651f2020-10-03 11:31:35 -0600856\t.parent_idx\t= -1,
Simon Glass8512ea22018-07-06 10:27:35 -0600857};
858
Simon Glass1b272732020-10-03 11:31:25 -0600859/* Node /spl-test2 index 1 */
Walter Lozano51f12632020-06-25 01:10:13 -0300860static struct dtd_sandbox_spl_test dtv_spl_test2 = {
Simon Glass8512ea22018-07-06 10:27:35 -0600861\t.intarray\t\t= 0x5,
862};
863U_BOOT_DEVICE(spl_test2) = {
864\t.name\t\t= "sandbox_spl_test",
865\t.platdata\t= &dtv_spl_test2,
866\t.platdata_size\t= sizeof(dtv_spl_test2),
Simon Glasse41651f2020-10-03 11:31:35 -0600867\t.parent_idx\t= -1,
Simon Glass8512ea22018-07-06 10:27:35 -0600868};
869
Walter Lozano51f12632020-06-25 01:10:13 -0300870''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass8512ea22018-07-06 10:27:35 -0600871
872 def testStdout(self):
873 """Test output to stdout"""
874 dtb_file = get_dtb_file('dtoc_test_simple.dts')
875 with test_util.capture_sys_output() as (stdout, stderr):
Walter Lozano361e7332020-06-25 01:10:08 -0300876 self.run_test(['struct'], dtb_file, '-')
Simon Glass8512ea22018-07-06 10:27:35 -0600877
878 def testNoCommand(self):
879 """Test running dtoc without a command"""
880 with self.assertRaises(ValueError) as e:
Walter Lozano361e7332020-06-25 01:10:08 -0300881 self.run_test([], '', '')
Simon Glass8512ea22018-07-06 10:27:35 -0600882 self.assertIn("Please specify a command: struct, platdata",
883 str(e.exception))
884
885 def testBadCommand(self):
886 """Test running dtoc with an invalid command"""
887 dtb_file = get_dtb_file('dtoc_test_simple.dts')
888 output = tools.GetOutputFilename('output')
889 with self.assertRaises(ValueError) as e:
Walter Lozano361e7332020-06-25 01:10:08 -0300890 self.run_test(['invalid-cmd'], dtb_file, output)
Simon Glass8512ea22018-07-06 10:27:35 -0600891 self.assertIn("Unknown command 'invalid-cmd': (use: struct, platdata)",
892 str(e.exception))
Walter Lozano6c74d1b2020-07-28 19:06:23 -0300893
894 def testScanDrivers(self):
895 """Test running dtoc with additional drivers to scan"""
896 dtb_file = get_dtb_file('dtoc_test_simple.dts')
897 output = tools.GetOutputFilename('output')
898 with test_util.capture_sys_output() as (stdout, stderr):
899 dtb_platdata.run_steps(['struct'], dtb_file, False, output, True,
900 [None, '', 'tools/dtoc/dtoc_test_scan_drivers.cxx'])
901
902 def testUnicodeError(self):
903 """Test running dtoc with an invalid unicode file
904
905 To be able to perform this test without adding a weird text file which
906 would produce issues when using checkpatch.pl or patman, generate the
907 file at runtime and then process it.
908 """
909 dtb_file = get_dtb_file('dtoc_test_simple.dts')
910 output = tools.GetOutputFilename('output')
911 driver_fn = '/tmp/' + next(tempfile._get_candidate_names())
912 with open(driver_fn, 'wb+') as df:
913 df.write(b'\x81')
914
915 with test_util.capture_sys_output() as (stdout, stderr):
916 dtb_platdata.run_steps(['struct'], dtb_file, False, output, True,
917 [driver_fn])