@@ -310,6 +310,11 @@ static int exynos5_ahci_init(void __iomem *mmio)
printf("%s: already calibrated?\n", __func__);
}
+ /* Clear phy control enable. Seems to be necessary to
+ * reinitialise on a warm reboot, at least sometimes. */
+ clrbits_le32(EXYNOS5_SATA_PHY_CONTROL, S5P_PMU_SATA_PHY_CONTROL_EN);
+ udelay(1000);
+
setbits_le32(EXYNOS5_SATA_PHY_CONTROL, S5P_PMU_SATA_PHY_CONTROL_EN);
__raw_writel(0, phy_ctrl + SATA_RESET);
@@ -368,3 +373,9 @@ int exynos5_sata_init(void)
}
return -ENODEV;
}
+
+int exynos5_sata_deinit(void)
+{
+ clrbits_le32(EXYNOS5_SATA_PHY_CONTROL, S5P_PMU_SATA_PHY_CONTROL_EN);
+ return 0;
+}
@@ -15,6 +15,7 @@
#include <common.h>
#include <command.h>
#include <image.h>
+#include <scsi.h>
#include <u-boot/zlib.h>
#include <asm/byteorder.h>
#include <libfdt.h>
@@ -81,6 +82,9 @@ static void announce_and_cleanup(int fake)
#ifdef CONFIG_USB_DEVICE
udc_disconnect();
#endif
+#ifdef CONFIG_SCSI_AHCI_PLAT
+ scsi_deinit();
+#endif
cleanup_before_linux();
}
@@ -36,6 +36,11 @@ int scsi_init(void)
printf("ARNDALE SCSI INIT\n");
return exynos5_sata_init();
}
+
+int scsi_deinit(void)
+{
+ return exynos5_sata_deinit();
+}
#endif
int board_init(void)
@@ -959,6 +959,10 @@ void __weak scsi_init(void)
{
}
+void __weak scsi_deinit(void)
+{
+}
+
#endif
/*
@@ -172,6 +172,7 @@ void scsi_low_level_init(int busdevfunc);
* functions residing inside cmd_scsi.c
*/
void scsi_init(void);
+void scsi_deinit(void);
void scsi_scan(int mode);
/** @return the number of scsi disks */
From: Ian Campbell <ian.campbell@citrix.com> NOT TO BE APPLIED AS IS Without this Linux fails to correctly init the phy (or something) and cannot detect the disk. Even with this we can fail to detect the disk outselves on some fraction of boots, so something else is clearly up too. --- arch/arm/cpu/armv7/exynos/sata.c | 11 +++++++++++ arch/arm/lib/bootm.c | 4 ++++ board/samsung/arndale/arndale.c | 5 +++++ drivers/block/ahci.c | 4 ++++ include/scsi.h | 1 + 5 files changed, 25 insertions(+)