blob: 08b02d484383cbc21110f7856ae84f68e8ca1b49 [file] [log] [blame]
Simon Glassbfb0bb22019-10-31 07:42:55 -06001#!/usr/bin/env python3
Tom Rini10e47792018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glass9d2eb922017-06-18 22:09:06 -06003# Copyright (c) 2012 The Chromium OS Authors.
4#
Simon Glass9d2eb922017-06-18 22:09:06 -06005
6"""Tests for the dtb_platdata module
7
Simon Glass70cd0d72018-07-06 10:27:20 -06008This includes unit tests for some functions and functional tests for the dtoc
9tool.
Simon Glass9d2eb922017-06-18 22:09:06 -060010"""
11
12import collections
13import os
14import struct
Walter Lozanoa324e412020-06-25 01:10:08 -030015import sys
Simon Glass9d2eb922017-06-18 22:09:06 -060016import unittest
17
Simon Glassa997ea52020-04-17 18:09:04 -060018from dtoc import dtb_platdata
Simon Glass9d2eb922017-06-18 22:09:06 -060019from dtb_platdata import conv_name_to_c
20from dtb_platdata import get_compat_name
21from dtb_platdata import get_value
22from dtb_platdata import tab_to
Simon Glassa997ea52020-04-17 18:09:04 -060023from dtoc import fdt
24from dtoc import fdt_util
25from patman import test_util
26from patman import tools
Simon Glass9d2eb922017-06-18 22:09:06 -060027
28our_path = os.path.dirname(os.path.realpath(__file__))
29
30
Simon Glasseb37e2d2017-11-12 21:52:17 -070031HEADER = '''/*
32 * DO NOT MODIFY
33 *
34 * This file was generated by dtoc from a .dtb (device tree binary) file.
35 */
36
37#include <stdbool.h>
Masahiro Yamada75f82d02018-03-05 01:20:11 +090038#include <linux/libfdt.h>'''
Simon Glasseb37e2d2017-11-12 21:52:17 -070039
40C_HEADER = '''/*
41 * DO NOT MODIFY
42 *
43 * This file was generated by dtoc from a .dtb (device tree binary) file.
44 */
45
46#include <common.h>
47#include <dm.h>
48#include <dt-structs.h>
49'''
50
Walter Lozanodc5b4372020-06-25 01:10:13 -030051C_EMPTY_POPULATE_PHANDLE_DATA = '''void dm_populate_phandle_data(void) {
52}
53'''
Simon Glasseb37e2d2017-11-12 21:52:17 -070054
Simon Glass3bce93d2018-07-06 10:27:37 -060055
56def get_dtb_file(dts_fname, capture_stderr=False):
Simon Glass9d2eb922017-06-18 22:09:06 -060057 """Compile a .dts file to a .dtb
58
59 Args:
60 dts_fname: Filename of .dts file in the current directory
Simon Glass3bce93d2018-07-06 10:27:37 -060061 capture_stderr: True to capture and discard stderr output
Simon Glass9d2eb922017-06-18 22:09:06 -060062
63 Returns:
64 Filename of compiled file in output directory
65 """
Simon Glass3bce93d2018-07-06 10:27:37 -060066 return fdt_util.EnsureCompiled(os.path.join(our_path, dts_fname),
67 capture_stderr=capture_stderr)
Simon Glass9d2eb922017-06-18 22:09:06 -060068
69
70class TestDtoc(unittest.TestCase):
71 """Tests for dtoc"""
72 @classmethod
73 def setUpClass(cls):
74 tools.PrepareOutputDir(None)
Simon Glass7f5e2262020-07-07 21:32:06 -060075 cls.maxDiff = None
Simon Glass9d2eb922017-06-18 22:09:06 -060076
77 @classmethod
78 def tearDownClass(cls):
79 tools._RemoveOutputDir()
80
Simon Glassc47c2b32018-07-06 10:27:25 -060081 def _WritePythonString(self, fname, data):
82 """Write a string with tabs expanded as done in this Python file
83
84 Args:
85 fname: Filename to write to
86 data: Raw string to convert
87 """
88 data = data.replace('\t', '\\t')
89 with open(fname, 'w') as fd:
90 fd.write(data)
91
92 def _CheckStrings(self, expected, actual):
93 """Check that a string matches its expected value
94
95 If the strings do not match, they are written to the /tmp directory in
96 the same Python format as is used here in the test. This allows for
97 easy comparison and update of the tests.
98
99 Args:
100 expected: Expected string
101 actual: Actual string
102 """
103 if expected != actual:
104 self._WritePythonString('/tmp/binman.expected', expected)
105 self._WritePythonString('/tmp/binman.actual', actual)
Simon Glass61b88e52019-05-17 22:00:31 -0600106 print('Failures written to /tmp/binman.{expected,actual}')
Simon Glassc47c2b32018-07-06 10:27:25 -0600107 self.assertEquals(expected, actual)
108
Walter Lozanoa324e412020-06-25 01:10:08 -0300109
110 def run_test(self, args, dtb_file, output):
111 dtb_platdata.run_steps(args, dtb_file, False, output, True)
112
Simon Glass9d2eb922017-06-18 22:09:06 -0600113 def test_name(self):
114 """Test conversion of device tree names to C identifiers"""
115 self.assertEqual('serial_at_0x12', conv_name_to_c('serial@0x12'))
116 self.assertEqual('vendor_clock_frequency',
117 conv_name_to_c('vendor,clock-frequency'))
118 self.assertEqual('rockchip_rk3399_sdhci_5_1',
119 conv_name_to_c('rockchip,rk3399-sdhci-5.1'))
120
121 def test_tab_to(self):
122 """Test operation of tab_to() function"""
123 self.assertEqual('fred ', tab_to(0, 'fred'))
124 self.assertEqual('fred\t', tab_to(1, 'fred'))
125 self.assertEqual('fred was here ', tab_to(1, 'fred was here'))
126 self.assertEqual('fred was here\t\t', tab_to(3, 'fred was here'))
127 self.assertEqual('exactly8 ', tab_to(1, 'exactly8'))
128 self.assertEqual('exactly8\t', tab_to(2, 'exactly8'))
129
130 def test_get_value(self):
131 """Test operation of get_value() function"""
132 self.assertEqual('0x45',
133 get_value(fdt.TYPE_INT, struct.pack('>I', 0x45)))
134 self.assertEqual('0x45',
135 get_value(fdt.TYPE_BYTE, struct.pack('<I', 0x45)))
136 self.assertEqual('0x0',
137 get_value(fdt.TYPE_BYTE, struct.pack('>I', 0x45)))
138 self.assertEqual('"test"', get_value(fdt.TYPE_STRING, 'test'))
139 self.assertEqual('true', get_value(fdt.TYPE_BOOL, None))
140
141 def test_get_compat_name(self):
142 """Test operation of get_compat_name() function"""
143 Prop = collections.namedtuple('Prop', ['value'])
144 Node = collections.namedtuple('Node', ['props'])
145
146 prop = Prop(['rockchip,rk3399-sdhci-5.1', 'arasan,sdhci-5.1'])
147 node = Node({'compatible': prop})
148 self.assertEqual(('rockchip_rk3399_sdhci_5_1', ['arasan_sdhci_5_1']),
149 get_compat_name(node))
150
151 prop = Prop(['rockchip,rk3399-sdhci-5.1'])
152 node = Node({'compatible': prop})
153 self.assertEqual(('rockchip_rk3399_sdhci_5_1', []),
154 get_compat_name(node))
155
156 prop = Prop(['rockchip,rk3399-sdhci-5.1', 'arasan,sdhci-5.1', 'third'])
157 node = Node({'compatible': prop})
158 self.assertEqual(('rockchip_rk3399_sdhci_5_1',
159 ['arasan_sdhci_5_1', 'third']),
160 get_compat_name(node))
161
162 def test_empty_file(self):
163 """Test output from a device tree file with no nodes"""
164 dtb_file = get_dtb_file('dtoc_test_empty.dts')
165 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300166 self.run_test(['struct'], dtb_file, output)
Simon Glass9d2eb922017-06-18 22:09:06 -0600167 with open(output) as infile:
168 lines = infile.read().splitlines()
Simon Glasseb37e2d2017-11-12 21:52:17 -0700169 self.assertEqual(HEADER.splitlines(), lines)
Simon Glass9d2eb922017-06-18 22:09:06 -0600170
Walter Lozanoa324e412020-06-25 01:10:08 -0300171 self.run_test(['platdata'], dtb_file, output)
Simon Glass9d2eb922017-06-18 22:09:06 -0600172 with open(output) as infile:
173 lines = infile.read().splitlines()
Walter Lozanodc5b4372020-06-25 01:10:13 -0300174 self.assertEqual(C_HEADER.splitlines() + [''] +
175 C_EMPTY_POPULATE_PHANDLE_DATA.splitlines(), lines)
Simon Glass9d2eb922017-06-18 22:09:06 -0600176
177 def test_simple(self):
178 """Test output from some simple nodes with various types of data"""
179 dtb_file = get_dtb_file('dtoc_test_simple.dts')
180 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300181 self.run_test(['struct'], dtb_file, output)
Simon Glass9d2eb922017-06-18 22:09:06 -0600182 with open(output) as infile:
183 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600184 self._CheckStrings(HEADER + '''
Simon Glass90e5f0a2017-08-29 14:15:51 -0600185struct dtd_sandbox_i2c_test {
186};
187struct dtd_sandbox_pmic_test {
188\tbool\t\tlow_power;
189\tfdt64_t\t\treg[2];
190};
Simon Glass9d2eb922017-06-18 22:09:06 -0600191struct dtd_sandbox_spl_test {
Simon Glass7f5e2262020-07-07 21:32:06 -0600192\tconst char * acpi_name;
Simon Glass9d2eb922017-06-18 22:09:06 -0600193\tbool\t\tboolval;
194\tunsigned char\tbytearray[3];
195\tunsigned char\tbyteval;
196\tfdt32_t\t\tintarray[4];
197\tfdt32_t\t\tintval;
198\tunsigned char\tlongbytearray[9];
Simon Glass9c526332018-07-06 10:27:28 -0600199\tunsigned char\tnotstring[5];
Simon Glass9d2eb922017-06-18 22:09:06 -0600200\tconst char *\tstringarray[3];
201\tconst char *\tstringval;
202};
203struct dtd_sandbox_spl_test_2 {
204};
205''', data)
206
Walter Lozanoa324e412020-06-25 01:10:08 -0300207 self.run_test(['platdata'], dtb_file, output)
Simon Glass9d2eb922017-06-18 22:09:06 -0600208 with open(output) as infile:
209 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600210 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300211static struct dtd_sandbox_spl_test dtv_spl_test = {
Simon Glassc82de562019-05-17 22:00:32 -0600212\t.boolval\t\t= true,
Simon Glass9d2eb922017-06-18 22:09:06 -0600213\t.bytearray\t\t= {0x6, 0x0, 0x0},
214\t.byteval\t\t= 0x5,
Simon Glassc82de562019-05-17 22:00:32 -0600215\t.intarray\t\t= {0x2, 0x3, 0x4, 0x0},
Simon Glass9d2eb922017-06-18 22:09:06 -0600216\t.intval\t\t\t= 0x1,
Simon Glass131e0b02017-08-29 14:15:49 -0600217\t.longbytearray\t\t= {0x9, 0xa, 0xb, 0xc, 0xd, 0xe, 0xf, 0x10,
218\t\t0x11},
Simon Glassc82de562019-05-17 22:00:32 -0600219\t.notstring\t\t= {0x20, 0x21, 0x22, 0x10, 0x0},
Simon Glass9d2eb922017-06-18 22:09:06 -0600220\t.stringarray\t\t= {"multi-word", "message", ""},
Simon Glassc82de562019-05-17 22:00:32 -0600221\t.stringval\t\t= "message",
Simon Glass9d2eb922017-06-18 22:09:06 -0600222};
223U_BOOT_DEVICE(spl_test) = {
224\t.name\t\t= "sandbox_spl_test",
225\t.platdata\t= &dtv_spl_test,
226\t.platdata_size\t= sizeof(dtv_spl_test),
227};
228
Walter Lozanodc5b4372020-06-25 01:10:13 -0300229static struct dtd_sandbox_spl_test dtv_spl_test2 = {
Simon Glass7f5e2262020-07-07 21:32:06 -0600230\t.acpi_name\t\t= "\\\\_SB.GPO0",
Simon Glass9d2eb922017-06-18 22:09:06 -0600231\t.bytearray\t\t= {0x1, 0x23, 0x34},
232\t.byteval\t\t= 0x8,
Simon Glassc82de562019-05-17 22:00:32 -0600233\t.intarray\t\t= {0x5, 0x0, 0x0, 0x0},
Simon Glass9d2eb922017-06-18 22:09:06 -0600234\t.intval\t\t\t= 0x3,
Simon Glass131e0b02017-08-29 14:15:49 -0600235\t.longbytearray\t\t= {0x9, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0,
236\t\t0x0},
Simon Glass9d2eb922017-06-18 22:09:06 -0600237\t.stringarray\t\t= {"another", "multi-word", "message"},
Simon Glassc82de562019-05-17 22:00:32 -0600238\t.stringval\t\t= "message2",
Simon Glass9d2eb922017-06-18 22:09:06 -0600239};
240U_BOOT_DEVICE(spl_test2) = {
241\t.name\t\t= "sandbox_spl_test",
242\t.platdata\t= &dtv_spl_test2,
243\t.platdata_size\t= sizeof(dtv_spl_test2),
244};
245
Walter Lozanodc5b4372020-06-25 01:10:13 -0300246static struct dtd_sandbox_spl_test dtv_spl_test3 = {
Simon Glass9d2eb922017-06-18 22:09:06 -0600247\t.stringarray\t\t= {"one", "", ""},
248};
249U_BOOT_DEVICE(spl_test3) = {
250\t.name\t\t= "sandbox_spl_test",
251\t.platdata\t= &dtv_spl_test3,
252\t.platdata_size\t= sizeof(dtv_spl_test3),
253};
254
Walter Lozanodc5b4372020-06-25 01:10:13 -0300255static struct dtd_sandbox_spl_test_2 dtv_spl_test4 = {
Simon Glass9d2eb922017-06-18 22:09:06 -0600256};
257U_BOOT_DEVICE(spl_test4) = {
258\t.name\t\t= "sandbox_spl_test_2",
259\t.platdata\t= &dtv_spl_test4,
260\t.platdata_size\t= sizeof(dtv_spl_test4),
261};
262
Walter Lozanodc5b4372020-06-25 01:10:13 -0300263static struct dtd_sandbox_i2c_test dtv_i2c_at_0 = {
Simon Glass90e5f0a2017-08-29 14:15:51 -0600264};
265U_BOOT_DEVICE(i2c_at_0) = {
266\t.name\t\t= "sandbox_i2c_test",
267\t.platdata\t= &dtv_i2c_at_0,
268\t.platdata_size\t= sizeof(dtv_i2c_at_0),
269};
270
Walter Lozanodc5b4372020-06-25 01:10:13 -0300271static struct dtd_sandbox_pmic_test dtv_pmic_at_9 = {
Simon Glass90e5f0a2017-08-29 14:15:51 -0600272\t.low_power\t\t= true,
273\t.reg\t\t\t= {0x9, 0x0},
274};
275U_BOOT_DEVICE(pmic_at_9) = {
276\t.name\t\t= "sandbox_pmic_test",
277\t.platdata\t= &dtv_pmic_at_9,
278\t.platdata_size\t= sizeof(dtv_pmic_at_9),
279};
280
Walter Lozanodc5b4372020-06-25 01:10:13 -0300281''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass9d2eb922017-06-18 22:09:06 -0600282
Walter Lozanoe675d962020-07-03 08:07:17 -0300283 def test_driver_alias(self):
284 """Test output from a device tree file with a driver alias"""
285 dtb_file = get_dtb_file('dtoc_test_driver_alias.dts')
286 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300287 self.run_test(['struct'], dtb_file, output)
Walter Lozanoe675d962020-07-03 08:07:17 -0300288 with open(output) as infile:
289 data = infile.read()
290 self._CheckStrings(HEADER + '''
291struct dtd_sandbox_gpio {
292\tconst char *\tgpio_bank_name;
293\tbool\t\tgpio_controller;
294\tfdt32_t\t\tsandbox_gpio_count;
295};
296#define dtd_sandbox_gpio_alias dtd_sandbox_gpio
297''', data)
298
Walter Lozanoa324e412020-06-25 01:10:08 -0300299 self.run_test(['platdata'], dtb_file, output)
Walter Lozanoe675d962020-07-03 08:07:17 -0300300 with open(output) as infile:
301 data = infile.read()
302 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300303static struct dtd_sandbox_gpio dtv_gpios_at_0 = {
Walter Lozanoe675d962020-07-03 08:07:17 -0300304\t.gpio_bank_name\t\t= "a",
305\t.gpio_controller\t= true,
306\t.sandbox_gpio_count\t= 0x14,
307};
308U_BOOT_DEVICE(gpios_at_0) = {
309\t.name\t\t= "sandbox_gpio",
310\t.platdata\t= &dtv_gpios_at_0,
311\t.platdata_size\t= sizeof(dtv_gpios_at_0),
312};
313
Walter Lozanodc5b4372020-06-25 01:10:13 -0300314void dm_populate_phandle_data(void) {
315}
Walter Lozanoe675d962020-07-03 08:07:17 -0300316''', data)
317
Walter Lozanoa324e412020-06-25 01:10:08 -0300318 def test_invalid_driver(self):
319 """Test output from a device tree file with an invalid driver"""
320 dtb_file = get_dtb_file('dtoc_test_invalid_driver.dts')
321 output = tools.GetOutputFilename('output')
322 with test_util.capture_sys_output() as (stdout, stderr):
323 dtb_platdata.run_steps(['struct'], dtb_file, False, output)
324 with open(output) as infile:
325 data = infile.read()
326 self._CheckStrings(HEADER + '''
327struct dtd_invalid {
328};
329''', data)
330
331 with test_util.capture_sys_output() as (stdout, stderr):
332 dtb_platdata.run_steps(['platdata'], dtb_file, False, output)
333 with open(output) as infile:
334 data = infile.read()
335 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300336static struct dtd_invalid dtv_spl_test = {
Walter Lozanoa324e412020-06-25 01:10:08 -0300337};
338U_BOOT_DEVICE(spl_test) = {
339\t.name\t\t= "invalid",
340\t.platdata\t= &dtv_spl_test,
341\t.platdata_size\t= sizeof(dtv_spl_test),
342};
343
Walter Lozanodc5b4372020-06-25 01:10:13 -0300344void dm_populate_phandle_data(void) {
345}
Walter Lozanoa324e412020-06-25 01:10:08 -0300346''', data)
347
Simon Glass9d2eb922017-06-18 22:09:06 -0600348 def test_phandle(self):
349 """Test output from a node containing a phandle reference"""
350 dtb_file = get_dtb_file('dtoc_test_phandle.dts')
351 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300352 self.run_test(['struct'], dtb_file, output)
Simon Glass9d2eb922017-06-18 22:09:06 -0600353 with open(output) as infile:
354 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600355 self._CheckStrings(HEADER + '''
Simon Glass9d2eb922017-06-18 22:09:06 -0600356struct dtd_source {
Simon Glass3deeb472017-08-29 14:15:59 -0600357\tstruct phandle_2_arg clocks[4];
Simon Glass9d2eb922017-06-18 22:09:06 -0600358};
359struct dtd_target {
360\tfdt32_t\t\tintval;
361};
362''', data)
363
Walter Lozanoa324e412020-06-25 01:10:08 -0300364 self.run_test(['platdata'], dtb_file, output)
Simon Glass9d2eb922017-06-18 22:09:06 -0600365 with open(output) as infile:
366 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600367 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300368static struct dtd_target dtv_phandle_target = {
Simon Glass3deeb472017-08-29 14:15:59 -0600369\t.intval\t\t\t= 0x0,
Simon Glass9d2eb922017-06-18 22:09:06 -0600370};
371U_BOOT_DEVICE(phandle_target) = {
372\t.name\t\t= "target",
373\t.platdata\t= &dtv_phandle_target,
374\t.platdata_size\t= sizeof(dtv_phandle_target),
375};
376
Walter Lozanodc5b4372020-06-25 01:10:13 -0300377static struct dtd_target dtv_phandle2_target = {
Simon Glass3deeb472017-08-29 14:15:59 -0600378\t.intval\t\t\t= 0x1,
379};
380U_BOOT_DEVICE(phandle2_target) = {
381\t.name\t\t= "target",
382\t.platdata\t= &dtv_phandle2_target,
383\t.platdata_size\t= sizeof(dtv_phandle2_target),
384};
385
Walter Lozanodc5b4372020-06-25 01:10:13 -0300386static struct dtd_target dtv_phandle3_target = {
Simon Glass3deeb472017-08-29 14:15:59 -0600387\t.intval\t\t\t= 0x2,
388};
389U_BOOT_DEVICE(phandle3_target) = {
390\t.name\t\t= "target",
391\t.platdata\t= &dtv_phandle3_target,
392\t.platdata_size\t= sizeof(dtv_phandle3_target),
393};
394
Walter Lozanodc5b4372020-06-25 01:10:13 -0300395static struct dtd_source dtv_phandle_source = {
Simon Glassd0cd0752017-08-29 14:15:57 -0600396\t.clocks\t\t\t= {
Walter Lozanodc5b4372020-06-25 01:10:13 -0300397\t\t\t{NULL, {}},
398\t\t\t{NULL, {11}},
399\t\t\t{NULL, {12, 13}},
400\t\t\t{NULL, {}},},
Simon Glass9d2eb922017-06-18 22:09:06 -0600401};
402U_BOOT_DEVICE(phandle_source) = {
403\t.name\t\t= "source",
404\t.platdata\t= &dtv_phandle_source,
405\t.platdata_size\t= sizeof(dtv_phandle_source),
406};
407
Walter Lozanodc5b4372020-06-25 01:10:13 -0300408static struct dtd_source dtv_phandle_source2 = {
Simon Glass609e2b12018-07-06 10:27:31 -0600409\t.clocks\t\t\t= {
Walter Lozanodc5b4372020-06-25 01:10:13 -0300410\t\t\t{NULL, {}},},
Simon Glass609e2b12018-07-06 10:27:31 -0600411};
412U_BOOT_DEVICE(phandle_source2) = {
413\t.name\t\t= "source",
414\t.platdata\t= &dtv_phandle_source2,
415\t.platdata_size\t= sizeof(dtv_phandle_source2),
416};
417
Walter Lozanodc5b4372020-06-25 01:10:13 -0300418void dm_populate_phandle_data(void) {
419\tdtv_phandle_source.clocks[0].node = DM_GET_DEVICE(phandle_target);
420\tdtv_phandle_source.clocks[1].node = DM_GET_DEVICE(phandle2_target);
421\tdtv_phandle_source.clocks[2].node = DM_GET_DEVICE(phandle3_target);
422\tdtv_phandle_source.clocks[3].node = DM_GET_DEVICE(phandle_target);
423\tdtv_phandle_source2.clocks[0].node = DM_GET_DEVICE(phandle_target);
424}
Simon Glass9d2eb922017-06-18 22:09:06 -0600425''', data)
426
Simon Glass961c1ce2018-07-06 10:27:35 -0600427 def test_phandle_single(self):
428 """Test output from a node containing a phandle reference"""
429 dtb_file = get_dtb_file('dtoc_test_phandle_single.dts')
430 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300431 self.run_test(['struct'], dtb_file, output)
Simon Glass961c1ce2018-07-06 10:27:35 -0600432 with open(output) as infile:
433 data = infile.read()
434 self._CheckStrings(HEADER + '''
435struct dtd_source {
436\tstruct phandle_0_arg clocks[1];
437};
438struct dtd_target {
439\tfdt32_t\t\tintval;
440};
441''', data)
442
443 def test_phandle_reorder(self):
444 """Test that phandle targets are generated before their references"""
445 dtb_file = get_dtb_file('dtoc_test_phandle_reorder.dts')
446 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300447 self.run_test(['platdata'], dtb_file, output)
Simon Glass961c1ce2018-07-06 10:27:35 -0600448 with open(output) as infile:
449 data = infile.read()
450 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300451static struct dtd_target dtv_phandle_target = {
Simon Glass961c1ce2018-07-06 10:27:35 -0600452};
453U_BOOT_DEVICE(phandle_target) = {
454\t.name\t\t= "target",
455\t.platdata\t= &dtv_phandle_target,
456\t.platdata_size\t= sizeof(dtv_phandle_target),
457};
458
Walter Lozanodc5b4372020-06-25 01:10:13 -0300459static struct dtd_source dtv_phandle_source2 = {
Simon Glass961c1ce2018-07-06 10:27:35 -0600460\t.clocks\t\t\t= {
Walter Lozanodc5b4372020-06-25 01:10:13 -0300461\t\t\t{NULL, {}},},
Simon Glass961c1ce2018-07-06 10:27:35 -0600462};
463U_BOOT_DEVICE(phandle_source2) = {
464\t.name\t\t= "source",
465\t.platdata\t= &dtv_phandle_source2,
466\t.platdata_size\t= sizeof(dtv_phandle_source2),
467};
468
Walter Lozanodc5b4372020-06-25 01:10:13 -0300469void dm_populate_phandle_data(void) {
470\tdtv_phandle_source2.clocks[0].node = DM_GET_DEVICE(phandle_target);
471}
Simon Glass961c1ce2018-07-06 10:27:35 -0600472''', data)
473
Walter Lozano5541fc02020-06-25 01:10:17 -0300474 def test_phandle_cd_gpio(self):
475 """Test that phandle targets are generated when unsing cd-gpios"""
476 dtb_file = get_dtb_file('dtoc_test_phandle_cd_gpios.dts')
477 output = tools.GetOutputFilename('output')
478 dtb_platdata.run_steps(['platdata'], dtb_file, False, output, True)
479 with open(output) as infile:
480 data = infile.read()
481 self._CheckStrings(C_HEADER + '''
482static struct dtd_target dtv_phandle_target = {
483\t.intval\t\t\t= 0x0,
484};
485U_BOOT_DEVICE(phandle_target) = {
486\t.name\t\t= "target",
487\t.platdata\t= &dtv_phandle_target,
488\t.platdata_size\t= sizeof(dtv_phandle_target),
489};
490
491static struct dtd_target dtv_phandle2_target = {
492\t.intval\t\t\t= 0x1,
493};
494U_BOOT_DEVICE(phandle2_target) = {
495\t.name\t\t= "target",
496\t.platdata\t= &dtv_phandle2_target,
497\t.platdata_size\t= sizeof(dtv_phandle2_target),
498};
499
500static struct dtd_target dtv_phandle3_target = {
501\t.intval\t\t\t= 0x2,
502};
503U_BOOT_DEVICE(phandle3_target) = {
504\t.name\t\t= "target",
505\t.platdata\t= &dtv_phandle3_target,
506\t.platdata_size\t= sizeof(dtv_phandle3_target),
507};
508
509static struct dtd_source dtv_phandle_source = {
510\t.cd_gpios\t\t= {
511\t\t\t{NULL, {}},
512\t\t\t{NULL, {11}},
513\t\t\t{NULL, {12, 13}},
514\t\t\t{NULL, {}},},
515};
516U_BOOT_DEVICE(phandle_source) = {
517\t.name\t\t= "source",
518\t.platdata\t= &dtv_phandle_source,
519\t.platdata_size\t= sizeof(dtv_phandle_source),
520};
521
522static struct dtd_source dtv_phandle_source2 = {
523\t.cd_gpios\t\t= {
524\t\t\t{NULL, {}},},
525};
526U_BOOT_DEVICE(phandle_source2) = {
527\t.name\t\t= "source",
528\t.platdata\t= &dtv_phandle_source2,
529\t.platdata_size\t= sizeof(dtv_phandle_source2),
530};
531
532void dm_populate_phandle_data(void) {
533\tdtv_phandle_source.cd_gpios[0].node = DM_GET_DEVICE(phandle_target);
534\tdtv_phandle_source.cd_gpios[1].node = DM_GET_DEVICE(phandle2_target);
535\tdtv_phandle_source.cd_gpios[2].node = DM_GET_DEVICE(phandle3_target);
536\tdtv_phandle_source.cd_gpios[3].node = DM_GET_DEVICE(phandle_target);
537\tdtv_phandle_source2.cd_gpios[0].node = DM_GET_DEVICE(phandle_target);
538}
539''', data)
540
Simon Glass961c1ce2018-07-06 10:27:35 -0600541 def test_phandle_bad(self):
542 """Test a node containing an invalid phandle fails"""
Simon Glass04150022018-10-01 21:12:43 -0600543 dtb_file = get_dtb_file('dtoc_test_phandle_bad.dts',
544 capture_stderr=True)
Simon Glass961c1ce2018-07-06 10:27:35 -0600545 output = tools.GetOutputFilename('output')
546 with self.assertRaises(ValueError) as e:
Walter Lozanoa324e412020-06-25 01:10:08 -0300547 self.run_test(['struct'], dtb_file, output)
Simon Glass961c1ce2018-07-06 10:27:35 -0600548 self.assertIn("Cannot parse 'clocks' in node 'phandle-source'",
549 str(e.exception))
550
551 def test_phandle_bad2(self):
552 """Test a phandle target missing its #*-cells property"""
Simon Glass04150022018-10-01 21:12:43 -0600553 dtb_file = get_dtb_file('dtoc_test_phandle_bad2.dts',
554 capture_stderr=True)
Simon Glass961c1ce2018-07-06 10:27:35 -0600555 output = tools.GetOutputFilename('output')
556 with self.assertRaises(ValueError) as e:
Walter Lozanoa324e412020-06-25 01:10:08 -0300557 self.run_test(['struct'], dtb_file, output)
Walter Lozano179f0b62020-06-25 01:10:16 -0300558 self.assertIn("Node 'phandle-target' has no cells property",
Simon Glass961c1ce2018-07-06 10:27:35 -0600559 str(e.exception))
560
Simon Glass9d2eb922017-06-18 22:09:06 -0600561 def test_aliases(self):
562 """Test output from a node with multiple compatible strings"""
563 dtb_file = get_dtb_file('dtoc_test_aliases.dts')
564 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300565 self.run_test(['struct'], dtb_file, output)
Simon Glass9d2eb922017-06-18 22:09:06 -0600566 with open(output) as infile:
567 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600568 self._CheckStrings(HEADER + '''
Simon Glass9d2eb922017-06-18 22:09:06 -0600569struct dtd_compat1 {
570\tfdt32_t\t\tintval;
571};
572#define dtd_compat2_1_fred dtd_compat1
573#define dtd_compat3 dtd_compat1
574''', data)
575
Walter Lozanoa324e412020-06-25 01:10:08 -0300576 self.run_test(['platdata'], dtb_file, output)
Simon Glass9d2eb922017-06-18 22:09:06 -0600577 with open(output) as infile:
578 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600579 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300580static struct dtd_compat1 dtv_spl_test = {
Simon Glass9d2eb922017-06-18 22:09:06 -0600581\t.intval\t\t\t= 0x1,
582};
583U_BOOT_DEVICE(spl_test) = {
584\t.name\t\t= "compat1",
585\t.platdata\t= &dtv_spl_test,
586\t.platdata_size\t= sizeof(dtv_spl_test),
587};
588
Walter Lozanodc5b4372020-06-25 01:10:13 -0300589''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass1b1fe412017-08-29 14:15:50 -0600590
591 def test_addresses64(self):
592 """Test output from a node with a 'reg' property with na=2, ns=2"""
593 dtb_file = get_dtb_file('dtoc_test_addr64.dts')
594 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300595 self.run_test(['struct'], dtb_file, output)
Simon Glass1b1fe412017-08-29 14:15:50 -0600596 with open(output) as infile:
597 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600598 self._CheckStrings(HEADER + '''
Simon Glass1b1fe412017-08-29 14:15:50 -0600599struct dtd_test1 {
600\tfdt64_t\t\treg[2];
601};
602struct dtd_test2 {
603\tfdt64_t\t\treg[2];
604};
605struct dtd_test3 {
606\tfdt64_t\t\treg[4];
607};
608''', data)
609
Walter Lozanoa324e412020-06-25 01:10:08 -0300610 self.run_test(['platdata'], dtb_file, output)
Simon Glass1b1fe412017-08-29 14:15:50 -0600611 with open(output) as infile:
612 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600613 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300614static struct dtd_test1 dtv_test1 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600615\t.reg\t\t\t= {0x1234, 0x5678},
616};
617U_BOOT_DEVICE(test1) = {
618\t.name\t\t= "test1",
619\t.platdata\t= &dtv_test1,
620\t.platdata_size\t= sizeof(dtv_test1),
621};
622
Walter Lozanodc5b4372020-06-25 01:10:13 -0300623static struct dtd_test2 dtv_test2 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600624\t.reg\t\t\t= {0x1234567890123456, 0x9876543210987654},
625};
626U_BOOT_DEVICE(test2) = {
627\t.name\t\t= "test2",
628\t.platdata\t= &dtv_test2,
629\t.platdata_size\t= sizeof(dtv_test2),
630};
631
Walter Lozanodc5b4372020-06-25 01:10:13 -0300632static struct dtd_test3 dtv_test3 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600633\t.reg\t\t\t= {0x1234567890123456, 0x9876543210987654, 0x2, 0x3},
634};
635U_BOOT_DEVICE(test3) = {
636\t.name\t\t= "test3",
637\t.platdata\t= &dtv_test3,
638\t.platdata_size\t= sizeof(dtv_test3),
639};
640
Walter Lozanodc5b4372020-06-25 01:10:13 -0300641''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass1b1fe412017-08-29 14:15:50 -0600642
643 def test_addresses32(self):
644 """Test output from a node with a 'reg' property with na=1, ns=1"""
645 dtb_file = get_dtb_file('dtoc_test_addr32.dts')
646 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300647 self.run_test(['struct'], dtb_file, output)
Simon Glass1b1fe412017-08-29 14:15:50 -0600648 with open(output) as infile:
649 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600650 self._CheckStrings(HEADER + '''
Simon Glass1b1fe412017-08-29 14:15:50 -0600651struct dtd_test1 {
652\tfdt32_t\t\treg[2];
653};
654struct dtd_test2 {
655\tfdt32_t\t\treg[4];
656};
657''', data)
658
Walter Lozanoa324e412020-06-25 01:10:08 -0300659 self.run_test(['platdata'], dtb_file, output)
Simon Glass1b1fe412017-08-29 14:15:50 -0600660 with open(output) as infile:
661 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600662 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300663static struct dtd_test1 dtv_test1 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600664\t.reg\t\t\t= {0x1234, 0x5678},
665};
666U_BOOT_DEVICE(test1) = {
667\t.name\t\t= "test1",
668\t.platdata\t= &dtv_test1,
669\t.platdata_size\t= sizeof(dtv_test1),
670};
671
Walter Lozanodc5b4372020-06-25 01:10:13 -0300672static struct dtd_test2 dtv_test2 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600673\t.reg\t\t\t= {0x12345678, 0x98765432, 0x2, 0x3},
674};
675U_BOOT_DEVICE(test2) = {
676\t.name\t\t= "test2",
677\t.platdata\t= &dtv_test2,
678\t.platdata_size\t= sizeof(dtv_test2),
679};
680
Walter Lozanodc5b4372020-06-25 01:10:13 -0300681''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass1b1fe412017-08-29 14:15:50 -0600682
683 def test_addresses64_32(self):
684 """Test output from a node with a 'reg' property with na=2, ns=1"""
685 dtb_file = get_dtb_file('dtoc_test_addr64_32.dts')
686 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300687 self.run_test(['struct'], dtb_file, output)
Simon Glass1b1fe412017-08-29 14:15:50 -0600688 with open(output) as infile:
689 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600690 self._CheckStrings(HEADER + '''
Simon Glass1b1fe412017-08-29 14:15:50 -0600691struct dtd_test1 {
692\tfdt64_t\t\treg[2];
693};
694struct dtd_test2 {
695\tfdt64_t\t\treg[2];
696};
697struct dtd_test3 {
698\tfdt64_t\t\treg[4];
699};
700''', data)
701
Walter Lozanoa324e412020-06-25 01:10:08 -0300702 self.run_test(['platdata'], dtb_file, output)
Simon Glass1b1fe412017-08-29 14:15:50 -0600703 with open(output) as infile:
704 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600705 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300706static struct dtd_test1 dtv_test1 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600707\t.reg\t\t\t= {0x123400000000, 0x5678},
708};
709U_BOOT_DEVICE(test1) = {
710\t.name\t\t= "test1",
711\t.platdata\t= &dtv_test1,
712\t.platdata_size\t= sizeof(dtv_test1),
713};
714
Walter Lozanodc5b4372020-06-25 01:10:13 -0300715static struct dtd_test2 dtv_test2 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600716\t.reg\t\t\t= {0x1234567890123456, 0x98765432},
717};
718U_BOOT_DEVICE(test2) = {
719\t.name\t\t= "test2",
720\t.platdata\t= &dtv_test2,
721\t.platdata_size\t= sizeof(dtv_test2),
722};
723
Walter Lozanodc5b4372020-06-25 01:10:13 -0300724static struct dtd_test3 dtv_test3 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600725\t.reg\t\t\t= {0x1234567890123456, 0x98765432, 0x2, 0x3},
726};
727U_BOOT_DEVICE(test3) = {
728\t.name\t\t= "test3",
729\t.platdata\t= &dtv_test3,
730\t.platdata_size\t= sizeof(dtv_test3),
731};
732
Walter Lozanodc5b4372020-06-25 01:10:13 -0300733''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass1b1fe412017-08-29 14:15:50 -0600734
735 def test_addresses32_64(self):
736 """Test output from a node with a 'reg' property with na=1, ns=2"""
737 dtb_file = get_dtb_file('dtoc_test_addr32_64.dts')
738 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300739 self.run_test(['struct'], dtb_file, output)
Simon Glass1b1fe412017-08-29 14:15:50 -0600740 with open(output) as infile:
741 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600742 self._CheckStrings(HEADER + '''
Simon Glass1b1fe412017-08-29 14:15:50 -0600743struct dtd_test1 {
744\tfdt64_t\t\treg[2];
745};
746struct dtd_test2 {
747\tfdt64_t\t\treg[2];
748};
749struct dtd_test3 {
750\tfdt64_t\t\treg[4];
751};
752''', data)
753
Walter Lozanoa324e412020-06-25 01:10:08 -0300754 self.run_test(['platdata'], dtb_file, output)
Simon Glass1b1fe412017-08-29 14:15:50 -0600755 with open(output) as infile:
756 data = infile.read()
Simon Glassc47c2b32018-07-06 10:27:25 -0600757 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300758static struct dtd_test1 dtv_test1 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600759\t.reg\t\t\t= {0x1234, 0x567800000000},
760};
761U_BOOT_DEVICE(test1) = {
762\t.name\t\t= "test1",
763\t.platdata\t= &dtv_test1,
764\t.platdata_size\t= sizeof(dtv_test1),
765};
766
Walter Lozanodc5b4372020-06-25 01:10:13 -0300767static struct dtd_test2 dtv_test2 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600768\t.reg\t\t\t= {0x12345678, 0x9876543210987654},
769};
770U_BOOT_DEVICE(test2) = {
771\t.name\t\t= "test2",
772\t.platdata\t= &dtv_test2,
773\t.platdata_size\t= sizeof(dtv_test2),
774};
775
Walter Lozanodc5b4372020-06-25 01:10:13 -0300776static struct dtd_test3 dtv_test3 = {
Simon Glass1b1fe412017-08-29 14:15:50 -0600777\t.reg\t\t\t= {0x12345678, 0x9876543210987654, 0x2, 0x3},
778};
779U_BOOT_DEVICE(test3) = {
780\t.name\t\t= "test3",
781\t.platdata\t= &dtv_test3,
782\t.platdata_size\t= sizeof(dtv_test3),
783};
784
Walter Lozanodc5b4372020-06-25 01:10:13 -0300785''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass961c1ce2018-07-06 10:27:35 -0600786
787 def test_bad_reg(self):
788 """Test that a reg property with an invalid type generates an error"""
Simon Glass3bce93d2018-07-06 10:27:37 -0600789 # Capture stderr since dtc will emit warnings for this file
790 dtb_file = get_dtb_file('dtoc_test_bad_reg.dts', capture_stderr=True)
Simon Glass961c1ce2018-07-06 10:27:35 -0600791 output = tools.GetOutputFilename('output')
792 with self.assertRaises(ValueError) as e:
Walter Lozanoa324e412020-06-25 01:10:08 -0300793 self.run_test(['struct'], dtb_file, output)
Simon Glass961c1ce2018-07-06 10:27:35 -0600794 self.assertIn("Node 'spl-test' reg property is not an int",
795 str(e.exception))
796
797 def test_bad_reg2(self):
798 """Test that a reg property with an invalid cell count is detected"""
Simon Glass3bce93d2018-07-06 10:27:37 -0600799 # Capture stderr since dtc will emit warnings for this file
800 dtb_file = get_dtb_file('dtoc_test_bad_reg2.dts', capture_stderr=True)
Simon Glass961c1ce2018-07-06 10:27:35 -0600801 output = tools.GetOutputFilename('output')
802 with self.assertRaises(ValueError) as e:
Walter Lozanoa324e412020-06-25 01:10:08 -0300803 self.run_test(['struct'], dtb_file, output)
Simon Glass961c1ce2018-07-06 10:27:35 -0600804 self.assertIn("Node 'spl-test' reg property has 3 cells which is not a multiple of na + ns = 1 + 1)",
805 str(e.exception))
806
807 def test_add_prop(self):
808 """Test that a subequent node can add a new property to a struct"""
809 dtb_file = get_dtb_file('dtoc_test_add_prop.dts')
810 output = tools.GetOutputFilename('output')
Walter Lozanoa324e412020-06-25 01:10:08 -0300811 self.run_test(['struct'], dtb_file, output)
Simon Glass961c1ce2018-07-06 10:27:35 -0600812 with open(output) as infile:
813 data = infile.read()
814 self._CheckStrings(HEADER + '''
815struct dtd_sandbox_spl_test {
816\tfdt32_t\t\tintarray;
817\tfdt32_t\t\tintval;
818};
819''', data)
820
Walter Lozanoa324e412020-06-25 01:10:08 -0300821 self.run_test(['platdata'], dtb_file, output)
Simon Glass961c1ce2018-07-06 10:27:35 -0600822 with open(output) as infile:
823 data = infile.read()
824 self._CheckStrings(C_HEADER + '''
Walter Lozanodc5b4372020-06-25 01:10:13 -0300825static struct dtd_sandbox_spl_test dtv_spl_test = {
Simon Glass961c1ce2018-07-06 10:27:35 -0600826\t.intval\t\t\t= 0x1,
827};
828U_BOOT_DEVICE(spl_test) = {
829\t.name\t\t= "sandbox_spl_test",
830\t.platdata\t= &dtv_spl_test,
831\t.platdata_size\t= sizeof(dtv_spl_test),
832};
833
Walter Lozanodc5b4372020-06-25 01:10:13 -0300834static struct dtd_sandbox_spl_test dtv_spl_test2 = {
Simon Glass961c1ce2018-07-06 10:27:35 -0600835\t.intarray\t\t= 0x5,
836};
837U_BOOT_DEVICE(spl_test2) = {
838\t.name\t\t= "sandbox_spl_test",
839\t.platdata\t= &dtv_spl_test2,
840\t.platdata_size\t= sizeof(dtv_spl_test2),
841};
842
Walter Lozanodc5b4372020-06-25 01:10:13 -0300843''' + C_EMPTY_POPULATE_PHANDLE_DATA, data)
Simon Glass961c1ce2018-07-06 10:27:35 -0600844
845 def testStdout(self):
846 """Test output to stdout"""
847 dtb_file = get_dtb_file('dtoc_test_simple.dts')
848 with test_util.capture_sys_output() as (stdout, stderr):
Walter Lozanoa324e412020-06-25 01:10:08 -0300849 self.run_test(['struct'], dtb_file, '-')
Simon Glass961c1ce2018-07-06 10:27:35 -0600850
851 def testNoCommand(self):
852 """Test running dtoc without a command"""
853 with self.assertRaises(ValueError) as e:
Walter Lozanoa324e412020-06-25 01:10:08 -0300854 self.run_test([], '', '')
Simon Glass961c1ce2018-07-06 10:27:35 -0600855 self.assertIn("Please specify a command: struct, platdata",
856 str(e.exception))
857
858 def testBadCommand(self):
859 """Test running dtoc with an invalid command"""
860 dtb_file = get_dtb_file('dtoc_test_simple.dts')
861 output = tools.GetOutputFilename('output')
862 with self.assertRaises(ValueError) as e:
Walter Lozanoa324e412020-06-25 01:10:08 -0300863 self.run_test(['invalid-cmd'], dtb_file, output)
Simon Glass961c1ce2018-07-06 10:27:35 -0600864 self.assertIn("Unknown command 'invalid-cmd': (use: struct, platdata)",
865 str(e.exception))