diff options
author | Tom Rini | 2018-06-01 21:10:18 -0400 |
---|---|---|
committer | Tom Rini | 2018-06-02 16:58:27 -0400 |
commit | 040b2583c3a87c83606b3df64ea653ccaf3aea62 (patch) | |
tree | d46a387c1fbc0eae0811fd548ead6786945bbbf7 /include/configs/ebisu.h | |
parent | 2a046ff5e9ffc30025b698ea6751412e2a1f16ca (diff) | |
parent | 0bb5d24852d8051b70b2becc74f3a2c4fb925dbb (diff) |
Merge branch 'master' of git://git.denx.de/u-boot-sh
Diffstat (limited to 'include/configs/ebisu.h')
-rw-r--r-- | include/configs/ebisu.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/configs/ebisu.h b/include/configs/ebisu.h new file mode 100644 index 00000000000..560fe5c45e0 --- /dev/null +++ b/include/configs/ebisu.h @@ -0,0 +1,33 @@ +/* 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 +#define CONFIG_BITBANGMII_MULTI + +/* Board Clock */ +/* XTAL_CLK : 33.33MHz */ +#define CONFIG_SYS_CLK_FREQ 48000000u + +/* 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_ENV_OFFSET (-CONFIG_ENV_SIZE) +#define CONFIG_SYS_MMC_ENV_DEV 2 +#define CONFIG_SYS_MMC_ENV_PART 2 + +#endif /* __EBISU_H */ |