summaryrefslogtreecommitdiffstats
path: root/commands/of_fixup_status.c
blob: 50c1bbb146d06c575530f39719e6080e3c53b2e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
// SPDX-License-Identifier: GPL-2.0-only
// SPDX-FileCopyrightText: © 2014-2016 PHYTEC Messtechnik GmbH

/*
 * of_fixup_status.c - Register a fixup to enable or disable nodes in the
 * device tree
 *
 * Authors: Teresa Remmet and Wadim Egorov
 */

#include <common.h>
#include <of.h>
#include <command.h>
#include <malloc.h>
#include <complete.h>
#include <asm/byteorder.h>
#include <linux/err.h>
#include <getopt.h>
#include <string.h>

static int do_of_fixup_status(int argc, char *argv[])
{
	int opt;
	bool status = 1;
	char *node = NULL;

	while ((opt = getopt(argc, argv, "d")) > 0) {
		switch (opt) {
		case 'd':
			status = 0;
			break;
		default:
			return COMMAND_ERROR_USAGE;
		}
	}

	if (optind == argc)
		return COMMAND_ERROR_USAGE;

	node = xstrdup(argv[optind]);

	of_register_set_status_fixup(node, status);

	return 0;
}

BAREBOX_CMD_HELP_START(of_fixup_status)
BAREBOX_CMD_HELP_TEXT("Options:")
BAREBOX_CMD_HELP_OPT("-d",  "disable node")
BAREBOX_CMD_HELP_OPT("path",  "Node path")
BAREBOX_CMD_HELP_TEXT("Register a fixup to enable or disable a device tree node.")
BAREBOX_CMD_HELP_TEXT("Nodes are enabled on default. Disabled with -d.")
BAREBOX_CMD_HELP_END

BAREBOX_CMD_START(of_fixup_status)
	.cmd	= do_of_fixup_status,
	BAREBOX_CMD_DESC("register a fixup to enable or disable node")
	BAREBOX_CMD_OPTS("[-d] path")
	BAREBOX_CMD_GROUP(CMD_GRP_MISC)
	BAREBOX_CMD_COMPLETE(devicetree_file_complete)
	BAREBOX_CMD_HELP(cmd_of_fixup_status_help)
BAREBOX_CMD_END