From 08333fa50bf716d236aaa4c0ba17a8fa0c2524dc Mon Sep 17 00:00:00 2001 From: "hui.song" Date: Wed, 20 May 2020 18:40:18 +0800 Subject: armv8: gpio: add gpio feature add one struct mpc8xxx_gpio_plat to enable gpio feature. Signed-off-by: hui.song Reviewed-by: Priyanka Jain --- arch/arm/include/asm/arch-fsl-layerscape/gpio.h | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 arch/arm/include/asm/arch-fsl-layerscape/gpio.h (limited to 'arch/arm') diff --git a/arch/arm/include/asm/arch-fsl-layerscape/gpio.h b/arch/arm/include/asm/arch-fsl-layerscape/gpio.h new file mode 100644 index 0000000000..7ae5eee8b6 --- /dev/null +++ b/arch/arm/include/asm/arch-fsl-layerscape/gpio.h @@ -0,0 +1,22 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright 2020 NXP + */ + +/* + * Dummy header file to enable CONFIG_OF_CONTROL. + * If CONFIG_OF_CONTROL is enabled, lib/fdtdec.c is compiled. + * It includes via , so those SoCs that enable + * OF_CONTROL must have arch/gpio.h. + */ + +#ifndef __ASM_ARCH_MX85XX_GPIO_H +#define __ASM_ARCH_MX85XX_GPIO_H + +struct mpc8xxx_gpio_plat { + ulong addr; + ulong size; + uint ngpios; +}; + +#endif -- cgit