1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (C) 2018 Álvaro Fernández Rojas <noltari@gmail.com>
4  */
5 
6 #include <common.h>
7 #include <init.h>
8 #include <asm/io.h>
9 #include <linux/bitops.h>
10 
11 #define GPIO_BASE_6362			0x10000080
12 
13 #define GPIO_MODE_6362_REG		0x18
14 #define GPIO_MODE_6362_SERIAL_LED_DATA	BIT(2)
15 #define GPIO_MODE_6362_SERIAL_LED_CLK	BIT(3)
16 
17 #ifdef CONFIG_BOARD_EARLY_INIT_F
board_early_init_f(void)18 int board_early_init_f(void)
19 {
20 	void __iomem *gpio_regs = map_physmem(GPIO_BASE_6362, 0, MAP_NOCACHE);
21 
22 	/* Enable Serial LEDs */
23 	setbits_be32(gpio_regs + GPIO_MODE_6362_REG,
24 		     GPIO_MODE_6362_SERIAL_LED_DATA |
25 		     GPIO_MODE_6362_SERIAL_LED_CLK);
26 
27 	return 0;
28 }
29 #endif
30