mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2026-01-06 17:01:17 +00:00
While the DT parser recognizes "ok" as a valid value for the "status" property, it is actually mentioned nowhere. Use the proper value "okay" instead, as done in the majority of files already. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Link: https://lore.kernel.org/r/20200830200845.1771-1-freifunk@adrianschmutzler.de Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org>
65 lines
1.1 KiB
Plaintext
65 lines
1.1 KiB
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
|
|
/*
|
|
* IPQ6018 CP01 board device tree source
|
|
*
|
|
* Copyright (c) 2019, The Linux Foundation. All rights reserved.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "ipq6018.dtsi"
|
|
|
|
/ {
|
|
model = "Qualcomm Technologies, Inc. IPQ6018/AP-CP01-C1";
|
|
compatible = "qcom,ipq6018-cp01", "qcom,ipq6018";
|
|
|
|
aliases {
|
|
serial0 = &blsp1_uart3;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
bootargs-append = " swiotlb=1";
|
|
};
|
|
};
|
|
|
|
&blsp1_uart3 {
|
|
pinctrl-0 = <&serial_3_pins>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
};
|
|
|
|
&i2c_1 {
|
|
pinctrl-0 = <&i2c_1_pins>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
};
|
|
|
|
&spi_0 {
|
|
cs-select = <0>;
|
|
status = "okay";
|
|
|
|
m25p80@0 {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
reg = <0>;
|
|
compatible = "n25q128a11";
|
|
spi-max-frequency = <50000000>;
|
|
};
|
|
};
|
|
|
|
&tlmm {
|
|
i2c_1_pins: i2c-1-pins {
|
|
pins = "gpio42", "gpio43";
|
|
function = "blsp2_i2c";
|
|
drive-strength = <8>;
|
|
};
|
|
|
|
spi_0_pins: spi-0-pins {
|
|
pins = "gpio38", "gpio39", "gpio40", "gpio41";
|
|
function = "blsp0_spi";
|
|
drive-strength = <8>;
|
|
bias-pull-down;
|
|
};
|
|
};
|