blob: 736b379ab7a12ed3302c60942cca27f785ec802c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +09002/*
3 * Configuation settings for the sh7753evb board
4 *
5 * Copyright (C) 2012 Renesas Solutions Corp.
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +09006 */
7
8#ifndef __SH7753EVB_H
9#define __SH7753EVB_H
10
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090011#define CONFIG_CPU_SH7753 1
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090012
Vladimir Zapolskiy18a40e82016-11-28 00:15:30 +020013#define CONFIG_DISPLAY_BOARDINFO
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090014
15/* MEMORY */
16#define SH7753EVB_SDRAM_BASE (0x40000000)
17#define SH7753EVB_SDRAM_SIZE (512 * 1024 * 1024)
18
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090019#define CONFIG_SYS_PBSIZE 256
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090020#define CONFIG_SYS_BAUDRATE_TABLE { 115200 }
21
22/* SCIF */
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090023#define CONFIG_CONS_SCIF2 1
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090024
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090025#undef CONFIG_SYS_LOADS_BAUD_CHANGE
26
27#define CONFIG_SYS_SDRAM_BASE (SH7753EVB_SDRAM_BASE)
28#define CONFIG_SYS_SDRAM_SIZE (SH7753EVB_SDRAM_SIZE)
29#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + \
30 128 * 1024 * 1024)
31
32#define CONFIG_SYS_MONITOR_BASE 0x00000000
33#define CONFIG_SYS_MONITOR_LEN (512 * 1024)
34#define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024)
35#define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024)
36
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090037/* Ether */
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090038#define CONFIG_SH_ETHER_USE_PORT 0
39#define CONFIG_SH_ETHER_PHY_ADDR 18
40#define CONFIG_SH_ETHER_CACHE_WRITEBACK 1
41#define CONFIG_SH_ETHER_USE_GETHER 1
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090042#define CONFIG_BITBANGMII_MULTI
43#define CONFIG_SH_ETHER_PHY_MODE PHY_INTERFACE_MODE_RGMII
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090044
45#define SH7753EVB_ETHERNET_MAC_BASE_SPI 0x00090000
46#define SH7753EVB_SPI_SECTOR_SIZE (64 * 1024)
47#define SH7753EVB_ETHERNET_MAC_BASE SH7753EVB_ETHERNET_MAC_BASE_SPI
48#define SH7753EVB_ETHERNET_MAC_SIZE 17
49#define SH7753EVB_ETHERNET_NUM_CH 2
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090050
51/* SPI */
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090052#define CONFIG_SH_SPI_BASE 0xfe002000
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090053
54/* MMCIF */
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090055#define CONFIG_SH_MMCIF_ADDR 0xffcb0000
56#define CONFIG_SH_MMCIF_CLK 48000000
57
58/* ENV setting */
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090059#define CONFIG_EXTRA_ENV_SETTINGS \
60 "netboot=bootp; bootm\0"
61
62/* Board Clock */
63#define CONFIG_SYS_CLK_FREQ 48000000
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090064#define CONFIG_SH_SCIF_CLK_FREQ CONFIG_SYS_CLK_FREQ
Yoshihiro Shimoda320cf352013-12-18 16:03:44 +090065#endif /* __SH7753EVB_H */