summaryrefslogtreecommitdiffstats
path: root/meta-isg/common/recipes-extended/qat/qat16.inc
diff options
context:
space:
mode:
Diffstat (limited to 'meta-isg/common/recipes-extended/qat/qat16.inc')
-rw-r--r--meta-isg/common/recipes-extended/qat/qat16.inc114
1 files changed, 114 insertions, 0 deletions
diff --git a/meta-isg/common/recipes-extended/qat/qat16.inc b/meta-isg/common/recipes-extended/qat/qat16.inc
new file mode 100644
index 00000000..e602dbd8
--- /dev/null
+++ b/meta-isg/common/recipes-extended/qat/qat16.inc
@@ -0,0 +1,114 @@
1DESCRIPTION = "Intel(r) QuickAssist Technology API"
2HOMEPAGE = "https://01.org/packet-processing/intel%C2%AE-quickassist-technology-drivers-and-patches"
3
4#Dual BSD and GPLv2 License
5LICENSE = "BSD & GPLv2"
6LIC_FILES_CHKSUM = "\
7 file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6 \
8 file://${COMMON_LICENSE_DIR}/BSD;md5=3775480a712fc46a69647678acb234cb \
9 "
10
11DEPENDS += "zlib openssl"
12PROVIDES += "virtual/qat"
13
14SRC_URI="https://01.org/sites/default/files/page/qatmux.l.${PV}.tgz;name=qat \
15 file://qat16_2.3.0-34-qat-fix-for-cross-compilation-issue.patch \
16 file://qat16_2.3.0-34-qat-remove-local-path-from-makefile.patch \
17 "
18
19COMPATIBLE_MACHINE = "crystalforest"
20
21S = "${WORKDIR}/${ICP_DRIVER_TYPE}"
22ICP_TOOLS = "accelcomp"
23SAMPLE_CODE_DIR = "${S}/quickassist/lookaside/access_layer/src/sample_code"
24
25export ICP_DRIVER_TYPE = "QAT1.6"
26export ICP_FIRMWARE_DIR="dh895xcc"
27export ICP_ROOT = "${S}"
28export ICP_ENV_DIR = "${S}/quickassist/build_system/build_files/env_files"
29export ICP_BUILDSYSTEM_PATH = "${S}/quickassist/build_system"
30export ICP_TOOLS_TARGET = "${ICP_TOOLS}"
31export FUNC_PATH = "${ICP_ROOT}/quickassist/lookaside/access_layer/src/sample_code/functional"
32export KERNEL_SOURCE_ROOT = "${STAGING_KERNEL_DIR}"
33export ICP_BUILD_OUTPUT = "${D}"
34export DEST_LIBDIR = "${libdir}"
35export DEST_BINDIR = "${bindir}"
36export QAT_KERNEL_VER = "${KERNEL_VERSION}"
37export SAMPLE_BUILD_OUTPUT = "${D}"
38export MODULE_DIR = "${base_libdir}/modules/${KERNEL_VERSION}/kernel/drivers"
39
40inherit module
41inherit update-rc.d
42INITSCRIPT_NAME = "qat_service"
43
44PARALLEL_MAKE = ""
45
46#To get around the double slashes in paths in QAT makefiles
47PACKAGE_DEBUG_SPLIT_STYLE = "debug-without-src"
48
49do_unpack2() {
50 cd ${S}/
51 tar xzvf ${ICP_DRIVER_TYPE}.L.${PV}.tar.gz
52}
53
54addtask unpack2 after do_unpack before do_patch
55
56do_compile () {
57 export LD="${LD} --hash-style=gnu"
58 export MACHINE="${TARGET_ARCH}"
59 cd ${S}/quickassist
60 oe_runmake EXTRA_OEMAKE="'CFLAGS=${CFLAGS} -fPIC'"
61
62 cd ${SAMPLE_CODE_DIR}
63 touch ${SAMPLE_CODE_DIR}/performance/compression/calgary
64 touch ${SAMPLE_CODE_DIR}/performance/compression/canterbury
65
66 #build the whole sample code: fips, functional, performance
67 oe_runmake 'all'
68 oe_runmake 'fips_user_code'
69}
70
71do_install() {
72 cd ${S}/quickassist
73 oe_runmake install
74
75 cd ${SAMPLE_CODE_DIR}
76 oe_runmake install
77
78 install -d ${D}/etc/udev/rules.d \
79 ${D}${includedir} \
80 ${D}${includedir}/dc \
81 ${D}${includedir}/lac \
82 ${D}${sysconfdir}/dh895xcc \
83 ${D}${base_libdir}/firmware
84
85 echo 'KERNEL=="icp_adf_ctl" MODE="0600"' > ${D}/etc/udev/rules.d/00-dh895xcc_qa.rules
86 echo 'KERNEL=="icp_dev[0-9]*" MODE="0600"' >> ${D}/etc/udev/rules.d/00-dh895xcc_qa.rules
87 echo 'KERNEL=="icp_dev_mem?" MODE="0600"' >> ${D}/etc/udev/rules.d/00-dh895xcc_qa.rules
88
89 install -m 640 ${S}/quickassist/include/*.h ${D}${includedir}
90 install -m 640 ${S}/quickassist/include/dc/*.h ${D}${includedir}/dc/
91 install -m 640 ${S}/quickassist/include/lac/*.h ${D}${includedir}/lac/
92 install -m 640 ${S}/quickassist/lookaside/access_layer/include/*.h ${D}${includedir}
93
94 install -m 0755 ${SAMPLE_CODE_DIR}/performance/compression/calgary ${D}${base_libdir}/firmware
95 install -m 0755 ${SAMPLE_CODE_DIR}/performance/compression/canterbury ${D}${base_libdir}/firmware
96
97 install -m 660 ${S}/quickassist/config/dh* ${D}${sysconfdir}/dh895xcc
98}
99
100PACKAGES += "${PN}-app"
101
102FILES_${PN}-dev = "${includedir}"
103
104FILES_${PN} += "\
105 ${base_libdir}/firmware/ \
106 ${sysconfdir}/ \
107 ${sysconfdir}/udev/rules.d/ \
108 ${sysconfdir}/init.d/ \
109 ${libdir}/ \
110 "
111
112FILES_${PN}-dbg += "${sysconfdir}/init.d/.debug"
113
114FILES_${PN}-app += "${bindir}/*"