2005-06-08 09:18:34 +02:00
|
|
|
#ifndef _DTC_H
|
|
|
|
#define _DTC_H
|
|
|
|
|
|
|
|
/*
|
|
|
|
* (C) Copyright David Gibson <dwg@au1.ibm.com>, IBM Corporation. 2005.
|
|
|
|
*
|
2007-09-18 03:44:04 +02:00
|
|
|
*
|
2005-06-08 09:18:34 +02:00
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2 of the
|
|
|
|
* License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program 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
|
|
|
|
* General Public License for more details.
|
2007-09-18 03:44:04 +02:00
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
* USA
|
2005-06-08 09:18:34 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <netinet/in.h>
|
2005-07-15 09:14:24 +02:00
|
|
|
#include <endian.h>
|
|
|
|
#include <byteswap.h>
|
|
|
|
|
2007-09-26 05:11:05 +02:00
|
|
|
#include <fdt.h>
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2007-09-26 05:11:05 +02:00
|
|
|
#define DEFAULT_FDT_VERSION 17
|
2007-03-18 21:49:24 +01:00
|
|
|
/*
|
2007-04-05 04:04:33 +02:00
|
|
|
* Command line options
|
2007-03-18 21:49:24 +01:00
|
|
|
*/
|
2007-04-05 04:04:33 +02:00
|
|
|
extern int quiet; /* Level of quietness */
|
|
|
|
extern int reservenum; /* Number of memory reservation slots */
|
|
|
|
extern int minsize; /* Minimum blob size */
|
2007-03-18 21:49:24 +01:00
|
|
|
|
2007-08-31 08:21:23 +02:00
|
|
|
static inline void __attribute__((noreturn)) die(char * str, ...)
|
2005-06-08 09:18:34 +02:00
|
|
|
{
|
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
va_start(ap, str);
|
|
|
|
fprintf(stderr, "FATAL ERROR: ");
|
|
|
|
vfprintf(stderr, str, ap);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *xmalloc(size_t len)
|
|
|
|
{
|
|
|
|
void *new = malloc(len);
|
|
|
|
|
|
|
|
if (! new)
|
|
|
|
die("malloc() failed\n");
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void *xrealloc(void *p, size_t len)
|
|
|
|
{
|
|
|
|
void *new = realloc(p, len);
|
|
|
|
|
|
|
|
if (! new)
|
|
|
|
die("realloc() failed (len=%d)\n", len);
|
|
|
|
|
|
|
|
return new;
|
|
|
|
}
|
|
|
|
|
2005-07-11 08:49:52 +02:00
|
|
|
typedef uint8_t u8;
|
2005-06-08 09:18:34 +02:00
|
|
|
typedef uint16_t u16;
|
|
|
|
typedef uint32_t u32;
|
|
|
|
typedef uint64_t u64;
|
|
|
|
typedef u32 cell_t;
|
|
|
|
|
|
|
|
#define cpu_to_be16(x) htons(x)
|
|
|
|
#define be16_to_cpu(x) ntohs(x)
|
|
|
|
|
|
|
|
#define cpu_to_be32(x) htonl(x)
|
|
|
|
#define be32_to_cpu(x) ntohl(x)
|
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
#if __BYTE_ORDER == __BIG_ENDIAN
|
|
|
|
#define cpu_to_be64(x) (x)
|
|
|
|
#define be64_to_cpu(x) (x)
|
|
|
|
#else
|
|
|
|
#define cpu_to_be64(x) bswap_64(x)
|
|
|
|
#define be64_to_cpu(x) bswap_64(x)
|
|
|
|
#endif
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
#define streq(a, b) (strcmp((a), (b)) == 0)
|
2005-06-16 09:04:00 +02:00
|
|
|
#define strneq(a, b, n) (strncmp((a), (b), (n)) == 0)
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
#define ALIGN(x, a) (((x) + (a) - 1) & ~((a) - 1))
|
|
|
|
#define ARRAY_SIZE(x) (sizeof(x) / sizeof((x)[0]))
|
|
|
|
|
|
|
|
/* Data blobs */
|
2007-11-22 04:39:23 +01:00
|
|
|
enum markertype {
|
|
|
|
REF_PHANDLE,
|
|
|
|
LABEL,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct marker {
|
|
|
|
enum markertype type;
|
2005-06-16 09:04:00 +02:00
|
|
|
int offset;
|
|
|
|
char *ref;
|
2007-11-22 04:39:23 +01:00
|
|
|
struct marker *next;
|
2005-06-16 09:04:00 +02:00
|
|
|
};
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
struct data {
|
|
|
|
int len;
|
|
|
|
char *val;
|
|
|
|
int asize;
|
2007-11-22 04:39:23 +01:00
|
|
|
struct marker *markers;
|
2005-06-08 09:18:34 +02:00
|
|
|
};
|
|
|
|
|
2007-11-22 04:39:23 +01:00
|
|
|
|
dtc: implement labels on property data
Extend the parser grammer to allow labels before or after any
property data (string, cell list, or byte list), and any
byte or cell within the property data.
Store the labels using the same linked list structure as node
references, but using a parallel list.
When writing assembly output emit global labels as offsets from
the start of the definition of the data.
Note that the alignment for a cell list is done as part of the
opening < delimiter, not the = or , before it. To label a cell
after a string or byte list put the label inside the cell list.
For example,
prop = zero: [ aa bb ], two: < four: 1234 > eight: ;
will produce labels with offsets 0, 2, 4, and 8 bytes from
the beginning of the data for property prop.
Signed-off-by: Milton Miller <miltonm@bga.com>
2007-07-07 08:18:51 +02:00
|
|
|
#define empty_data ((struct data){ /* all .members = 0 or NULL */ })
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2007-11-22 04:39:23 +01:00
|
|
|
#define for_each_marker(m) \
|
|
|
|
for (; (m); (m) = (m)->next)
|
|
|
|
#define for_each_marker_of_type(m, t) \
|
|
|
|
for_each_marker(m) \
|
|
|
|
if ((m)->type == (t))
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
void data_free(struct data d);
|
|
|
|
|
|
|
|
struct data data_grow_for(struct data d, int xlen);
|
|
|
|
|
|
|
|
struct data data_copy_mem(char *mem, int len);
|
|
|
|
struct data data_copy_escape_string(char *s, int len);
|
|
|
|
struct data data_copy_file(FILE *f, size_t len);
|
|
|
|
|
|
|
|
struct data data_append_data(struct data d, void *p, int len);
|
2007-02-07 06:37:50 +01:00
|
|
|
struct data data_merge(struct data d1, struct data d2);
|
2005-06-08 09:18:34 +02:00
|
|
|
struct data data_append_cell(struct data d, cell_t word);
|
2007-09-26 05:11:05 +02:00
|
|
|
struct data data_append_re(struct data d, struct fdt_reserve_entry *re);
|
2005-07-15 09:14:24 +02:00
|
|
|
struct data data_append_addr(struct data d, u64 addr);
|
2005-06-08 09:18:34 +02:00
|
|
|
struct data data_append_byte(struct data d, uint8_t byte);
|
|
|
|
struct data data_append_zeroes(struct data d, int len);
|
|
|
|
struct data data_append_align(struct data d, int align);
|
|
|
|
|
2007-11-22 04:39:23 +01:00
|
|
|
struct data data_add_marker(struct data d, enum markertype type, char *ref);
|
2005-06-16 09:04:00 +02:00
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
int data_is_one_string(struct data d);
|
|
|
|
|
|
|
|
/* DT constraints */
|
|
|
|
|
|
|
|
#define MAX_PROPNAME_LEN 31
|
|
|
|
#define MAX_NODENAME_LEN 31
|
|
|
|
|
|
|
|
/* Live trees */
|
|
|
|
struct property {
|
|
|
|
char *name;
|
|
|
|
struct data val;
|
|
|
|
|
|
|
|
struct property *next;
|
2005-06-16 06:36:37 +02:00
|
|
|
|
|
|
|
char *label;
|
2005-06-08 09:18:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct node {
|
|
|
|
char *name;
|
|
|
|
struct property *proplist;
|
|
|
|
struct node *children;
|
|
|
|
|
|
|
|
struct node *parent;
|
|
|
|
struct node *next_sibling;
|
|
|
|
|
|
|
|
char *fullpath;
|
|
|
|
int basenamelen;
|
|
|
|
|
|
|
|
cell_t phandle;
|
|
|
|
int addr_cells, size_cells;
|
2005-06-16 06:36:37 +02:00
|
|
|
|
|
|
|
char *label;
|
2005-06-08 09:18:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
#define for_each_property(n, p) \
|
|
|
|
for ((p) = (n)->proplist; (p); (p) = (p)->next)
|
|
|
|
|
|
|
|
#define for_each_child(n, c) \
|
|
|
|
for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
|
|
|
|
|
2005-06-16 06:36:37 +02:00
|
|
|
struct property *build_property(char *name, struct data val, char *label);
|
2005-06-08 09:18:34 +02:00
|
|
|
struct property *chain_property(struct property *first, struct property *list);
|
2007-10-22 23:09:56 +02:00
|
|
|
struct property *reverse_properties(struct property *first);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
struct node *build_node(struct property *proplist, struct node *children);
|
2005-06-16 06:36:37 +02:00
|
|
|
struct node *name_node(struct node *node, char *name, char *label);
|
2005-06-08 09:18:34 +02:00
|
|
|
struct node *chain_node(struct node *first, struct node *list);
|
|
|
|
|
|
|
|
void add_property(struct node *node, struct property *prop);
|
|
|
|
void add_child(struct node *parent, struct node *child);
|
|
|
|
|
2007-11-01 06:49:26 +01:00
|
|
|
char *get_unitname(struct node *node);
|
|
|
|
struct property *get_property(struct node *node, char *propname);
|
|
|
|
cell_t propval_cell(struct property *prop);
|
|
|
|
struct node *get_subnode(struct node *node, char *nodename);
|
dtc: Flexible tree checking infrastructure (v2)
dtc: Flexible tree checking infrastructure
Here, at last, is a substantial start on revising dtc's infrastructure
for checking the tree; this is the rework I've been saying was
necessary practically since dtc was first release.
In the new model, we have a table of "check" structures, each with a
name, references to checking functions, and status variables. Each
check can (in principle) be individually switched off or on (as either
a warning or error). Checks have a list of prerequisites, so if
checks need to rely on results from earlier checks to make sense (or
even to avoid crashing) they just need to list the relevant other
checks there.
For now, only the "structural" checks and the fixups for phandle
references are converted to the new mechanism. The rather more
involved semantic checks (which is where this new mechanism will
really be useful) will have to be converted in future patches.
At present, there's no user interface for turning on/off the checks -
the -f option now forces output even if "error" level checks fail.
Again, future patches will be needed to add the fine-grained control,
but that should be quite straightforward with the infrastructure
implemented here.
Also adds a testcase for the handling of bad references, which catches
a bug encountered while developing this patch.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-22 04:38:07 +01:00
|
|
|
struct node *get_node_by_path(struct node *tree, char *path);
|
|
|
|
struct node *get_node_by_label(struct node *tree, const char *label);
|
2007-11-01 06:49:26 +01:00
|
|
|
struct node *get_node_by_phandle(struct node *tree, cell_t phandle);
|
dtc: Flexible tree checking infrastructure (v2)
dtc: Flexible tree checking infrastructure
Here, at last, is a substantial start on revising dtc's infrastructure
for checking the tree; this is the rework I've been saying was
necessary practically since dtc was first release.
In the new model, we have a table of "check" structures, each with a
name, references to checking functions, and status variables. Each
check can (in principle) be individually switched off or on (as either
a warning or error). Checks have a list of prerequisites, so if
checks need to rely on results from earlier checks to make sense (or
even to avoid crashing) they just need to list the relevant other
checks there.
For now, only the "structural" checks and the fixups for phandle
references are converted to the new mechanism. The rather more
involved semantic checks (which is where this new mechanism will
really be useful) will have to be converted in future patches.
At present, there's no user interface for turning on/off the checks -
the -f option now forces output even if "error" level checks fail.
Again, future patches will be needed to add the fine-grained control,
but that should be quite straightforward with the infrastructure
implemented here.
Also adds a testcase for the handling of bad references, which catches
a bug encountered while developing this patch.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-22 04:38:07 +01:00
|
|
|
struct node *get_node_by_ref(struct node *tree, char *ref);
|
|
|
|
cell_t get_node_phandle(struct node *root, struct node *node);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
/* Boot info (tree plus memreserve information */
|
|
|
|
|
2005-10-24 10:18:38 +02:00
|
|
|
struct reserve_info {
|
2007-09-26 05:11:05 +02:00
|
|
|
struct fdt_reserve_entry re;
|
2005-10-24 10:18:38 +02:00
|
|
|
|
|
|
|
struct reserve_info *next;
|
|
|
|
|
|
|
|
char *label;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct reserve_info *build_reserve_entry(u64 start, u64 len, char *label);
|
|
|
|
struct reserve_info *chain_reserve_entry(struct reserve_info *first,
|
|
|
|
struct reserve_info *list);
|
|
|
|
struct reserve_info *add_reserve_entry(struct reserve_info *list,
|
|
|
|
struct reserve_info *new);
|
|
|
|
|
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
struct boot_info {
|
2005-10-24 10:18:38 +02:00
|
|
|
struct reserve_info *reservelist;
|
2005-07-15 09:14:24 +02:00
|
|
|
struct node *dt; /* the device tree */
|
|
|
|
};
|
|
|
|
|
2005-10-24 10:18:38 +02:00
|
|
|
struct boot_info *build_boot_info(struct reserve_info *reservelist,
|
2005-07-15 09:14:24 +02:00
|
|
|
struct node *tree);
|
|
|
|
|
2007-11-01 06:49:26 +01:00
|
|
|
/* Checks */
|
|
|
|
|
dtc: Flexible tree checking infrastructure (v2)
dtc: Flexible tree checking infrastructure
Here, at last, is a substantial start on revising dtc's infrastructure
for checking the tree; this is the rework I've been saying was
necessary practically since dtc was first release.
In the new model, we have a table of "check" structures, each with a
name, references to checking functions, and status variables. Each
check can (in principle) be individually switched off or on (as either
a warning or error). Checks have a list of prerequisites, so if
checks need to rely on results from earlier checks to make sense (or
even to avoid crashing) they just need to list the relevant other
checks there.
For now, only the "structural" checks and the fixups for phandle
references are converted to the new mechanism. The rather more
involved semantic checks (which is where this new mechanism will
really be useful) will have to be converted in future patches.
At present, there's no user interface for turning on/off the checks -
the -f option now forces output even if "error" level checks fail.
Again, future patches will be needed to add the fine-grained control,
but that should be quite straightforward with the infrastructure
implemented here.
Also adds a testcase for the handling of bad references, which catches
a bug encountered while developing this patch.
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
2007-11-22 04:38:07 +01:00
|
|
|
void process_checks(int force, struct node *dt);
|
2007-11-01 06:49:26 +01:00
|
|
|
int check_semantics(struct node *dt, int outversion, int boot_cpuid_phys);
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
/* Flattened trees */
|
|
|
|
|
2006-05-31 00:31:51 +02:00
|
|
|
void dt_to_blob(FILE *f, struct boot_info *bi, int version,
|
|
|
|
int boot_cpuid_phys);
|
|
|
|
void dt_to_asm(FILE *f, struct boot_info *bi, int version,
|
|
|
|
int boot_cpuid_phys);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
struct boot_info *dt_from_blob(FILE *f);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
/* Tree source */
|
|
|
|
|
2005-10-26 08:56:26 +02:00
|
|
|
void dt_to_source(FILE *f, struct boot_info *bi);
|
2007-03-23 21:18:41 +01:00
|
|
|
struct boot_info *dt_from_source(const char *f);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
/* FS trees */
|
|
|
|
|
2005-07-15 09:14:24 +02:00
|
|
|
struct boot_info *dt_from_fs(char *dirname);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
/* misc */
|
|
|
|
|
|
|
|
char *join_path(char *path, char *name);
|
|
|
|
void fill_fullpaths(struct node *tree, char *prefix);
|
|
|
|
|
|
|
|
#endif /* _DTC_H */
|