mirror of
https://github.com/Telecominfraproject/wlan-ap.git
synced 2025-12-17 09:21:35 +00:00
118 lines
3.8 KiB
Plaintext
118 lines
3.8 KiB
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
|
|
/*
|
|
* IPQ5332 Memory device tree source
|
|
*
|
|
* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*/
|
|
|
|
/ {
|
|
|
|
/* Default Profile
|
|
* +=========+==============+========================+
|
|
* | | | |
|
|
* | Region | Start Offset | Size |
|
|
* | | | |
|
|
* +--------+--------------+-------------------------+
|
|
* | | | |
|
|
* | | | |
|
|
* | WLAN | | |
|
|
* | Q6 | 0x4A900000 | 35MB |
|
|
* | | | |
|
|
* | | | |
|
|
* +--------+--------------+-------------------------+
|
|
* | M3 Dump| 0x4CC00000 | 1MB |
|
|
* +--------+--------------+-------------------------+
|
|
* | WLAN | | |
|
|
* | Q6 ETR | 0x4CD00000 | 1MB |
|
|
* | Region | | |
|
|
* +--------+--------------+-------------------------+
|
|
* | caldb | 0x4CE00000 | 5MB |
|
|
* +--------+--------------+-------------------------+
|
|
* | MLO | 0x4DB00000 | 17MB |
|
|
* +--------+--------------+-------------------------+
|
|
* | | | |
|
|
* |QCN9224 | 0x4EC00000 | 50MB |
|
|
* |PCIE0 | | |
|
|
* | | | |
|
|
* +--------+--------------+-------------------------+
|
|
* | | | |
|
|
* |QCN9224 | 0x51E00000 | 50MB |
|
|
* |PCIE1 | | |
|
|
* | | | |
|
|
* +--------+--------------+-------------------------+
|
|
* | | | |
|
|
* | MHI0 | DYNAMIC | 9MB |
|
|
* | | | |
|
|
* +--------+--------------+-------------------------+
|
|
* | | | |
|
|
* | MHI1 | DYNAMIC | 9MB |
|
|
* | | | |
|
|
* +=================================================+
|
|
* | |
|
|
* | |
|
|
* | |
|
|
* | Rest of memory for Linux |
|
|
* | |
|
|
* | |
|
|
* | |
|
|
* +=================================================+
|
|
*/
|
|
|
|
reserved-memory {
|
|
#address-cells = <2>;
|
|
#size-cells = <2>;
|
|
ranges;
|
|
|
|
q6_region: wcnss@4a900000 {
|
|
no-map;
|
|
reg = <0x0 0x4a900000 0x0 0x02300000>;
|
|
};
|
|
|
|
m3_dump: m3_dump@4cc00000 {
|
|
no-map;
|
|
reg = <0x0 0x4CC00000 0x0 0x100000>;
|
|
};
|
|
|
|
q6_etr_region: q6_etr_dump@1 {
|
|
no-map;
|
|
reg = <0x0 0x4CD00000 0x0 0x100000>;
|
|
};
|
|
|
|
q6_caldb_region:q6_caldb_region@4ce00000 {
|
|
no-map;
|
|
reg = <0x0 0x4CE00000 0x0 0x500000>;
|
|
};
|
|
|
|
mlo_global_mem0: mlo_global_mem_0@0x4db00000 {
|
|
no-map;
|
|
reg = <0x0 0x4DB00000 0x0 0x01100000>;
|
|
};
|
|
|
|
qcn9224_pcie0: qcn9224_pcie0@4ec00000 {
|
|
no-map;
|
|
reg = <0x0 0x4EC00000 0x0 0x03200000>;
|
|
status = "disabled";
|
|
};
|
|
|
|
qcn9224_pcie1: qcn9224_pcie1@51e00000 {
|
|
no-map;
|
|
reg = <0x0 0x51e00000 0x0 0x03200000>;
|
|
status = "disabled";
|
|
};
|
|
|
|
mhi_region0: dma_pool0@0 {
|
|
compatible = "shared-dma-pool";
|
|
no-map;
|
|
size = <0x0 0x00900000>;
|
|
status = "disabled";
|
|
};
|
|
|
|
mhi_region1: dma_pool1@1 {
|
|
compatible = "shared-dma-pool";
|
|
no-map;
|
|
size = <0x0 0x00900000>;
|
|
status = "disabled";
|
|
};
|
|
};
|
|
};
|