65 lines
889 B
Plaintext
65 lines
889 B
Plaintext
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
/*
|
||
|
* SDM845 MTP board device tree source
|
||
|
*
|
||
|
* Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
#include "sdm845.dtsi"
|
||
|
|
||
|
/ {
|
||
|
model = "Qualcomm Technologies, Inc. SDM845 MTP";
|
||
|
compatible = "qcom,sdm845-mtp";
|
||
|
|
||
|
aliases {
|
||
|
serial0 = &uart9;
|
||
|
};
|
||
|
|
||
|
chosen {
|
||
|
stdout-path = "serial0:115200n8";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&i2c10 {
|
||
|
status = "okay";
|
||
|
clock-frequency = <400000>;
|
||
|
};
|
||
|
|
||
|
&qupv3_id_1 {
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
&tlmm {
|
||
|
gpio-reserved-ranges = <0 4>, <81 4>;
|
||
|
};
|
||
|
|
||
|
&uart9 {
|
||
|
status = "okay";
|
||
|
};
|
||
|
|
||
|
/* PINCTRL - additions to nodes defined in sdm845.dtsi */
|
||
|
|
||
|
&qup_i2c10_default {
|
||
|
pinconf {
|
||
|
pins = "gpio55", "gpio56";
|
||
|
drive-strength = <2>;
|
||
|
bias-disable;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
&qup_uart9_default {
|
||
|
pinconf-tx {
|
||
|
pins = "gpio4";
|
||
|
drive-strength = <2>;
|
||
|
bias-disable;
|
||
|
};
|
||
|
|
||
|
pinconf-rx {
|
||
|
pins = "gpio5";
|
||
|
drive-strength = <2>;
|
||
|
bias-pull-up;
|
||
|
};
|
||
|
};
|