blob: 448c9279a9d4ab953193e2824cf96dca15cefa14 [file] [log] [blame]
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +09001/*
2 * Configuation settings for the Renesas Solutions AP-325RXA board
3 *
4 * Copyright (C) 2008 Renesas Solutions Corp.
5 * Copyright (C) 2008 Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +09008 */
9
10#ifndef __AP325RXA_H
11#define __AP325RXA_H
12
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090013#define CONFIG_CPU_SH7723 1
14#define CONFIG_AP325RXA 1
15
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090016#define CONFIG_CMD_SDRAM
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090017
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090018#define CONFIG_BOOTARGS "console=ttySC2,38400"
19
Vladimir Zapolskiy18a40e82016-11-28 00:15:30 +020020#define CONFIG_DISPLAY_BOARDINFO
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090021#undef CONFIG_SHOW_BOOT_PROGRESS
22
23/* SMC9118 */
Ben Warren736fead2009-07-20 22:01:11 -070024#define CONFIG_SMC911X 1
25#define CONFIG_SMC911X_32_BIT 1
26#define CONFIG_SMC911X_BASE 0xB6080000
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090027
28/* MEMORY */
29#define AP325RXA_SDRAM_BASE (0x88000000)
30#define AP325RXA_FLASH_BASE_1 (0xA0000000)
31#define AP325RXA_FLASH_BANK_SIZE (128 * 1024 * 1024)
32
Nobuhiro Iwamatsudb68b702011-01-17 20:46:35 +090033#define CONFIG_SYS_TEXT_BASE 0x8FFC0000
34
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090035/* undef to save memory */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020036#define CONFIG_SYS_LONGHELP
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090037/* Monitor Command Prompt */
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090038/* Buffer size for input from the Console */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020039#define CONFIG_SYS_CBSIZE 256
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090040/* Buffer size for Console output */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020041#define CONFIG_SYS_PBSIZE 256
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090042/* max args accepted for monitor commands */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020043#define CONFIG_SYS_MAXARGS 16
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090044/* Buffer size for Boot Arguments passed to kernel */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020045#define CONFIG_SYS_BARGSIZE 512
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090046/* List of legal baudrate settings for this board */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020047#define CONFIG_SYS_BAUDRATE_TABLE { 38400 }
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090048
49/* SCIF */
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090050#define CONFIG_SCIF_A 1 /* SH7723 has SCIF and SCIFA */
51#define CONFIG_CONS_SCIF5 1
52
53/* Suppress display of console information at boot */
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090054
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055#define CONFIG_SYS_MEMTEST_START (AP325RXA_SDRAM_BASE)
56#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + (60 * 1024 * 1024))
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090057
58/* Enable alternate, more extensive, memory test */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020059#undef CONFIG_SYS_ALT_MEMTEST
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090060/* Scratch address used by the alternate memory test */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020061#undef CONFIG_SYS_MEMTEST_SCRATCH
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090062
63/* Enable temporary baudrate change while serial download */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020064#undef CONFIG_SYS_LOADS_BAUD_CHANGE
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090065
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020066#define CONFIG_SYS_SDRAM_BASE (AP325RXA_SDRAM_BASE)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090067/* maybe more, but if so u-boot doesn't know about it... */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020068#define CONFIG_SYS_SDRAM_SIZE (128 * 1024 * 1024)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090069/* default load address for scripts ?!? */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020070#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 16 * 1024 * 1024)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090071
72/* Address of u-boot image in Flash (NOT run time address in SDRAM) ?!? */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020073#define CONFIG_SYS_MONITOR_BASE (AP325RXA_FLASH_BASE_1)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090074/* Monitor size */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020075#define CONFIG_SYS_MONITOR_LEN (128 * 1024)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090076/* Size of DRAM reserved for malloc() use */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020077#define CONFIG_SYS_MALLOC_LEN (256 * 1024)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020078#define CONFIG_SYS_BOOTMAPSZ (8 * 1024 * 1024)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090079
80/* FLASH */
81#define CONFIG_FLASH_CFI_DRIVER 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020082#define CONFIG_SYS_FLASH_CFI
83#undef CONFIG_SYS_FLASH_QUIET_TEST
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090084/* print 'E' for empty sector on flinfo */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020085#define CONFIG_SYS_FLASH_EMPTY_INFO
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090086/* Physical start address of Flash memory */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020087#define CONFIG_SYS_FLASH_BASE (AP325RXA_FLASH_BASE_1)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090088/* Max number of sectors on each Flash chip */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020089#define CONFIG_SYS_MAX_FLASH_SECT 512
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +090090
91/*
92 * IDE support
93 */
94#define CONFIG_IDE_RESET 1
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020095#define CONFIG_SYS_PIO_MODE 1
96#define CONFIG_SYS_IDE_MAXBUS 1 /* IDE bus */
97#define CONFIG_SYS_IDE_MAXDEVICE 1
98#define CONFIG_SYS_ATA_BASE_ADDR 0xB4180000
99#define CONFIG_SYS_ATA_STRIDE 2 /* 1bit shift */
100#define CONFIG_SYS_ATA_DATA_OFFSET 0x200 /* data reg offset */
101#define CONFIG_SYS_ATA_REG_OFFSET 0x200 /* reg offset */
102#define CONFIG_SYS_ATA_ALT_OFFSET 0x210 /* alternate register offset */
Albert Aribaudf2a37fc2010-08-08 05:17:05 +0530103#define CONFIG_IDE_SWAP_IO
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900104
105/* if you use all NOR Flash , you change dip-switch. Please see Manual. */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200106#define CONFIG_SYS_MAX_FLASH_BANKS 1
107#define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE + (0 * AP325RXA_FLASH_BANK_SIZE)}
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900108
109/* Timeout for Flash erase operations (in ms) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200110#define CONFIG_SYS_FLASH_ERASE_TOUT (3 * 1000)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900111/* Timeout for Flash write operations (in ms) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200112#define CONFIG_SYS_FLASH_WRITE_TOUT (3 * 1000)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900113/* Timeout for Flash set sector lock bit operations (in ms) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200114#define CONFIG_SYS_FLASH_LOCK_TOUT (3 * 1000)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900115/* Timeout for Flash clear lock bit operations (in ms) */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200116#define CONFIG_SYS_FLASH_UNLOCK_TOUT (3 * 1000)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900117
118/*
119 * Use hardware flash sectors protection instead
120 * of U-Boot software protection
121 */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200122#undef CONFIG_SYS_FLASH_PROTECTION
123#undef CONFIG_SYS_DIRECT_FLASH_TFTP
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900124
125/* ENV setting */
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900126#define CONFIG_ENV_OVERWRITE 1
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200127#define CONFIG_ENV_SECT_SIZE (128 * 1024)
128#define CONFIG_ENV_SIZE (CONFIG_ENV_SECT_SIZE)
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +0200129#define CONFIG_ENV_ADDR (CONFIG_SYS_FLASH_BASE + CONFIG_SYS_MONITOR_LEN)
130/* Offset of env Flash sector relative to CONFIG_SYS_FLASH_BASE */
131#define CONFIG_ENV_OFFSET (CONFIG_ENV_ADDR - CONFIG_SYS_FLASH_BASE)
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +0200132#define CONFIG_ENV_SIZE_REDUND (CONFIG_ENV_SECT_SIZE)
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900133
134/* Board Clock */
135#define CONFIG_SYS_CLK_FREQ 33333333
Nobuhiro Iwamatsu684a5012013-08-21 16:11:21 +0900136#define CONFIG_SH_TMU_CLK_FREQ CONFIG_SYS_CLK_FREQ
137#define CONFIG_SH_SCIF_CLK_FREQ CONFIG_SYS_CLK_FREQ
Jean-Christophe PLAGNIOL-VILLARDbe45c632009-06-04 12:06:48 +0200138#define CONFIG_SYS_TMU_CLK_DIV (4) /* 4 (default), 16, 64, 256 or 1024 */
Nobuhiro Iwamatsu6f0da492008-08-22 17:39:09 +0900139
140#endif /* __AP325RXA_H */