Claude-skill-registry airoha

Airoha Technology (MediaTek subsidiary) MPN encoding patterns, suffix decoding, and handler guidance. Use when working with Airoha Bluetooth audio SoCs or AirohaHandler.

install
source · Clone the upstream repo
git clone https://github.com/majiayu000/claude-skill-registry
Claude Code · Install into ~/.claude/skills/
T=$(mktemp -d) && git clone --depth=1 https://github.com/majiayu000/claude-skill-registry "$T" && mkdir -p ~/.claude/skills && cp -r "$T/skills/data/airoha" ~/.claude/skills/majiayu000-claude-skill-registry-airoha && rm -rf "$T"
manifest: skills/data/airoha/SKILL.md
source content

Airoha Technology Manufacturer Skill

Company Overview

Airoha Technology is a MediaTek subsidiary specializing in Bluetooth audio solutions for TWS (True Wireless Stereo) earbuds, ANC (Active Noise Cancellation) headphones, and premium audio applications.

MPN Structure

Airoha MPNs follow this general structure:

[PREFIX][SERIES][MODEL][-PACKAGE]
   |       |       |       |
   |       |       |       +-- Optional: Package code (QFN, BGA, CSP)
   |       |       +-- Model variant (0-9)
   |       +-- Series number (55, 56, 57, 58)
   +-- AB15 prefix (Airoha Bluetooth 15xx)

Example Decoding

AB1552
|  |||
|  ||+-- 2 = Model variant (basic TWS)
|  |+-- 5 = TWS earbud series
|  +-- 15 = Bluetooth 1.5 generation
+-- AB = Airoha Bluetooth

AB1562-QFN
|  ||| |
|  ||| +-- QFN = QFN package
|  ||+-- 2 = Model variant
|  |+-- 6 = ANC series
|  +-- 15 = Generation
+-- AB = Airoha Bluetooth

AB1575
|  |||
|  ||+-- 5 = Premium variant
|  |+-- 7 = Premium audio series
|  +-- 15 = Generation
+-- AB = Airoha Bluetooth

Series Overview

SeriesApplicationFeaturesBluetooth
AB155xTWS EarbudsBasic TWS, low powerBT 5.0
AB156xANC EarbudsActive Noise CancellationBT 5.2
AB157xPremium AudioHi-Fi, low latencyBT 5.2
AB158xUltra-Low PowerExtended battery lifeBT 5.3

Product Families

AB155x Series - TWS Earbuds

Part NumberFeaturesBluetoothApplication
AB1552Basic TWSBT 5.0Entry-level earbuds
AB1558Enhanced TWSBT 5.0Mid-range earbuds

AB156x Series - ANC Earbuds

Part NumberFeaturesBluetoothANC Type
AB1562Hybrid ANCBT 5.2Feedforward + Feedback
AB1563Enhanced ANCBT 5.2Advanced hybrid
AB1568Premium ANCBT 5.2Multi-mic ANC

AB157x Series - Premium Audio

Part NumberFeaturesBluetoothAudio
AB1570Hi-Fi audioBT 5.2High-resolution
AB1575Premium codecBT 5.2LDAC/aptX HD

AB158x Series - Ultra-Low Power

Part NumberFeaturesBluetoothPower
AB1580Ultra-low powerBT 5.3Optimized for battery
AB1585Enhanced ULPBT 5.3Extended standby

Package Codes

CodePackageDescription
QFNQFNQuad Flat No-lead
BGABGABall Grid Array
CSPCSPChip Scale Package
WLCSPWafer Level CSPUltra-small footprint
FCBGAFlip-Chip BGAHigh-density BGA

Bluetooth Version by Series

SeriesDefault BT VersionLE Audio Support
AB155xBluetooth 5.0No
AB156xBluetooth 5.2Yes
AB157xBluetooth 5.2Yes
AB158xBluetooth 5.3Yes

Feature Comparison

FeatureAB155xAB156xAB157xAB158x
TWS SupportYesYesYesYes
ANCNoYesOptionalOptional
Hi-Res AudioNoNoYesYes
Low LatencyBasicGoodExcellentGood
Power EfficiencyGoodGoodModerateExcellent
LE AudioNoYesYesYes

Handler Implementation Notes

Pattern Matching

// AB155x Series - TWS earbuds
"^AB155[0-9].*"

// AB156x Series - ANC earbuds
"^AB156[0-9].*"

// AB157x Series - Premium audio
"^AB157[0-9].*"

// AB158x Series - Ultra-low power
"^AB158[0-9].*"

// Generic pattern for all AB15xx
"^AB15[5-8][0-9].*"

Package Code Extraction

// Check for hyphenated suffix first
String[] parts = upperMpn.split("-");
if (parts.length > 1) {
    String suffix = parts[parts.length - 1];
    // Map: QFN, BGA, CSP, WLCSP, FCBGA
}

// Check for inline package indicators
if (upperMpn.contains("QFN")) return "QFN";
if (upperMpn.contains("BGA")) return "BGA";

Series Extraction

// Extract first 6 characters (e.g., AB1562)
// Validate matches AB15[5-8][0-9] pattern
if (result.matches("^AB15[5-8][0-9].*")) {
    return result.substring(0, 6);
}

Bluetooth Version Inference

// Infer BT version from series
if (mpn.startsWith("AB158")) return "5.3";
if (mpn.startsWith("AB157")) return "5.2";
if (mpn.startsWith("AB156")) return "5.2";
if (mpn.startsWith("AB155")) return "5.0";

Replacement Compatibility

Within-Series Replacements

Higher model numbers within a series can typically replace lower ones:

  • AB1558 can replace AB1552 (more features)
  • AB1568 can replace AB1562 (better ANC)

Cross-Series Restrictions

Different series target different applications and are NOT interchangeable:

  • AB156x (ANC) should NOT replace AB155x (basic TWS)
  • AB157x (premium) should NOT replace AB155x (basic TWS)

Feature Compatibility Rules

  1. If target requires ANC, replacement must support ANC
  2. If target requires premium audio, replacement must support it
  3. Higher Bluetooth version can replace lower version

Application Guidelines

Use CaseRecommended Series
Budget TWS earbudsAB155x
Mid-range ANC earbudsAB156x
Premium headphonesAB157x
Long-battery earbudsAB158x

Related Files

  • Handler:
    manufacturers/AirohaHandler.java
  • Component types:
    IC

Learnings & Edge Cases

  • MediaTek subsidiary: Airoha is owned by MediaTek, some parts may have MTK cross-references
  • Series determines features: AB155x vs AB156x vs AB157x have fundamentally different capabilities
  • Package suffix optional: Many MPNs don't include package code
  • Bluetooth version tied to series: Cannot upgrade BT version without changing series
  • ANC compatibility critical: Never substitute non-ANC for ANC-required applications
  • Model numbering: Higher model number within series = more features/better performance
<!-- Add new learnings above this line -->