upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
497 B
18 lines
497 B
/*
|
|
* Copyright (C) 2017 Socionext Inc.
|
|
* Author: Masahiro Yamada <yamada.masahiro@socionext.com>
|
|
*/
|
|
|
|
#ifndef _DT_BINDINGS_GPIO_UNIPHIER_H
|
|
#define _DT_BINDINGS_GPIO_UNIPHIER_H
|
|
|
|
#define UNIPHIER_GPIO_LINES_PER_BANK 8
|
|
|
|
#define UNIPHIER_GPIO_IRQ_OFFSET ((UNIPHIER_GPIO_LINES_PER_BANK) * 15)
|
|
|
|
#define UNIPHIER_GPIO_PORT(bank, line) \
|
|
((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
|
|
|
|
#define UNIPHIER_GPIO_IRQ(n) ((UNIPHIER_GPIO_IRQ_OFFSET) + (n))
|
|
|
|
#endif /* _DT_BINDINGS_GPIO_UNIPHIER_H */
|
|
|