aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/bus/dpaa/include/dpaa_bits.h
blob: 9bc14d0c39d08a4f956984da572eed25eb4f0f95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* SPDX-License-Identifier: BSD-3-Clause
 *
 *   Copyright 2017 NXP
 *
 */

#ifndef __DPAA_BITS_H
#define __DPAA_BITS_H

/* Bitfield stuff. */
#define BITS_PER_ULONG	(sizeof(unsigned long) << 3)
#define SHIFT_PER_ULONG	(((1 << 5) == BITS_PER_ULONG) ? 5 : 6)
#define BITS_MASK(idx)	(1UL << ((idx) & (BITS_PER_ULONG - 1)))
#define BITS_IDX(idx)	((idx) >> SHIFT_PER_ULONG)

static inline void dpaa_set_bits(unsigned long mask,
				 volatile unsigned long *p)
{
	*p |= mask;
}

static inline void dpaa_set_bit(int idx, volatile unsigned long *bits)
{
	dpaa_set_bits(BITS_MASK(idx), bits + BITS_IDX(idx));
}

static inline void dpaa_clear_bits(unsigned long mask,
				   volatile unsigned long *p)
{
	*p &= ~mask;
}

static inline void dpaa_clear_bit(int idx,
				  volatile unsigned long *bits)
{
	dpaa_clear_bits(BITS_MASK(idx), bits + BITS_IDX(idx));
}

#endif /* __DPAA_BITS_H */