u-boot-brain/board/netgear/dgnd3700v2/dgnd3700v2.c
Álvaro Fernández Rojas 9d466f2fe1 MIPS: add BMIPS Netgear DGND3700v2 board
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
2018-03-21 23:23:13 +01:00

29 lines
631 B
C
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/*
* Copyright (C) 2018 Álvaro Fernández Rojas <noltari@gmail.com>
*
* SPDX-License-Identifier: GPL-2.0+
*/
#include <common.h>
#include <asm/io.h>
#define GPIO_BASE_6362 0x10000080
#define GPIO_MODE_6362_REG 0x18
#define GPIO_MODE_6362_SERIAL_LED_DATA BIT(2)
#define GPIO_MODE_6362_SERIAL_LED_CLK BIT(3)
#ifdef CONFIG_BOARD_EARLY_INIT_F
int board_early_init_f(void)
{
void __iomem *gpio_regs = map_physmem(GPIO_BASE_6362, 0, MAP_NOCACHE);
/* Enable Serial LEDs */
setbits_be32(gpio_regs + GPIO_MODE_6362_REG,
GPIO_MODE_6362_SERIAL_LED_DATA |
GPIO_MODE_6362_SERIAL_LED_CLK);
return 0;
}
#endif