mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00

Rename 'pins1' to 'pins' in the qspi_bk1_pins_a node to correct the subnode name. The incorrect name caused the configuration to be applied to the wrong subnode, resulting in QSPI not working properly. Some additional changes was made: - To avoid this kind of regression, all references to pin configuration nodes are now referenced directly using the format &{label/subnode}. - /delete-property/ bias-disable; was added everywhere where bias-pull-up is used - redundant properties like driver-push-pull are removed Signed-off-by: Oleksij Rempel <o.rempel@pengutronix.de> Reviewed-by: Ahmad Fatoum <a.fatoum@pengutronix.de> Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>
59 lines
1.2 KiB
Text
59 lines
1.2 KiB
Text
// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
|
|
/*
|
|
* Copyright (C) Protonic Holland
|
|
* Author: David Jander <david@protonic.nl>
|
|
*/
|
|
/dts-v1/;
|
|
|
|
#include "stm32mp151a-prtt1l.dtsi"
|
|
|
|
/ {
|
|
model = "Protonic PRTT1S";
|
|
compatible = "prt,prtt1s", "st,stm32mp151";
|
|
};
|
|
|
|
ðernet0 {
|
|
phy-handle = <&phy0>;
|
|
};
|
|
|
|
&i2c1 {
|
|
pinctrl-names = "default", "sleep";
|
|
pinctrl-0 = <&i2c1_pins_a>;
|
|
pinctrl-1 = <&i2c1_sleep_pins_a>;
|
|
clock-frequency = <100000>;
|
|
/delete-property/dmas;
|
|
/delete-property/dma-names;
|
|
status = "okay";
|
|
|
|
humidity-sensor@40 {
|
|
compatible = "ti,hdc1080";
|
|
reg = <0x40>;
|
|
};
|
|
|
|
co2-sensor@62 {
|
|
compatible = "sensirion,scd41";
|
|
reg = <0x62>;
|
|
};
|
|
};
|
|
|
|
&{i2c1_pins_a/pins} {
|
|
pinmux = <STM32_PINMUX('D', 12, AF5)>, /* I2C1_SCL */
|
|
<STM32_PINMUX('D', 13, AF5)>; /* I2C1_SDA */
|
|
};
|
|
|
|
&{i2c1_sleep_pins_a/pins} {
|
|
pinmux = <STM32_PINMUX('D', 12, ANALOG)>, /* I2C1_SCL */
|
|
<STM32_PINMUX('D', 13, ANALOG)>; /* I2C1_SDA */
|
|
};
|
|
|
|
&mdio0 {
|
|
/* TI DP83TD510E */
|
|
phy0: ethernet-phy@0 {
|
|
compatible = "ethernet-phy-id2000.0181";
|
|
reg = <0>;
|
|
interrupts-extended = <&gpioa 4 IRQ_TYPE_LEVEL_LOW>;
|
|
reset-gpios = <&gpioa 3 GPIO_ACTIVE_LOW>;
|
|
reset-assert-us = <10>;
|
|
reset-deassert-us = <35>;
|
|
};
|
|
};
|