Enable console support on kera. Change-Id: I5ad3d0c05512b6f49cd67a773e5b2e16f6d1a10d Signed-off-by: Prasanna S <quic_prass@quicinc.com>
34 lines
933 B
Plaintext
34 lines
933 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
&soc {
|
|
/* QUPv3_2 Wrapper Instance */
|
|
qupv3_2: qcom,qupv3_1_geni_se@8c0000 {
|
|
compatible = "qcom,geni-se-qup";
|
|
reg = <0x8c0000 0x2000>;
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
clock-names = "m-ahb", "s-ahb";
|
|
clocks = <&gcc GCC_QUPV3_WRAP_2_M_AHB_CLK>,
|
|
<&gcc GCC_QUPV3_WRAP_2_S_AHB_CLK>;
|
|
ranges;
|
|
status = "ok";
|
|
|
|
/* Debug UART Instance */
|
|
qupv3_se13_2uart: qcom,qup_uart@894000 {
|
|
compatible = "qcom,geni-debug-uart";
|
|
reg = <0x894000 0x4000>;
|
|
reg-names = "se_phys";
|
|
interrupts = <GIC_SPI 587 IRQ_TYPE_LEVEL_HIGH>;
|
|
clock-names = "se";
|
|
clocks = <&gcc GCC_QUPV3_WRAP2_S5_CLK>;
|
|
pinctrl-names = "default", "sleep";
|
|
pinctrl-0 = <&qupv3_se13_2uart_tx_active>, <&qupv3_se13_2uart_rx_active>;
|
|
pinctrl-1 = <&qupv3_se13_2uart_sleep>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|