diff options
author | Soeren Moch <smoch@web.de> | 2014-11-27 10:11:41 +0100 |
---|---|---|
committer | Stefano Babic <sbabic@denx.de> | 2014-12-01 10:20:19 +0100 |
commit | dd1c8f1b5fb63a682fce62a53464108d8587b0a2 (patch) | |
tree | 7292a7f3b4a7f845cffa229c6c1a653d63994323 /drivers | |
parent | f8bbd7f7b0c6eb3accc30deab9aafb2c50f9ee9a (diff) | |
download | u-boot-imx-dd1c8f1b5fb63a682fce62a53464108d8587b0a2.zip u-boot-imx-dd1c8f1b5fb63a682fce62a53464108d8587b0a2.tar.gz u-boot-imx-dd1c8f1b5fb63a682fce62a53464108d8587b0a2.tar.bz2 |
sata: fix reset_sata for dwc_ahsata
- fix crash when sata device is not initialized
- remove disable_sata_clock() since it is not clear which clock for which
device should be disabled here
- call disable_sata_clock() for mx6 in preboot_os instead
Signed-off-by: Soeren Moch <smoch@web.de>
Acked-by: Nikita Kiryanov <nikita@compulab.co.il>
Tested-by: Nikita Kiryanov <nikita@compulab.co.il>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/block/dwc_ahsata.c | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/drivers/block/dwc_ahsata.c b/drivers/block/dwc_ahsata.c index 9a2b547..01a4148 100644 --- a/drivers/block/dwc_ahsata.c +++ b/drivers/block/dwc_ahsata.c @@ -594,22 +594,24 @@ int init_sata(int dev) int reset_sata(int dev) { - struct ahci_probe_ent *probe_ent = - (struct ahci_probe_ent *)sata_dev_desc[dev].priv; - struct sata_host_regs *host_mmio = - (struct sata_host_regs *)probe_ent->mmio_base; + struct ahci_probe_ent *probe_ent; + struct sata_host_regs *host_mmio; if (dev < 0 || dev > (CONFIG_SYS_SATA_MAX_DEVICE - 1)) { printf("The sata index %d is out of ranges\n\r", dev); return -1; } + probe_ent = (struct ahci_probe_ent *)sata_dev_desc[dev].priv; + if (NULL == probe_ent) + /* not initialized, so nothing to reset */ + return 0; + + host_mmio = (struct sata_host_regs *)probe_ent->mmio_base; setbits_le32(&host_mmio->ghc, SATA_HOST_GHC_HR); while (readl(&host_mmio->ghc) & SATA_HOST_GHC_HR) udelay(100); - disable_sata_clock(); - return 0; } |