blob: ec0f4f6d587c247a17ba45a673b5fb59a5c24146 [file] [log] [blame]
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Callisto context related macros.
*
* Copyright (C) 2022 Google LLC
*/
#ifndef __CALLISTO_CONTEXT_H__
#define __CALLISTO_CONTEXT_H__
/* The stream IDs used for each core. */
#define INST_SID_FOR_CORE(_x_) ((_x_) << 4)
#define DATA_SID_FOR_CORE(_x_) (((_x_) << 4) | (1 << 3))
#define IDMA_SID_FOR_CORE(_x_) ((1 << 6) | ((_x_) << 4))
#endif /* __CALLISTO_CONTEXT_H__ */