blob: 80d4476cf06fed9f3cca964f647fe9fce82e1a53 [file] [log] [blame]
Nishanth Menonad63dd72015-07-22 18:05:41 -05001/*
2 * ti_armv7_omap.h
3 *
4 * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/
5 *
6 * SPDX-License-Identifier: GPL-2.0+
7 *
8 * The various ARMv7 SoCs from TI all share a number of IP blocks when
9 * implementing a given feature. This is meant to isolate the features
10 * that are based on OMAP architecture.
11 */
12#ifndef __CONFIG_TI_ARMV7_OMAP_H__
13#define __CONFIG_TI_ARMV7_OMAP_H__
14
Nishanth Menonad63dd72015-07-22 18:05:41 -050015/* I2C IP block */
Nishanth Menonad63dd72015-07-22 18:05:41 -050016
Nishanth Menonad63dd72015-07-22 18:05:41 -050017/*
18 * GPMC NAND block. We support 1 device and the physical address to
19 * access CS0 at is 0x8000000.
20 */
21#ifdef CONFIG_NAND
Nishanth Menonad63dd72015-07-22 18:05:41 -050022#ifndef CONFIG_SYS_NAND_BASE
23#define CONFIG_SYS_NAND_BASE 0x8000000
24#endif
25#define CONFIG_SYS_MAX_NAND_DEVICE 1
Nishanth Menonad63dd72015-07-22 18:05:41 -050026#endif
27
28/* Now for the remaining common defines */
29#include <configs/ti_armv7_common.h>
30
31#endif /* __CONFIG_TI_ARMV7_OMAP_H__ */