-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpu_fft.c
135 lines (109 loc) · 4.65 KB
/
gpu_fft.c
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/*
BCM2835 "GPU_FFT" release 3.0
Copyright (c) 2015, Andrew Holme.
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the copyright holder nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <string.h>
#include "gpu_fft.h"
#define GPU_FFT_BUSY_WAIT_LIMIT (5<<12) // ~1ms
typedef struct GPU_FFT_COMPLEX COMPLEX;
int gpu_fft_prepare(
int mb, // mailbox file_desc
int log2_N, // log2(FFT_length) = 8...22
int direction, // GPU_FFT_FWD: fft(); GPU_FFT_REV: ifft()
int jobs, // number of transforms in batch
struct GPU_FFT **fft) {
unsigned info_bytes, twid_bytes, data_bytes, code_bytes, unif_bytes, mail_bytes;
unsigned size, *uptr, vc_tw, vc_data;
int i, q, shared, unique, passes, ret;
struct GPU_FFT_BASE *base;
struct GPU_FFT_PTR ptr;
struct GPU_FFT *info;
if (gpu_fft_twiddle_size(log2_N, &shared, &unique, &passes)) return -2;
info_bytes = 4096;
data_bytes = (1+((sizeof(COMPLEX)<<log2_N)|4095));
code_bytes = gpu_fft_shader_size(log2_N);
twid_bytes = sizeof(COMPLEX)*16*(shared+GPU_FFT_QPUS*unique);
unif_bytes = sizeof(int)*GPU_FFT_QPUS*(5+jobs*2);
mail_bytes = sizeof(int)*GPU_FFT_QPUS*2;
size = info_bytes + // header
data_bytes*jobs*2 + // ping-pong data, aligned
code_bytes + // shader, aligned
twid_bytes + // twiddles
unif_bytes + // uniforms
mail_bytes; // mailbox message
ret = gpu_fft_alloc(mb, size, &ptr);
if (ret) return ret;
// Header
info = (struct GPU_FFT *) ptr.arm.vptr;
base = (struct GPU_FFT_BASE *) info;
gpu_fft_ptr_inc(&ptr, info_bytes);
// For transpose
info->x = 1<<log2_N;
info->y = jobs;
// Ping-pong buffers leave results in or out of place
info->in = info->out = ptr.arm.cptr;
info->step = data_bytes / sizeof(COMPLEX);
if (passes&1) info->out += info->step * jobs; // odd => out of place
vc_data = gpu_fft_ptr_inc(&ptr, data_bytes*jobs*2);
// Shader code
memcpy(ptr.arm.vptr, gpu_fft_shader_code(log2_N), code_bytes);
base->vc_code = gpu_fft_ptr_inc(&ptr, code_bytes);
// Twiddles
gpu_fft_twiddle_data(log2_N, direction, ptr.arm.fptr);
vc_tw = gpu_fft_ptr_inc(&ptr, twid_bytes);
uptr = ptr.arm.uptr;
// Uniforms
for (q=0; q<GPU_FFT_QPUS; q++) {
*uptr++ = vc_tw;
*uptr++ = vc_tw + sizeof(COMPLEX)*16*(shared + q*unique);
*uptr++ = q;
for (i=0; i<jobs; i++) {
*uptr++ = vc_data + data_bytes*i;
*uptr++ = vc_data + data_bytes*i + data_bytes*jobs;
}
*uptr++ = 0;
*uptr++ = (q==0); // For mailbox: IRQ enable, master only
base->vc_unifs[q] = gpu_fft_ptr_inc(&ptr, sizeof(int)*(5+jobs*2));
}
if ((jobs<<log2_N) <= GPU_FFT_BUSY_WAIT_LIMIT) {
// Direct register poking with busy wait
base->vc_msg = 0;
}
else {
// Mailbox message
for (q=0; q<GPU_FFT_QPUS; q++) {
*uptr++ = base->vc_unifs[q];
*uptr++ = base->vc_code;
}
base->vc_msg = ptr.vc;
}
*fft = info;
return 0;
}
unsigned gpu_fft_execute(struct GPU_FFT *info) {
return gpu_fft_base_exec(&info->base, GPU_FFT_QPUS);
}
void gpu_fft_release(struct GPU_FFT *info) {
gpu_fft_base_release(&info->base);
}