| H A D | clk_meson.h | 28 u8 shift; member 33 #define SETPMASK(width, shift) GENMASK(shift + width - 1, shift) argument 34 #define CLRPMASK(width, shift) (~SETPMASK(width, shift)) argument 36 #define PARM_GET(width, shift, reg) \ argument 37 (((reg) & SETPMASK(width, shift)) >> (shift)) 38 #define PARM_SET(width, shift, reg, val) \ argument 39 (((reg) & CLRPMASK(width, shift)) | ((val) << (shift)))
|