Skip to content

Commit 0b748bf

Browse files
authored
oss et update to support SAR2230P
Differential Revision: D83934187 Pull Request resolved: #14808
1 parent d36bf8c commit 0b748bf

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

backends/qualcomm/serialization/qc_schema.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ class HtpArch(IntEnum):
2727
V73 = 73
2828
V75 = 75
2929
V79 = 79
30+
V81 = 81
3031

3132

3233
@dataclass
@@ -49,6 +50,7 @@ class QcomChipset(IntEnum):
4950
SXR1230P = 45 # v73
5051
SXR2230P = 53 # v69
5152
SXR2330P = 75 # v79
53+
SAR2230P = 95 # v81
5254

5355

5456
@dataclass
@@ -69,6 +71,7 @@ class SocInfo:
6971
QcomChipset.SXR1230P: SocInfo(QcomChipset.SXR1230P, HtpInfo(HtpArch.V73, 2)),
7072
QcomChipset.SXR2230P: SocInfo(QcomChipset.SXR2230P, HtpInfo(HtpArch.V69, 8)),
7173
QcomChipset.SXR2330P: SocInfo(QcomChipset.SXR2330P, HtpInfo(HtpArch.V79, 8)),
74+
QcomChipset.SAR2230P: SocInfo(QcomChipset.SAR2230P, HtpInfo(HtpArch.V81, 4)),
7275
}
7376

7477

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.SAR2230P,
11181120
}
11191121

11201122

0 commit comments

Comments
 (0)