1f126890aSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) 2f126890aSEmmanuel Vadot/* 3f126890aSEmmanuel Vadot * Copyright (C) Protonic Holland 4f126890aSEmmanuel Vadot * Author: David Jander <david@protonic.nl> 5f126890aSEmmanuel Vadot */ 6f126890aSEmmanuel Vadot/dts-v1/; 7f126890aSEmmanuel Vadot 8f126890aSEmmanuel Vadot#include "stm32mp151a-prtt1l.dtsi" 9f126890aSEmmanuel Vadot 10f126890aSEmmanuel Vadot/ { 11f126890aSEmmanuel Vadot model = "Protonic PRTT1S"; 12f126890aSEmmanuel Vadot compatible = "prt,prtt1s", "st,stm32mp151"; 13f126890aSEmmanuel Vadot}; 14f126890aSEmmanuel Vadot 15f126890aSEmmanuel Vadotðernet0 { 16f126890aSEmmanuel Vadot phy-handle = <&phy0>; 17f126890aSEmmanuel Vadot}; 18f126890aSEmmanuel Vadot 19f126890aSEmmanuel Vadot&i2c1 { 20f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 21f126890aSEmmanuel Vadot pinctrl-0 = <&i2c1_pins_a>; 22f126890aSEmmanuel Vadot pinctrl-1 = <&i2c1_sleep_pins_a>; 23f126890aSEmmanuel Vadot clock-frequency = <100000>; 24f126890aSEmmanuel Vadot /delete-property/dmas; 25f126890aSEmmanuel Vadot /delete-property/dma-names; 26f126890aSEmmanuel Vadot status = "okay"; 27f126890aSEmmanuel Vadot 28f126890aSEmmanuel Vadot humidity-sensor@40 { 29f126890aSEmmanuel Vadot compatible = "ti,hdc1080"; 30f126890aSEmmanuel Vadot reg = <0x40>; 31f126890aSEmmanuel Vadot }; 32f126890aSEmmanuel Vadot 33f126890aSEmmanuel Vadot co2-sensor@62 { 34f126890aSEmmanuel Vadot compatible = "sensirion,scd41"; 35f126890aSEmmanuel Vadot reg = <0x62>; 36f126890aSEmmanuel Vadot }; 37f126890aSEmmanuel Vadot}; 38f126890aSEmmanuel Vadot 39*b2d2a78aSEmmanuel Vadot&{i2c1_pins_a/pins} { 40f126890aSEmmanuel Vadot pinmux = <STM32_PINMUX('D', 12, AF5)>, /* I2C1_SCL */ 41f126890aSEmmanuel Vadot <STM32_PINMUX('D', 13, AF5)>; /* I2C1_SDA */ 42f126890aSEmmanuel Vadot}; 43f126890aSEmmanuel Vadot 44*b2d2a78aSEmmanuel Vadot&{i2c1_sleep_pins_a/pins} { 45f126890aSEmmanuel Vadot pinmux = <STM32_PINMUX('D', 12, ANALOG)>, /* I2C1_SCL */ 46f126890aSEmmanuel Vadot <STM32_PINMUX('D', 13, ANALOG)>; /* I2C1_SDA */ 47f126890aSEmmanuel Vadot}; 48f126890aSEmmanuel Vadot 49f126890aSEmmanuel Vadot&mdio0 { 50f126890aSEmmanuel Vadot /* TI DP83TD510E */ 51f126890aSEmmanuel Vadot phy0: ethernet-phy@0 { 52f126890aSEmmanuel Vadot compatible = "ethernet-phy-id2000.0181"; 53f126890aSEmmanuel Vadot reg = <0>; 54f126890aSEmmanuel Vadot interrupts-extended = <&gpioa 4 IRQ_TYPE_LEVEL_LOW>; 55f126890aSEmmanuel Vadot reset-gpios = <&gpioa 3 GPIO_ACTIVE_LOW>; 56f126890aSEmmanuel Vadot reset-assert-us = <10>; 57f126890aSEmmanuel Vadot reset-deassert-us = <35>; 58f126890aSEmmanuel Vadot }; 59f126890aSEmmanuel Vadot}; 60