1f126890aSEmmanuel Vadot// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) 2f126890aSEmmanuel Vadot/* 3f126890aSEmmanuel Vadot * Copyright (C) STMicroelectronics 2021 - All Rights Reserved 4f126890aSEmmanuel Vadot * Author: Alexandre Torgue <alexandre.torgue@foss.st.com> for STMicroelectronics. 5f126890aSEmmanuel Vadot */ 6f126890aSEmmanuel Vadot 7f126890aSEmmanuel Vadot/dts-v1/; 8f126890aSEmmanuel Vadot 9f126890aSEmmanuel Vadot#include <dt-bindings/gpio/gpio.h> 10f126890aSEmmanuel Vadot#include <dt-bindings/input/input.h> 11f126890aSEmmanuel Vadot#include <dt-bindings/leds/common.h> 12*aa1a8ff2SEmmanuel Vadot#include <dt-bindings/regulator/st,stm32mp13-regulator.h> 13f126890aSEmmanuel Vadot#include "stm32mp135.dtsi" 14f126890aSEmmanuel Vadot#include "stm32mp13xf.dtsi" 15f126890aSEmmanuel Vadot#include "stm32mp13-pinctrl.dtsi" 16f126890aSEmmanuel Vadot 17f126890aSEmmanuel Vadot/ { 18f126890aSEmmanuel Vadot model = "STMicroelectronics STM32MP135F-DK Discovery Board"; 19f126890aSEmmanuel Vadot compatible = "st,stm32mp135f-dk", "st,stm32mp135"; 20f126890aSEmmanuel Vadot 21f126890aSEmmanuel Vadot aliases { 22f126890aSEmmanuel Vadot serial0 = &uart4; 23f126890aSEmmanuel Vadot serial1 = &usart1; 24f126890aSEmmanuel Vadot serial2 = &uart8; 25f126890aSEmmanuel Vadot serial3 = &usart2; 26f126890aSEmmanuel Vadot }; 27f126890aSEmmanuel Vadot 28f126890aSEmmanuel Vadot chosen { 29f126890aSEmmanuel Vadot stdout-path = "serial0:115200n8"; 30f126890aSEmmanuel Vadot }; 31f126890aSEmmanuel Vadot 32f126890aSEmmanuel Vadot memory@c0000000 { 33f126890aSEmmanuel Vadot device_type = "memory"; 34f126890aSEmmanuel Vadot reg = <0xc0000000 0x20000000>; 35f126890aSEmmanuel Vadot }; 36f126890aSEmmanuel Vadot 37f126890aSEmmanuel Vadot reserved-memory { 38f126890aSEmmanuel Vadot #address-cells = <1>; 39f126890aSEmmanuel Vadot #size-cells = <1>; 40f126890aSEmmanuel Vadot ranges; 41f126890aSEmmanuel Vadot 42f126890aSEmmanuel Vadot optee@dd000000 { 43f126890aSEmmanuel Vadot reg = <0xdd000000 0x3000000>; 44f126890aSEmmanuel Vadot no-map; 45f126890aSEmmanuel Vadot }; 46f126890aSEmmanuel Vadot }; 47f126890aSEmmanuel Vadot 48f126890aSEmmanuel Vadot gpio-keys { 49f126890aSEmmanuel Vadot compatible = "gpio-keys"; 50f126890aSEmmanuel Vadot 51f126890aSEmmanuel Vadot button-user { 52f126890aSEmmanuel Vadot label = "User-PA13"; 53f126890aSEmmanuel Vadot linux,code = <BTN_1>; 54f126890aSEmmanuel Vadot gpios = <&gpioa 13 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; 55f126890aSEmmanuel Vadot }; 56f126890aSEmmanuel Vadot }; 57f126890aSEmmanuel Vadot 58f126890aSEmmanuel Vadot leds { 59f126890aSEmmanuel Vadot compatible = "gpio-leds"; 60f126890aSEmmanuel Vadot 61f126890aSEmmanuel Vadot led-blue { 62f126890aSEmmanuel Vadot function = LED_FUNCTION_HEARTBEAT; 63f126890aSEmmanuel Vadot color = <LED_COLOR_ID_BLUE>; 64f126890aSEmmanuel Vadot gpios = <&gpioa 14 GPIO_ACTIVE_LOW>; 65f126890aSEmmanuel Vadot linux,default-trigger = "heartbeat"; 66f126890aSEmmanuel Vadot default-state = "off"; 67f126890aSEmmanuel Vadot }; 68f126890aSEmmanuel Vadot }; 69f126890aSEmmanuel Vadot}; 70f126890aSEmmanuel Vadot 71f126890aSEmmanuel Vadot&adc_1 { 72f126890aSEmmanuel Vadot pinctrl-names = "default"; 73f126890aSEmmanuel Vadot pinctrl-0 = <&adc1_usb_cc_pins_a>; 74*aa1a8ff2SEmmanuel Vadot vdda-supply = <&scmi_vdd_adc>; 75*aa1a8ff2SEmmanuel Vadot vref-supply = <&scmi_vdd_adc>; 76f126890aSEmmanuel Vadot status = "okay"; 77f126890aSEmmanuel Vadot adc1: adc@0 { 78f126890aSEmmanuel Vadot status = "okay"; 79f126890aSEmmanuel Vadot /* 80f126890aSEmmanuel Vadot * Type-C USB_PWR_CC1 & USB_PWR_CC2 on in6 & in12. 81f126890aSEmmanuel Vadot * Use at least 5 * RC time, e.g. 5 * (Rp + Rd) * C: 82f126890aSEmmanuel Vadot * 5 * (5.1 + 47kOhms) * 5pF => 1.3us. 83f126890aSEmmanuel Vadot * Use arbitrary margin here (e.g. 5us). 84f126890aSEmmanuel Vadot */ 85f126890aSEmmanuel Vadot channel@6 { 86f126890aSEmmanuel Vadot reg = <6>; 87f126890aSEmmanuel Vadot st,min-sample-time-ns = <5000>; 88f126890aSEmmanuel Vadot }; 89f126890aSEmmanuel Vadot channel@12 { 90f126890aSEmmanuel Vadot reg = <12>; 91f126890aSEmmanuel Vadot st,min-sample-time-ns = <5000>; 92f126890aSEmmanuel Vadot }; 93f126890aSEmmanuel Vadot }; 94f126890aSEmmanuel Vadot}; 95f126890aSEmmanuel Vadot 96f126890aSEmmanuel Vadot&i2c1 { 97f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 98f126890aSEmmanuel Vadot pinctrl-0 = <&i2c1_pins_a>; 99f126890aSEmmanuel Vadot pinctrl-1 = <&i2c1_sleep_pins_a>; 100f126890aSEmmanuel Vadot i2c-scl-rising-time-ns = <96>; 101f126890aSEmmanuel Vadot i2c-scl-falling-time-ns = <3>; 102f126890aSEmmanuel Vadot clock-frequency = <1000000>; 103f126890aSEmmanuel Vadot status = "okay"; 104f126890aSEmmanuel Vadot /* spare dmas for other usage */ 105f126890aSEmmanuel Vadot /delete-property/dmas; 106f126890aSEmmanuel Vadot /delete-property/dma-names; 107f126890aSEmmanuel Vadot 108f126890aSEmmanuel Vadot mcp23017: pinctrl@21 { 109f126890aSEmmanuel Vadot compatible = "microchip,mcp23017"; 110f126890aSEmmanuel Vadot reg = <0x21>; 111f126890aSEmmanuel Vadot gpio-controller; 112f126890aSEmmanuel Vadot #gpio-cells = <2>; 113f126890aSEmmanuel Vadot interrupts = <12 IRQ_TYPE_LEVEL_LOW>; 114f126890aSEmmanuel Vadot interrupt-parent = <&gpiog>; 115f126890aSEmmanuel Vadot pinctrl-names = "default"; 116f126890aSEmmanuel Vadot pinctrl-0 = <&mcp23017_pins_a>; 117f126890aSEmmanuel Vadot interrupt-controller; 118f126890aSEmmanuel Vadot #interrupt-cells = <2>; 119f126890aSEmmanuel Vadot microchip,irq-mirror; 120f126890aSEmmanuel Vadot }; 121f126890aSEmmanuel Vadot 122f126890aSEmmanuel Vadot typec@53 { 123f126890aSEmmanuel Vadot compatible = "st,stm32g0-typec"; 124f126890aSEmmanuel Vadot reg = <0x53>; 125f126890aSEmmanuel Vadot /* Alert pin on PI2 */ 126f126890aSEmmanuel Vadot interrupts = <2 IRQ_TYPE_EDGE_FALLING>; 127f126890aSEmmanuel Vadot interrupt-parent = <&gpioi>; 128f126890aSEmmanuel Vadot /* Internal pull-up on PI2 */ 129f126890aSEmmanuel Vadot pinctrl-names = "default"; 130f126890aSEmmanuel Vadot pinctrl-0 = <&stm32g0_intn_pins_a>; 131f126890aSEmmanuel Vadot firmware-name = "stm32g0-ucsi.mp135f-dk.fw"; 132f126890aSEmmanuel Vadot connector { 133f126890aSEmmanuel Vadot compatible = "usb-c-connector"; 134f126890aSEmmanuel Vadot label = "USB-C"; 135f126890aSEmmanuel Vadot 136f126890aSEmmanuel Vadot port { 137f126890aSEmmanuel Vadot con_usb_c_g0_ep: endpoint { 138f126890aSEmmanuel Vadot remote-endpoint = <&usbotg_hs_ep>; 139f126890aSEmmanuel Vadot }; 140f126890aSEmmanuel Vadot }; 141f126890aSEmmanuel Vadot }; 142f126890aSEmmanuel Vadot }; 143f126890aSEmmanuel Vadot}; 144f126890aSEmmanuel Vadot 145f126890aSEmmanuel Vadot&i2c5 { 146f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 147f126890aSEmmanuel Vadot pinctrl-0 = <&i2c5_pins_a>; 148f126890aSEmmanuel Vadot pinctrl-1 = <&i2c5_sleep_pins_a>; 149f126890aSEmmanuel Vadot i2c-scl-rising-time-ns = <170>; 150f126890aSEmmanuel Vadot i2c-scl-falling-time-ns = <5>; 151f126890aSEmmanuel Vadot clock-frequency = <400000>; 152f126890aSEmmanuel Vadot status = "okay"; 153f126890aSEmmanuel Vadot /* spare dmas for other usage */ 154f126890aSEmmanuel Vadot /delete-property/dmas; 155f126890aSEmmanuel Vadot /delete-property/dma-names; 156f126890aSEmmanuel Vadot}; 157f126890aSEmmanuel Vadot 158f126890aSEmmanuel Vadot&iwdg2 { 159f126890aSEmmanuel Vadot timeout-sec = <32>; 160f126890aSEmmanuel Vadot status = "okay"; 161f126890aSEmmanuel Vadot}; 162f126890aSEmmanuel Vadot 163f126890aSEmmanuel Vadot&rtc { 164f126890aSEmmanuel Vadot status = "okay"; 165f126890aSEmmanuel Vadot}; 166f126890aSEmmanuel Vadot 167*aa1a8ff2SEmmanuel Vadot&scmi_regu { 168*aa1a8ff2SEmmanuel Vadot scmi_vdd_adc: regulator@10 { 169*aa1a8ff2SEmmanuel Vadot reg = <VOLTD_SCMI_STPMIC1_LDO1>; 170*aa1a8ff2SEmmanuel Vadot regulator-name = "vdd_adc"; 171*aa1a8ff2SEmmanuel Vadot }; 172*aa1a8ff2SEmmanuel Vadot scmi_vdd_usb: regulator@13 { 173*aa1a8ff2SEmmanuel Vadot reg = <VOLTD_SCMI_STPMIC1_LDO4>; 174*aa1a8ff2SEmmanuel Vadot regulator-name = "vdd_usb"; 175*aa1a8ff2SEmmanuel Vadot }; 176*aa1a8ff2SEmmanuel Vadot scmi_vdd_sd: regulator@14 { 177*aa1a8ff2SEmmanuel Vadot reg = <VOLTD_SCMI_STPMIC1_LDO5>; 178*aa1a8ff2SEmmanuel Vadot regulator-name = "vdd_sd"; 179*aa1a8ff2SEmmanuel Vadot }; 180*aa1a8ff2SEmmanuel Vadot scmi_v1v8_periph: regulator@15 { 181*aa1a8ff2SEmmanuel Vadot reg = <VOLTD_SCMI_STPMIC1_LDO6>; 182*aa1a8ff2SEmmanuel Vadot regulator-name = "v1v8_periph"; 183*aa1a8ff2SEmmanuel Vadot }; 184*aa1a8ff2SEmmanuel Vadot scmi_v3v3_sw: regulator@19 { 185*aa1a8ff2SEmmanuel Vadot reg = <VOLTD_SCMI_STPMIC1_PWR_SW2>; 186*aa1a8ff2SEmmanuel Vadot regulator-name = "v3v3_sw"; 187*aa1a8ff2SEmmanuel Vadot }; 188*aa1a8ff2SEmmanuel Vadot}; 189*aa1a8ff2SEmmanuel Vadot 190f126890aSEmmanuel Vadot&sdmmc1 { 191f126890aSEmmanuel Vadot pinctrl-names = "default", "opendrain", "sleep"; 192f126890aSEmmanuel Vadot pinctrl-0 = <&sdmmc1_b4_pins_a &sdmmc1_clk_pins_a>; 193f126890aSEmmanuel Vadot pinctrl-1 = <&sdmmc1_b4_od_pins_a &sdmmc1_clk_pins_a>; 194f126890aSEmmanuel Vadot pinctrl-2 = <&sdmmc1_b4_sleep_pins_a>; 195f126890aSEmmanuel Vadot cd-gpios = <&gpioh 4 (GPIO_ACTIVE_LOW | GPIO_PULL_UP)>; 196f126890aSEmmanuel Vadot disable-wp; 197f126890aSEmmanuel Vadot st,neg-edge; 198f126890aSEmmanuel Vadot bus-width = <4>; 199*aa1a8ff2SEmmanuel Vadot vmmc-supply = <&scmi_vdd_sd>; 200f126890aSEmmanuel Vadot status = "okay"; 201f126890aSEmmanuel Vadot}; 202f126890aSEmmanuel Vadot 203f126890aSEmmanuel Vadot&spi5 { 204f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 205f126890aSEmmanuel Vadot pinctrl-0 = <&spi5_pins_a>; 206f126890aSEmmanuel Vadot pinctrl-1 = <&spi5_sleep_pins_a>; 207f126890aSEmmanuel Vadot status = "disabled"; 208f126890aSEmmanuel Vadot}; 209f126890aSEmmanuel Vadot 210f126890aSEmmanuel Vadot&timers3 { 211f126890aSEmmanuel Vadot /delete-property/dmas; 212f126890aSEmmanuel Vadot /delete-property/dma-names; 213f126890aSEmmanuel Vadot status = "disabled"; 214f126890aSEmmanuel Vadot pwm { 215f126890aSEmmanuel Vadot pinctrl-0 = <&pwm3_pins_a>; 216f126890aSEmmanuel Vadot pinctrl-1 = <&pwm3_sleep_pins_a>; 217f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 218f126890aSEmmanuel Vadot status = "okay"; 219f126890aSEmmanuel Vadot }; 220f126890aSEmmanuel Vadot timer@2 { 221f126890aSEmmanuel Vadot status = "okay"; 222f126890aSEmmanuel Vadot }; 223f126890aSEmmanuel Vadot}; 224f126890aSEmmanuel Vadot 225f126890aSEmmanuel Vadot&timers4 { 226f126890aSEmmanuel Vadot /delete-property/dmas; 227f126890aSEmmanuel Vadot /delete-property/dma-names; 228f126890aSEmmanuel Vadot status = "disabled"; 229f126890aSEmmanuel Vadot pwm { 230f126890aSEmmanuel Vadot pinctrl-0 = <&pwm4_pins_a>; 231f126890aSEmmanuel Vadot pinctrl-1 = <&pwm4_sleep_pins_a>; 232f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 233f126890aSEmmanuel Vadot status = "okay"; 234f126890aSEmmanuel Vadot }; 235f126890aSEmmanuel Vadot timer@3 { 236f126890aSEmmanuel Vadot status = "okay"; 237f126890aSEmmanuel Vadot }; 238f126890aSEmmanuel Vadot}; 239f126890aSEmmanuel Vadot 240f126890aSEmmanuel Vadot&timers8 { 241f126890aSEmmanuel Vadot /delete-property/dmas; 242f126890aSEmmanuel Vadot /delete-property/dma-names; 243f126890aSEmmanuel Vadot status = "disabled"; 244f126890aSEmmanuel Vadot pwm { 245f126890aSEmmanuel Vadot pinctrl-0 = <&pwm8_pins_a>; 246f126890aSEmmanuel Vadot pinctrl-1 = <&pwm8_sleep_pins_a>; 247f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 248f126890aSEmmanuel Vadot status = "okay"; 249f126890aSEmmanuel Vadot }; 250f126890aSEmmanuel Vadot timer@7 { 251f126890aSEmmanuel Vadot status = "okay"; 252f126890aSEmmanuel Vadot }; 253f126890aSEmmanuel Vadot}; 254f126890aSEmmanuel Vadot 255f126890aSEmmanuel Vadot&timers14 { 256f126890aSEmmanuel Vadot status = "disabled"; 257f126890aSEmmanuel Vadot pwm { 258f126890aSEmmanuel Vadot pinctrl-0 = <&pwm14_pins_a>; 259f126890aSEmmanuel Vadot pinctrl-1 = <&pwm14_sleep_pins_a>; 260f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep"; 261f126890aSEmmanuel Vadot status = "okay"; 262f126890aSEmmanuel Vadot }; 263f126890aSEmmanuel Vadot timer@13 { 264f126890aSEmmanuel Vadot status = "okay"; 265f126890aSEmmanuel Vadot }; 266f126890aSEmmanuel Vadot}; 267f126890aSEmmanuel Vadot 268f126890aSEmmanuel Vadot&uart4 { 269f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep", "idle"; 270f126890aSEmmanuel Vadot pinctrl-0 = <&uart4_pins_a>; 271f126890aSEmmanuel Vadot pinctrl-1 = <&uart4_sleep_pins_a>; 272f126890aSEmmanuel Vadot pinctrl-2 = <&uart4_idle_pins_a>; 273f126890aSEmmanuel Vadot /delete-property/dmas; 274f126890aSEmmanuel Vadot /delete-property/dma-names; 275f126890aSEmmanuel Vadot status = "okay"; 276f126890aSEmmanuel Vadot}; 277f126890aSEmmanuel Vadot 278f126890aSEmmanuel Vadot&uart8 { 279f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep", "idle"; 280f126890aSEmmanuel Vadot pinctrl-0 = <&uart8_pins_a>; 281f126890aSEmmanuel Vadot pinctrl-1 = <&uart8_sleep_pins_a>; 282f126890aSEmmanuel Vadot pinctrl-2 = <&uart8_idle_pins_a>; 283f126890aSEmmanuel Vadot /delete-property/dmas; 284f126890aSEmmanuel Vadot /delete-property/dma-names; 285f126890aSEmmanuel Vadot status = "disabled"; 286f126890aSEmmanuel Vadot}; 287f126890aSEmmanuel Vadot 288f126890aSEmmanuel Vadot&usart1 { 289f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep", "idle"; 290f126890aSEmmanuel Vadot pinctrl-0 = <&usart1_pins_a>; 291f126890aSEmmanuel Vadot pinctrl-1 = <&usart1_sleep_pins_a>; 292f126890aSEmmanuel Vadot pinctrl-2 = <&usart1_idle_pins_a>; 293f126890aSEmmanuel Vadot uart-has-rtscts; 294f126890aSEmmanuel Vadot status = "disabled"; 295f126890aSEmmanuel Vadot}; 296f126890aSEmmanuel Vadot 297f126890aSEmmanuel Vadot/* Bluetooth */ 298f126890aSEmmanuel Vadot&usart2 { 299f126890aSEmmanuel Vadot pinctrl-names = "default", "sleep", "idle"; 300f126890aSEmmanuel Vadot pinctrl-0 = <&usart2_pins_a>; 301f126890aSEmmanuel Vadot pinctrl-1 = <&usart2_sleep_pins_a>; 302f126890aSEmmanuel Vadot pinctrl-2 = <&usart2_idle_pins_a>; 303f126890aSEmmanuel Vadot uart-has-rtscts; 304f126890aSEmmanuel Vadot status = "okay"; 305f126890aSEmmanuel Vadot}; 306f126890aSEmmanuel Vadot 307f126890aSEmmanuel Vadot&usbh_ehci { 308f126890aSEmmanuel Vadot phys = <&usbphyc_port0>; 309f126890aSEmmanuel Vadot status = "okay"; 310f126890aSEmmanuel Vadot #address-cells = <1>; 311f126890aSEmmanuel Vadot #size-cells = <0>; 312f126890aSEmmanuel Vadot /* onboard HUB */ 313f126890aSEmmanuel Vadot hub@1 { 314f126890aSEmmanuel Vadot compatible = "usb424,2514"; 315f126890aSEmmanuel Vadot reg = <1>; 316*aa1a8ff2SEmmanuel Vadot vdd-supply = <&scmi_v3v3_sw>; 317f126890aSEmmanuel Vadot }; 318f126890aSEmmanuel Vadot}; 319f126890aSEmmanuel Vadot 320f126890aSEmmanuel Vadot&usbotg_hs { 321f126890aSEmmanuel Vadot phys = <&usbphyc_port1 0>; 322f126890aSEmmanuel Vadot phy-names = "usb2-phy"; 323f126890aSEmmanuel Vadot usb-role-switch; 324f126890aSEmmanuel Vadot status = "okay"; 325f126890aSEmmanuel Vadot port { 326f126890aSEmmanuel Vadot usbotg_hs_ep: endpoint { 327f126890aSEmmanuel Vadot remote-endpoint = <&con_usb_c_g0_ep>; 328f126890aSEmmanuel Vadot }; 329f126890aSEmmanuel Vadot }; 330f126890aSEmmanuel Vadot}; 331f126890aSEmmanuel Vadot 332f126890aSEmmanuel Vadot&usbphyc { 333f126890aSEmmanuel Vadot status = "okay"; 334f126890aSEmmanuel Vadot}; 335f126890aSEmmanuel Vadot 336f126890aSEmmanuel Vadot&usbphyc_port0 { 337*aa1a8ff2SEmmanuel Vadot phy-supply = <&scmi_vdd_usb>; 338f126890aSEmmanuel Vadot st,current-boost-microamp = <1000>; 339f126890aSEmmanuel Vadot st,decrease-hs-slew-rate; 340f126890aSEmmanuel Vadot st,tune-hs-dc-level = <2>; 341f126890aSEmmanuel Vadot st,enable-hs-rftime-reduction; 342f126890aSEmmanuel Vadot st,trim-hs-current = <11>; 343f126890aSEmmanuel Vadot st,trim-hs-impedance = <2>; 344f126890aSEmmanuel Vadot st,tune-squelch-level = <1>; 345f126890aSEmmanuel Vadot st,enable-hs-rx-gain-eq; 346f126890aSEmmanuel Vadot st,no-hs-ftime-ctrl; 347f126890aSEmmanuel Vadot st,no-lsfs-sc; 348f126890aSEmmanuel Vadot}; 349f126890aSEmmanuel Vadot 350f126890aSEmmanuel Vadot&usbphyc_port1 { 351*aa1a8ff2SEmmanuel Vadot phy-supply = <&scmi_vdd_usb>; 352f126890aSEmmanuel Vadot st,current-boost-microamp = <1000>; 353f126890aSEmmanuel Vadot st,decrease-hs-slew-rate; 354f126890aSEmmanuel Vadot st,tune-hs-dc-level = <2>; 355f126890aSEmmanuel Vadot st,enable-hs-rftime-reduction; 356f126890aSEmmanuel Vadot st,trim-hs-current = <11>; 357f126890aSEmmanuel Vadot st,trim-hs-impedance = <2>; 358f126890aSEmmanuel Vadot st,tune-squelch-level = <1>; 359f126890aSEmmanuel Vadot st,enable-hs-rx-gain-eq; 360f126890aSEmmanuel Vadot st,no-hs-ftime-ctrl; 361f126890aSEmmanuel Vadot st,no-lsfs-sc; 362f126890aSEmmanuel Vadot}; 363