aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSrinivas Kandagatla <srinivas.kandagatla@linaro.org>2018-09-06 12:28:33 +0100
committerSrinivas Kandagatla <srinivas.kandagatla@linaro.org>2018-09-06 12:28:33 +0100
commita72f04860680962c6a95eed340064483bb6328b7 (patch)
tree45c553f466ce45aa75d412a7883a400d82728e12
parent4d85a456d31de2f5750fe80537bf250fcb3356e5 (diff)
Revert "soc: qcom dt-bindings: Add APR bus bindings"
This reverts commit 66283af1b85d25b4205200503624f5104c2d5404.
-rw-r--r--Documentation/devicetree/bindings/soc/qcom/qcom,apr.txt85
-rw-r--r--include/dt-bindings/soc/qcom,apr.h27
2 files changed, 0 insertions, 112 deletions
diff --git a/Documentation/devicetree/bindings/soc/qcom/qcom,apr.txt b/Documentation/devicetree/bindings/soc/qcom/qcom,apr.txt
deleted file mode 100644
index 6071a9038b4b6..0000000000000
--- a/Documentation/devicetree/bindings/soc/qcom/qcom,apr.txt
+++ /dev/null
@@ -1,85 +0,0 @@
-Qualcomm APR (Asynchronous Packet Router) binding
-
-This binding describes the Qualcomm APR. APR is a IPC protocol for
-communication between Application processor and QDSP. APR is mainly
-used for audio/voice services on the QDSP.
-
-- compatible:
- Usage: required
- Value type: <stringlist>
- Definition: must be "qcom,apr-v<VERSION-NUMBER>", example "qcom,apr-v2"
-
-- qcom,apr-dest-domain-id
- Usage: required
- Value type: <prop-encoded-array>
- Definition: Destination processor ID.
- Possible values are :
- 1 - APR simulator
- 2 - PC
- 3 - MODEM
- 4 - ADSP
- 5 - APPS
- 6 - MODEM2
- 7 - APPS2
-
-= APR SERVICES
-Each subnode of the APR node represents service tied to this apr. The name
-of the nodes are not important. The properties of these nodes are defined
-by the individual bindings for the specific service
-- All APR services MUST contain the following property:
-
-- qcom,apr-svc-id
- Usage: required
- Value type: <prop-encoded-array>
- Definition: APR Service ID, used for matching the service.
- Possible values are :
- 3 - DSP Core Service
- 4 - Audio Front End Service.
- 5 - Voice Stream Manager Service.
- 6 - Voice processing manager.
- 7 - Audio Stream Manager Service.
- 8 - Audio Device Manager Service.
- 9 - Multimode voice manager.
- 10 - Core voice stream.
- 11 - Core voice processor.
- 12 - Ultrasound stream manager.
- 13 - Listen stream manager.
-
-- qcom,apr-svc-name
- Usage: required
- Value type: <stringlist>
- Definition: User readable name of a APR service.
-
-= EXAMPLE
-The following example represents a QDSP based sound card on a MSM8996 device
-which uses apr as communication between Apps and QDSP.
-
- apr {
- compatible = "qcom,apr-v2";
- qcom,smd-channels = "apr_audio_svc";
- qcom,apr-dest-domain-id = <APR_DOMAIN_ADSP>;
-
- q6core {
- compatible = "qcom,q6core";
- qcom,apr-svc-name = "CORE";
- qcom,apr-svc-id = <APR_SVC_ADSP_CORE>;
- };
-
- q6afe {
- compatible = "qcom,q6afe";
- qcom,apr-svc-name = "AFE";
- qcom,apr-svc-id = <APR_SVC_AFE>;
- };
-
- q6asm {
- compatible = "qcom,q6asm";
- qcom,apr-svc-name = "ASM";
- qcom,apr-svc-id = <APR_SVC_ASM>;
- };
-
- q6adm {
- compatible = "qcom,q6adm";
- qcom,apr-svc-name = "ADM";
- qcom,apr-svc-id = <APR_SVC_ADM>;
- };
- };
diff --git a/include/dt-bindings/soc/qcom,apr.h b/include/dt-bindings/soc/qcom,apr.h
deleted file mode 100644
index 905503f818851..0000000000000
--- a/include/dt-bindings/soc/qcom,apr.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef __DT_BINDINGS_QCOM_APR_H
-#define __DT_BINDINGS_QCOM_APR_H
-
-/* Domain IDs */
-#define APR_DOMAIN_SIM 0x1
-#define APR_DOMAIN_PC 0x2
-#define APR_DOMAIN_MODEM 0x3
-#define APR_DOMAIN_ADSP 0x4
-#define APR_DOMAIN_APPS 0x5
-#define APR_DOMAIN_MAX 0x6
-
-/* ADSP service IDs */
-#define APR_SVC_ADSP_CORE 0x3
-#define APR_SVC_AFE 0x4
-#define APR_SVC_VSM 0x5
-#define APR_SVC_VPM 0x6
-#define APR_SVC_ASM 0x7
-#define APR_SVC_ADM 0x8
-#define APR_SVC_ADSP_MVM 0x09
-#define APR_SVC_ADSP_CVS 0x0A
-#define APR_SVC_ADSP_CVP 0x0B
-#define APR_SVC_USM 0x0C
-#define APR_SVC_LSM 0x0D
-#define APR_SVC_VIDC 0x16
-#define APR_SVC_MAX 0x17
-
-#endif /* __DT_BINDINGS_QCOM_APR_H */