Skip to content

Commit b09cc75

Browse files
Siddharth-Vadapalli-at-TInmenon
authored andcommitted
arm64: dts: ti: k3-am69-sk: Add overlay for PCIE0 Endpoint Mode
Add overlay to enable the PCIE0 instance of PCIe on AM69-SK in Endpoint mode of operation. Signed-off-by: Siddharth Vadapalli <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Nishanth Menon <[email protected]>
1 parent 58efed5 commit b09cc75

File tree

2 files changed

+57
-0
lines changed

2 files changed

+57
-0
lines changed

arch/arm64/boot/dts/ti/Makefile

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ dtb-$(CONFIG_ARCH_K3) += k3-j722s-evm.dtb
126126

127127
# Boards with J784s4 SoC
128128
dtb-$(CONFIG_ARCH_K3) += k3-am69-sk.dtb
129+
dtb-$(CONFIG_ARCH_K3) += k3-am69-sk-pcie0-ep.dtbo
129130
dtb-$(CONFIG_ARCH_K3) += k3-j784s4-evm.dtb
130131
dtb-$(CONFIG_ARCH_K3) += k3-j784s4-evm-pcie0-pcie1-ep.dtbo
131132
dtb-$(CONFIG_ARCH_K3) += k3-j784s4-evm-quad-port-eth-exp1.dtbo
@@ -198,6 +199,8 @@ k3-am68-sk-base-board-pcie1-ep-dtbs := k3-am68-sk-base-board.dtb \
198199
k3-am68-sk-base-board-pcie1-ep.dtbo
199200
k3-am69-sk-csi2-dual-imx219-dtbs := k3-am69-sk.dtb \
200201
k3-j721e-sk-csi2-dual-imx219.dtbo
202+
k3-am69-sk-pcie0-ep-dtbs := k3-am69-sk.dtb \
203+
k3-am69-sk-pcie0-ep.dtbo
201204
k3-j7200-evm-pcie1-ep-dtbs := k3-j7200-common-proc-board.dtb \
202205
k3-j7200-evm-pcie1-ep.dtbo
203206
k3-j721e-common-proc-board-infotainment-dtbs := k3-j721e-common-proc-board.dtb \
@@ -237,6 +240,7 @@ dtb- += k3-am625-beagleplay-csi2-ov5640.dtb \
237240
k3-am68-sk-base-board-csi2-dual-imx219.dtb \
238241
k3-am68-sk-base-board-pcie1-ep.dtb \
239242
k3-am69-sk-csi2-dual-imx219.dtb \
243+
k3-am69-sk-pcie0-ep.dtb \
240244
k3-j7200-evm-pcie1-ep.dtb \
241245
k3-j721e-common-proc-board-infotainment.dtb \
242246
k3-j721e-evm-pcie0-ep.dtb \
Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
// SPDX-License-Identifier: GPL-2.0-only OR MIT
2+
/**
3+
* DT Overlay for enabling PCIE0 instances of PCIe in Endpoint Configuration
4+
* on AM69-SK.
5+
*
6+
* AM69-SK Product Link: https://www.ti.com/tool/SK-AM69
7+
*
8+
* Copyright (C) 2024 Texas Instruments Incorporated - https://www.ti.com/
9+
*/
10+
11+
/dts-v1/;
12+
/plugin/;
13+
14+
#include <dt-bindings/interrupt-controller/arm-gic.h>
15+
#include <dt-bindings/soc/ti,sci_pm_domain.h>
16+
17+
#include "k3-pinctrl.h"
18+
19+
/*
20+
* Since Root Complex and Endpoint modes are mutually exclusive
21+
* disable Root Complex mode.
22+
*/
23+
&pcie0_rc {
24+
status = "disabled";
25+
};
26+
27+
&cbass_main {
28+
#address-cells = <2>;
29+
#size-cells = <2>;
30+
interrupt-parent = <&gic500>;
31+
32+
pcie0_ep: pcie-ep@2900000 {
33+
compatible = "ti,j784s4-pcie-ep";
34+
reg = <0x00 0x02900000 0x00 0x1000>,
35+
<0x00 0x02907000 0x00 0x400>,
36+
<0x00 0x0d000000 0x00 0x00800000>,
37+
<0x00 0x10000000 0x00 0x08000000>;
38+
reg-names = "intd_cfg", "user_cfg", "reg", "mem";
39+
interrupt-names = "link_state";
40+
interrupts = <GIC_SPI 318 IRQ_TYPE_EDGE_RISING>;
41+
max-link-speed = <3>;
42+
num-lanes = <4>;
43+
power-domains = <&k3_pds 332 TI_SCI_PD_EXCLUSIVE>;
44+
clocks = <&k3_clks 332 0>;
45+
clock-names = "fck";
46+
max-functions = /bits/ 8 <6>;
47+
max-virtual-functions = /bits/ 8 <4 4 4 4 0 0>;
48+
dma-coherent;
49+
phys = <&serdes1_pcie_link>;
50+
phy-names = "pcie-phy";
51+
ti,syscon-pcie-ctrl = <&pcie0_ctrl 0x0>;
52+
};
53+
};

0 commit comments

Comments
 (0)