Skip to content

Commit 58efed5

Browse files
Siddharth-Vadapalli-at-TInmenon
authored andcommitted
arm64: dts: ti: k3-am68-sk-base-board: Add overlay for PCIE1 Endpoint Mode
Add overlay to enable the PCIE1 instance of PCIe on AM68-SK-Base-Board in Endpoint mode of operation. PCIE1 on AM68-SK-Base-Board supports x2 Lane operation unlike its counterpart on J721S2-EVM which supports x1 Lane. Signed-off-by: Siddharth Vadapalli <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Nishanth Menon <[email protected]>
1 parent c3015d4 commit 58efed5

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
@@ -113,6 +113,7 @@ dtb-$(CONFIG_ARCH_K3) += k3-j721e-sk-csi2-dual-imx219.dtbo
113113

114114
# Boards with J721s2 SoC
115115
dtb-$(CONFIG_ARCH_K3) += k3-am68-sk-base-board.dtb
116+
dtb-$(CONFIG_ARCH_K3) += k3-am68-sk-base-board-pcie1-ep.dtbo
116117
dtb-$(CONFIG_ARCH_K3) += k3-j721s2-common-proc-board.dtb
117118
dtb-$(CONFIG_ARCH_K3) += k3-j721s2-evm-gesi-exp-board.dtbo
118119
k3-j721s2-evm-dtbs := k3-j721s2-common-proc-board.dtb k3-j721s2-evm-gesi-exp-board.dtbo
@@ -193,6 +194,8 @@ k3-am642-tqma64xxl-mbax4xxl-wlan-dtbs := \
193194
k3-am642-tqma64xxl-mbax4xxl.dtb k3-am64-tqma64xxl-mbax4xxl-wlan.dtbo
194195
k3-am68-sk-base-board-csi2-dual-imx219-dtbs := k3-am68-sk-base-board.dtb \
195196
k3-j721e-sk-csi2-dual-imx219.dtbo
197+
k3-am68-sk-base-board-pcie1-ep-dtbs := k3-am68-sk-base-board.dtb \
198+
k3-am68-sk-base-board-pcie1-ep.dtbo
196199
k3-am69-sk-csi2-dual-imx219-dtbs := k3-am69-sk.dtb \
197200
k3-j721e-sk-csi2-dual-imx219.dtbo
198201
k3-j7200-evm-pcie1-ep-dtbs := k3-j7200-common-proc-board.dtb \
@@ -232,6 +235,7 @@ dtb- += k3-am625-beagleplay-csi2-ov5640.dtb \
232235
k3-am642-tqma64xxl-mbax4xxl-sdcard.dtb \
233236
k3-am642-tqma64xxl-mbax4xxl-wlan.dtb \
234237
k3-am68-sk-base-board-csi2-dual-imx219.dtb \
238+
k3-am68-sk-base-board-pcie1-ep.dtb \
235239
k3-am69-sk-csi2-dual-imx219.dtb \
236240
k3-j7200-evm-pcie1-ep.dtb \
237241
k3-j721e-common-proc-board-infotainment.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 PCIE1 instance in Endpoint Configuration with the
4+
* AM68-SK board.
5+
*
6+
* AM68-SK Board Product Link: https://www.ti.com/tool/SK-AM68
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+
&pcie1_rc {
24+
status = "disabled";
25+
};
26+
27+
&cbass_main {
28+
#address-cells = <2>;
29+
#size-cells = <2>;
30+
interrupt-parent = <&gic500>;
31+
32+
pcie1_ep: pcie-ep@2910000 {
33+
compatible = "ti,j7200-pcie-ep", "ti,j721e-pcie-ep";
34+
reg = <0x00 0x02910000 0x00 0x1000>,
35+
<0x00 0x02917000 0x00 0x400>,
36+
<0x00 0x0d800000 0x00 0x00800000>,
37+
<0x00 0x18000000 0x00 0x08000000>;
38+
reg-names = "intd_cfg", "user_cfg", "reg", "mem";
39+
interrupt-names = "link_state";
40+
interrupts = <GIC_SPI 330 IRQ_TYPE_EDGE_RISING>;
41+
max-link-speed = <3>;
42+
num-lanes = <2>;
43+
power-domains = <&k3_pds 276 TI_SCI_PD_EXCLUSIVE>;
44+
clocks = <&k3_clks 276 41>;
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 = <&serdes0_pcie_link>;
50+
phy-names = "pcie-phy";
51+
ti,syscon-pcie-ctrl = <&scm_conf 0x074>;
52+
};
53+
};

0 commit comments

Comments
 (0)