1 /* SPDX-License-Identifier: GPL-2.0-only */ 2 /* 3 * This file contains the address info for various AM33XX modules. 4 * 5 * Copyright (C) 2011 Texas Instruments, Inc. - https://www.ti.com/ 6 */ 7 8 #ifndef __ASM_ARCH_AM33XX_H 9 #define __ASM_ARCH_AM33XX_H 10 11 #define L4_SLOW_AM33XX_BASE 0x48000000 12 13 #define AM33XX_SCM_BASE 0x44E10000 14 #define AM33XX_CTRL_BASE AM33XX_SCM_BASE 15 #define AM33XX_PRCM_BASE 0x44E00000 16 #define AM43XX_PRCM_BASE 0x44DF0000 17 #define AM33XX_TAP_BASE (AM33XX_CTRL_BASE + 0x3FC) 18 19 #endif /* __ASM_ARCH_AM33XX_H */ 20