Merge https://gitlab.denx.de/u-boot/custodians/u-boot-imx
[platform/kernel/u-boot.git] / include / configs / sh7763rdp.h
1 /* SPDX-License-Identifier: GPL-2.0+ */
2 /*
3  * Configuation settings for the Renesas SH7763RDP board
4  *
5  * Copyright (C) 2008 Renesas Solutions Corp.
6  * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
7  */
8
9 #ifndef __SH7763RDP_H
10 #define __SH7763RDP_H
11
12 #define CONFIG_CPU_SH7763       1
13 #define __LITTLE_ENDIAN         1
14
15 #define CONFIG_DISPLAY_BOARDINFO
16
17 /* SCIF */
18 #define CONFIG_CONS_SCIF2               1
19
20 #define CONFIG_SYS_PBSIZE               256     /* Buffer size for Console output */
21 #define CONFIG_SYS_BAUDRATE_TABLE       { 115200 }      /* List of legal baudrate
22                                                                                                 settings for this board */
23
24 /* SDRAM */
25 #define CONFIG_SYS_SDRAM_BASE           (0x8C000000)
26 #define CONFIG_SYS_SDRAM_SIZE           (64 * 1024 * 1024)
27
28 /* Flash(NOR) */
29 #define CONFIG_SYS_FLASH_BASE           (0xA0000000)
30 #define CONFIG_SYS_FLASH_CFI_WIDTH (FLASH_CFI_16BIT)
31 #define CONFIG_SYS_MAX_FLASH_BANKS (1)
32 #define CONFIG_SYS_MAX_FLASH_SECT  (520)
33
34 /* U-Boot setting */
35 #define CONFIG_SYS_LOAD_ADDR            (CONFIG_SYS_SDRAM_BASE + 4 * 1024 * 1024)
36 #define CONFIG_SYS_MONITOR_BASE (CONFIG_SYS_FLASH_BASE)
37 #define CONFIG_SYS_MONITOR_LEN          (128 * 1024)
38 /* Size of DRAM reserved for malloc() use */
39 #define CONFIG_SYS_MALLOC_LEN           (1024 * 1024)
40 #define CONFIG_SYS_BOOTMAPSZ            (8 * 1024 * 1024)
41
42 #undef  CONFIG_SYS_FLASH_QUIET_TEST
43 #define CONFIG_SYS_FLASH_EMPTY_INFO     /* print 'E' for empty sector on flinfo */
44 /* Timeout for Flash erase operations (in ms) */
45 #define CONFIG_SYS_FLASH_ERASE_TOUT     (3 * 1000)
46 /* Timeout for Flash write operations (in ms) */
47 #define CONFIG_SYS_FLASH_WRITE_TOUT     (3 * 1000)
48 /* Timeout for Flash set sector lock bit operations (in ms) */
49 #define CONFIG_SYS_FLASH_LOCK_TOUT              (3 * 1000)
50 /* Timeout for Flash clear lock bit operations (in ms) */
51 #define CONFIG_SYS_FLASH_UNLOCK_TOUT    (3 * 1000)
52 /* Use hardware flash sectors protection instead of U-Boot software protection */
53 #undef  CONFIG_SYS_DIRECT_FLASH_TFTP
54 /* Offset of env Flash sector relative to CONFIG_SYS_FLASH_BASE */
55
56 /* Clock */
57 #define CONFIG_SYS_CLK_FREQ     66666666
58 #define CONFIG_SH_SCIF_CLK_FREQ CONFIG_SYS_CLK_FREQ
59
60 /* Ether */
61 #define CONFIG_SH_ETHER_USE_PORT (1)
62 #define CONFIG_SH_ETHER_PHY_ADDR (0x01)
63 #define CONFIG_BITBANGMII_MULTI
64 #define CONFIG_SH_ETHER_PHY_MODE PHY_INTERFACE_MODE_MII
65
66 #endif /* __SH7763RDP_H */