qcom,ath10k.txt 628 B

123456789101112131415161718192021222324252627282930
  1. * Qualcomm Atheros ath10k wireless devices
  2. For ath10k devices the calibration data can be provided through Device
  3. Tree. The node is a child node of the PCI controller.
  4. Required properties:
  5. -compatible : Should be "qcom,ath10k"
  6. Optional properties:
  7. - qcom,ath10k-calibration-data : calibration data as an array, the
  8. length can vary between hw versions
  9. Example:
  10. pci {
  11. pcie@0 {
  12. reg = <0 0 0 0 0>;
  13. #interrupt-cells = <1>;
  14. #size-cells = <2>;
  15. #address-cells = <3>;
  16. device_type = "pci";
  17. ath10k@0,0 {
  18. reg = <0 0 0 0 0>;
  19. device_type = "pci";
  20. qcom,ath10k-calibration-data = [ 01 02 03 ... ];
  21. };
  22. };
  23. };