mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-05 12:45:42 +00:00
77eb9a90dd
Add i.IMXRT family basic support. Signed-off-by: Giulio Benetti <giulio.benetti@benettiengineering.com>
19 lines
430 B
C
19 lines
430 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* Copyright (C) 2019
|
|
* Author(s): Giulio Benetti <giulio.benetti@benettiengineering.com>
|
|
*/
|
|
|
|
#ifndef __ASM_ARCH_GPIO_H__
|
|
#define __ASM_ARCH_GPIO_H__
|
|
|
|
#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
|
|
/* GPIO registers */
|
|
struct gpio_regs {
|
|
u32 gpio_dr; /* data */
|
|
u32 gpio_dir; /* direction */
|
|
u32 gpio_psr; /* pad satus */
|
|
};
|
|
#endif
|
|
|
|
#endif /* __ASM_ARCH_GPIO_H__ */
|