blob: edaca0e1c5c38d41769508d0f6b9d67801e0f7c1 [file] [log] [blame]
Mark Jonas3313e0e2008-03-10 11:37:10 +01001/*
2 * Configuation settings for MPR2
3 *
4 * Copyright (C) 2008
5 * Mark Jonas <mark.jonas@de.bosch.com>
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Mark Jonas3313e0e2008-03-10 11:37:10 +01008 */
9
10#ifndef __MPR2_H
11#define __MPR2_H
12
13/* Supported commands */
Mark Jonas3313e0e2008-03-10 11:37:10 +010014
15/* Default environment variables */
Joe Hershbergerb3f44c22011-10-13 13:03:48 +000016#define CONFIG_BOOTFILE "/boot/zImage"
Mark Jonas3313e0e2008-03-10 11:37:10 +010017#define CONFIG_LOADADDR 0x8E000000
Mark Jonas3313e0e2008-03-10 11:37:10 +010018
19/* CPU and platform */
Mark Jonas3313e0e2008-03-10 11:37:10 +010020#define CONFIG_CPU_SH7720 1
21#define CONFIG_MPR2 1
22
Vladimir Zapolskiy18a40e82016-11-28 00:15:30 +020023#define CONFIG_DISPLAY_BOARDINFO
24
Mark Jonas3313e0e2008-03-10 11:37:10 +010025/* U-Boot internals */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020026#define CONFIG_SYS_LONGHELP /* undef to save memory */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020027#define CONFIG_SYS_CBSIZE 256 /* Buffer size for input from the Console */
28#define CONFIG_SYS_PBSIZE 256 /* Buffer size for Console output */
29#define CONFIG_SYS_MAXARGS 16 /* max args accepted for monitor commands */
30#define CONFIG_SYS_BARGSIZE 512 /* Buffer size for Boot Arguments passed to kernel */
31#define CONFIG_SYS_BAUDRATE_TABLE { 115200 } /* List of legal baudrate settings for this board */
32#define CONFIG_SYS_LOAD_ADDR (CONFIG_SYS_SDRAM_BASE + 32 * 1024 * 1024)
33#define CONFIG_SYS_MONITOR_BASE CONFIG_SYS_FLASH_BASE
34#define CONFIG_SYS_MONITOR_LEN (128 * 1024)
35#define CONFIG_SYS_MALLOC_LEN (256 * 1024)
Mark Jonas3313e0e2008-03-10 11:37:10 +010036
Nobuhiro Iwamatsub8256962011-01-17 21:13:49 +090037#define CONFIG_SYS_TEXT_BASE 0x8FFC0000
38
Mark Jonas3313e0e2008-03-10 11:37:10 +010039/* Memory */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020040#define CONFIG_SYS_SDRAM_BASE 0x8C000000
41#define CONFIG_SYS_SDRAM_SIZE (64 * 1024 * 1024)
42#define CONFIG_SYS_MEMTEST_START CONFIG_SYS_SDRAM_BASE
43#define CONFIG_SYS_MEMTEST_END (CONFIG_SYS_MEMTEST_START + (60 * 1024 * 1024))
Mark Jonas3313e0e2008-03-10 11:37:10 +010044
45/* Flash */
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020046#define CONFIG_SYS_FLASH_CFI
Jean-Christophe PLAGNIOL-VILLARD00b18832008-08-13 01:40:42 +020047#define CONFIG_FLASH_CFI_DRIVER
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020048#define CONFIG_SYS_FLASH_EMPTY_INFO
49#define CONFIG_SYS_FLASH_BASE 0xA0000000
50#define CONFIG_SYS_MAX_FLASH_SECT 256
51#define CONFIG_SYS_MAX_FLASH_BANKS 1
52#define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
Jean-Christophe PLAGNIOL-VILLARD0e8d1582008-09-10 22:48:06 +020053#define CONFIG_ENV_SECT_SIZE (128 * 1024)
54#define CONFIG_ENV_SIZE CONFIG_ENV_SECT_SIZE
Jean-Christophe PLAGNIOL-VILLARD6d0f6bc2008-10-16 15:01:15 +020055#define CONFIG_ENV_ADDR (CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN)
56#define CONFIG_SYS_FLASH_ERASE_TOUT 120000
57#define CONFIG_SYS_FLASH_WRITE_TOUT 500
Mark Jonas3313e0e2008-03-10 11:37:10 +010058
59/* Clocks */
60#define CONFIG_SYS_CLK_FREQ 24000000
Nobuhiro Iwamatsu684a5012013-08-21 16:11:21 +090061#define CONFIG_SH_TMU_CLK_FREQ CONFIG_SYS_CLK_FREQ
62#define CONFIG_SH_SCIF_CLK_FREQ CONFIG_SYS_CLK_FREQ
Jean-Christophe PLAGNIOL-VILLARDbe45c632009-06-04 12:06:48 +020063#define CONFIG_SYS_TMU_CLK_DIV 4 /* 4 (default), 16, 64, 256 or 1024 */
Mark Jonas3313e0e2008-03-10 11:37:10 +010064
65/* UART */
Mark Jonas3313e0e2008-03-10 11:37:10 +010066#define CONFIG_CONS_SCIF0 1
67
68#endif /* __MPR2_H */