• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
3 #ifndef AMD_BLOCK_DATA_FABRIC_DEFS_H
4 #define AMD_BLOCK_DATA_FABRIC_DEFS_H
5 
6 #define DF_REG_ID(fn, reg)	(((fn) & 0x7) << 12 | ((reg) & 0xfff))
7 #define DF_REG_FN(id)		((id) >> 12)
8 #define DF_REG_OFFSET(id)	((id) & 0xfff)
9 
10 #endif /* AMD_BLOCK_DATA_FABRIC_DEFS_H */
11