soc.h (553B)
1// SPDX-License-Identifier: ISC 2/* 3 * Copyright (c) 2010 Broadcom Corporation 4 */ 5 6#ifndef _BRCM_SOC_H 7#define _BRCM_SOC_H 8 9#define SI_ENUM_BASE_DEFAULT 0x18000000 10 11/* Common core control flags */ 12#define SICF_BIST_EN 0x8000 13#define SICF_PME_EN 0x4000 14#define SICF_CORE_BITS 0x3ffc 15#define SICF_FGC 0x0002 16#define SICF_CLOCK_EN 0x0001 17 18/* Common core status flags */ 19#define SISF_BIST_DONE 0x8000 20#define SISF_BIST_ERROR 0x4000 21#define SISF_GATED_CLK 0x2000 22#define SISF_DMA64 0x1000 23#define SISF_CORE_BITS 0x0fff 24 25#endif /* _BRCM_SOC_H */