/* These are the operations we support */ enum oper_type {
OPER_WRITE_PROP, /* Write a property in a node */
OPER_CREATE_NODE, /* Create a new node */
};
struct display_info { enum oper_type oper; /* operation to perform */ int type; /* data type (s/i/u/x or 0 for default) */ int size; /* data size (1/2/4) */ int verbose; /* verbose output */ int auto_path; /* automatically create all path components */
};
/** * Report an error with a particular node. * * @param name Node name to report error on * @param namelen Length of node name, or -1 to use entire string * @param err Error number to report (-FDT_ERR_...)
*/ staticvoid report_error(constchar *name, int namelen, int err)
{ if (namelen == -1)
namelen = strlen(name);
fprintf(stderr, "Error at '%1.*s': %s\n", namelen, name,
fdt_strerror(err));
}
/** * Encode a series of arguments in a property value. * * @param disp Display information / options * @param arg List of arguments from command line * @param arg_count Number of arguments (may be 0) * @param valuep Returns buffer containing value * @param *value_len Returns length of value encoded
*/ staticint encode_value(struct display_info *disp, char **arg, int arg_count, char **valuep, int *value_len)
{ char *value = NULL; /* holding area for value */ int value_size = 0; /* size of holding area */ char *ptr; /* pointer to current value position */ int len; /* length of this cell/string/byte */ int ival; int upto; /* the number of bytes we have written to buf */ char fmt[3];
upto = 0;
if (disp->verbose)
fprintf(stderr, "Decoding value:\n");
/** * Create paths as needed for all components of a path * * Any components of the path that do not exist are created. Errors are * reported. * * @param blob FDT blob to write into * @param in_path Path to process * @return 0 if ok, -1 on error
*/ staticint create_paths(void *blob, constchar *in_path)
{ constchar *path = in_path; constchar *sep; int node, offset = 0;
/* skip leading '/' */ while (*path == '/')
path++;
for (sep = path; *sep; path = sep + 1, offset = node) { /* equivalent to strchrnul(), but it requires _GNU_SOURCE */
sep = strchr(path, '/'); if (!sep)
sep = path + strlen(path);
/** * Create a new node in the fdt. * * This will overwrite the node_name string. Any error is reported. * * TODO: Perhaps create fdt_path_offset_namelen() so we don't need to do this. * * @param blob FDT blob to write into * @param node_name Name of node to create * @return new node offset if found, or -1 on failure
*/ staticint create_node(void *blob, constchar *node_name)
{ int node = 0; char *p;
p = strrchr(node_name, '/'); if (!p) {
report_error(node_name, -1, -FDT_ERR_BADPATH); return -1;
}
*p = '\0';
node = fdt_add_subnode(blob, node, p + 1); if (node < 0) {
report_error(p + 1, -1, node); return -1;
}
return 0;
}
staticint do_fdtput(struct display_info *disp, constchar *filename, char **arg, int arg_count)
{ char *value; char *blob; int len, ret = 0;
blob = utilfdt_read(filename); if (!blob) return -1;
switch (disp->oper) { case OPER_WRITE_PROP: /* * Convert the arguments into a single binary value, then * store them into the property.
*/
assert(arg_count >= 2); if (disp->auto_path && create_paths(blob, *arg)) return -1; if (encode_value(disp, arg + 2, arg_count - 2, &value, &len) ||
store_key_value(blob, *arg, arg[1], value, len))
ret = -1; break; case OPER_CREATE_NODE: for (; ret >= 0 && arg_count--; arg++) { if (disp->auto_path)
ret = create_paths(blob, *arg); else
ret = create_node(blob, *arg);
} break;
} if (ret >= 0)
ret = utilfdt_write(filename, blob);
free(blob); return ret;
}
staticconstchar *usage_msg = "fdtput - write a property value to a device tree\n" "\n" "The command line arguments are joined together into a single value.\n" "\n" "Usage:\n" " fdtput <options> <dt file> <node> <property> [<value>...]\n" " fdtput -c <options> <dt file> [<node>...]\n" "Options:\n" "\t-c\t\tCreate nodes if they don't already exist\n" "\t-p\t\tAutomatically create nodes as needed for the node path\n" "\t-t <type>\tType of data\n" "\t-v\t\tVerbose: display each value decoded from command line\n" "\t-h\t\tPrint this help\n\n"
USAGE_TYPE_MSG;
staticvoid usage(constchar *msg)
{ if (msg)
fprintf(stderr, "Error: %s\n\n", msg);
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.