Skip to content

Commit 2f0a6c7

Browse files
authored
Add SoC SXR2250P
Differential Revision: D69063201 Pull Request resolved: #8148
1 parent d92a763 commit 2f0a6c7

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
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 & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ class QcomChipset(IntEnum):
4444
SM8650 = 57 # v75
4545
SA8295 = 39 # v68
4646
SM8750 = 69 # v79
47+
SXR1230P = 45
48+
SXR2230P = 53
49+
SSG2125P = 58
4750

4851

4952
@dataclass
@@ -60,6 +63,9 @@ class SocInfo:
6063
QcomChipset.SM8750: SocInfo(QcomChipset.SM8750, HtpInfo(HtpArch.V79, 8)),
6164
QcomChipset.SSG2115P: SocInfo(QcomChipset.SSG2115P, HtpInfo(HtpArch.V73, 2)),
6265
QcomChipset.SA8295: SocInfo(QcomChipset.SA8295, HtpInfo(HtpArch.V68, 8)),
66+
QcomChipset.SXR1230P: SocInfo(QcomChipset.SXR1230P, HtpInfo(HtpArch.V73, 2)),
67+
QcomChipset.SXR2230P: SocInfo(QcomChipset.SXR2230P, HtpInfo(HtpArch.V69, 8)),
68+
QcomChipset.SSG2125P: SocInfo(QcomChipset.SSG2125P, HtpInfo(HtpArch.V73, 2)),
6369
}
6470

6571

0 commit comments

Comments
 (0)