1 /* SPDX-License-Identifier: GPL-2.0+ */
3 * Copyright 2013 Broadcom Corporation.
9 * These are generic bitfield operations which allow manipulation of variable
10 * width bitfields within a word. One use of this would be to use data tables
11 * to determine how to reprogram fields within R/W hardware registers.
16 * +--------+----+---+--+-----+----------+
18 * +--------+----+---+--+-----+----------+
21 * +--------+----+---+--+-----+----------+
23 * +--------+----+---+--+-----+----------+
25 * mask = bitfield_mask(10, 5);
26 * old = bitfield_extract(old_reg_val, 10, 5);
27 * new_reg_val = bitfield_replace(old_reg_val, 10, 5, new);
31 * mask = bitfield_mask(10, 5);
32 * old = bitfield_extract_by_mask(old_reg_val, mask);
33 * new_reg_val = bitfield_replace_by_mask(old_reg_val, mask, new);
35 * The numbers 10 and 5 could for example come from data
36 * tables which describe all bitfields in all registers.
39 #include <linux/types.h>
41 /* Produces a mask of set bits covering a range of a uint value */
42 static inline uint bitfield_mask(uint shift, uint width)
44 return ((1 << width) - 1) << shift;
47 /* Extract the value of a bitfield found within a given register value */
48 static inline uint bitfield_extract(uint reg_val, uint shift, uint width)
50 return (reg_val & bitfield_mask(shift, width)) >> shift;
54 * Replace the value of a bitfield found within a given register value
55 * Returns the newly modified uint value with the replaced field.
57 static inline uint bitfield_replace(uint reg_val, uint shift, uint width,
60 uint mask = bitfield_mask(shift, width);
62 return (reg_val & ~mask) | ((bitfield_val << shift) & mask);
65 /* Produces a shift of the bitfield given a mask */
66 static inline uint bitfield_shift(uint mask)
68 return mask ? ffs(mask) - 1 : 0;
71 /* Extract the value of a bitfield found within a given register value */
72 static inline uint bitfield_extract_by_mask(uint reg_val, uint mask)
74 uint shift = bitfield_shift(mask);
76 return (reg_val & mask) >> shift;
80 * Replace the value of a bitfield found within a given register value
81 * Returns the newly modified uint value with the replaced field.
83 static inline uint bitfield_replace_by_mask(uint reg_val, uint mask,
86 uint shift = bitfield_shift(mask);
88 return (reg_val & ~mask) | ((bitfield_val << shift) & mask);