Skip to content

Commit 0070680

Browse files
authored
add Qualcomm SA8295 support (#6986)
add SA8295 support
1 parent 3a35889 commit 0070680

File tree

3 files changed

+5
-0
lines changed

3 files changed

+5
-0
lines changed

backends/qualcomm/serialization/qc_compiler_spec.fbs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ enum QcomChipset: int {
3636
SM8550 = 43,
3737
SSG2115P = 46,
3838
SM8650 = 57,
39+
SA8295 = 39,
3940
}
4041

4142
/// Indicate the information of the specified SoC.

backends/qualcomm/serialization/qc_schema.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ class QcomChipset(IntEnum):
4141
SM8550 = 43 # v73
4242
SSG2115P = 46 # v73
4343
SM8650 = 57 # v75
44+
SA8295 = 39 # v68
4445

4546

4647
@dataclass
@@ -55,6 +56,7 @@ class SocInfo:
5556
QcomChipset.SM8550: SocInfo(QcomChipset.SM8550, HtpInfo(HtpArch.V73, 8)),
5657
QcomChipset.SM8650: SocInfo(QcomChipset.SM8650, HtpInfo(HtpArch.V75, 8)),
5758
QcomChipset.SSG2115P: SocInfo(QcomChipset.SSG2115P, HtpInfo(HtpArch.V73, 2)),
59+
QcomChipset.SA8295: SocInfo(QcomChipset.SA8295, HtpInfo(HtpArch.V68, 8)),
5860
}
5961

6062

backends/qualcomm/utils/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -967,6 +967,7 @@ def get_soc_to_arch_map():
967967
"SM8550": HtpArch.V73,
968968
"SM8475": HtpArch.V69,
969969
"SM8450": HtpArch.V69,
970+
"SA8295": HtpArch.V68,
970971
}
971972

972973

@@ -977,6 +978,7 @@ def get_soc_to_chipset_map():
977978
"SM8550": QcomChipset.SM8550,
978979
"SM8475": QcomChipset.SM8475,
979980
"SM8450": QcomChipset.SM8450,
981+
"SA8295": QcomChipset.SA8295,
980982
}
981983

982984

0 commit comments

Comments
 (0)