xref: /rk3399_rockchip-uboot/arch/arm/include/asm/arch-mx5/gpio.h (revision 7d8d0b1a4a7a679e4148a4e64d755321edc58f3e)
1*7d8d0b1aSStefano Babic /*
2*7d8d0b1aSStefano Babic  * Copyright (C) 2011
3*7d8d0b1aSStefano Babic  * Stefano Babic, DENX Software Engineering, <sbabic@denx.de>
4*7d8d0b1aSStefano Babic  *
5*7d8d0b1aSStefano Babic  * See file CREDITS for list of people who contributed to this
6*7d8d0b1aSStefano Babic  * project.
7*7d8d0b1aSStefano Babic  *
8*7d8d0b1aSStefano Babic  * This program is free software; you can redistribute it and/or
9*7d8d0b1aSStefano Babic  * modify it under the terms of the GNU General Public License as
10*7d8d0b1aSStefano Babic  * published by the Free Software Foundation; either version 2 of
11*7d8d0b1aSStefano Babic  * the License, or (at your option) any later version.
12*7d8d0b1aSStefano Babic  *
13*7d8d0b1aSStefano Babic  * This program is distributed in the hope that it will be useful,
14*7d8d0b1aSStefano Babic  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15*7d8d0b1aSStefano Babic  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16*7d8d0b1aSStefano Babic  * GNU General Public License for more details.
17*7d8d0b1aSStefano Babic  *
18*7d8d0b1aSStefano Babic  * You should have received a copy of the GNU General Public License
19*7d8d0b1aSStefano Babic  * along with this program; if not, write to the Free Software
20*7d8d0b1aSStefano Babic  * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21*7d8d0b1aSStefano Babic  * MA 02111-1307 USA
22*7d8d0b1aSStefano Babic  */
23*7d8d0b1aSStefano Babic 
24*7d8d0b1aSStefano Babic 
25*7d8d0b1aSStefano Babic #ifndef __ASM_ARCH_MX5_GPIO_H
26*7d8d0b1aSStefano Babic #define __ASM_ARCH_MX5_GPIO_H
27*7d8d0b1aSStefano Babic 
28*7d8d0b1aSStefano Babic /* GPIO registers */
29*7d8d0b1aSStefano Babic struct gpio_regs {
30*7d8d0b1aSStefano Babic 	u32	gpio_dr;
31*7d8d0b1aSStefano Babic 	u32	gpio_dir;
32*7d8d0b1aSStefano Babic 	u32	gpio_psr;
33*7d8d0b1aSStefano Babic };
34*7d8d0b1aSStefano Babic 
35*7d8d0b1aSStefano Babic #endif
36