blob: 29ace17ab8b28367a419c0fcb0c9bb8ed94ea65b [file] [log] [blame]
Peter Griffind2676882015-07-30 18:55:18 +01001/*
2 * Copyright (C) 2015 Linaro
3 * Peter Griffin <peter.griffin@linaro.org>
4 *
5 * SPDX-License-Identifier: GPL-2.0+
6 */
7
8#ifndef _HI6220_GPIO_H_
9#define _HI6220_GPIO_H_
10
11#define HI6220_GPIO_BASE(bank) (((bank < 4) ? 0xf8011000 : \
12 0xf7020000 - 0x4000) + (0x1000 * bank))
13
Peter Griffind2676882015-07-30 18:55:18 +010014#define HI6220_GPIO_PER_BANK 8
15#define HI6220_GPIO_DIR 0x400
16
17struct gpio_bank {
18 u8 *base; /* address of registers in physical memory */
19};
20
21/* Information about a GPIO bank */
22struct hikey_gpio_platdata {
23 int bank_index;
Prabhakar Kushwahaec160b12015-10-25 13:18:12 +053024 ulong base; /* address of registers in physical memory */
Peter Griffind2676882015-07-30 18:55:18 +010025};
26
27#endif /* _HI6220_GPIO_H_ */