qseecom.txt 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. * QSEECOM (Qualcomm Secure Execution Environment Communicator)
  2. Required properties:
  3. - compatible : Should be "qcom,qseecom"
  4. - reg : should contain memory region address reserved for loading secure apps.
  5. - qcom,disk-encrypt-pipe-pair : indicates what CE HW pipe pair is used for disk encryption
  6. - qcom,file-encrypt-pipe-pair : indicates what CE HW pipe pair is used for file encryption
  7. - qcom,hlos-ce-hw-instance : indicates what CE HW is used by HLOS crypto driver
  8. - qcom,qsee-ce-hw-instance : indicates what CE HW is used by secure domain (TZ) crypto driver
  9. - qcom, msm_bus,name: Should be "qseecom-noc"
  10. - qcom, msm_bus,num_cases: Depends on the use cases for bus scaling
  11. - qcom, msm_bus,num_paths: The paths for source and destination ports
  12. - qcom, msm_bus,vectors: Vectors for bus topology.
  13. Optional properties:
  14. - qcom,support-bus-scaling : indicates if driver support scaling the bus for crypto operation.
  15. - qcom,support-fde : indicates if driver support key managing for full disk encryption feature.
  16. - qcom,support-pfe : indicates if driver support key managing for per file encryption feature.
  17. - qcom,appsbl-qseecom-support : indicates if there is qseecom support in appsbootloader
  18. Example:
  19. qcom,qseecom@fe806000 {
  20. compatible = "qcom,qseecom";
  21. reg = <0x7f00000 0x500000>;
  22. reg-names = "secapp-region";
  23. qcom,disk-encrypt-pipe-pair = <2>;
  24. qcom,file-encrypt-pipe-pair = <0>;
  25. qcom,hlos-ce-hw-instance = <1>;
  26. qcom,qsee-ce-hw-instance = <0>;
  27. qcom,support-fde;
  28. qcom,support-pfe;
  29. qcom,msm_bus,name = "qseecom-noc";
  30. qcom,msm_bus,num_cases = <4>;
  31. qcom,msm_bus,active_only = <0>;
  32. qcom,msm_bus,num_paths = <1>;
  33. qcom,appsbl-qseecom-support;
  34. qcom,msm_bus,vectors =
  35. <55 512 0 0>,
  36. <55 512 3936000000 393600000>,
  37. <55 512 3936000000 393600000>,
  38. <55 512 3936000000 393600000>;
  39. };