26 lines · c
1// SPDX-License-Identifier: ISC2/*3 * Copyright (c) 2010 Broadcom Corporation4 */5 6#ifndef _BRCM_SOC_H7#define _BRCM_SOC_H8 9#define SI_ENUM_BASE_DEFAULT 0x1800000010 11/* Common core control flags */12#define SICF_BIST_EN 0x800013#define SICF_PME_EN 0x400014#define SICF_CORE_BITS 0x3ffc15#define SICF_FGC 0x000216#define SICF_CLOCK_EN 0x000117 18/* Common core status flags */19#define SISF_BIST_DONE 0x800020#define SISF_BIST_ERROR 0x400021#define SISF_GATED_CLK 0x200022#define SISF_DMA64 0x100023#define SISF_CORE_BITS 0x0fff24 25#endif /* _BRCM_SOC_H */26