blob: d34042af4682438061d2ec298d86d790f9ccafe0 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Nishanth Menonad63dd72015-07-22 18:05:41 -05002/*
3 * ti_armv7_omap.h
4 *
5 * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/
6 *
Nishanth Menonad63dd72015-07-22 18:05:41 -05007 * The various ARMv7 SoCs from TI all share a number of IP blocks when
8 * implementing a given feature. This is meant to isolate the features
9 * that are based on OMAP architecture.
10 */
11#ifndef __CONFIG_TI_ARMV7_OMAP_H__
12#define __CONFIG_TI_ARMV7_OMAP_H__
13
Nishanth Menonad63dd72015-07-22 18:05:41 -050014/*
15 * GPMC NAND block. We support 1 device and the physical address to
16 * access CS0 at is 0x8000000.
17 */
Miquel Raynald0935362019-10-03 19:50:03 +020018#ifdef CONFIG_MTD_RAW_NAND
Tom Rinib4213492022-11-12 17:36:51 -050019#ifndef CFG_SYS_NAND_BASE
20#define CFG_SYS_NAND_BASE 0x8000000
Nishanth Menonad63dd72015-07-22 18:05:41 -050021#endif
Nishanth Menonad63dd72015-07-22 18:05:41 -050022#endif
23
24/* Now for the remaining common defines */
25#include <configs/ti_armv7_common.h>
26
27#endif /* __CONFIG_TI_ARMV7_OMAP_H__ */