blob: 5735733fadbf1eaddadab51516d1e7ee91c63b42 [file] [log] [blame]
David Gibson73468582007-11-13 09:59:38 +11001/*
2 * libfdt - Flat Device Tree manipulation
3 * Testcase for fdt_get_phandle()
4 * Copyright (C) 2006 David Gibson, IBM Corporation.
5 *
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public License
8 * as published by the Free Software Foundation; either version 2.1 of
9 * the License, or (at your option) any later version.
10 *
11 * This library is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20#include <stdlib.h>
21#include <stdio.h>
22#include <string.h>
23#include <stdint.h>
24
25#include <fdt.h>
26#include <libfdt.h>
27
28#include "tests.h"
29#include "testdata.h"
30
David Gibson01a2d8a2008-08-04 15:30:13 +100031static void check_phandle(void *fdt, const char *path, uint32_t checkhandle)
David Gibson73468582007-11-13 09:59:38 +110032{
33 int offset;
34 uint32_t phandle;
35
36 offset = fdt_path_offset(fdt, path);
37 if (offset < 0)
38 FAIL("Couldn't find %s", path);
39
40 phandle = fdt_get_phandle(fdt, offset);
41 if (phandle != checkhandle)
42 FAIL("fdt_get_phandle(%s) returned 0x%x instead of 0x%x\n",
43 path, phandle, checkhandle);
44}
45
46int main(int argc, char *argv[])
47{
48 void *fdt;
49
50 test_init(argc, argv);
51 fdt = load_blob_arg(argc, argv);
52
53 check_phandle(fdt, "/", 0);
54 check_phandle(fdt, "/subnode@2", PHANDLE_1);
55 check_phandle(fdt, "/subnode@2/subsubnode@0", PHANDLE_2);
56
57 PASS();
58}