summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/tegra-bbu.c
blob: 089e6c736a3bc9366e5c625791929ebb65b4f1af (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
63
64
65
66
67
68
69
70
71
72
73
74
/*
 * Copyright (C) 2015 Lucas Stach <l.stach@pengutronix.de>
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope 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.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#include <common.h>
#include <fcntl.h>
#include <fs.h>
#include <mach/tegra-bbu.h>
#include <malloc.h>

static int tegra_bbu_emmc_handler(struct bbu_handler *handler,
				  struct bbu_data *data)
{

	int fd, ret;

	if (file_detect_type(data->image + 0x4000, data->len) !=
	    filetype_arm_barebox &&
	    !bbu_force(data, "Not an ARM barebox image"))
		return -EINVAL;

	ret = bbu_confirm(data);
	if (ret)
		return ret;

	fd = open(data->devicefile, O_WRONLY);
	if (fd < 0)
		return fd;

	ret = write(fd, data->image, data->len);
	if (ret < 0) {
		pr_err("writing update to %s failed with %s\n",
			data->devicefile, strerror(-ret));
		goto err_close;
	}

	ret = 0;

err_close:
	close(fd);

	return ret;
}

int tegra_bbu_register_emmc_handler(const char *name, char *devicefile,
				    unsigned long flags)
{
	struct bbu_handler *handler;
	int ret = 0;

	handler = xzalloc(sizeof(*handler));
	handler->name = name;
	handler->devicefile = devicefile;
	handler->flags = flags;
	handler->handler = tegra_bbu_emmc_handler;

	ret = bbu_register_handler(handler);
	if (ret)
		free(handler);

	return ret;
}