blob: 28dddcc5b939ea75d5943572d6a3dcd2e9da5fe5 [file] [log] [blame]
Vipin KUMAR566c9c12010-01-15 19:15:48 +05301/*
2 * (C) Copyright 2009
3 * Vipin Kumar, STMicroelectronics, <vipin.kumar@st.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Vipin KUMAR566c9c12010-01-15 19:15:48 +05306 */
7
8#ifndef __CONFIG_H
9#define __CONFIG_H
10
11/*
12 * High Level Configuration Options
13 * (easy to change)
14 */
Amit Virdi9b382b42012-05-07 13:07:02 +053015#define CONFIG_SPEAR600
Vipin KUMAR566c9c12010-01-15 19:15:48 +053016
Vipin KUMARf273e5b2012-05-07 13:06:46 +053017#if defined(CONFIG_usbtty)
18#define CONFIG_SPEAR_USBTTY
19#endif
20
21#if defined(CONFIG_nand)
22#define CONFIG_ENV_IS_IN_NAND
23#else
24#define CONFIG_ENV_IS_IN_FLASH
25#endif
26
Vipin KUMAR566c9c12010-01-15 19:15:48 +053027#include <configs/spear-common.h>
28
29/* Serial Configuration (PL011) */
30#define CONFIG_SYS_SERIAL0 0xD0000000
31#define CONFIG_SYS_SERIAL1 0xD0080000
32#define CONFIG_PL01x_PORTS { (void *)CONFIG_SYS_SERIAL0, \
33 (void *)CONFIG_SYS_SERIAL1 }
34
Vipin KUMAR1fa943b2012-05-22 00:15:55 +000035/* NAND flash configuration */
36#define CONFIG_SYS_FSMC_NAND_SP
37#define CONFIG_SYS_FSMC_NAND_8BIT
Amit Virdibc0bdf42012-05-07 13:07:01 +053038#define CONFIG_SYS_NAND_BASE 0xD2000000
Vipin KUMAR566c9c12010-01-15 19:15:48 +053039
Alexey Brodkin92a190a2014-01-22 20:54:06 +040040/* Ethernet PHY configuration */
41#define CONFIG_PHY_NATSEMI
42
Vipin KUMAR1b7935c2012-05-07 13:06:48 +053043/* Environment Settings */
44#define CONFIG_EXTRA_ENV_SETTINGS CONFIG_EXTRA_ENV_USBTTY
45
Vipin KUMAR566c9c12010-01-15 19:15:48 +053046#endif /* __CONFIG_H */