Skip to content

Commit 52eba89

Browse files
billmguofacebook-github-bot
authored andcommitted
oss et update to support SAR2230P
Summary: OSS ET update to support SAR2230P Differential Revision: D83934187
1 parent 3d8b8d1 commit 52eba89

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

backends/qualcomm/serialization/qc_schema.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ class QcomChipset(IntEnum):
4949
SXR1230P = 45 # v73
5050
SXR2230P = 53 # v69
5151
SXR2330P = 75 # v79
52+
SAR2230P = 95 # v81
5253

5354

5455
@dataclass
@@ -69,6 +70,7 @@ class SocInfo:
6970
QcomChipset.SXR1230P: SocInfo(QcomChipset.SXR1230P, HtpInfo(HtpArch.V73, 2)),
7071
QcomChipset.SXR2230P: SocInfo(QcomChipset.SXR2230P, HtpInfo(HtpArch.V69, 8)),
7172
QcomChipset.SXR2330P: SocInfo(QcomChipset.SXR2330P, HtpInfo(HtpArch.V79, 8)),
73+
QcomChipset.SAR2230P: SocInfo(QcomChipset.SAR2230P, HtpInfo(HtpArch.V81, 4)),
7274
}
7375

7476

backends/qualcomm/utils/utils.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1099,6 +1099,7 @@ def get_soc_to_arch_map():
10991099
"SXR1230P": HtpArch.V73,
11001100
"SXR2230P": HtpArch.V69,
11011101
"SXR2330P": HtpArch.V79,
1102+
"SAR2230P": HtpArch.V81,
11021103
}
11031104

11041105

@@ -1115,6 +1116,7 @@ def get_soc_to_chipset_map():
11151116
"SXR1230P": QcomChipset.SXR1230P,
11161117
"SXR2230P": QcomChipset.SXR2230P,
11171118
"SXR2330P": QcomChipset.SXR2330P,
1119+
"SAR2230P": QcomChipset.SXR2230P,
11181120
}
11191121

11201122

0 commit comments

Comments
 (0)