1 /*
2 * Copyright (C) 2008 David Gibson, IBM Corporation.
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public License
6 * as published by the Free Software Foundation; either version 2.1 of
7 * the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
13 *
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18
19 #include <stdlib.h>
20 #include <stdio.h>
21 #include <string.h>
22 #include <stdint.h>
23
24 #include <libfdt.h>
25
26 #include "tests.h"
27 #include "testdata.h"
28
main(int argc,char * argv[])29 int main(int argc, char *argv[])
30 {
31 void *fdt;
32 uint32_t cpuid;
33
34 test_init(argc, argv);
35
36 if (argc != 3)
37 CONFIG("Usage: %s <dtb file> <cpuid>", argv[0]);
38
39 fdt = load_blob(argv[1]);
40 cpuid = strtoul(argv[2], NULL, 0);
41
42 if (fdt_boot_cpuid_phys(fdt) != cpuid)
43 FAIL("Incorrect boot_cpuid_phys (0x%x instead of 0x%x)",
44 fdt_boot_cpuid_phys(fdt), cpuid);
45
46 PASS();
47 }
48