diff options
author | Hans de Goede <hdegoede@redhat.com> | 2015-04-22 11:29:38 +0200 |
---|---|---|
committer | Hans de Goede <hdegoede@redhat.com> | 2015-05-04 16:51:52 +0200 |
commit | 11d52a9da6d377f39217f2a96f2304f533f5af6d (patch) | |
tree | 9734d58b5a760bae86e8ff406b749d1f556e8f59 | |
parent | a5ab8838c6b096ba6e4ba57fdb169cb8ecfea295 (diff) | |
download | u-boot-imx-11d52a9da6d377f39217f2a96f2304f533f5af6d.zip u-boot-imx-11d52a9da6d377f39217f2a96f2304f533f5af6d.tar.gz u-boot-imx-11d52a9da6d377f39217f2a96f2304f533f5af6d.tar.bz2 |
sunxi: gpio: Add compatible strings for all supported SoCs
We want to use driver-model/fdt with other model SoCs too, so add
compatible strings for the other SoCs to the dm sunxi gpio code.
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Acked-by: Ian Campbell <ijc@hellion.org.uk>
-rw-r--r-- | drivers/gpio/sunxi_gpio.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/drivers/gpio/sunxi_gpio.c b/drivers/gpio/sunxi_gpio.c index 89209df..e6a90b9 100644 --- a/drivers/gpio/sunxi_gpio.c +++ b/drivers/gpio/sunxi_gpio.c @@ -322,7 +322,14 @@ static int gpio_sunxi_bind(struct udevice *parent) } static const struct udevice_id sunxi_gpio_ids[] = { + { .compatible = "allwinner,sun4i-a10-pinctrl" }, + { .compatible = "allwinner,sun5i-a10s-pinctrl" }, + { .compatible = "allwinner,sun5i-a13-pinctrl" }, + { .compatible = "allwinner,sun6i-a31-pinctrl" }, + { .compatible = "allwinner,sun6i-a31s-pinctrl" }, { .compatible = "allwinner,sun7i-a20-pinctrl" }, + { .compatible = "allwinner,sun8i-a23-pinctrl" }, + { .compatible = "allwinner,sun9i-a80-pinctrl" }, { } }; |