Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Nishanth Menon | 9a0f400 | 2015-07-22 18:05:41 -0500 | [diff] [blame] | 2 | /* |
| 3 | * ti_armv7_omap.h |
| 4 | * |
| 5 | * Copyright (C) 2015 Texas Instruments Incorporated - http://www.ti.com/ |
| 6 | * |
Nishanth Menon | 9a0f400 | 2015-07-22 18:05:41 -0500 | [diff] [blame] | 7 | * 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 Menon | 9a0f400 | 2015-07-22 18:05:41 -0500 | [diff] [blame] | 14 | /* |
| 15 | * GPMC NAND block. We support 1 device and the physical address to |
| 16 | * access CS0 at is 0x8000000. |
| 17 | */ |
| 18 | #ifdef CONFIG_NAND |
Nishanth Menon | 9a0f400 | 2015-07-22 18:05:41 -0500 | [diff] [blame] | 19 | #ifndef CONFIG_SYS_NAND_BASE |
| 20 | #define CONFIG_SYS_NAND_BASE 0x8000000 |
| 21 | #endif |
| 22 | #define CONFIG_SYS_MAX_NAND_DEVICE 1 |
Nishanth Menon | 9a0f400 | 2015-07-22 18:05:41 -0500 | [diff] [blame] | 23 | #endif |
| 24 | |
| 25 | /* Now for the remaining common defines */ |
| 26 | #include <configs/ti_armv7_common.h> |
| 27 | |
| 28 | #endif /* __CONFIG_TI_ARMV7_OMAP_H__ */ |