trace_capture_usb.py 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. #!/usr/bin/env python3
  2. #
  3. # Copyright (c) 2019 Intel Corporation.
  4. #
  5. # SPDX-License-Identifier: Apache-2.0
  6. """
  7. Script to capture tracing data with USB backend.
  8. """
  9. import usb.core
  10. import usb.util
  11. import argparse
  12. import sys
  13. def parse_args():
  14. global args
  15. parser = argparse.ArgumentParser(
  16. description=__doc__,
  17. formatter_class=argparse.RawDescriptionHelpFormatter)
  18. parser.add_argument("-v", "--vendor_id", required=True,
  19. help="usb device vendor id")
  20. parser.add_argument("-p", "--product_id", required=True,
  21. help="usb device product id")
  22. parser.add_argument("-o", "--output", default='channel0_0',
  23. required=False, help="tracing data output file")
  24. args = parser.parse_args()
  25. def main():
  26. parse_args()
  27. if args.vendor_id.isdecimal():
  28. vendor_id = int(args.vendor_id)
  29. else:
  30. vendor_id = int(args.vendor_id, 16)
  31. if args.product_id.isdecimal():
  32. product_id = int(args.product_id)
  33. else:
  34. product_id = int(args.product_id, 16)
  35. output_file = args.output
  36. try:
  37. usb_device = usb.core.find(idVendor=vendor_id, idProduct=product_id)
  38. except Exception as e:
  39. sys.exit("{}".format(e))
  40. if usb_device is None:
  41. sys.exit("No device found, check vendor_id and product_id")
  42. if usb_device.is_kernel_driver_active(0):
  43. try:
  44. usb_device.detach_kernel_driver(0)
  45. except usb.core.USBError as e:
  46. sys.exit("{}".format(e))
  47. # set the active configuration. With no arguments, the first
  48. # configuration will be the active one
  49. try:
  50. usb_device.set_configuration()
  51. except usb.core.USBError as e:
  52. sys.exit("{}".format(e))
  53. configuration = usb_device[0]
  54. interface = configuration[(0, 0)]
  55. # match the only IN endpoint
  56. read_endpoint = usb.util.find_descriptor(interface, custom_match = \
  57. lambda e: \
  58. usb.util.endpoint_direction( \
  59. e.bEndpointAddress) == \
  60. usb.util.ENDPOINT_IN)
  61. # match the only OUT endpoint
  62. write_endpoint = usb.util.find_descriptor(interface, custom_match = \
  63. lambda e: \
  64. usb.util.endpoint_direction( \
  65. e.bEndpointAddress) == \
  66. usb.util.ENDPOINT_OUT)
  67. usb.util.claim_interface(usb_device, interface)
  68. #enable device tracing
  69. write_endpoint.write('enable')
  70. #try to read to avoid garbage mixed to useful stream data
  71. buff = usb.util.create_buffer(8192)
  72. read_endpoint.read(buff, 10000)
  73. with open(output_file, "wb") as file_desc:
  74. while True:
  75. buff = usb.util.create_buffer(8192)
  76. length = read_endpoint.read(buff, 100000)
  77. for index in range(length):
  78. file_desc.write(chr(buff[index]).encode('latin1'))
  79. usb.util.release_interface(usb_device, interface)
  80. if __name__=="__main__":
  81. try:
  82. main()
  83. except KeyboardInterrupt:
  84. print('Data capture interrupted, data saved into {}'.format(args.output))
  85. sys.exit(0)