IQ-9075 EVK

The Qualcomm IQ-9075 EVK is a powerful Linux-based evaluation kit based around the IQ-9075 SoC. It has a 6-core CPU, Adreno™ 663 GPU and 100 TOPS Hexagon™ NPU that can run 13B parameter LLM/VLM models. It's available from a variety of distributors like Lantronixarrow-up-right.

IQ-9075 EVK

Setup

Installing Ubuntu 24.04

The IQ-9075 EVK does not come with an OS yet. You'll need to install Ubuntu 24.04 to follow the tutorials in this documentation.

  1. Connect power to the board, then connect the EVK to your computer using two USB cables.

    There are two variants of this board:

    1. Variant A:

      Connect the power adapter, then connect the EVK to your computer using both micro-USB and USB-C ports
      Connect the power adapter, then connect the EVK to your computer using both micro-USB and USB-C ports
    2. Variant B:

      TODO (asked Krishna)

  2. Toggle EDL mode on.

    • If you have board variant A: Toggle DIP switch 3 to 'ON':

      Toggle DIP switch 3 'ON' (here it's OFF)
      Toggle DIP switch 3 'ON' (here it's OFF)
    • If you have board variant B: Toggle DIP switch S2-8 to 'ON'.

      Toggle DIP switch S2-8 'ON' (here it's OFF)
      Toggle DIP switch S2-8 'ON' (here it's ON)
  3. Now, depending on the OS on your computer:

  1. You need to swap out the Qualcomm USB driver for a WinUSB driver, otherwise you cannot flash the board.

    1. Download and unzip QDL:

    2. Turn your IQ-9075 EVK on via the power switch.

    3. In the QDL folder, find install_driver.bat. Right-click, and select "Run as administrator".

      QDL: install_driver.bat
    4. This should print something akin to:

      If you get an error, make sure DIP 3 / DIP S2-8 is switched 'ON', disconnect the power adapter and try again.

  2. Open a terminal, and run:

circle-exclamation
  1. Afterwards:

    • If you have board variant A: Toggle DIP switch 3 to 'OFF':

      Toggle DIP switch 3 'OFF' (here it's OFF)
      Toggle DIP switch 3 'OFF' (here it's OFF)
    • If you have board variant B: Toggle DIP switch S2-8 to 'ON'.

      Toggle DIP switch S2-8 'OFF' (here it's ON)
      Toggle DIP switch S2-8 'OFF' (here it's ON)
  2. Toggle power switch OFF, then switch it back ON. Your board will now boot up.

Configuring Ubuntu 24

Now that we have Ubuntu 24.04 installed, lets connect your IQ-9075 EVK to the internet.

  1. You need to connect to the device using a serial port. You can either use your favorite serial terminal application (use baud rate 115200) or, on your computer:

    1. Install Node.jsarrow-up-right (on Windows: make sure to enable 'Tools for Native Modules').

    2. Install the Edge Impulse CLIarrow-up-right by opening a command prompt or terminal window, and running:

      Issues with installing the Edge Impulse CLI? See the install instructionsarrow-up-right.

    3. You can now connect to your board via:

      The EVK exposes multiple serial ports; and it's unclear which is which (especially on Windows). On macOS it seems to be the port ending in M1. Try restarting the board while attaching to one of the ports, you should see boot messages from Ubuntu.

    4. Once you are connected to the board, and you don't see any log messages anymore; press ENTER and log in with username ubuntu, password ubuntu:

      To disconnect, press CTRL+D.

  2. From your terminal, set up WiFi:

  3. Optional: If you want to connect over SSH:

    1. Find your IP address:

    2. On your host machine (so not on your dev board), open a command prompt or terminal and run:

      (Replace 192.168.1.253 with the IP you found in the previous step)

    3. Optional: Follow this guide to connect your board to Visual Studio Code via SSH for code development and deployment.

Your board is now ready. You can disconnect the USB-C to your computer cable (keep the micro-USB cable connected if you haven't set up SSH).

Installing drivers, AI Engine Direct and the IM-SDK

Now that we have Ubuntu 24.04 installed and connected to a network, let's install GPU drivers and the Qualcomm AI Engine Direct SDK (to run neural networks).

From the terminal or ssh session on your development board, run:

  1. Install some base packages:

  2. Download and install the AI Engine Direct SDK library and development headers:

  3. Install OpenCL GPU drivers:

Troubleshooting

qdl: unable to open USB device

If you see qdl: unable to open USB device when flashing the board (on Windows) then make sure to update the driver using QDL's install_driver.bat (see above).

Last updated