diff options
author | Bartosz Golaszewski <bgolaszewski@baylibre.com> | 2019-05-17 11:17:15 +0200 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-05-28 13:58:06 -0400 |
commit | 5e92c6856b9297d8ecac9289ec0b3ba4d3d39b6b (patch) | |
tree | d690d1f186dbff5f719f16b09041f9ce15461c47 /board/8dtech/eco5pk/eco5pk.c | |
parent | 7a2b51e36fdbec48f818107f495d8c91f6f5db25 (diff) | |
download | u-boot-5e92c6856b9297d8ecac9289ec0b3ba4d3d39b6b.tar.gz |
eco5pk: remove board
This board still doesn't select CONFIG_DM and seems to be umaintained.
As it makes progress on modernizing several DaVinci drivers more
difficult and the maintainer has not expressed interest in updating
it, this patch proposes to remove it.
Signed-off-by: Bartosz Golaszewski <bgolaszewski@baylibre.com>
Diffstat (limited to 'board/8dtech/eco5pk/eco5pk.c')
-rw-r--r-- | board/8dtech/eco5pk/eco5pk.c | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/board/8dtech/eco5pk/eco5pk.c b/board/8dtech/eco5pk/eco5pk.c deleted file mode 100644 index dcbd4835b3..0000000000 --- a/board/8dtech/eco5pk/eco5pk.c +++ /dev/null @@ -1,48 +0,0 @@ -// SPDX-License-Identifier: GPL-2.0+ -/* - * eco5pk.c - board file for 8D Technology's AM3517 based eco5pk board - * - * Based on am3517evm.c - * - * Copyright (C) 2011-2012 8D Technologies inc. - * Copyright (C) 2009 Texas Instruments Incorporated - */ -#include <common.h> -#include <netdev.h> -#include <asm/io.h> -#include <asm/arch/mem.h> -#include <asm/arch/mux.h> -#include <asm/arch/sys_proto.h> -#include <asm/arch/emac_defs.h> -#include <asm/gpio.h> -#include <i2c.h> -#include <u-boot/crc.h> -#include <asm/mach-types.h> -#include "eco5pk.h" - -DECLARE_GLOBAL_DATA_PTR; - -/* - * Routine: board_init - * Description: Early hardware init. - */ -int board_init(void) -{ - gpmc_init(); /* in SRAM or SDRAM, finish GPMC */ - gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); - - gpio_request(30, "RESOUT"); - gpio_direction_output(30, 1); - return 0; -} - -/* - * Routine: set_muxconf_regs - * Description: Setting up the configuration Mux registers specific to the - * hardware. Many pins need to be moved from protect to primary - * mode. - */ -void set_muxconf_regs(void) -{ - MUX_ECO5_PK(); -} |