2014-11-28 23:44:41 +08:00
|
|
|
# This software is part of libcsdr, a set of simple DSP routines for
|
2014-11-29 08:20:44 +08:00
|
|
|
# Software Defined Radio.
|
2014-11-28 23:44:41 +08:00
|
|
|
#
|
|
|
|
# Copyright (c) 2014, Andras Retzler <randras@sdr.hu>
|
|
|
|
# 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 ANDRAS RETZLER 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.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LIBSOURCES = fft_fftw.c libcsdr_wrapper.c
|
|
|
|
#SOURCES = csdr.c $(LIBSOURCES)
|
|
|
|
cpufeature = $(if $(findstring $(1),$(shell cat /proc/cpuinfo)),$(2))
|
|
|
|
PARAMS_SSE = $(call cpufeature,sse,-msse) $(call cpufeature,sse2,-msse2) $(call cpufeature,sse3,-msse3) $(call cpufeature,sse4,-msse4) $(call cpufeature,sse4_1,-msse4.1) $(call cpufeature,sse4_2,-msse4.2) -mfpmath=sse
|
2015-09-30 21:52:43 +08:00
|
|
|
PARAMS_NEON = -mfloat-abi=hard -march=armv7-a -mtune=cortex-a8 -mfpu=neon -mvectorize-with-neon-quad -funsafe-math-optimizations -Wformat=0 -DNEON_OPTS
|
2014-12-22 07:04:40 +08:00
|
|
|
#tnx Jan Szumiec for the Raspberry Pi support
|
|
|
|
PARAMS_RASPI = -mfloat-abi=hard -mcpu=arm1176jzf-s -mfpu=vfp -funsafe-math-optimizations -Wformat=0
|
|
|
|
PARAMS_ARM = $(if $(call cpufeature,BCM2708,dummy-text),$(PARAMS_RASPI),$(PARAMS_NEON))
|
|
|
|
PARAMS_SIMD = $(if $(call cpufeature,sse,dummy-text),$(PARAMS_SSE),$(PARAMS_ARM))
|
2014-11-28 23:44:41 +08:00
|
|
|
PARAMS_LOOPVECT = -O3 -ffast-math -fdump-tree-vect-details -dumpbase dumpvect
|
2015-08-17 05:40:42 +08:00
|
|
|
PARAMS_LIBS = -g -lm -lrt -lfftw3f -DUSE_FFTW -DLIBCSDR_GPL -DUSE_IMA_ADPCM
|
2014-11-28 23:44:41 +08:00
|
|
|
PARAMS_SO = -fpic
|
|
|
|
PARAMS_MISC = -Wno-unused-result
|
2015-08-17 05:40:42 +08:00
|
|
|
FFTW_PACKAGE = fftw-3.3.3
|
2014-11-28 23:44:41 +08:00
|
|
|
|
2015-11-04 17:31:54 +08:00
|
|
|
.PHONY: clean-vect clean
|
|
|
|
all: csdr ddcd
|
2015-11-04 20:31:47 +08:00
|
|
|
libcsdr.so: fft_fftw.c fft_rpi.c libcsdr_wrapper.c libcsdr.c libcsdr_gpl.c *.h
|
2014-11-28 23:44:41 +08:00
|
|
|
@echo NOTE: you may have to manually edit Makefile to optimize for your CPU \(especially if you compile on ARM, please edit PARAMS_NEON\).
|
|
|
|
@echo Auto-detected optimization parameters: $(PARAMS_SIMD)
|
|
|
|
@echo
|
2015-11-04 17:31:54 +08:00
|
|
|
rm -f dumpvect*.vect
|
2015-09-30 21:52:43 +08:00
|
|
|
gcc -std=gnu99 $(PARAMS_LOOPVECT) $(PARAMS_SIMD) $(LIBSOURCES) $(PARAMS_LIBS) $(PARAMS_MISC) -fpic -shared -o libcsdr.so
|
2014-11-30 17:37:16 +08:00
|
|
|
-./parsevect dumpvect*.vect
|
2015-11-04 17:31:54 +08:00
|
|
|
csdr: csdr.c libcsdr.so
|
2015-09-30 21:52:43 +08:00
|
|
|
gcc -std=gnu99 $(PARAMS_LOOPVECT) $(PARAMS_SIMD) csdr.c $(PARAMS_LIBS) -L. -lcsdr $(PARAMS_MISC) -o csdr
|
2015-11-04 20:31:47 +08:00
|
|
|
ddcd: ddcd.cpp libcsdr.so ddcd.h
|
|
|
|
g++ $(PARAMS_LOOPVECT) $(PARAMS_SIMD) ddcd.cpp $(PARAMS_LIBS) -L. -lcsdr $(PARAMS_MISC) -o ddcd
|
2014-11-28 23:44:41 +08:00
|
|
|
arm-cross: clean-vect
|
|
|
|
#note: this doesn't work since having added FFTW
|
2015-09-30 21:52:43 +08:00
|
|
|
arm-linux-gnueabihf-gcc -std=gnu99 -O3 -fshort-double -ffast-math -dumpbase dumpvect-arm -fdump-tree-vect-details -mfloat-abi=softfp -march=armv7-a -mtune=cortex-a9 -mfpu=neon -mvectorize-with-neon-quad -Wno-unused-result -Wformat=0 $(SOURCES) -lm -o ./csdr
|
2014-11-28 23:44:41 +08:00
|
|
|
clean-vect:
|
|
|
|
rm -f dumpvect*.vect
|
|
|
|
clean: clean-vect
|
2015-11-04 17:31:54 +08:00
|
|
|
rm -f libcsdr.so csdr ddcd
|
2014-11-28 23:44:41 +08:00
|
|
|
install:
|
|
|
|
install -m 0755 libcsdr.so /usr/lib
|
|
|
|
install -m 0755 csdr /usr/bin
|
|
|
|
install -m 0755 csdr-fm /usr/bin
|
|
|
|
ldconfig
|
|
|
|
uninstall:
|
|
|
|
rm /usr/lib/libcsdr.so /usr/bin/csdr /usr/bin/csdr-fm
|
|
|
|
ldconfig
|
2015-09-30 21:52:43 +08:00
|
|
|
disasm:
|
|
|
|
objdump -S libcsdr.so > libcsdr.disasm
|
2015-08-17 05:40:42 +08:00
|
|
|
emcc-clean:
|
|
|
|
-rm sdr.js/sdr.js
|
|
|
|
-rm sdr.js/sdrjs-compiled.js
|
|
|
|
-rm -rf sdr.js/$(FFTW_PACKAGE)
|
|
|
|
emcc-get-deps:
|
|
|
|
echo "getting and compiling fftw3 with emscripten..."
|
|
|
|
cd sdr.js; \
|
|
|
|
wget http://fftw.org/$(FFTW_PACKAGE).tar.gz; \
|
|
|
|
tar -xvf $(FFTW_PACKAGE).tar.gz; \
|
|
|
|
rm $(FFTW_PACKAGE).tar.gz; \
|
|
|
|
cd $(FFTW_PACKAGE); \
|
|
|
|
emconfigure ./configure --enable-float --disable-fortran --prefix=`pwd`/emscripten-install --libdir=`pwd`/emscripten-lib; \
|
|
|
|
emmake make; \
|
|
|
|
emmake make install
|
|
|
|
emcc:
|
|
|
|
emcc -O3 -Isdr.js/$(FFTW_PACKAGE)/api -Lsdr.js/$(FFTW_PACKAGE)/emscripten-lib -o sdr.js/sdrjs-compiled.js fft_fftw.c libcsdr_wrapper.c -DLIBCSDR_GPL -DUSE_IMA_ADPCM -DUSE_FFTW -lfftw3f -s EXPORTED_FUNCTIONS="`python sdr.js/exported_functions.py`"
|
|
|
|
cat sdr.js/sdrjs-header.js sdr.js/sdrjs-compiled.js sdr.js/sdrjs-footer.js > sdr.js/sdr.js
|
|
|
|
emcc-beautify:
|
|
|
|
bash -c 'type js-beautify >/dev/null 2>&1; if [ $$? -eq 0 ]; then js-beautify sdr.js/sdr.js >sdr.js/sdr.js.beautiful; mv sdr.js/sdr.js.beautiful sdr.js/sdr.js; fi'
|