All of lore.kernel.org
 help / color / mirror / Atom feed
From: Nguyen, Dinh <dinh.nguyen@intel.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 2/3] serial: ns16550: Add reset ctrl to driver
Date: Fri, 4 May 2018 14:30:51 +0000	[thread overview]
Message-ID: <BA1B5AF7D118E146A437E44412B8291307BEC701@fmsmsx122.amr.corp.intel.com> (raw)
In-Reply-To: <1525430961-45527-3-git-send-email-ley.foon.tan@intel.com>



> -----Original Message-----
> From: Tan, Ley Foon
> Sent: Friday, May 4, 2018 5:49 AM
> To: u-boot at lists.denx.de
> Cc: Marek Vasut <marex@denx.de>; Ley Foon Tan <lftan.linux@gmail.com>;
> See, Chin Liang <chin.liang.see@intel.com>; Nguyen, Dinh
> <dinh.nguyen@intel.com>; Tan, Ley Foon <ley.foon.tan@intel.com>
> Subject: [PATCH v2 2/3] serial: ns16550: Add reset ctrl to driver
> 
> Add code to reset all reset signals as in serial DT node. A reset property is an
> optional feature, so do not fail if a reset property is not present.
> 
> If a reset property is discovered, then use it to deassert, thus bringing the IP out
> of reset.
> 
> Signed-off-by: Ley Foon Tan <ley.foon.tan@intel.com>
> Reviewed-by: Marek Vasut <marex@denx.de>
> ---
>  drivers/serial/ns16550.c |   12 ++++++++++++
>  1 files changed, 12 insertions(+), 0 deletions(-)
> 
> diff --git a/drivers/serial/ns16550.c b/drivers/serial/ns16550.c index
> 53550bf..457b636 100644
> --- a/drivers/serial/ns16550.c
> +++ b/drivers/serial/ns16550.c
> @@ -9,6 +9,7 @@
>  #include <dm.h>
>  #include <errno.h>
>  #include <ns16550.h>
> +#include <reset.h>
>  #include <serial.h>
>  #include <watchdog.h>
>  #include <linux/types.h>
> @@ -177,6 +178,7 @@ void NS16550_init(NS16550_t com_port, int
> baud_divisor)  #if defined(CONFIG_ARCH_OMAP2PLUS)
>  	serial_out(0x7, &com_port->mdr1);	/* mode select reset
> TL16C750*/
>  #endif
> +
>  	serial_out(UART_MCRVAL, &com_port->mcr);
>  	serial_out(ns16550_getfcr(com_port), &com_port->fcr);
>  	if (baud_divisor != -1)
> @@ -371,6 +373,16 @@ int ns16550_serial_probe(struct udevice *dev)  {
>  	struct NS16550 *const com_port = dev_get_priv(dev);
> 
> +#ifdef CONFIG_DM_RESET

You don't need this wrapper.

> +	struct reset_ctl_bulk reset_bulk;
> +	int ret;
> +
> +	ret = reset_get_bulk(dev, &reset_bulk);
> +	if (!ret)
> +		reset_deassert_bulk(&reset_bulk);
> +
> +#endif
> +
>  	com_port->plat = dev_get_platdata(dev);
>  	NS16550_init(com_port, -1);
> 
> --
> 1.7.1

  reply	other threads:[~2018-05-04 14:30 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-05-04 10:49 [U-Boot] [PATCH v2 0/3] drivers: Add reset ctrl to drivers Ley Foon Tan
2018-05-04 10:49 ` [U-Boot] [PATCH v2 1/3] mmc: dwmmc: socfpga: Add reset ctrl to driver Ley Foon Tan
2018-05-04 10:49 ` [U-Boot] [PATCH v2 2/3] serial: ns16550: " Ley Foon Tan
2018-05-04 14:30   ` Nguyen, Dinh [this message]
2018-05-07  2:09     ` Ley Foon Tan
2018-05-04 10:49 ` [U-Boot] [PATCH v2 3/3] net: designware: " Ley Foon Tan
2018-05-04 14:30   ` Nguyen, Dinh
2018-05-07 21:18 ` [U-Boot] [PATCH v2 0/3] drivers: Add reset ctrl to drivers Dinh Nguyen

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=BA1B5AF7D118E146A437E44412B8291307BEC701@fmsmsx122.amr.corp.intel.com \
    --to=dinh.nguyen@intel.com \
    --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.