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>
|
2012-07-08 15:25:21 +02:00
|
|
|
#include <stdbool.h>
|
2005-06-08 09:18:34 +02:00
|
|
|
#include <stdarg.h>
|
|
|
|
#include <assert.h>
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <unistd.h>
|
2005-07-15 09:14:24 +02:00
|
|
|
|
2008-06-25 06:27:53 +02:00
|
|
|
#include <libfdt_env.h>
|
2007-09-26 05:11:05 +02:00
|
|
|
#include <fdt.h>
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2008-10-03 18:12:33 +02:00
|
|
|
#include "util.h"
|
|
|
|
|
2008-09-05 21:25:44 +02:00
|
|
|
#ifdef DEBUG
|
2014-06-19 13:07:48 +02:00
|
|
|
#define debug(...) printf(__VA_ARGS__)
|
2008-09-05 21:25:44 +02:00
|
|
|
#else
|
2014-06-19 13:07:48 +02:00
|
|
|
#define debug(...)
|
2008-09-05 21:25:44 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
|
2007-09-26 05:11:05 +02:00
|
|
|
#define DEFAULT_FDT_VERSION 17
|
2008-10-03 18:12:33 +02:00
|
|
|
|
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-11-28 17:21:12 +01:00
|
|
|
extern int padsize; /* Additional padding to blob */
|
2016-07-18 09:56:53 +02:00
|
|
|
extern int alignsize; /* Additional padding to blob accroding to the alignsize */
|
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
|
|
|
extern int phandle_format; /* Use linux,phandle or phandle properties */
|
2016-12-07 13:48:18 +01:00
|
|
|
extern int generate_symbols; /* generate symbols for nodes with labels */
|
|
|
|
extern int generate_fixups; /* generate fixups */
|
|
|
|
extern int auto_label_aliases; /* auto generate labels -> aliases */
|
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
|
|
|
|
|
|
|
#define PHANDLE_LEGACY 0x1
|
|
|
|
#define PHANDLE_EPAPR 0x2
|
|
|
|
#define PHANDLE_BOTH 0x3
|
2007-03-18 21:49:24 +01:00
|
|
|
|
2008-06-25 05:53:07 +02:00
|
|
|
typedef uint32_t cell_t;
|
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))
|
|
|
|
|
|
|
|
/* Data blobs */
|
2007-11-22 04:39:23 +01:00
|
|
|
enum markertype {
|
|
|
|
REF_PHANDLE,
|
2007-12-05 00:43:50 +01:00
|
|
|
REF_PATH,
|
2007-11-22 04:39:23 +01:00
|
|
|
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;
|
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
|
|
|
|
2014-06-19 13:07:48 +02:00
|
|
|
#define empty_data ((struct data){ 0 /* 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);
|
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
struct data data_copy_mem(const char *mem, int len);
|
|
|
|
struct data data_copy_escape_string(const char *s, int len);
|
2005-06-08 09:18:34 +02:00
|
|
|
struct data data_copy_file(FILE *f, size_t len);
|
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
struct data data_append_data(struct data d, const void *p, int len);
|
2007-12-05 00:43:50 +01:00
|
|
|
struct data data_insert_at_marker(struct data d, struct marker *m,
|
|
|
|
const 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);
|
2011-10-11 19:22:28 +02:00
|
|
|
struct data data_append_integer(struct data d, uint64_t word, int bits);
|
2007-12-04 04:26:15 +01:00
|
|
|
struct data data_append_re(struct data d, const struct fdt_reserve_entry *re);
|
2008-06-25 05:53:07 +02:00
|
|
|
struct data data_append_addr(struct data d, uint64_t 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
|
|
|
|
2013-10-28 11:06:53 +01:00
|
|
|
bool data_is_one_string(struct data d);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
/* DT constraints */
|
|
|
|
|
|
|
|
#define MAX_PROPNAME_LEN 31
|
|
|
|
#define MAX_NODENAME_LEN 31
|
|
|
|
|
|
|
|
/* Live trees */
|
2010-02-24 08:22:17 +01:00
|
|
|
struct label {
|
2013-10-28 11:06:53 +01:00
|
|
|
bool deleted;
|
2010-02-24 08:22:17 +01:00
|
|
|
char *label;
|
|
|
|
struct label *next;
|
|
|
|
};
|
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
struct property {
|
2013-10-28 11:06:53 +01:00
|
|
|
bool deleted;
|
2005-06-08 09:18:34 +02:00
|
|
|
char *name;
|
|
|
|
struct data val;
|
|
|
|
|
|
|
|
struct property *next;
|
2005-06-16 06:36:37 +02:00
|
|
|
|
2010-02-24 08:22:17 +01:00
|
|
|
struct label *labels;
|
2005-06-08 09:18:34 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
struct node {
|
2013-10-28 11:06:53 +01:00
|
|
|
bool deleted;
|
2005-06-08 09:18:34 +02:00
|
|
|
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
|
|
|
|
2010-02-24 08:22:17 +01:00
|
|
|
struct label *labels;
|
2005-06-08 09:18:34 +02:00
|
|
|
};
|
|
|
|
|
2012-08-08 06:50:15 +02:00
|
|
|
#define for_each_label_withdel(l0, l) \
|
2010-02-24 08:22:17 +01:00
|
|
|
for ((l) = (l0); (l); (l) = (l)->next)
|
|
|
|
|
2012-10-05 17:57:41 +02:00
|
|
|
#define for_each_label(l0, l) \
|
|
|
|
for_each_label_withdel(l0, l) \
|
|
|
|
if (!(l)->deleted)
|
2012-08-08 06:50:15 +02:00
|
|
|
|
|
|
|
#define for_each_property_withdel(n, p) \
|
2005-06-08 09:18:34 +02:00
|
|
|
for ((p) = (n)->proplist; (p); (p) = (p)->next)
|
|
|
|
|
2012-10-05 17:57:41 +02:00
|
|
|
#define for_each_property(n, p) \
|
|
|
|
for_each_property_withdel(n, p) \
|
|
|
|
if (!(p)->deleted)
|
2012-08-08 06:50:15 +02:00
|
|
|
|
|
|
|
#define for_each_child_withdel(n, c) \
|
2005-06-08 09:18:34 +02:00
|
|
|
for ((c) = (n)->children; (c); (c) = (c)->next_sibling)
|
|
|
|
|
2012-10-05 17:57:41 +02:00
|
|
|
#define for_each_child(n, c) \
|
|
|
|
for_each_child_withdel(n, c) \
|
|
|
|
if (!(c)->deleted)
|
|
|
|
|
2010-02-24 08:22:17 +01:00
|
|
|
void add_label(struct label **labels, char *label);
|
2012-08-08 06:50:15 +02:00
|
|
|
void delete_labels(struct label **labels);
|
2010-02-24 08:22:17 +01:00
|
|
|
|
|
|
|
struct property *build_property(char *name, struct data val);
|
2012-08-08 06:50:15 +02:00
|
|
|
struct property *build_property_delete(char *name);
|
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);
|
2012-08-08 06:50:15 +02:00
|
|
|
struct node *build_node_delete(void);
|
2010-02-24 08:22:17 +01:00
|
|
|
struct node *name_node(struct node *node, char *name);
|
2005-06-08 09:18:34 +02:00
|
|
|
struct node *chain_node(struct node *first, struct node *list);
|
2010-02-25 17:58:29 +01:00
|
|
|
struct node *merge_nodes(struct node *old_node, struct node *new_node);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
void add_property(struct node *node, struct property *prop);
|
2012-08-08 06:50:15 +02:00
|
|
|
void delete_property_by_name(struct node *node, char *name);
|
|
|
|
void delete_property(struct property *prop);
|
2005-06-08 09:18:34 +02:00
|
|
|
void add_child(struct node *parent, struct node *child);
|
2012-08-08 06:50:15 +02:00
|
|
|
void delete_node_by_name(struct node *parent, char *name);
|
|
|
|
void delete_node(struct node *node);
|
2016-12-07 13:48:18 +01:00
|
|
|
void append_to_property(struct node *node,
|
|
|
|
char *name, const void *data, int len);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
const char *get_unitname(struct node *node);
|
|
|
|
struct property *get_property(struct node *node, const char *propname);
|
2007-11-01 06:49:26 +01:00
|
|
|
cell_t propval_cell(struct property *prop);
|
2010-02-23 09:56:41 +01:00
|
|
|
struct property *get_property_by_label(struct node *tree, const char *label,
|
|
|
|
struct node **node);
|
|
|
|
struct marker *get_marker_label(struct node *tree, const char *label,
|
|
|
|
struct node **node, struct property **prop);
|
2007-12-04 04:26:15 +01:00
|
|
|
struct node *get_subnode(struct node *node, const char *nodename);
|
|
|
|
struct node *get_node_by_path(struct node *tree, const char *path);
|
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_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);
|
2007-12-04 04:26:15 +01:00
|
|
|
struct node *get_node_by_ref(struct node *tree, const char *ref);
|
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
|
|
|
cell_t get_node_phandle(struct node *root, struct node *node);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2010-02-19 05:50:50 +01:00
|
|
|
uint32_t guess_boot_cpuid(struct node *tree);
|
|
|
|
|
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;
|
|
|
|
|
2010-02-24 08:22:17 +01:00
|
|
|
struct label *labels;
|
2005-10-24 10:18:38 +02:00
|
|
|
};
|
|
|
|
|
2010-02-24 08:22:17 +01:00
|
|
|
struct reserve_info *build_reserve_entry(uint64_t start, uint64_t len);
|
2005-10-24 10:18:38 +02:00
|
|
|
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 {
|
2016-12-07 13:48:18 +01:00
|
|
|
unsigned int dtsflags;
|
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 */
|
2008-06-25 05:53:07 +02:00
|
|
|
uint32_t boot_cpuid_phys;
|
2005-07-15 09:14:24 +02:00
|
|
|
};
|
|
|
|
|
2016-12-07 13:48:18 +01:00
|
|
|
/* DTS version flags definitions */
|
|
|
|
#define DTSF_V1 0x0001 /* /dts-v1/ */
|
|
|
|
#define DTSF_PLUGIN 0x0002 /* /plugin/ */
|
|
|
|
|
|
|
|
struct boot_info *build_boot_info(unsigned int dtsflags,
|
|
|
|
struct reserve_info *reservelist,
|
2008-06-25 05:53:07 +02:00
|
|
|
struct node *tree, uint32_t boot_cpuid_phys);
|
2010-11-09 23:51:09 +01:00
|
|
|
void sort_tree(struct boot_info *bi);
|
2016-12-07 13:48:18 +01:00
|
|
|
void generate_label_tree(struct boot_info *bi, char *name, bool allocph);
|
|
|
|
void generate_fixups_tree(struct boot_info *bi, char *name);
|
|
|
|
void generate_local_fixups_tree(struct boot_info *bi, char *name);
|
2005-07-15 09:14:24 +02:00
|
|
|
|
2007-11-01 06:49:26 +01:00
|
|
|
/* Checks */
|
|
|
|
|
2014-02-01 06:41:59 +01:00
|
|
|
void parse_checks_option(bool warn, bool error, const char *arg);
|
2013-10-28 11:06:53 +01:00
|
|
|
void process_checks(bool force, struct boot_info *bi);
|
2007-11-01 06:49:26 +01:00
|
|
|
|
2005-06-08 09:18:34 +02:00
|
|
|
/* Flattened trees */
|
|
|
|
|
2008-05-16 05:22:57 +02:00
|
|
|
void dt_to_blob(FILE *f, struct boot_info *bi, int version);
|
|
|
|
void dt_to_asm(FILE *f, struct boot_info *bi, int version);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
2008-05-16 05:22:09 +02:00
|
|
|
struct boot_info *dt_from_blob(const char *fname);
|
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 */
|
|
|
|
|
2007-12-04 04:26:15 +01:00
|
|
|
struct boot_info *dt_from_fs(const char *dirname);
|
2005-06-08 09:18:34 +02:00
|
|
|
|
|
|
|
#endif /* _DTC_H */
|