2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2008-06-09 04:39:57 +00:00
|
|
|
/*
|
|
|
|
* Configuation settings for the Renesas SH7763RDP board
|
|
|
|
*
|
|
|
|
* Copyright (C) 2008 Renesas Solutions Corp.
|
|
|
|
* Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __SH7763RDP_H
|
|
|
|
#define __SH7763RDP_H
|
|
|
|
|
|
|
|
#define CONFIG_CPU_SH7763 1
|
|
|
|
#define __LITTLE_ENDIAN 1
|
|
|
|
|
2016-11-27 22:15:30 +00:00
|
|
|
#define CONFIG_DISPLAY_BOARDINFO
|
2008-06-09 04:39:57 +00:00
|
|
|
|
|
|
|
/* SCIF */
|
|
|
|
#define CONFIG_CONS_SCIF2 1
|
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_PBSIZE 256 /* Buffer size for Console output */
|
|
|
|
#define CONFIG_SYS_BAUDRATE_TABLE { 115200 } /* List of legal baudrate
|
2008-06-09 04:39:57 +00:00
|
|
|
settings for this board */
|
|
|
|
|
|
|
|
/* SDRAM */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_SDRAM_BASE (0x8C000000)
|
|
|
|
#define CONFIG_SYS_SDRAM_SIZE (64 * 1024 * 1024)
|
2008-06-09 04:39:57 +00:00
|
|
|
|
|
|
|
/* Flash(NOR) */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_FLASH_BASE (0xA0000000)
|
|
|
|
#define CONFIG_SYS_FLASH_CFI_WIDTH (FLASH_CFI_16BIT)
|
|
|
|
#define CONFIG_SYS_MAX_FLASH_BANKS (1)
|
|
|
|
#define CONFIG_SYS_MAX_FLASH_SECT (520)
|
2008-06-09 04:39:57 +00:00
|
|
|
|
2016-02-06 03:30:11 +00:00
|
|
|
/* U-Boot setting */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 4 * 1024 * 1024)
|
|
|
|
#define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE)
|
|
|
|
#define CONFIG_SYS_MONITOR_LEN (128 * 1024)
|
2008-06-09 04:39:57 +00:00
|
|
|
/* Size of DRAM reserved for malloc() use */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_MALLOC_LEN (1024 * 1024)
|
|
|
|
#define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024)
|
2008-06-09 04:39:57 +00:00
|
|
|
|
2008-10-16 13:01:15 +00:00
|
|
|
#undef CONFIG_SYS_FLASH_QUIET_TEST
|
|
|
|
#define CONFIG_SYS_FLASH_EMPTY_INFO /* print 'E' for empty sector on flinfo */
|
2008-06-09 04:39:57 +00:00
|
|
|
/* Timeout for Flash erase operations (in ms) */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_FLASH_ERASE_TOUT (3 * 1000)
|
2008-06-09 04:39:57 +00:00
|
|
|
/* Timeout for Flash write operations (in ms) */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_FLASH_WRITE_TOUT (3 * 1000)
|
2008-06-09 04:39:57 +00:00
|
|
|
/* Timeout for Flash set sector lock bit operations (in ms) */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_FLASH_LOCK_TOUT (3 * 1000)
|
2008-06-09 04:39:57 +00:00
|
|
|
/* Timeout for Flash clear lock bit operations (in ms) */
|
2008-10-16 13:01:15 +00:00
|
|
|
#define CONFIG_SYS_FLASH_UNLOCK_TOUT (3 * 1000)
|
2008-06-09 04:39:57 +00:00
|
|
|
/* Use hardware flash sectors protection instead of U-Boot software protection */
|
2008-10-16 13:01:15 +00:00
|
|
|
#undef CONFIG_SYS_DIRECT_FLASH_TFTP
|
|
|
|
/* Offset of env Flash sector relative to CONFIG_SYS_FLASH_BASE */
|
2008-06-09 04:39:57 +00:00
|
|
|
|
|
|
|
/* Clock */
|
|
|
|
#define CONFIG_SYS_CLK_FREQ 66666666
|
2013-08-21 07:11:21 +00:00
|
|
|
#define CONFIG_SH_SCIF_CLK_FREQ CONFIG_SYS_CLK_FREQ
|
2008-06-09 04:39:57 +00:00
|
|
|
|
2008-08-08 07:30:23 +00:00
|
|
|
/* Ether */
|
|
|
|
#define CONFIG_SH_ETHER_USE_PORT (1)
|
|
|
|
#define CONFIG_SH_ETHER_PHY_ADDR (0x01)
|
2011-10-31 01:44:18 +00:00
|
|
|
#define CONFIG_BITBANGMII_MULTI
|
2012-05-16 01:23:21 +00:00
|
|
|
#define CONFIG_SH_ETHER_PHY_MODE PHY_INTERFACE_MODE_MII
|
2008-08-08 07:30:23 +00:00
|
|
|
|
2008-06-09 04:39:57 +00:00
|
|
|
#endif /* __SH7763RDP_H */
|