Skip to content

Commit 8f6e13b

Browse files
hoshinolinamarcan
authored andcommitted
firmware: Add 13.3
This has the same iBoot version as 13.3.1, so firmwares probably did not change. Signed-off-by: Asahi Lina <[email protected]>
1 parent 1ae2742 commit 8f6e13b

4 files changed

Lines changed: 4 additions & 2 deletions

File tree

proxyclient/m1n1/constructutils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -795,7 +795,7 @@ class Ver(Subconstruct):
795795
"G": os.environ.get("AGX_GPU", "G13")}
796796

797797
MATRIX = {
798-
"V": ["V12_1", "V12_3", "V12_4", "V13_0B4", "V13_0B5", "V13_0B6", "V13_2"],
798+
"V": ["V12_1", "V12_3", "V12_4", "V13_0B4", "V13_0B5", "V13_0B6", "V13_2", "V13_3"],
799799
"G": ["G13", "G14"],
800800
}
801801

proxyclient/m1n1/proxyutils.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@
3333
"iBoot-8419.41.10": "V13_0",
3434
"iBoot-8419.60.44": "V13_1",
3535
"iBoot-8419.80.7": "V13_2",
36+
"iBoot-8422.100.650": "V13_3",
3637
}
3738

3839
class ProxyUtils(Reloadable):

src/firmware.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const struct fw_version_info fw_versions[NUM_FW_VERSIONS] = {
2626
[V13_0] = {V13_0, "13.0", {13, 0, 0}, 3, "iBoot-8419.41.10"},
2727
[V13_1] = {V13_1, "13.1", {13, 1, 0}, 3, "iBoot-8419.60.44"},
2828
[V13_2] = {V13_2, "13.2", {13, 2, 0}, 3, "iBoot-8419.80.7"},
29-
29+
[V13_3] = {V13_3, "13.3", {13, 3, 0}, 3, "iBoot-8422.100.650"},
3030
};
3131

3232
int firmware_set_fdt(void *fdt, int node, const char *prop, const struct fw_version_info *ver)

src/firmware.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ enum fw_version {
1818
V13_0,
1919
V13_1,
2020
V13_2,
21+
V13_3,
2122
NUM_FW_VERSIONS,
2223
};
2324

0 commit comments

Comments
 (0)