/* * HND OOBR interface header * * Copyright (C) 2022, Broadcom. * * Unless you and Broadcom execute a separate written software license * agreement governing use of this software, this software is licensed to you * under the terms of the GNU General Public License version 2 (the "GPL"), * available at http://www.broadcom.com/licenses/GPLv2.php, with the * following added to such license: * * As a special exception, the copyright holders of this software give you * permission to link this software with independent modules, and to copy and * distribute the resulting executable under terms of your choice, provided that * you also meet, for each linked independent module, the terms and conditions of * the license of that module. An independent module is a module which is not * derived from this software. The special exception does not apply to any * modifications of the software. * * * <> */ #ifndef _hndoobr_h_ #define _hndoobr_h_ #include #include /* for 'srcpidx' of hnd_oobr_get_intr_config() */ #define HND_CORE_MAIN_INTR 0 #define HND_CORE_ALT_INTR 1 uint32 hnd_oobr_get_clkpwrreq(si_t *sih, uint coreid); uint32 hnd_oobr_get_intstatus(si_t *sih); int hnd_oobr_get_intr_config(si_t *sih, uint srccidx, uint srcpidx, uint dstcidx, uint *dstpidx); int hnd_oobr_set_intr_src(si_t *sih, uint dstcidx, uint dstpidx, uint intrnum); void hnd_oobr_init(si_t *sih); #ifdef BCMDBG /* dump oobr registers values to console */ void hnd_oobr_dump(si_t *sih); #endif #define OOBR_INVALID_PORT 0xFFu /* per core source/dest sel reg */ #define OOBR_INTR_PER_CONFREG 4u /* 4 interrupts per configure reg */ #define OOBR_INTR_NUM_MASK 0x7Fu #define OOBR_INTR_EN 0x80u /* per core config reg */ #define OOBR_CORECNF_OUTPUT_MASK 0x0000FF00u #define OOBR_CORECNF_OUTPUT_SHIFT 8u #define OOBR_CORECNF_INPUT_MASK 0x00FF0000u #define OOBR_CORECNF_INPUT_SHIFT 16u #define OOBR_EXT_RSRC_REQ_PERCORE_OFFSET 0x34u #define OOBR_EXT_RSRC_OFFSET 0x100u #define OOBR_EXT_RSRC_SHIFT 7u #define OOBR_EXT_RSRC_REQ_ADDR(oodr_base, core_idx) (uint32)((uintptr)(oodr_base) +\ OOBR_EXT_RSRC_OFFSET + ((core_idx) << OOBR_EXT_RSRC_SHIFT) +\ OOBR_EXT_RSRC_REQ_PERCORE_OFFSET) typedef volatile struct hndoobr_percore_reg { uint32 sourcesel[OOBR_INTR_PER_CONFREG]; /* 0x00 - 0x0c */ uint32 destsel[OOBR_INTR_PER_CONFREG]; /* 0x10 - 0x1c */ uint32 reserved[4]; uint32 clkpwrreq; /* 0x30 */ uint32 extrsrcreq; /* 0x34 */ uint32 config; /* 0x38 */ uint32 reserved1[17]; /* 0x3c to 0x7c */ } hndoobr_percore_reg_t; /* capability reg */ #define OOBR_CAP_CORECNT_MASK 0x0000001Fu #define OOBR_CAP_MAX_INT2CORE_MASK 0x00F00000u #define OOBR_CAP_MAX_INT2CORE_SHIFT 20u #define OOBR_MAX_INT_PER_REG 4u /* CoreNConfig reg */ #define OOBR_PERCORE_CORENCONFIG_INTOUTPUTS_MASK 0x0000FF00u #define OOBR_PERCORE_CORENCONFIG_INTOUTPUTS_SHIFT 8u typedef volatile struct hndoobr_reg { uint32 capability; /* 0x00 */ uint32 reserved[3]; uint32 intstatus[4]; /* 0x10 - 0x1c */ uint32 reserved1[56]; /* 0x20 - 0xfc */ hndoobr_percore_reg_t percore_reg[1]; /* 0x100 */ } hndoobr_reg_t; #endif /* _hndoobr_h_ */