mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 21:24:29 +00:00
306881a0bf
This converts the following to Kconfig: CONFIG_PHYLIB CONFIG_BITBANGMII CONFIG_MV88E6352_SWITCH CONFIG_MV88E61XX_SWITCH CONFIG_PHYLIB_10G CONFIG_PHY_AQUANTIA CONFIG_PHY_ATHEROS CONFIG_PHY_BROADCOM CONFIG_PHY_CORTINA CONFIG_PHY_DAVICOM CONFIG_PHY_ET1011C CONFIG_PHY_LXT CONFIG_PHY_MARVELL CONFIG_PHY_MICREL CONFIG_PHY_NATSEMI CONFIG_PHY_REALTEK CONFIG_RTL8211X_PHY_FORCE_MASTER CONFIG_PHY_SMSC CONFIG_PHY_TERANETICS CONFIG_PHY_TI CONFIG_PHY_VITESSE CONFIG_PHY_XILINX Signed-off-by: Tom Rini <trini@konsulko.com>
27 lines
611 B
C
27 lines
611 B
C
/* SPDX-License-Identifier: GPL-2.0+ */
|
|
/*
|
|
* include/configs/ebisu.h
|
|
* This file is Ebisu board configuration.
|
|
*
|
|
* Copyright (C) 2018 Renesas Electronics Corporation
|
|
*/
|
|
|
|
#ifndef __EBISU_H
|
|
#define __EBISU_H
|
|
|
|
#undef DEBUG
|
|
|
|
#include "rcar-gen3-common.h"
|
|
|
|
/* Ethernet RAVB */
|
|
#define CONFIG_NET_MULTI
|
|
#define CONFIG_BITBANGMII_MULTI
|
|
|
|
/* Generic Timer Definitions (use in assembler source) */
|
|
#define COUNTER_FREQUENCY 0xFE502A /* 16.66MHz from CPclk */
|
|
|
|
/* Environment in eMMC, at the end of 2nd "boot sector" */
|
|
#define CONFIG_SYS_MMC_ENV_DEV 2
|
|
#define CONFIG_SYS_MMC_ENV_PART 2
|
|
|
|
#endif /* __EBISU_H */
|