2006-11-29 06:45:46 +01:00
|
|
|
/*
|
|
|
|
* libfdt - Flat Device Tree manipulation
|
|
|
|
* Testcase for fdt_nop_node()
|
|
|
|
* Copyright (C) 2006 David Gibson, IBM Corporation.
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2.1 of
|
|
|
|
* the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful, but
|
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <ctype.h>
|
2007-03-23 05:16:54 +01:00
|
|
|
#include <stdint.h>
|
2006-11-29 06:45:46 +01:00
|
|
|
|
|
|
|
#include <libfdt.h>
|
|
|
|
|
|
|
|
#include "tests.h"
|
|
|
|
#include "testdata.h"
|
|
|
|
|
|
|
|
#define SPACE 65536
|
|
|
|
|
2013-10-25 15:17:37 +02:00
|
|
|
static enum {
|
|
|
|
FIXED = 0,
|
|
|
|
RESIZE,
|
|
|
|
REALLOC,
|
|
|
|
} alloc_mode;
|
|
|
|
|
2013-12-31 12:34:05 +01:00
|
|
|
static void realloc_fdt(void **fdt, size_t *size, bool created)
|
2013-10-25 15:17:37 +02:00
|
|
|
{
|
|
|
|
switch (alloc_mode) {
|
|
|
|
case FIXED:
|
|
|
|
if (!(*fdt))
|
|
|
|
fdt = xmalloc(*size);
|
|
|
|
else
|
|
|
|
FAIL("Ran out of space");
|
|
|
|
return;
|
|
|
|
|
|
|
|
case RESIZE:
|
|
|
|
if (!(*fdt)) {
|
|
|
|
fdt = xmalloc(SPACE);
|
|
|
|
} else if (*size < SPACE) {
|
|
|
|
*size += 1;
|
|
|
|
fdt_resize(*fdt, *fdt, *size);
|
|
|
|
} else {
|
|
|
|
FAIL("Ran out of space");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
|
|
|
|
case REALLOC:
|
|
|
|
*size += 1;
|
|
|
|
*fdt = xrealloc(*fdt, *size);
|
2013-12-31 12:34:05 +01:00
|
|
|
if (created)
|
|
|
|
fdt_resize(*fdt, *fdt, *size);
|
2013-10-25 15:17:37 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
default:
|
|
|
|
CONFIG("Bad allocation mode");
|
2006-11-29 06:45:46 +01:00
|
|
|
}
|
2013-10-25 15:17:37 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#define CHECK(code) \
|
|
|
|
do { \
|
|
|
|
err = (code); \
|
|
|
|
if (err == -FDT_ERR_NOSPACE) \
|
2013-12-31 12:34:05 +01:00
|
|
|
realloc_fdt(&fdt, &size, created); \
|
2013-10-25 15:17:37 +02:00
|
|
|
else if (err) \
|
|
|
|
FAIL(#code ": %s", fdt_strerror(err)); \
|
|
|
|
} while (err != 0)
|
2006-11-29 06:45:46 +01:00
|
|
|
|
|
|
|
int main(int argc, char *argv[])
|
|
|
|
{
|
2013-10-25 15:17:37 +02:00
|
|
|
void *fdt = NULL;
|
|
|
|
size_t size;
|
2006-11-29 06:45:46 +01:00
|
|
|
int err;
|
2013-12-31 12:34:05 +01:00
|
|
|
bool created = false;
|
2006-11-29 06:45:46 +01:00
|
|
|
|
|
|
|
test_init(argc, argv);
|
|
|
|
|
2013-10-25 15:17:37 +02:00
|
|
|
if (argc == 1) {
|
|
|
|
alloc_mode = FIXED;
|
|
|
|
size = SPACE;
|
|
|
|
} else if (argc == 2) {
|
|
|
|
if (streq(argv[1], "resize")) {
|
|
|
|
alloc_mode = REALLOC;
|
|
|
|
size = 0;
|
|
|
|
} else if (streq(argv[1], "realloc")) {
|
|
|
|
alloc_mode = REALLOC;
|
|
|
|
size = 0;
|
|
|
|
} else {
|
|
|
|
char *endp;
|
|
|
|
|
|
|
|
size = strtoul(argv[1], &endp, 0);
|
|
|
|
if (*endp == '\0')
|
|
|
|
alloc_mode = FIXED;
|
|
|
|
else
|
|
|
|
CONFIG("Bad allocation mode \"%s\" specified",
|
|
|
|
argv[1]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fdt = xmalloc(size);
|
|
|
|
CHECK(fdt_create(fdt, size));
|
2006-11-29 06:45:46 +01:00
|
|
|
|
2013-12-31 12:34:05 +01:00
|
|
|
created = true;
|
|
|
|
|
2007-10-10 09:12:12 +02:00
|
|
|
CHECK(fdt_add_reservemap_entry(fdt, TEST_ADDR_1, TEST_SIZE_1));
|
2013-12-31 12:34:05 +01:00
|
|
|
|
2007-10-10 09:12:12 +02:00
|
|
|
CHECK(fdt_add_reservemap_entry(fdt, TEST_ADDR_2, TEST_SIZE_2));
|
2006-11-29 06:45:46 +01:00
|
|
|
CHECK(fdt_finish_reservemap(fdt));
|
2007-10-10 09:12:12 +02:00
|
|
|
|
2006-11-29 06:45:46 +01:00
|
|
|
CHECK(fdt_begin_node(fdt, ""));
|
2007-10-16 05:58:25 +02:00
|
|
|
CHECK(fdt_property_string(fdt, "compatible", "test_tree1"));
|
2012-06-01 06:12:37 +02:00
|
|
|
CHECK(fdt_property_u32(fdt, "prop-int", TEST_VALUE_1));
|
|
|
|
CHECK(fdt_property_u64(fdt, "prop-int64", TEST_VALUE64_1));
|
2006-11-29 06:45:46 +01:00
|
|
|
CHECK(fdt_property_string(fdt, "prop-str", TEST_STRING_1));
|
2013-09-19 14:15:13 +02:00
|
|
|
CHECK(fdt_property_u32(fdt, "#address-cells", 1));
|
|
|
|
CHECK(fdt_property_u32(fdt, "#size-cells", 0));
|
2006-11-29 06:45:46 +01:00
|
|
|
|
2007-09-28 07:51:04 +02:00
|
|
|
CHECK(fdt_begin_node(fdt, "subnode@1"));
|
2007-10-16 05:58:25 +02:00
|
|
|
CHECK(fdt_property_string(fdt, "compatible", "subnode1"));
|
2013-09-19 14:15:13 +02:00
|
|
|
CHECK(fdt_property_u32(fdt, "reg", 1));
|
libfdt: Abolish _typed() variants, add _cell() variants
In a number of places through libfdt and its tests, we have *_typed()
macro variants on functions which use gcc's typeof and statement
expression extensions to allow passing literals where the underlying
function takes a buffer and size.
These seemed like a good idea at the time, but in fact they have some
problems. They use typeof and statement expressions, extensions I'd
prefer to avoid for portability. Plus, they have potential gotchas -
although they'll deal with the size of the thing passed, they won't
deal with other representation issues (like endianness) and results
could be very strange if the type of the expression passed isn't what
you think it is.
In fact, the only users of these _typed() macros were when the value
passed is a single cell (32-bit integer). Therefore, this patch
removes all these _typed() macros and replaces them with explicit
_cell() variants which handle a single 32-bit integer, and which also
perform endian convesions as appropriate.
With this in place, it now becomes easy to use standardized big-endian
representation for integer valued properties in the testcases,
regardless of the platform we're running on. We therefore do that,
which has the additional advantage that all the example trees created
during a test run are now byte-for-byte identical regardless of
platform.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-20 03:35:46 +01:00
|
|
|
CHECK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_1));
|
2006-11-29 06:45:46 +01:00
|
|
|
CHECK(fdt_begin_node(fdt, "subsubnode"));
|
2007-10-16 05:58:25 +02:00
|
|
|
CHECK(fdt_property(fdt, "compatible", "subsubnode1\0subsubnode",
|
|
|
|
23));
|
libfdt: Abolish _typed() variants, add _cell() variants
In a number of places through libfdt and its tests, we have *_typed()
macro variants on functions which use gcc's typeof and statement
expression extensions to allow passing literals where the underlying
function takes a buffer and size.
These seemed like a good idea at the time, but in fact they have some
problems. They use typeof and statement expressions, extensions I'd
prefer to avoid for portability. Plus, they have potential gotchas -
although they'll deal with the size of the thing passed, they won't
deal with other representation issues (like endianness) and results
could be very strange if the type of the expression passed isn't what
you think it is.
In fact, the only users of these _typed() macros were when the value
passed is a single cell (32-bit integer). Therefore, this patch
removes all these _typed() macros and replaces them with explicit
_cell() variants which handle a single 32-bit integer, and which also
perform endian convesions as appropriate.
With this in place, it now becomes easy to use standardized big-endian
representation for integer valued properties in the testcases,
regardless of the platform we're running on. We therefore do that,
which has the additional advantage that all the example trees created
during a test run are now byte-for-byte identical regardless of
platform.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-20 03:35:46 +01:00
|
|
|
CHECK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_1));
|
2006-11-29 06:45:46 +01:00
|
|
|
CHECK(fdt_end_node(fdt));
|
2008-10-30 03:41:08 +01:00
|
|
|
CHECK(fdt_begin_node(fdt, "ss1"));
|
|
|
|
CHECK(fdt_end_node(fdt));
|
2006-11-29 06:45:46 +01:00
|
|
|
CHECK(fdt_end_node(fdt));
|
|
|
|
|
2007-09-28 07:51:04 +02:00
|
|
|
CHECK(fdt_begin_node(fdt, "subnode@2"));
|
2013-09-19 14:15:13 +02:00
|
|
|
CHECK(fdt_property_u32(fdt, "reg", 2));
|
libfdt: Abolish _typed() variants, add _cell() variants
In a number of places through libfdt and its tests, we have *_typed()
macro variants on functions which use gcc's typeof and statement
expression extensions to allow passing literals where the underlying
function takes a buffer and size.
These seemed like a good idea at the time, but in fact they have some
problems. They use typeof and statement expressions, extensions I'd
prefer to avoid for portability. Plus, they have potential gotchas -
although they'll deal with the size of the thing passed, they won't
deal with other representation issues (like endianness) and results
could be very strange if the type of the expression passed isn't what
you think it is.
In fact, the only users of these _typed() macros were when the value
passed is a single cell (32-bit integer). Therefore, this patch
removes all these _typed() macros and replaces them with explicit
_cell() variants which handle a single 32-bit integer, and which also
perform endian convesions as appropriate.
With this in place, it now becomes easy to use standardized big-endian
representation for integer valued properties in the testcases,
regardless of the platform we're running on. We therefore do that,
which has the additional advantage that all the example trees created
during a test run are now byte-for-byte identical regardless of
platform.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-20 03:35:46 +01:00
|
|
|
CHECK(fdt_property_cell(fdt, "linux,phandle", PHANDLE_1));
|
|
|
|
CHECK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_2));
|
2013-09-19 14:15:13 +02:00
|
|
|
CHECK(fdt_property_u32(fdt, "#address-cells", 1));
|
|
|
|
CHECK(fdt_property_u32(fdt, "#size-cells", 0));
|
2007-09-28 07:51:04 +02:00
|
|
|
CHECK(fdt_begin_node(fdt, "subsubnode@0"));
|
2013-09-19 14:15:13 +02:00
|
|
|
CHECK(fdt_property_u32(fdt, "reg", 0));
|
Support ePAPR compliant phandle properties
Currently, the Linux kernel, libfdt and dtc, when using flattened
device trees encode a node's phandle into a property named
"linux,phandle". The ePAPR specification, however - aiming as it is
to not be a Linux specific spec - requires that phandles be encoded in
a property named simply "phandle".
This patch adds support for this newer approach to dtc and libfdt.
Specifically:
- fdt_get_phandle() will now return the correct phandle if it
is supplied in either of these properties
- fdt_node_offset_by_phandle() will correctly find a node with
the given phandle encoded in either property.
- By default, when auto-generating phandles, dtc will encode
it into both properties for maximum compatibility. A new -H
option allows either only old-style or only new-style
properties to be generated.
- If phandle properties are explicitly supplied in the dts
file, dtc will not auto-generate ones in the alternate format.
- If both properties are supplied, dtc will check that they
have the same value.
- Some existing testcases are updated to use a mix of old and
new-style phandles, partially testing the changes.
- A new phandle_format test further tests the libfdt support,
and the -H option.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2009-11-26 05:37:13 +01:00
|
|
|
CHECK(fdt_property_cell(fdt, "phandle", PHANDLE_2));
|
2007-10-16 05:58:25 +02:00
|
|
|
CHECK(fdt_property(fdt, "compatible", "subsubnode2\0subsubnode",
|
|
|
|
23));
|
libfdt: Abolish _typed() variants, add _cell() variants
In a number of places through libfdt and its tests, we have *_typed()
macro variants on functions which use gcc's typeof and statement
expression extensions to allow passing literals where the underlying
function takes a buffer and size.
These seemed like a good idea at the time, but in fact they have some
problems. They use typeof and statement expressions, extensions I'd
prefer to avoid for portability. Plus, they have potential gotchas -
although they'll deal with the size of the thing passed, they won't
deal with other representation issues (like endianness) and results
could be very strange if the type of the expression passed isn't what
you think it is.
In fact, the only users of these _typed() macros were when the value
passed is a single cell (32-bit integer). Therefore, this patch
removes all these _typed() macros and replaces them with explicit
_cell() variants which handle a single 32-bit integer, and which also
perform endian convesions as appropriate.
With this in place, it now becomes easy to use standardized big-endian
representation for integer valued properties in the testcases,
regardless of the platform we're running on. We therefore do that,
which has the additional advantage that all the example trees created
during a test run are now byte-for-byte identical regardless of
platform.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-20 03:35:46 +01:00
|
|
|
CHECK(fdt_property_cell(fdt, "prop-int", TEST_VALUE_2));
|
2006-11-29 06:45:46 +01:00
|
|
|
CHECK(fdt_end_node(fdt));
|
2008-10-30 03:41:08 +01:00
|
|
|
CHECK(fdt_begin_node(fdt, "ss2"));
|
|
|
|
CHECK(fdt_end_node(fdt));
|
|
|
|
|
2006-11-29 06:45:46 +01:00
|
|
|
CHECK(fdt_end_node(fdt));
|
|
|
|
|
|
|
|
CHECK(fdt_end_node(fdt));
|
|
|
|
|
|
|
|
save_blob("unfinished_tree1.test.dtb", fdt);
|
|
|
|
|
|
|
|
CHECK(fdt_finish(fdt));
|
|
|
|
|
|
|
|
verbose_printf("Completed tree, totalsize = %d\n",
|
2006-12-15 05:12:47 +01:00
|
|
|
fdt_totalsize(fdt));
|
2006-11-29 06:45:46 +01:00
|
|
|
|
|
|
|
save_blob("sw_tree1.test.dtb", fdt);
|
|
|
|
|
|
|
|
PASS();
|
|
|
|
}
|