Imported Upstream version 3.2.2
[debian/gnuradio] / usrp2 / firmware / lib / memset_wa.c
1 /* -*- c++ -*- */
2 /*
3  * Copyright 2007,2008 Free Software Foundation, Inc.
4  *
5  * This program is free software: you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation, either version 3 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
17  */
18
19 #include "memset_wa.h"
20 #include <stdint.h>
21 #include <stdlib.h>
22
23 /*
24  * For setting non-byte-adressable memory, such as
25  * the buffers.  dst and nbytes must all satisfy (x % 4 == 0)
26  */
27 void *
28 memset_wa(void *dst, int c, size_t nbytes)
29 {
30   if (((intptr_t) dst & 0x3)
31       || (nbytes & 0x3))
32     exit(1);                    /* die! */
33
34   int *dp = (int *) dst;
35
36   c &= 0xff;
37   int v = (c << 24) | (c << 16) | (c << 8) | c;
38   unsigned  nw = nbytes/4;
39
40   unsigned i;
41   for (i = 0; i < nw; i++)
42     dp[i] = v;
43
44   return dst;
45 }