blob: 25763526f5f6c6d0155b3778df9b9fdba3559321 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Stefano Babicfc05b902012-08-19 21:33:50 +00002/*
3 * Copyright (C) 2011
4 * Stefano Babic, DENX Software Engineering, <sbabic@denx.de>
Stefano Babicfc05b902012-08-19 21:33:50 +00005 */
6
7
8#ifndef __ASM_ARCH_IMX_GPIO_H
9#define __ASM_ARCH_IMX_GPIO_H
10
11#if !(defined(__KERNEL_STRICT_NAMES) || defined(__ASSEMBLY__))
Tom Riniaf026762024-04-30 20:41:48 -060012#include <linux/types.h>
13
Stefano Babicfc05b902012-08-19 21:33:50 +000014/* GPIO registers */
15struct gpio_regs {
16 u32 gpio_dr; /* data */
17 u32 gpio_dir; /* direction */
18 u32 gpio_psr; /* pad satus */
19};
20#endif
21
22#define IMX_GPIO_NR(port, index) ((((port)-1)*32)+((index)&31))
23
24#endif