1 /*
2  * hardware.h
3  *
4  * hardware specific header
5  *
6  * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/
7  *
8  * SPDX-License-Identifier:	GPL-2.0+
9  */
10 
11 #ifndef __OMAP_HARDWARE_H
12 #define __OMAP_HARDWARE_H
13 
14 #include <asm/arch/omap.h>
15 
16 /*
17  * Common hardware definitions
18  */
19 
20 /* BCH Error Location Module */
21 #define ELM_BASE			0x48078000
22 
23 /* GPMC Base address */
24 #define GPMC_BASE			0x50000000
25 
26 /* EDMA3 Base address for DRA7XX and AM57XX */
27 #if defined(CONFIG_DRA7XX)
28 #define EDMA3_BASE			0x43300000
29 #endif
30 
31 #endif
32