Skip to content

Add firmware for Arduino UNO Q (QRB2210/QCM2290)#123

Merged
HeyMeco merged 1 commit intoarmbian:masterfrom
SuperKali:arduino-uno-q-firmware
Apr 2, 2026
Merged

Add firmware for Arduino UNO Q (QRB2210/QCM2290)#123
HeyMeco merged 1 commit intoarmbian:masterfrom
SuperKali:arduino-uno-q-firmware

Conversation

@SuperKali
Copy link
Copy Markdown
Member

Add WiFi (ath10k WCN3990), Bluetooth (QCA), GPU (Adreno a702), DSP (ADSP), modem, and video (Venus 6.0) firmware for the Qualcomm QCM2290 SoC used in the Arduino UNO Q board.

Related to armbian/build#9623

Add WiFi (ath10k WCN3990), Bluetooth (QCA), GPU (Adreno a702),
DSP (ADSP), modem, and video (Venus 6.0) firmware for the Qualcomm
QCM2290 SoC used in the Arduino UNO Q board.
@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Apr 2, 2026

Walkthrough

Five new JSON configuration files are added to the qcom/qcm2290/ directory: adspr.jsn, adsps.jsn, adspua.jsn, modemr.jsn, and modemuw.jsn. Each file defines service routing metadata with consistent structure including an sr_version object, an sr_domain object specifying SoC/domain/subdomain/qmi_instance_id identifiers, and an sr_service array containing provider/service pairs with associated service data fields. A total of 129 lines are added across all files, with no trailing newlines.

Estimated code review effort

🎯 1 (Trivial) | ⏱️ ~5 minutes

🚥 Pre-merge checks | ✅ 3
✅ Passed checks (3 passed)
Check name Status Explanation
Title check ✅ Passed The title directly describes the main objective of the PR—adding firmware for a specific device (Arduino UNO Q with QCM2290 SoC), which matches the changeset's addition of multiple firmware configuration files.
Description check ✅ Passed The description is related to the changeset, providing context about the firmware being added (WiFi, Bluetooth, GPU, DSP, modem, video) for the QCM2290 SoC and referencing the related issue.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.

✏️ Tip: You can configure your own custom pre-merge checks in the settings.

✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands and usage tips.

Copy link
Copy Markdown

@coderabbitai coderabbitai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🧹 Nitpick comments (5)
qcom/qcm2290/adspr.jsn (1)

1-21: Consider adding a trailing newline for POSIX compliance.

The file is missing a trailing newline at end of file. This is consistent with other files in this PR but may cause issues with certain text processing tools.

📝 Proposed fix to add trailing newline
     ]
 }
+
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@qcom/qcm2290/adspr.jsn` around lines 1 - 21, The file ends without a trailing
newline which can break POSIX tools; update the file (containing keys like
"sr_version", "sr_domain", and "sr_service") to ensure there is a single newline
character at the end of the file (i.e., add a trailing '\n' after the final
closing brace) and commit the change so the file ends with a newline.
qcom/qcm2290/modemuw.jsn (1)

1-33: Consider adding a trailing newline for POSIX compliance.

The file is missing a trailing newline, consistent with other files in this PR. Consider adding one for better POSIX compliance.

📝 Proposed fix to add trailing newline
     ]
 }
+
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@qcom/qcm2290/modemuw.jsn` around lines 1 - 33, The file's JSON object
(starting with "sr_version") is missing a trailing newline at EOF; update the
file qcm2290/modemuw.jsn by adding a single newline character at the end of the
file so the top-level JSON (e.g., "sr_version", "sr_domain", "sr_service") ends
with a POSIX-compliant trailing newline.
qcom/qcm2290/modemr.jsn (1)

1-27: Consider adding a trailing newline for POSIX compliance.

The file is missing a trailing newline. For consistency and to avoid potential issues with text processing tools, consider adding one.

📝 Proposed fix to add trailing newline
     ]
 }
+
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@qcom/qcm2290/modemr.jsn` around lines 1 - 27, Add a POSIX-compliant trailing
newline to the end of the JSON file by ensuring a newline character follows the
final closing brace '}' (the end of the object containing "sr_version",
"sr_domain", and "sr_service"); simply modify the file that defines the JSON
object so the last byte is a newline character.
qcom/qcm2290/adspua.jsn (1)

1-27: Consider adding a trailing newline for POSIX compliance.

The file is missing a trailing newline. This is consistent across all files in this PR, but adding one would improve POSIX compliance.

📝 Proposed fix to add trailing newline
     ]
 }
+
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@qcom/qcm2290/adspua.jsn` around lines 1 - 27, The file currently ends without
a trailing newline; open the JSON file containing the top-level keys
"sr_version", "sr_domain", and "sr_service" and ensure you add a single
POSIX-compliant newline character at the end of the file (EOF) so the file ends
with a newline.
qcom/qcm2290/adsps.jsn (1)

