Skip to content

Commit 0b7929f

Browse files
cccclaifacebook-github-bot
authored andcommitted
Add SoC SXR2250P (#8148)
Summary: As title, need to support SoC SXR2250P Differential Revision: D69063201
1 parent 77f18b2 commit 0b7929f

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

backends/qualcomm/serialization/qc_compiler_spec.fbs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ enum QcomChipset: int {
3838
SSG2115P = 46,
3939
SM8650 = 57,
4040
SA8295 = 39,
41-
SM8750 = 69
41+
SM8750 = 69,
42+
SXR1230P = 45,
43+
SXR2230P = 53,
44+
SSG2125P = 58,
4245
}
4346

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

backends/qualcomm/serialization/qc_schema.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,9 @@ class QcomChipset(IntEnum):
4444
SM8650 = 57 # v75
4545
SA8295 = 39 # v68
4646
SM8750 = 69 # v79
47-
47+
SXR1230P = 45,
48+
SXR2230P = 53,
49+
SSG2125P = 58,
4850

4951
@dataclass
5052
class SocInfo:
@@ -60,6 +62,9 @@ class SocInfo:
6062
QcomChipset.SM8750: SocInfo(QcomChipset.SM8750, HtpInfo(HtpArch.V79, 8)),
6163
QcomChipset.SSG2115P: SocInfo(QcomChipset.SSG2115P, HtpInfo(HtpArch.V73, 2)),
6264
QcomChipset.SA8295: SocInfo(QcomChipset.SA8295, HtpInfo(HtpArch.V68, 8)),
65+
QcomChipset.SXR1230P: SocInfo(QcomChipset.SXR1230P, HtpInfo(HtpArch.V73, 2)),
66+
QcomChipset.SXR2230P: SocInfo(QcomChipset.SXR2230P, HtpInfo(HtpArch.V69, 8)),
67+
QcomChipset.SSG2125P: SocInfo(QcomChipset.SSG2125P, HtpInfo(HtpArch.V73, 2)),
6368
}
6469

6570

0 commit comments

Comments
 (0)