commit edcbdd57de499305e2a3737d4a73fe387f71d84c upstream.
After renaming NAND controller node name from "qpic-nand" to
"nand-controller", the board DTS/DTSI also have to be updated:
Warning (unit_address_vs_reg): /soc/qpic-nand@79b0000: node has a unit name, but no reg or ranges property
Cc: <stable@vger.kernel.org>
Fixes: 9e1e00f18a ("ARM: dts: qcom: Fix node name for NAND controller node")
Signed-off-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Reviewed-by: Konrad Dybcio <konrad.dybcio@linaro.org>
Reviewed-by: Manivannan Sadhasivam <mani@kernel.org>
Signed-off-by: Bjorn Andersson <andersson@kernel.org>
Link: https://lore.kernel.org/r/20230420072811.36947-1-krzysztof.kozlowski@linaro.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
76 lines
1.4 KiB
Plaintext
76 lines
1.4 KiB
Plaintext
// SPDX-License-Identifier: GPL-2.0
|
|
// Copyright (c) 2018, The Linux Foundation. All rights reserved.
|
|
|
|
#include "qcom-ipq4019.dtsi"
|
|
#include <dt-bindings/input/input.h>
|
|
#include <dt-bindings/gpio/gpio.h>
|
|
|
|
/ {
|
|
model = "Qualcomm Technologies, Inc. IPQ4019/AP-DK07.1";
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x80000000 0x20000000>; /* 512MB */
|
|
};
|
|
|
|
aliases {
|
|
serial0 = &blsp1_uart1;
|
|
serial1 = &blsp1_uart2;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
|
|
soc {
|
|
pinctrl@1000000 {
|
|
serial_0_pins: serial0-pinmux {
|
|
pins = "gpio16", "gpio17";
|
|
function = "blsp_uart0";
|
|
bias-disable;
|
|
};
|
|
|
|
i2c_0_pins: i2c-0-pinmux {
|
|
pins = "gpio20", "gpio21";
|
|
function = "blsp_i2c0";
|
|
bias-disable;
|
|
};
|
|
|
|
nand_pins: nand-pins {
|
|
pins = "gpio53", "gpio55", "gpio56",
|
|
"gpio57", "gpio58", "gpio59",
|
|
"gpio60", "gpio62", "gpio63",
|
|
"gpio64", "gpio65", "gpio66",
|
|
"gpio67", "gpio68", "gpio69";
|
|
function = "qpic";
|
|
};
|
|
};
|
|
|
|
serial@78af000 {
|
|
pinctrl-0 = <&serial_0_pins>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
};
|
|
|
|
dma@7884000 {
|
|
status = "okay";
|
|
};
|
|
|
|
i2c@78b7000 { /* BLSP1 QUP2 */
|
|
pinctrl-0 = <&i2c_0_pins>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
};
|
|
|
|
dma@7984000 {
|
|
status = "okay";
|
|
};
|
|
};
|
|
};
|
|
|
|
&nand {
|
|
pinctrl-0 = <&nand_pins>;
|
|
pinctrl-names = "default";
|
|
status = "okay";
|
|
};
|