Add initial device tree entries for sun target Change-Id: Ieeb7eb1f6e300b1453cda59f75f50b9de2b58c6c
30 lines
962 B
Plaintext
30 lines
962 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
|
|
/*
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
|
|
#include <dt-bindings/clock/qcom,rpmh.h>
|
|
&qupv3_se0_i2c {
|
|
status = "ok";
|
|
qcom,clk-freq-out = <1000000>;
|
|
#address-cells = <1>;
|
|
#size-cells = <0>;
|
|
st21nfc: st21nfc@08 {
|
|
compatible = "st,st21nfc";
|
|
reg = <0x08>;
|
|
irq-gpios = <&tlmm 75 0x00>;
|
|
reset-gpios = <&tlmm 34 0x00>;
|
|
clkreq-gpios = <&tlmm 35 0x00>;
|
|
interrupt-parent = <&tlmm>;
|
|
interrupts = <75 0>;
|
|
interrupt-names = "nfc_irq";
|
|
pinctrl-names = "nfc_active", "nfc_suspend";
|
|
pinctrl-0 = <&nfc_int_active &nfc_enable_active>;
|
|
pinctrl-1 = <&nfc_int_suspend &nfc_enable_suspend>;
|
|
clocks = <&rpmhcc RPMH_RF_CLK3>;
|
|
clock-names = "nfc_ref_clk";
|
|
};
|
|
};
|