9
0
Fork 0

ARM: tegra: add barebox update handler to Jetson board

Signed-off-by: Lucas Stach <dev@lynxeye.de>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Lucas Stach 2015-03-03 20:46:22 +01:00 committed by Sascha Hauer
parent f582591356
commit 4759b8dd54
1 changed files with 4 additions and 0 deletions

View File

@ -19,6 +19,7 @@
#include <gpio.h>
#include <i2c/i2c.h>
#include <init.h>
#include <mach/tegra-bbu.h>
#define AS3722_SD_VOLTAGE(n) (0x00 + (n))
#define AS3722_GPIO_CONTROL(n) (0x08 + (n))
@ -56,6 +57,9 @@ static int nvidia_jetson_tk1_device_init(void)
barebox_set_hostname("jetson-tk1");
tegra_bbu_register_emmc_handler("eMMC", "/dev/mmc3.boot0",
BBU_HANDLER_FLAG_DEFAULT);
return 0;
}
device_initcall(nvidia_jetson_tk1_device_init);