public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2] sata: fix reset_sata for dwc_ahsata
Date: Mon, 01 Dec 2014 10:37:54 +0100	[thread overview]
Message-ID: <547C36F2.5060808@denx.de> (raw)
In-Reply-To: <1417079501-3034-1-git-send-email-smoch@web.de>

On 27/11/2014 10:11, Soeren Moch wrote:
> - 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>
> ---
> Changes in v2:
> - fix type cast warning
> 
> Cc: Tom Rini <trini@ti.com>
> Cc: Nikita Kiryanov <nikita@compulab.co.il>
> Cc: Simon Glass <sjg@chromium.org>
> Cc: guillaume.gardet at free.fr
> Cc: Fabio Estevam <festevam@gmail.com>
> Cc: Stefano Babic <sbabic@denx.de>
> ---
>  arch/arm/imx-common/cpu.c  |  3 +++
>  drivers/block/dwc_ahsata.c | 14 ++++++++------
>  2 files changed, 11 insertions(+), 6 deletions(-)
> 
> diff --git a/arch/arm/imx-common/cpu.c b/arch/arm/imx-common/cpu.c
> index b58df7d..28ccd29 100644
> --- a/arch/arm/imx-common/cpu.c
> +++ b/arch/arm/imx-common/cpu.c
> @@ -206,6 +206,9 @@ void arch_preboot_os(void)
>  {
>  #if defined(CONFIG_CMD_SATA)
>  	sata_stop();
> +#if defined(CONFIG_MX6)
> +	disable_sata_clock();
> +#endif
>  #endif
>  #if defined(CONFIG_VIDEO_IPUV3)
>  	/* disable video before launching O/S */
> 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;
>  }
>  
> 

Applied to u-boot-imx, thanks !

Best regards,
Stefano Babic


-- 
=====================================================================
DENX Software Engineering GmbH,     MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================

      parent reply	other threads:[~2014-12-01  9:37 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-11-25 21:50 [U-Boot] [PATCH] dwc_ahsata.c: Add weak disable_sata_clock Tom Rini
2014-11-25 22:50 ` Soeren Moch
2014-11-26  0:26   ` Tom Rini
2014-11-26  1:36     ` Soeren Moch
2014-11-26 11:40       ` [U-Boot] [PATCH] sata: fix reset_sata for dwc_ahsata Soeren Moch
2014-11-26 17:38         ` Nikita Kiryanov
2014-11-26 23:32           ` Soeren Moch
2014-11-27  1:12             ` Fabio Estevam
2014-11-27  6:53               ` Soeren Moch
2014-11-27 10:56             ` Nikita Kiryanov
2014-11-27  9:11         ` [U-Boot] [PATCH v2] " Soeren Moch
2014-11-27 10:58           ` Nikita Kiryanov
2014-12-01  9:37           ` Stefano Babic [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=547C36F2.5060808@denx.de \
    --to=sbabic@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox