Skip to content
Merged
Show file tree
Hide file tree
Changes from all 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 @@ -36,6 +36,7 @@ enum QcomChipset: int {
SM8550 = 43,
SSG2115P = 46,
SM8650 = 57,
SA8295 = 39,
}

/// 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 @@ -41,6 +41,7 @@ class QcomChipset(IntEnum):
SM8550 = 43 # v73
SSG2115P = 46 # v73
SM8650 = 57 # v75
SA8295 = 39 # v68


@dataclass
Expand All @@ -55,6 +56,7 @@ class SocInfo:
QcomChipset.SM8550: SocInfo(QcomChipset.SM8550, HtpInfo(HtpArch.V73, 8)),
QcomChipset.SM8650: SocInfo(QcomChipset.SM8650, HtpInfo(HtpArch.V75, 8)),
QcomChipset.SSG2115P: SocInfo(QcomChipset.SSG2115P, HtpInfo(HtpArch.V73, 2)),
QcomChipset.SA8295: SocInfo(QcomChipset.SA8295, HtpInfo(HtpArch.V68, 8)),
}


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 @@ -967,6 +967,7 @@ def get_soc_to_arch_map():
"SM8550": HtpArch.V73,
"SM8475": HtpArch.V69,
"SM8450": HtpArch.V69,
"SA8295": HtpArch.V68,
}


Expand All @@ -977,6 +978,7 @@ def get_soc_to_chipset_map():
"SM8550": QcomChipset.SM8550,
"SM8475": QcomChipset.SM8475,
"SM8450": QcomChipset.SM8450,
"SA8295": QcomChipset.SA8295,
}


Expand Down
Loading