mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-14 17:07:38 +00:00
35c4bccd89
Distinguish more clearly between source files meant for producing .dtb from those meant for producing .dtbo. No functional change, as we currently have rules for producing a foo.dtbo from either foo.dts or foo.dtso. Note that in the linux tree, all device tree overlay sources have been renamed to .dtso, and the .dts->.dtbo rule is gone since v6.5 (commit 81d362732bac). So this is also a step towards staying closer to linux with respect to both Kbuild and device tree sources. Signed-off-by: Rasmus Villemoes <rasmus.villemoes@prevas.dk> Reviewed-by: Jan Kiszka <jan.kiszka@siemens.com>
47 lines
1,001 B
Text
47 lines
1,001 B
Text
// SPDX-License-Identifier: GPL-2.0
|
|
/*
|
|
* IOT2050 M.2 variant, overlay for B-key USB3.0 + E-key PCIE1_LANE0
|
|
* Copyright (c) Siemens AG, 2022
|
|
*
|
|
* Authors:
|
|
* Chao Zeng <chao.zeng@siemens.com>
|
|
* Jan Kiszka <jan.kiszka@siemens.com>
|
|
*/
|
|
|
|
/dts-v1/;
|
|
/plugin/;
|
|
|
|
#include <dt-bindings/phy/phy.h>
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
&serdes0 {
|
|
assigned-clock-parents = <&k3_clks 153 7>, <&k3_clks 153 4>;
|
|
};
|
|
|
|
&pcie0_rc {
|
|
status = "disabled";
|
|
};
|
|
|
|
&pcie1_rc {
|
|
pinctrl-names = "default";
|
|
pinctrl-0 = <&minipcie_pins_default>;
|
|
|
|
num-lanes = <1>;
|
|
phys = <&serdes1 PHY_TYPE_PCIE 0>;
|
|
phy-names = "pcie-phy0";
|
|
reset-gpios = <&wkup_gpio0 27 GPIO_ACTIVE_HIGH>;
|
|
status = "okay";
|
|
};
|
|
|
|
&dwc3_0 {
|
|
assigned-clock-parents = <&k3_clks 151 4>, /* set REF_CLK to 20MHz i.e. PER0_PLL/48 */
|
|
<&k3_clks 151 8>; /* set PIPE3_TXB_CLK to WIZ8B2M4VSB */
|
|
phys = <&serdes0 PHY_TYPE_USB3 0>;
|
|
phy-names = "usb3-phy";
|
|
};
|
|
|
|
&usb0 {
|
|
maximum-speed = "super-speed";
|
|
snps,dis-u1-entry-quirk;
|
|
snps,dis-u2-entry-quirk;
|
|
};
|