Rtwo/kernel/motorola/sm8550-devicetrees/bindings/uio/msm_sharedmem.txt
2025-09-30 19:22:48 -05:00

23 lines
822 B
Text

msm_sharedmem provides the shared memory addresses for various clients in user-space
Required properties:
- compatible: Must be "qcom,sharedmem-uio"
- reg : The address and size of the shared memory. The address/sizes may vary.
A reg address of Zero indicates that the shared memory is dynamically
allocated using dma_alloc_coherent. A non zero reg address is used
directly.
- reg-names : Indicates various client-names.
- qcom,client-id : The client id for the QMI clients.
Optional properties:
- qcom,vm-nav-path: If this dtsi property is set, then the shared memory region
will be given access to vm-nav-path also.
Example:
qcom,msm_sharedmem@0dc80000 {
compatible = "qcom,sharedmem-uio";
reg = <0x0dc80000 0x00180000>,
reg-names = "rmtfs";
qcom,client-id = <0x00000001>;
qcom,vm-nav-path;
};