summaryrefslogtreecommitdiff
path: root/arch/arm/include/asm/arch-vf610/gpio.h
blob: 98897ef289e8453ba0e52ea0e7ffb0e4e569b111 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * Copyright (C) 2014
 * Bhuvanchandra DV, Toradex, Inc.
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#ifndef __ASM_ARCH_VF610_GPIO_H
#define __ASM_ARCH_VF610_GPIO_H

#define GPIO_TO_PORT(n)			(n >> 5)
#define VF610_GPIO_DIRECTION_IN		0x0
#define VF610_GPIO_DIRECTION_OUT	0x1

/* GPIO registers */
struct gpio_regs {
	u32 gpio_pdor;
	u32 gpio_psor;
	u32 gpio_pcor;
	u32 gpio_ptor;
	u32 gpio_pdir;
};

#endif	/* __ASM_ARCH_VF610_GPIO_H */