blob: 37309cdb7584094de33d29f87ab805e8b9ee0c7d [file] [log] [blame]
David Howellsb920de12008-02-08 04:19:31 -08001/* MN10300 Non-trivial bit operations
2 *
3 * Copyright (C) 2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public Licence
8 * as published by the Free Software Foundation; either version
9 * 2 of the Licence, or (at your option) any later version.
10 */
11#include <linux/module.h>
12#include <asm/bitops.h>
David Howellsb920de12008-02-08 04:19:31 -080013
14/*
15 * try flipping a bit using BSET and BCLR
16 */
Justin Chene4acfca2010-10-27 17:28:34 +010017void change_bit(unsigned long nr, volatile void *addr)
David Howellsb920de12008-02-08 04:19:31 -080018{
19 if (test_bit(nr, addr))
20 goto try_clear_bit;
21
22try_set_bit:
23 if (!test_and_set_bit(nr, addr))
24 return;
25
26try_clear_bit:
27 if (test_and_clear_bit(nr, addr))
28 return;
29
30 goto try_set_bit;
31}
32
33/*
34 * try flipping a bit using BSET and BCLR and returning the old value
35 */
Justin Chene4acfca2010-10-27 17:28:34 +010036int test_and_change_bit(unsigned long nr, volatile void *addr)
David Howellsb920de12008-02-08 04:19:31 -080037{
38 if (test_bit(nr, addr))
39 goto try_clear_bit;
40
41try_set_bit:
42 if (!test_and_set_bit(nr, addr))
43 return 0;
44
45try_clear_bit:
46 if (test_and_clear_bit(nr, addr))
47 return 1;
48
49 goto try_set_bit;
50}