mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
9a16153834
Save the environment data at the end of the boot partition on emmc Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
35 lines
476 B
Text
35 lines
476 B
Text
/*
|
|
* U-Boot addition to handle Dragonboard 410c pins
|
|
*
|
|
* (C) Copyright 2015 Mateusz Kulikowski <mateusz.kulikowski@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
/ {
|
|
config {
|
|
u-boot,mmc-env-partition = "boot";
|
|
};
|
|
};
|
|
|
|
|
|
&pm8916_gpios {
|
|
usb_hub_reset_pm {
|
|
gpios = <&pm8916_gpios 2 0>;
|
|
};
|
|
|
|
usb_sw_sel_pm {
|
|
gpios = <&pm8916_gpios 3 0>;
|
|
};
|
|
};
|
|
|
|
|
|
&pm8916_pon {
|
|
key_vol_down {
|
|
gpios = <&pm8916_pon 1 0>;
|
|
};
|
|
|
|
key_power {
|
|
gpios = <&pm8916_pon 0 0>;
|
|
};
|
|
};
|