summaryrefslogtreecommitdiff
path: root/board/gardena
diff options
context:
space:
mode:
authorStefan Roese <sr@denx.de>2018-10-09 09:59:11 +0300
committerDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2018-11-18 18:02:23 +0300
commit48f8e15997ee1c6aa6fa62feab620c6b6593aad5 (patch)
tree057f81de8715122c2d4702193ef46bffc368a7c8 /board/gardena
parent4ff942b059c66c943a3ae94b6f96b3de239e9eaa (diff)
downloadu-boot-48f8e15997ee1c6aa6fa62feab620c6b6593aad5.tar.xz
mips: mt76xx: gardena-smart-gateway: Configure GPIOs (digital vs analog)
Configure digital vs analog GPIOs as needed on this board. Signed-off-by: Stefan Roese <sr@denx.de> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'board/gardena')
-rw-r--r--board/gardena/smart-gateway-mt7688/board.c15
1 files changed, 9 insertions, 6 deletions
diff --git a/board/gardena/smart-gateway-mt7688/board.c b/board/gardena/smart-gateway-mt7688/board.c
index 5ff546f505..838dfc205b 100644
--- a/board/gardena/smart-gateway-mt7688/board.c
+++ b/board/gardena/smart-gateway-mt7688/board.c
@@ -4,14 +4,17 @@
*/
#include <common.h>
-#include <asm/io.h>
+#include <linux/io.h>
+
+#define MT76XX_AGPIO_CFG 0x1000003c
int board_early_init_f(void)
{
- /*
- * Nothing to be done here for this board (no UART setup etc)
- * right now. We might need some pin muxing, so lets keep this
- * function for now.
- */
+ void __iomem *gpio_mode;
+
+ /* Configure digital vs analog GPIOs */
+ gpio_mode = ioremap_nocache(MT76XX_AGPIO_CFG, 0x100);
+ iowrite32(0x00fe01ff, gpio_mode);
+
return 0;
}