Add the TLMM GPIO reserved ranges for the sdxkova platform. The reserved range is set to <110 6> to ensure proper allocation and avoid conflicts with other GPIOs. Change-Id: I6b01f9c6a21f918df078dcbe078be602dd889898 Signed-off-by: Khaja Hussain Shaik Khaji <quic_kshaikkh@quicinc.com>
42 lines
810 B
Plaintext
42 lines
810 B
Plaintext
// SPDX-License-Identifier: BSD-3-Clause
|
|
/*
|
|
* Copyright (c) 2024 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
#include "sdx75.dtsi"
|
|
/delete-node/ &apps_smmu;
|
|
#include "msm-arm-smmu-sdxkova.dtsi"
|
|
/{
|
|
qcom_tzlog: tz-log@14680720 {
|
|
compatible = "qcom,tz-log";
|
|
reg = <0x14680720 0x3000>;
|
|
qcom,hyplog-enabled;
|
|
hyplog-address-offset = <0x410>;
|
|
hyplog-size-offset = <0x414>;
|
|
};
|
|
|
|
/delete-node/ reserved-memory;
|
|
|
|
reserved_memory: reserved-memory {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
ranges;
|
|
|
|
system_cma: linux,cma {
|
|
compatible = "shared-dma-pool";
|
|
alloc-ranges = <0x0 0x00000000 0x0 0xffffffff>;
|
|
reusable;
|
|
alignment = <0x0 0x400000>;
|
|
size = <0x0 0x2000000>;
|
|
linux,cma-default;
|
|
};
|
|
};
|
|
|
|
aliases: aliases {
|
|
};
|
|
};
|
|
|
|
&tlmm {
|
|
gpio-reserved-ranges = <110 6>;
|
|
};
|