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 <lina@asahilina.net>
This commit is contained in:
Asahi Lina 2023-04-13 16:06:33 +09:00 committed by Hector Martin
parent 1ae27426b3
commit 8f6e13b170
4 changed files with 4 additions and 2 deletions

View file

@ -795,7 +795,7 @@ class Ver(Subconstruct):
"G": os.environ.get("AGX_GPU", "G13")}
MATRIX = {
"V": ["V12_1", "V12_3", "V12_4", "V13_0B4", "V13_0B5", "V13_0B6", "V13_2"],
"V": ["V12_1", "V12_3", "V12_4", "V13_0B4", "V13_0B5", "V13_0B6", "V13_2", "V13_3"],
"G": ["G13", "G14"],
}

View file

@ -33,6 +33,7 @@ VERSION_MAP = {
"iBoot-8419.41.10": "V13_0",
"iBoot-8419.60.44": "V13_1",
"iBoot-8419.80.7": "V13_2",
"iBoot-8422.100.650": "V13_3",
}
class ProxyUtils(Reloadable):

View file

@ -26,7 +26,7 @@ const struct fw_version_info fw_versions[NUM_FW_VERSIONS] = {
[V13_0] = {V13_0, "13.0", {13, 0, 0}, 3, "iBoot-8419.41.10"},
[V13_1] = {V13_1, "13.1", {13, 1, 0}, 3, "iBoot-8419.60.44"},
[V13_2] = {V13_2, "13.2", {13, 2, 0}, 3, "iBoot-8419.80.7"},
[V13_3] = {V13_3, "13.3", {13, 3, 0}, 3, "iBoot-8422.100.650"},
};
int firmware_set_fdt(void *fdt, int node, const char *prop, const struct fw_version_info *ver)

View file

@ -18,6 +18,7 @@ enum fw_version {
V13_0,
V13_1,
V13_2,
V13_3,
NUM_FW_VERSIONS,
};