Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 2 | /* |
| 3 | * Configuation settings for the sh7753evb board |
| 4 | * |
| 5 | * Copyright (C) 2012 Renesas Solutions Corp. |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef __SH7753EVB_H |
| 9 | #define __SH7753EVB_H |
| 10 | |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 11 | #define CONFIG_CPU_SH7753 1 |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 12 | |
Vladimir Zapolskiy | 18a40e8 | 2016-11-28 00:15:30 +0200 | [diff] [blame] | 13 | #define CONFIG_DISPLAY_BOARDINFO |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 14 | |
| 15 | /* MEMORY */ |
| 16 | #define SH7753EVB_SDRAM_BASE (0x40000000) |
| 17 | #define SH7753EVB_SDRAM_SIZE (512 * 1024 * 1024) |
| 18 | |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 19 | #define CONFIG_SYS_PBSIZE 256 |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 20 | #define CONFIG_SYS_BAUDRATE_TABLE { 115200 } |
| 21 | |
| 22 | /* SCIF */ |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 23 | #define CONFIG_CONS_SCIF2 1 |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 24 | |
| 25 | #define CONFIG_SYS_MEMTEST_START (SH7753EVB_SDRAM_BASE) |
| 26 | #define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + \ |
| 27 | 480 * 1024 * 1024) |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 28 | #undef CONFIG_SYS_MEMTEST_SCRATCH |
| 29 | #undef CONFIG_SYS_LOADS_BAUD_CHANGE |
| 30 | |
| 31 | #define CONFIG_SYS_SDRAM_BASE (SH7753EVB_SDRAM_BASE) |
| 32 | #define CONFIG_SYS_SDRAM_SIZE (SH7753EVB_SDRAM_SIZE) |
| 33 | #define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + \ |
| 34 | 128 * 1024 * 1024) |
| 35 | |
| 36 | #define CONFIG_SYS_MONITOR_BASE 0x00000000 |
| 37 | #define CONFIG_SYS_MONITOR_LEN (512 * 1024) |
| 38 | #define CONFIG_SYS_MALLOC_LEN (4 * 1024 * 1024) |
| 39 | #define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024) |
| 40 | |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 41 | /* Ether */ |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 42 | #define CONFIG_SH_ETHER_USE_PORT 0 |
| 43 | #define CONFIG_SH_ETHER_PHY_ADDR 18 |
| 44 | #define CONFIG_SH_ETHER_CACHE_WRITEBACK 1 |
| 45 | #define CONFIG_SH_ETHER_USE_GETHER 1 |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 46 | #define CONFIG_BITBANGMII |
| 47 | #define CONFIG_BITBANGMII_MULTI |
| 48 | #define CONFIG_SH_ETHER_PHY_MODE PHY_INTERFACE_MODE_RGMII |
| 49 | #define CONFIG_PHY_VITESSE |
| 50 | |
| 51 | #define SH7753EVB_ETHERNET_MAC_BASE_SPI 0x00090000 |
| 52 | #define SH7753EVB_SPI_SECTOR_SIZE (64 * 1024) |
| 53 | #define SH7753EVB_ETHERNET_MAC_BASE SH7753EVB_ETHERNET_MAC_BASE_SPI |
| 54 | #define SH7753EVB_ETHERNET_MAC_SIZE 17 |
| 55 | #define SH7753EVB_ETHERNET_NUM_CH 2 |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 56 | |
| 57 | /* SPI */ |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 58 | #define CONFIG_SH_SPI_BASE 0xfe002000 |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 59 | |
| 60 | /* MMCIF */ |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 61 | #define CONFIG_SH_MMCIF_ADDR 0xffcb0000 |
| 62 | #define CONFIG_SH_MMCIF_CLK 48000000 |
| 63 | |
| 64 | /* ENV setting */ |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 65 | #define CONFIG_ENV_OVERWRITE 1 |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 66 | #define CONFIG_EXTRA_ENV_SETTINGS \ |
| 67 | "netboot=bootp; bootm\0" |
| 68 | |
| 69 | /* Board Clock */ |
| 70 | #define CONFIG_SYS_CLK_FREQ 48000000 |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 71 | #define CONFIG_SH_SCIF_CLK_FREQ CONFIG_SYS_CLK_FREQ |
Yoshihiro Shimoda | 320cf35 | 2013-12-18 16:03:44 +0900 | [diff] [blame] | 72 | #endif /* __SH7753EVB_H */ |