All of lore.kernel.org
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 4/6] mips: ath79: Add support for ungating USB and ethernet on qca953x
Date: Mon, 30 May 2016 17:18:01 +0200	[thread overview]
Message-ID: <574C59A9.3030202@denx.de> (raw)
In-Reply-To: <BLU436-SMTP240D823286F8E3B0E37ECB6FF450@phx.gbl>

On 05/30/2016 04:54 PM, Wills Wang wrote:
> Add code to ungate USB and ethernet controller on qca953x

Is this code coming from mainline Linux ?

> Signed-off-by: Wills Wang <wills.wang@live.com>
> ---
> 
>  arch/mips/mach-ath79/reset.c | 50 ++++++++++++++++++++++++++++++++++++++++++++
>  1 file changed, 50 insertions(+)
> 
> diff --git a/arch/mips/mach-ath79/reset.c b/arch/mips/mach-ath79/reset.c
> index 33bf979..a5ee141 100644
> --- a/arch/mips/mach-ath79/reset.c
> +++ b/arch/mips/mach-ath79/reset.c
> @@ -136,6 +136,23 @@ static int eth_init_ar934x(void)
>  	return 0;
>  }
>  
> +static int eth_init_qca953x(void)
> +{
> +	void __iomem *rregs = map_physmem(AR71XX_RESET_BASE, AR71XX_RESET_SIZE,
> +					  MAP_NOCACHE);
> +	const u32 mask = QCA953X_RESET_GE0_MAC | QCA953X_RESET_GE0_MDIO |
> +			 QCA953X_RESET_GE1_MAC | QCA953X_RESET_GE1_MDIO |
> +			 QCA953X_RESET_ETH_SWITCH_ANALOG |
> +			 QCA953X_RESET_ETH_SWITCH;
> +
> +	setbits_be32(rregs + AR934X_RESET_REG_RESET_MODULE, mask);
> +	mdelay(1);
> +	clrbits_be32(rregs + AR934X_RESET_REG_RESET_MODULE, mask);
> +	mdelay(1);
> +
> +	return 0;
> +}
> +
>  int ath79_eth_reset(void)
>  {
>  	/*
> @@ -146,6 +163,8 @@ int ath79_eth_reset(void)
>  		return eth_init_ar933x();
>  	if (soc_is_ar934x())
>  		return eth_init_ar934x();
> +	if (soc_is_qca953x())
> +		return eth_init_qca953x();
>  
>  	return -EINVAL;
>  }
> @@ -185,6 +204,35 @@ static int usb_reset_ar934x(void __iomem *reset_regs)
>  	return 0;
>  }
>  
> +static int usb_reset_qca953x(void __iomem *reset_regs)
> +{
> +	void __iomem *pregs = map_physmem(AR71XX_PLL_BASE, AR71XX_PLL_SIZE,
> +					  MAP_NOCACHE);
> +
> +	clrsetbits_be32(pregs + QCA953X_PLL_SWITCH_CLOCK_CONTROL_REG,
> +			0xf00, 0x200);
> +	mdelay(10);
> +
> +	/* Ungate the USB block */
> +	setbits_be32(reset_regs + QCA953X_RESET_REG_RESET_MODULE,
> +		     QCA953X_RESET_USBSUS_OVERRIDE);
> +	mdelay(1);
> +	clrbits_be32(reset_regs + QCA953X_RESET_REG_RESET_MODULE,
> +		     QCA953X_RESET_USB_PHY);
> +	mdelay(1);
> +	clrbits_be32(reset_regs + QCA953X_RESET_REG_RESET_MODULE,
> +		     QCA953X_RESET_USB_PHY_ANALOG);
> +	mdelay(1);
> +	clrbits_be32(reset_regs + QCA953X_RESET_REG_RESET_MODULE,
> +		     QCA953X_RESET_USB_HOST);
> +	mdelay(1);
> +	clrbits_be32(reset_regs + QCA953X_RESET_REG_RESET_MODULE,
> +		     QCA953X_RESET_USB_PHY_PLL_PWD_EXT);
> +	mdelay(1);
> +
> +	return 0;
> +}
> +
>  int ath79_usb_reset(void)
>  {
>  	void __iomem *usbc_regs = map_physmem(AR71XX_USB_CTRL_BASE,
> @@ -204,6 +252,8 @@ int ath79_usb_reset(void)
>  		return usb_reset_ar933x(reset_regs);
>  	if (soc_is_ar934x())
>  		return usb_reset_ar934x(reset_regs);
> +	if (soc_is_qca953x())
> +		return usb_reset_qca953x(reset_regs);
>  
>  	return -EINVAL;
>  }
> 


-- 
Best regards,
Marek Vasut

  reply	other threads:[~2016-05-30 15:18 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <1464620095-4333-1-git-send-email-wills.wang@live.com>
2016-05-30 14:54 ` [U-Boot] [PATCH 2/6] mips: ath79: ap121: Enable ethernet Wills Wang
2016-05-31  9:39   ` Daniel Schwierzeck
2016-05-30 14:54 ` [U-Boot] [PATCH 3/6] mips: ath79: Use 8MB flash profile for mtd partition by default Wills Wang
2016-05-31  9:40   ` Daniel Schwierzeck
2016-05-30 14:54 ` [U-Boot] [PATCH 4/6] mips: ath79: Add support for ungating USB and ethernet on qca953x Wills Wang
2016-05-30 15:18   ` Marek Vasut [this message]
2016-05-31  0:35     ` Wills Wang
2016-05-31  0:51       ` Marek Vasut
2016-05-31  8:50         ` Piotr Dymacz
2016-05-31 11:38           ` Marek Vasut
2016-05-31 14:24           ` Wills Wang
2016-05-31  9:40   ` Daniel Schwierzeck
2016-05-30 14:54 ` [U-Boot] [PATCH 5/6] mips: ath79: Use AR933X_PLL_SWITCH_CLOCK_CONTROL_REG macro define Wills Wang
2016-05-31  9:40   ` Daniel Schwierzeck
2016-05-30 14:54 ` [U-Boot] [PATCH 6/6] mips: ath79: ap143: Reset ethernet on boot Wills Wang
2016-05-31  9:41   ` Daniel Schwierzeck

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=574C59A9.3030202@denx.de \
    --to=marex@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.