Skip to content

Commit 611cdb7

Browse files
cccclaifacebook-github-bot
authored andcommitted
Add SoC SXR2250P (#8148)
Summary: As title, need to support SoC SXR2250P Differential Revision: D69063201
1 parent 71dff79 commit 611cdb7

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

backends/qualcomm/serialization/qc_compiler_spec.fbs

+1
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,7 @@ enum QcomChipset: int {
3939
SM8650 = 57,
4040
SA8295 = 39,
4141
SM8750 = 69
42+
SXR2250P = 53
4243
}
4344

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

backends/qualcomm/serialization/qc_schema.py

+2
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ class QcomChipset(IntEnum):
4444
SM8650 = 57 # v75
4545
SA8295 = 39 # v68
4646
SM8750 = 69 # v79
47+
SXR2250P = 53 # v69
4748

4849

4950
@dataclass
@@ -60,6 +61,7 @@ class SocInfo:
6061
QcomChipset.SM8750: SocInfo(QcomChipset.SM8750, HtpInfo(HtpArch.V79, 8)),
6162
QcomChipset.SSG2115P: SocInfo(QcomChipset.SSG2115P, HtpInfo(HtpArch.V73, 2)),
6263
QcomChipset.SA8295: SocInfo(QcomChipset.SA8295, HtpInfo(HtpArch.V68, 8)),
64+
QcomChipset.SXR2250P: SocInfo(QcomChipset.SXR2250P, HtpInfo(HtpArch.V69, 8)),
6365
}
6466

6567

0 commit comments

Comments
 (0)