Lines Matching +full:8 +full:- +full:12
4 * SPDX-License-Identifier: Apache-2.0
10 * Encode virtual wire information into a 16-bit unsigned.
12 * group = bits[11:8], Group number for VWEVMS or VWEVSM
13 * dir = bits[13:12], Direction for controller to target or target to controller
16 (((dir & 0x1) << 12) + ((group & 0xf) << 8) + (index & 0xff))
20 #define ESPI_NPCX_VW_EX_GROUP_NUM(e) (((e) >> 8) & 0xf)
21 #define ESPI_NPCX_VW_EX_DIR(e) (((e) >> 12) & 0x1)
32 #define NPCX_VWEVMS8 8
36 #define NPCX_VWEVMS_MAX 12
47 #define NPCX_VWEVSM8 8
60 #define NPCX_VWGPSM8 8
64 #define NPCX_VWGPSM12 12