mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-28 15:41:40 +00:00
First set of u-boot-atmel fixes for 2021.10 cycle
-----BEGIN PGP SIGNATURE----- iQFQBAABCgA6FiEEqxhEmNJ6d7ZdeFLIHrMeAg6sL8gFAmDkSkAcHGV1Z2VuLmhy aXN0ZXZAbWljcm9jaGlwLmNvbQAKCRAesx4CDqwvyD24B/9t87hFqWovJvVAcoUT JoTqFblplE4Sckssy0cQyR7sRpzuZEaakUeAxaLFecBN6Tn30YJEG3hNpEDCLEbA hn/oiZ4hQ3JA9Yu2SHepQi0fLqdAjkQtMXy57o3Mk20GBLtPtpdItUHxg3iyeMSj Ny1mm/KjL6ltmNeGfYfeqRf435Rm718DB94wCZTgS9woYe3Z5YRDNBPyL7u27hpY 2WiyvvU9EA12mjGYdEt5sCqnTQZFtHHlEWNHz4a3db6HkcPV7pfr+SpTNJjcFhIg O7VN7yUTwnV0UGu5IXTWcZqFIqJkLPbPX5cvkSBnnaGge4e0K3Cw36Nv/EqCY8LX gWfu =Ru8k -----END PGP SIGNATURE----- Merge tag 'u-boot-atmel-fixes-2021.10-a' of https://source.denx.de/u-boot/custodians/u-boot-atmel First set of u-boot-atmel fixes for 2021.10 cycle: This small fixes set is dedicated to fixing the onewire subsystem for the at91 boards which was broken since 2020.04.
This commit is contained in:
commit
008604c3b8
8 changed files with 11 additions and 8 deletions
|
@ -43,6 +43,7 @@
|
|||
* OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
/dts-v1/;
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include "sama5d27_som1.dtsi"
|
||||
|
||||
/ {
|
||||
|
@ -55,7 +56,7 @@
|
|||
};
|
||||
|
||||
onewire_tm: onewire {
|
||||
gpios = <&pioA 17 0>;
|
||||
gpios = <&pioA 17 GPIO_ACTIVE_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_onewire_tm_default>;
|
||||
status = "okay";
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
* Author: Nicolas Ferre <nicolas.ferre@microcihp.com>
|
||||
*/
|
||||
/dts-v1/;
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include "sama5d27_wlsom1.dtsi"
|
||||
|
||||
/ {
|
||||
|
@ -18,7 +19,7 @@
|
|||
};
|
||||
|
||||
onewire_tm: onewire {
|
||||
gpios = <&pioA PIN_PC9 0>;
|
||||
gpios = <&pioA PIN_PC9 GPIO_ACTIVE_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_onewire_tm_default>;
|
||||
status = "okay";
|
||||
|
|
|
@ -57,7 +57,7 @@
|
|||
};
|
||||
|
||||
onewire_tm: onewire {
|
||||
gpios = <&pioA PIN_PB31 0>;
|
||||
gpios = <&pioA PIN_PB31 GPIO_ACTIVE_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_onewire_tm_default>;
|
||||
status = "okay";
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
/dts-v1/;
|
||||
#include <dt-bindings/gpio/gpio.h>
|
||||
#include "sama5d2.dtsi"
|
||||
#include "sama5d2-pinfunc.h"
|
||||
|
||||
|
@ -12,7 +13,7 @@
|
|||
};
|
||||
|
||||
onewire_tm: onewire {
|
||||
gpios = <&pioA PIN_PB0 0>;
|
||||
gpios = <&pioA PIN_PB0 GPIO_ACTIVE_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_onewire_tm_default>;
|
||||
status = "okay";
|
||||
|
|
|
@ -37,7 +37,7 @@
|
|||
};
|
||||
|
||||
onewire_tm: onewire {
|
||||
gpios = <&pioE 23 GPIO_ACTIVE_LOW>;
|
||||
gpios = <&pioE 23 GPIO_ACTIVE_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_onewire_tm_default>;
|
||||
status = "okay";
|
||||
|
|
|
@ -59,7 +59,7 @@
|
|||
};
|
||||
|
||||
onewire_tm: onewire {
|
||||
gpios = <&pioE 15 GPIO_ACTIVE_LOW>;
|
||||
gpios = <&pioE 15 GPIO_ACTIVE_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_onewire_tm_default>;
|
||||
status = "okay";
|
||||
|
|
|
@ -29,7 +29,7 @@
|
|||
};
|
||||
|
||||
onewire_tm: onewire {
|
||||
gpios = <&pioD 14 0>;
|
||||
gpios = <&pioD 14 GPIO_ACTIVE_HIGH>;
|
||||
pinctrl-names = "default";
|
||||
pinctrl-0 = <&pinctrl_onewire_tm_default>;
|
||||
status = "okay";
|
||||
|
|
|
@ -156,7 +156,7 @@ static int w1_gpio_of_to_plat(struct udevice *dev)
|
|||
struct w1_gpio_pdata *pdata = dev_get_plat(dev);
|
||||
int ret;
|
||||
|
||||
ret = gpio_request_by_name(dev, "gpios", 0, &pdata->gpio, 0);
|
||||
ret = gpio_request_by_name(dev, "gpios", 0, &pdata->gpio, GPIOD_IS_IN);
|
||||
if (ret < 0)
|
||||
printf("Error claiming GPIO %d\n", ret);
|
||||
|
||||
|
|
Loading…
Reference in a new issue