xref: /openbmc/u-boot/include/configs/ebisu.h (revision 103c45fb0daab924308046454b4aaad4a09237c4)
1*040b2583STom Rini /* SPDX-License-Identifier: GPL-2.0+ */
263e22517SMarek Vasut /*
363e22517SMarek Vasut  * include/configs/ebisu.h
463e22517SMarek Vasut  *     This file is Ebisu board configuration.
563e22517SMarek Vasut  *
663e22517SMarek Vasut  * Copyright (C) 2018 Renesas Electronics Corporation
763e22517SMarek Vasut  */
863e22517SMarek Vasut 
963e22517SMarek Vasut #ifndef __EBISU_H
1063e22517SMarek Vasut #define __EBISU_H
1163e22517SMarek Vasut 
1263e22517SMarek Vasut #undef DEBUG
1363e22517SMarek Vasut 
1463e22517SMarek Vasut #include "rcar-gen3-common.h"
1563e22517SMarek Vasut 
1663e22517SMarek Vasut /* Ethernet RAVB */
1763e22517SMarek Vasut #define CONFIG_NET_MULTI
1863e22517SMarek Vasut #define CONFIG_BITBANGMII
1963e22517SMarek Vasut #define CONFIG_BITBANGMII_MULTI
2063e22517SMarek Vasut 
2163e22517SMarek Vasut /* Generic Timer Definitions (use in assembler source) */
2263e22517SMarek Vasut #define COUNTER_FREQUENCY	0xFE502A	/* 16.66MHz from CPclk */
2363e22517SMarek Vasut 
2463e22517SMarek Vasut /* Environment in eMMC, at the end of 2nd "boot sector" */
2563e22517SMarek Vasut #define CONFIG_ENV_OFFSET		(-CONFIG_ENV_SIZE)
2663e22517SMarek Vasut #define CONFIG_SYS_MMC_ENV_DEV		2
2763e22517SMarek Vasut #define CONFIG_SYS_MMC_ENV_PART		2
2863e22517SMarek Vasut 
2963e22517SMarek Vasut #endif /* __EBISU_H */
30