Skip to content
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions backends/qualcomm/serialization/qc_compiler_spec.fbs
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ enum QcomChipset: int {
SAR2230P = 95,
SA8255 = 52,
SW6100 = 96,
QCM6490 = 35,
}

/// Indicate the information of the specified SoC.
Expand Down
2 changes: 2 additions & 0 deletions backends/qualcomm/serialization/qc_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ class QcomChipset(IntEnum):
SAR2230P = 95 # v81
SA8255 = 52 # v73
SW6100 = 96 # v81
QCM6490 = 35 # v68


@dataclass
Expand All @@ -82,6 +83,7 @@ class SocInfo:
QcomChipset.QCS9100: SocInfo(QcomChipset.QCS9100, HtpInfo(HtpArch.V73, 8)),
QcomChipset.SAR2230P: SocInfo(QcomChipset.SAR2230P, HtpInfo(HtpArch.V81, 4)),
QcomChipset.SW6100: SocInfo(QcomChipset.SW6100, HtpInfo(HtpArch.V81, 4)),
QcomChipset.QCM6490: SocInfo(QcomChipset.QCM6490, HtpInfo(HtpArch.V68, 2)),
}


Expand Down
2 changes: 2 additions & 0 deletions backends/qualcomm/utils/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -1145,6 +1145,7 @@ def get_soc_to_arch_map():
"QCS9100": HtpArch.V73,
"SAR2230P": HtpArch.V81,
"SW6100": HtpArch.V81,
"QCM6490": HtpArch.V68,
}


Expand All @@ -1167,6 +1168,7 @@ def get_soc_to_chipset_map():
"QCS9100": QcomChipset.QCS9100,
"SAR2230P": QcomChipset.SAR2230P,
"SW6100": QcomChipset.SW6100,
"QCM6490": QcomChipset.QCM6490,
}


Expand Down
1 change: 1 addition & 0 deletions docs/source/backends-qualcomm.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,7 @@ You will need an Android / Linux device with adb-connected running on one of bel
- SXR1230P (Linux Embedded)
- SXR2230P
- SXR2330P
- QCM6490

This example is verified with SM8550 and SM8450.

Expand Down
Loading