mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Sascha Hauer <s.hauer@pengutronix.de>
To: Oleg.Karfich@wago.com
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH] gpio: pca953x: add oftree support
Date: Fri, 31 Aug 2018 08:18:54 +0200	[thread overview]
Message-ID: <20180831061854.fsqc7ymes5wkegab@pengutronix.de> (raw)
In-Reply-To: <1535533700-23464-1-git-send-email-oleg.karfich@wago.com>

On Wed, Aug 29, 2018 at 09:08:27AM +0000, Oleg.Karfich@wago.com wrote:
> Signed-off-by: Oleg Karfich <oleg.karfich@wago.com>
> ---
> 
> Hi,
> 
> this Patch adds oftree support to the pca953x driver. I ported the
> of_device_id table from the kernel and reduced it to the currently supported
> devices in barebox (sufficient for us).
> Documentation is already there [1].
> 
> [1] dts/Bindings/gpio/gpio-pca953x.txt
> 
> ---
>  drivers/gpio/gpio-pca953x.c | 35 +++++++++++++++++++++++++++++++++++
>  1 file changed, 35 insertions(+)

Applied, thanks

Sascha

> 
> diff --git a/drivers/gpio/gpio-pca953x.c b/drivers/gpio/gpio-pca953x.c
> index 3c95230..53e8c76 100644
> --- a/drivers/gpio/gpio-pca953x.c
> +++ b/drivers/gpio/gpio-pca953x.c
> @@ -468,9 +468,44 @@ static int pca953x_probe(struct device_d *dev)
>  	return 0;
>  }
>  
> +/* convenience to stop overlong match-table lines */
> +#define OF_953X(__nrgpio, __int) (void *)(__nrgpio | PCA953X_TYPE | __int)
> +#define OF_957X(__nrgpio, __int) (void *)(__nrgpio | PCA957X_TYPE | __int)
> +
> +static const struct of_device_id pca953x_dt_ids[] = {
> +	{ .compatible = "nxp,pca9505", .data = OF_953X(40, PCA_INT), },
> +	{ .compatible = "nxp,pca9534", .data = OF_953X( 8, PCA_INT), },
> +	{ .compatible = "nxp,pca9535", .data = OF_953X(16, PCA_INT), },
> +	{ .compatible = "nxp,pca9536", .data = OF_953X( 4, 0), },
> +	{ .compatible = "nxp,pca9537", .data = OF_953X( 4, PCA_INT), },
> +	{ .compatible = "nxp,pca9538", .data = OF_953X( 8, PCA_INT), },
> +	{ .compatible = "nxp,pca9539", .data = OF_953X(16, PCA_INT), },
> +	{ .compatible = "nxp,pca9554", .data = OF_953X( 8, PCA_INT), },
> +	{ .compatible = "nxp,pca9555", .data = OF_953X(16, PCA_INT), },
> +	{ .compatible = "nxp,pca9556", .data = OF_953X( 8, 0), },
> +	{ .compatible = "nxp,pca9557", .data = OF_953X( 8, 0), },
> +	{ .compatible = "nxp,pca9574", .data = OF_957X( 8, PCA_INT), },
> +	{ .compatible = "nxp,pca9575", .data = OF_957X(16, PCA_INT), },
> +	{ .compatible = "nxp,pca9698", .data = OF_953X(40, 0), },
> +
> +	{ .compatible = "maxim,max7310", .data = OF_953X( 8, 0), },
> +	{ .compatible = "maxim,max7312", .data = OF_953X(16, PCA_INT), },
> +	{ .compatible = "maxim,max7313", .data = OF_953X(16, PCA_INT), },
> +	{ .compatible = "maxim,max7315", .data = OF_953X( 8, PCA_INT), },
> +
> +	{ .compatible = "ti,pca6107", .data = OF_953X( 8, PCA_INT), },
> +	{ .compatible = "ti,tca6408", .data = OF_953X( 8, PCA_INT), },
> +	{ .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), },
> +	{ .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), },
> +
> +	{ .compatible = "exar,xra1202", .data = OF_953X( 8, 0), },
> +	{ }
> +};
> +
>  static struct driver_d pca953x_driver = {
>  	.name	= "pca953x",
>  	.probe		= pca953x_probe,
> +	.of_compatible	= DRV_OF_COMPAT(pca953x_dt_ids),
>  	.id_table	= pca953x_id,
>  };
>  
> -- 
> 2.7.4
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox
> 

-- 
Pengutronix e.K.                           |                             |
Industrial Linux Solutions                 | http://www.pengutronix.de/  |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0    |
Amtsgericht Hildesheim, HRA 2686           | Fax:   +49-5121-206917-5555 |

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

      reply	other threads:[~2018-08-31  6:19 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-08-29  9:08 Oleg.Karfich
2018-08-31  6:18 ` Sascha Hauer [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=20180831061854.fsqc7ymes5wkegab@pengutronix.de \
    --to=s.hauer@pengutronix.de \
    --cc=Oleg.Karfich@wago.com \
    --cc=barebox@lists.infradead.org \
    /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