Home
last modified time | relevance | path

Searched refs:low_bit (Results 1 – 4 of 4) sorted by relevance

/drivers/gpu/drm/exynos/
Dregs-vp.h52 #define VP_MASK(high_bit, low_bit) \ argument
53 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
55 #define VP_MASK_VAL(val, high_bit, low_bit) \ argument
56 (((val) << (low_bit)) & VP_MASK(high_bit, low_bit))
Dregs-mixer.h66 #define MXR_MASK(high_bit, low_bit) \ argument
67 (((2 << ((high_bit) - (low_bit))) - 1) << (low_bit))
69 #define MXR_MASK_VAL(val, high_bit, low_bit) \ argument
70 (((val) << (low_bit)) & MXR_MASK(high_bit, low_bit))
/drivers/pinctrl/mediatek/
Dpinctrl-mtk-common.h81 unsigned char low_bit; member
90 .low_bit = _low, \
Dpinctrl-mtk-common.c212 bits = drv_grp->high_bit - drv_grp->low_bit + 1; in mtk_pconf_set_driving()
214 shift = pin_drv->bit + drv_grp->low_bit; in mtk_pconf_set_driving()