1-21: Add trailing newline for POSIX compliance.

The file is missing a trailing newline at end of file. This is a common practice for text files and aligns with POSIX standards.

Proposed fix
     ]
 }
+

Configuration validated against QCM2290 specifications.

The QMI instance ID (74), domain/subdomain naming (msm/adsp/sensor_pd), and service routing configuration (tms/servreg) align with Qualcomm QCM2290 ADSP sensor protection domain specifications and match the patterns used across other similar devices in the repository.

🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In `@qcom/qcm2290/adsps.jsn` around lines 1 - 21, The file ends without a POSIX
trailing newline; open the JSON file containing "sr_version" / "sr_domain" (note
the "qmi_instance_id": 74 entry) and add a single newline character at EOF so
the file terminates with a trailing newline while preserving all existing
content and formatting.
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.

Nitpick comments:
In `@qcom/qcm2290/adspr.jsn`:
- Around line 1-21: The file ends without a trailing newline which can break
POSIX tools; update the file (containing keys like "sr_version", "sr_domain",
and "sr_service") to ensure there is a single newline character at the end of
the file (i.e., add a trailing '\n' after the final closing brace) and commit
the change so the file ends with a newline.

In `@qcom/qcm2290/adsps.jsn`:
- Around line 1-21: The file ends without a POSIX trailing newline; open the
JSON file containing "sr_version" / "sr_domain" (note the "qmi_instance_id": 74
entry) and add a single newline character at EOF so the file terminates with a
trailing newline while preserving all existing content and formatting.

In `@qcom/qcm2290/adspua.jsn`:
- Around line 1-27: The file currently ends without a trailing newline; open the
JSON file containing the top-level keys "sr_version", "sr_domain", and
"sr_service" and ensure you add a single POSIX-compliant newline character at
the end of the file (EOF) so the file ends with a newline.

In `@qcom/qcm2290/modemr.jsn`:
- Around line 1-27: Add a POSIX-compliant trailing newline to the end of the
JSON file by ensuring a newline character follows the final closing brace '}'
(the end of the object containing "sr_version", "sr_domain", and "sr_service");
simply modify the file that defines the JSON object so the last byte is a
newline character.

In `@qcom/qcm2290/modemuw.jsn`:
- Around line 1-33: The file's JSON object (starting with "sr_version") is
missing a trailing newline at EOF; update the file qcm2290/modemuw.jsn by adding
a single newline character at the end of the file so the top-level JSON (e.g.,
"sr_version", "sr_domain", "sr_service") ends with a POSIX-compliant trailing
newline.

ℹ️ Review info
⚙️ Run configuration

Configuration used: Organization UI

Review profile: CHILL

Plan: Pro

Run ID: 08fcd6bc-7c51-4f71-891b-43fa3585e98b

📥 Commits

Reviewing files that changed from the base of the PR and between 5d8b091 and 5e4a296.

⛔ Files ignored due to path filters (4)
  • ath10k/WCN3990/hw1.0/board-2.bin is excluded by !**/*.bin
  • ath10k/WCN3990/hw1.0/firmware-5.bin is excluded by !**/*.bin
  • ath10k/WCN3990/hw1.0/qcm2290/firmware-5.bin is excluded by !**/*.bin
  • qca/apnv11.bin is excluded by !**/*.bin
📒 Files selected for processing (14)
  • ath10k/WCN3990/hw1.0/qcm2290/wlanmdsp.mbn
  • ath10k/WCN3990/hw1.0/wlanmdsp.mbn
  • qca/apbtfw11.tlv
  • qcom/a702_sqe.fw
  • qcom/qcm2290/a702_zap.mbn
  • qcom/qcm2290/adsp.mbn
  • qcom/qcm2290/adspr.jsn
  • qcom/qcm2290/adsps.jsn
  • qcom/qcm2290/adspua.jsn
  • qcom/qcm2290/modem.mbn
  • qcom/qcm2290/modemr.jsn
  • qcom/qcm2290/modemuw.jsn
  • qcom/qcm2290/wlanmdsp.mbn
  • qcom/venus-6.0/venus.mbn

SuperKali added a commit to OpenSource-YYT/build that referenced this pull request Apr 2, 2026
Move firmware blobs to armbian/firmware repository (armbian/firmware#123)
and remove manual firmware copies from post_family_tweaks. Firmware is
now installed via the armbian-firmware package.

Rename boot-qcom to boot-qrb2210 to be family-specific.
@HeyMeco HeyMeco merged commit 3d9abcd into armbian:master Apr 2, 2026
1 check passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Development

Successfully merging this pull request may close these issues.

2 participants