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