Skip to content

Commit 2aeadea

Browse files
Russell King (Oracle)gclement
authored andcommitted
ARM64: dts: mcbin: fix SATA ports on Macchiatobin
Booting 6.16 on the Macchiatobin, I discover that I can no longer access my disks, and thus the userspace boot fails. The cause appears to be that one of the SATA controllers doesn't have any ports: [ 1.190312] ahci f4540000.sata: supply ahci not found, using dummy regulator [ 1.196255] ahci f4540000.sata: supply phy not found, using dummy regulator [ 1.202026] ahci f4540000.sata: No port enabled This is as a result of the blamed commit below which added a default disabled status to the .dtsi, but didn't properly update the mcbin dtsi file. Fix this regression. Fixes: 3002387 ("arm64: dts: marvell: only enable complete sata nodes") Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk> Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
1 parent 85f5d8e commit 2aeadea

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

arch/arm64/boot/dts/marvell/armada-8040-mcbin.dtsi

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -345,11 +345,13 @@
345345
/* CPS Lane 1 - U32 */
346346
sata-port@0 {
347347
phys = <&cp1_comphy1 0>;
348+
status = "okay";
348349
};
349350

350351
/* CPS Lane 3 - U31 */
351352
sata-port@1 {
352353
phys = <&cp1_comphy3 1>;
354+
status = "okay";
353355
};
354356
};
355357

0 commit comments

Comments
 (0)