Skip to content

Commit ae2dec8

Browse files
pillo79cfriedt
authored andcommitted
dts: vendor/arduino: fix firmware partition location
The Wi-Fi firmware image in the QSPI flash has always been located in the last 512kB of the 16MB Flash device. This offset is 0xf80000, not 0xe80000 as it was mistakenly set. Fix. Signed-off-by: Luca Burelli <[email protected]>
1 parent dd50f3f commit ae2dec8

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

dts/vendor/arduino/partitions_qspi_h7_r1.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@
3838
};
3939

4040
/* Partition 4: Binary FW image for the Airoc WLAN */
41-
airoc_firmware: partition@e80000 {
41+
airoc_firmware: partition@f80000 {
4242
label = "4343WA1.bin";
43-
reg = <0xe80000 DT_SIZE_K(512)>;
43+
reg = <0xf80000 DT_SIZE_K(512)>;
4444
};
4545
};
4646
};

dts/vendor/arduino/partitions_qspi_h7_r2.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,9 +44,9 @@
4444
};
4545

4646
/* Partition 5: Binary FW image for the Airoc WLAN */
47-
airoc_firmware: partition@e80000 {
47+
airoc_firmware: partition@f80000 {
4848
label = "4343WA1.bin";
49-
reg = <0xe80000 DT_SIZE_K(512)>;
49+
reg = <0xf80000 DT_SIZE_K(512)>;
5050
};
5151
};
5252
};

dts/vendor/arduino/partitions_qspi_h7_r3.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,9 @@
5151
};
5252

5353
/* Partition 6: Binary FW image for the Airoc WLAN */
54-
airoc_firmware: partition@e80000 {
54+
airoc_firmware: partition@f80000 {
5555
label = "4343WA1.bin";
56-
reg = <0xe80000 DT_SIZE_K(512)>;
56+
reg = <0xf80000 DT_SIZE_K(512)>;
5757
};
5858
};
5959
};

0 commit comments

Comments
 (0)