diff options
| author | Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com> | 2016-10-18 23:22:32 +0800 |
|---|---|---|
| committer | Saul Wold <sgw@linux.intel.com> | 2016-10-18 12:02:20 -0700 |
| commit | b7747142dc46c14ced422d992d38c612a54b765c (patch) | |
| tree | 7a3e524e33aca40c095cff7751b5b9ee03718b38 /common/recipes-extended | |
| parent | 485f82ab71604173b698b55a8f4495b3741ce538 (diff) | |
| download | meta-intel-b7747142dc46c14ced422d992d38c612a54b765c.tar.gz | |
zlib-qat: move zlib-qat from meta-isg to common
Since there is plan to merge meta-isg layer to common meta-intel
layer. So relocate zlib-qat v0.4.7-002 recipe from meta-isg layer
to meta-intel/common layer.
Signed-off-by: Rahul Kumar Gupta <rahul.kumarxx.gupta@intel.com>
Signed-off-by: Saul Wold <sgw@linux.intel.com>
Diffstat (limited to 'common/recipes-extended')
4 files changed, 276 insertions, 0 deletions
diff --git a/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-qat_mem-build-qat_mem-ko-against-yocto-kernel-src.patch b/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-qat_mem-build-qat_mem-ko-against-yocto-kernel-src.patch new file mode 100644 index 00000000..9e774db2 --- /dev/null +++ b/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-qat_mem-build-qat_mem-ko-against-yocto-kernel-src.patch | |||
| @@ -0,0 +1,51 @@ | |||
| 1 | From aa65d69632142d24ec44ed4c2d66371e1a1be7b4 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Anuj Mittal <anujx.mittal@intel.com> | ||
| 3 | Date: Thu, 18 Jun 2015 11:56:08 +0800 | ||
| 4 | Subject: [PATCH] qat_mem: build qat_mem ko against yocto kernel src | ||
| 5 | |||
| 6 | Upstream-Status: Inappropriate [Configuration] | ||
| 7 | |||
| 8 | This tweaks the kernel source and build path in the makefile | ||
| 9 | to make sure the module is built against the right source. | ||
| 10 | |||
| 11 | Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> | ||
| 12 | --- | ||
| 13 | contrib/qat/qat_mem/Makefile | 13 +++++-------- | ||
| 14 | 1 file changed, 5 insertions(+), 8 deletions(-) | ||
| 15 | |||
| 16 | diff --git a/contrib/qat/qat_mem/Makefile b/contrib/qat/qat_mem/Makefile | ||
| 17 | index ddf5b59..ad6d4a4 100644 | ||
| 18 | --- a/contrib/qat/qat_mem/Makefile | ||
| 19 | +++ b/contrib/qat/qat_mem/Makefile | ||
| 20 | @@ -61,16 +61,10 @@ | ||
| 21 | ######################################################################### | ||
| 22 | |||
| 23 | MODULENAME := qat_mem | ||
| 24 | -KDIR := /lib/modules/$(shell uname -r)/build | ||
| 25 | +KDIR := $(KERNEL_SOURCE_ROOT) | ||
| 26 | PWD := $(shell pwd) | ||
| 27 | |||
| 28 | -ifeq ($(shell uname -r|grep -c grsec-WR), 1) | ||
| 29 | -AUTO_CONF=/lib/modules/$(shell uname -r)/build/include/generated/autoconf.h | ||
| 30 | -else | ||
| 31 | -AUTO_CONF=/usr/src/kernels/$(shell uname -r)/include/linux/autoconf.h | ||
| 32 | -endif | ||
| 33 | - | ||
| 34 | -CC := gcc -Wall -imacros $(AUTO_CONF) | ||
| 35 | +CC := ${CC} -Wall -imacros $(KERNEL_BUILDDIR)/include/generated/autoconf.h | ||
| 36 | |||
| 37 | ifeq ($(KERNELRELEASE),) | ||
| 38 | all: $(MODULENAME)_test | ||
| 39 | @@ -80,6 +74,9 @@ else | ||
| 40 | obj-m := $(MODULENAME).o | ||
| 41 | endif | ||
| 42 | |||
| 43 | +modules_install: | ||
| 44 | + $(MAKE) -C $(KDIR) M=$(PWD) modules_install | ||
| 45 | + | ||
| 46 | $(MODULENAME)_test: $(MODULENAME)_test.c | ||
| 47 | $(CC) -g -o $(MODULENAME)_test $(MODULENAME)_test.c | ||
| 48 | |||
| 49 | -- | ||
| 50 | 1.7.9.5 | ||
| 51 | |||
diff --git a/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-zlib-Remove-rpaths-from-makefile.patch b/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-zlib-Remove-rpaths-from-makefile.patch new file mode 100644 index 00000000..c3605112 --- /dev/null +++ b/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-zlib-Remove-rpaths-from-makefile.patch | |||
| @@ -0,0 +1,52 @@ | |||
| 1 | From aad2675c7bb635d8b7be47fa89a3ee87ba19d2e8 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Anuj Mittal <anujx.mittal@intel.com> | ||
| 3 | Date: Thu, 18 Jun 2015 11:46:17 +0800 | ||
| 4 | Subject: [PATCH] zlib: Remove rpaths from makefile | ||
| 5 | |||
| 6 | Upstream-Status: Inappropriate [configuration] | ||
| 7 | |||
| 8 | This removes references to RPATHS that are no longer | ||
| 9 | necesary when building using bitbake. | ||
| 10 | |||
| 11 | Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> | ||
| 12 | --- | ||
| 13 | Makefile.in | 4 ++-- | ||
| 14 | contrib/qat/qat_zlib_test/Makefile | 3 --- | ||
| 15 | 2 files changed, 2 insertions(+), 5 deletions(-) | ||
| 16 | |||
| 17 | diff --git a/Makefile.in b/Makefile.in | ||
| 18 | index 94d8a80..cba5291 100644 | ||
| 19 | --- a/Makefile.in | ||
| 20 | +++ b/Makefile.in | ||
| 21 | @@ -59,12 +59,12 @@ ICP_LAC_API_DIR=$(ICP_API_DIR)/lac/ | ||
| 22 | ICP_DC_API_DIR=$(ICP_API_DIR)/dc/ | ||
| 23 | CFLAGS+=-D_GNU_SOURCE -I$(ICP_API_DIR) -I$(ICP_DC_API_DIR) -I$(ICP_LAC_API_DIR) -I$(ICP_SAL_API_DIR) | ||
| 24 | SFLAGS+=-D_GNU_SOURCE -I$(ICP_API_DIR) -I$(ICP_DC_API_DIR) -I$(ICP_LAC_API_DIR) -I$(ICP_SAL_API_DIR) | ||
| 25 | -ADDITIONAL_LDFLAGS+=-Wl,-rpath,$(ZLIB_ROOT) -lz | ||
| 26 | +#ADDITIONAL_LDFLAGS+=-Wl,-rpath,$(ZLIB_ROOT) -lz | ||
| 27 | SHARED_APP_FLAGS=-Wl,-rpath,$(ZLIB_ROOT) -L$(ZLIB_ROOT) -lz | ||
| 28 | |||
| 29 | ifdef ICP_BUILD_OUTPUT | ||
| 30 | TEST_LDFLAGS+=-L$(ICP_BUILD_OUTPUT) | ||
| 31 | - ADDITIONAL_LDFLAGS+=-Wl,-rpath,$(ICP_BUILD_OUTPUT) -L$(ICP_BUILD_OUTPUT) | ||
| 32 | +# ADDITIONAL_LDFLAGS+=-Wl,-rpath,$(ICP_BUILD_OUTPUT) -L$(ICP_BUILD_OUTPUT) | ||
| 33 | endif | ||
| 34 | |||
| 35 | ifdef ZLIB_DH895XCC | ||
| 36 | diff --git a/contrib/qat/qat_zlib_test/Makefile b/contrib/qat/qat_zlib_test/Makefile | ||
| 37 | index 8a29a92..ca31dd2 100644 | ||
| 38 | --- a/contrib/qat/qat_zlib_test/Makefile | ||
| 39 | +++ b/contrib/qat/qat_zlib_test/Makefile | ||
| 40 | @@ -84,9 +84,6 @@ OBJS = $(SRCS:%.c=%.o) | ||
| 41 | COVERAGE_OBJS = | ||
| 42 | EXE= | ||
| 43 | LIBQAT= | ||
| 44 | -ifdef ICP_BUILD_OUTPUT | ||
| 45 | - LIBQAT+= -Wl,-rpath,$(ICP_BUILD_OUTPUT) -L$(ICP_BUILD_OUTPUT) | ||
| 46 | -endif | ||
| 47 | |||
| 48 | DRIVER=icp_qa_al | ||
| 49 | ifdef WITH_CPA_MUX | ||
| 50 | -- | ||
| 51 | 1.7.9.5 | ||
| 52 | |||
diff --git a/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-zlib-qat-add-a-install-target-to-makefile.patch b/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-zlib-qat-add-a-install-target-to-makefile.patch new file mode 100644 index 00000000..c7aec55a --- /dev/null +++ b/common/recipes-extended/zlib-qat/zlib-qat/zlib-qat-0.4.7-002-zlib-qat-add-a-install-target-to-makefile.patch | |||
| @@ -0,0 +1,46 @@ | |||
| 1 | From d78121d790c4a248bc47d1c662791fe57ac4af38 Mon Sep 17 00:00:00 2001 | ||
| 2 | From: Anuj Mittal <anujx.mittal@intel.com> | ||
| 3 | Date: Thu, 18 Jun 2015 11:53:23 +0800 | ||
| 4 | Subject: [PATCH] zlib-qat: add a install target to makefile | ||
| 5 | |||
| 6 | Upstream-Status: Inappropriate [Configuration] | ||
| 7 | |||
| 8 | This adds an install target to qat_zlib_test and qat_mem makefiles | ||
| 9 | to facilitate the installation of test binaries to {D}. | ||
| 10 | |||
| 11 | Signed-off-by: Anuj Mittal <anujx.mittal@intel.com> | ||
| 12 | --- | ||
| 13 | contrib/qat/qat_mem/Makefile | 3 +++ | ||
| 14 | contrib/qat/qat_zlib_test/Makefile | 3 +++ | ||
| 15 | 2 files changed, 6 insertions(+) | ||
| 16 | |||
| 17 | diff --git a/contrib/qat/qat_mem/Makefile b/contrib/qat/qat_mem/Makefile | ||
| 18 | index ad6d4a4..e4d77b6 100644 | ||
| 19 | --- a/contrib/qat/qat_mem/Makefile | ||
| 20 | +++ b/contrib/qat/qat_mem/Makefile | ||
| 21 | @@ -74,6 +74,9 @@ else | ||
| 22 | obj-m := $(MODULENAME).o | ||
| 23 | endif | ||
| 24 | |||
| 25 | +install: modules_install | ||
| 26 | + cp qat_mem_test $(INSTALL_MOD_PATH)$(bindir) | ||
| 27 | + | ||
| 28 | modules_install: | ||
| 29 | $(MAKE) -C $(KDIR) M=$(PWD) modules_install | ||
| 30 | |||
| 31 | diff --git a/contrib/qat/qat_zlib_test/Makefile b/contrib/qat/qat_zlib_test/Makefile | ||
| 32 | index ca31dd2..7da5ddd 100644 | ||
| 33 | --- a/contrib/qat/qat_zlib_test/Makefile | ||
| 34 | +++ b/contrib/qat/qat_zlib_test/Makefile | ||
| 35 | @@ -112,5 +112,8 @@ comptestappsh$(EXE): $(OBJS) Makefile | ||
| 36 | $(CC) -o comptestappsh $(OBJS) $(COVERAGE) \ | ||
| 37 | $(SHAREDLIBQAT) | ||
| 38 | |||
| 39 | +install: | ||
| 40 | + cp comptestapp $(DESTDIR)$(bindir) | ||
| 41 | + | ||
| 42 | clean: | ||
| 43 | rm -f $(OBJS) $(COVERAGE_OBJS) comptestapp comptestappsh | ||
| 44 | -- | ||
| 45 | 1.7.9.5 | ||
| 46 | |||
diff --git a/common/recipes-extended/zlib-qat/zlib-qat_0.4.7-002.bb b/common/recipes-extended/zlib-qat/zlib-qat_0.4.7-002.bb new file mode 100644 index 00000000..825fbfa7 --- /dev/null +++ b/common/recipes-extended/zlib-qat/zlib-qat_0.4.7-002.bb | |||
| @@ -0,0 +1,127 @@ | |||
| 1 | SUMMARY = "Zlib QAT_MEM Memory Management Module for Intel Quick Assist \ | ||
| 2 | Technology" | ||
| 3 | |||
| 4 | DESCRIPTION = "This software acelerates the data compression algorithm \ | ||
| 5 | in the zlib software library via the Intel QuickAssist Technology \ | ||
| 6 | implemented on Intel Communications Chipset 89xx and 895x Series based platforms." | ||
| 7 | |||
| 8 | HOMEPAGE = "http://zlib.net/" | ||
| 9 | SECTION = "libs" | ||
| 10 | LICENSE = "Zlib & GPLv2 & BSD" | ||
| 11 | LIC_FILES_CHKSUM = "file://${WORKDIR}/zlib-${ZLIB_VERSION}/zlib.h;beginline=4;endline=23;md5=fde612df1e5933c428b73844a0c494fd \ | ||
| 12 | file://${COMMON_LICENSE_DIR}/GPL-2.0;md5=801f80980d171dd6425610833a22dbe6 \ | ||
| 13 | file://${COMMON_LICENSE_DIR}/BSD;md5=3775480a712fc46a69647678acb234cb" | ||
| 14 | |||
| 15 | # For target side versions of openssl enable support for OCF Linux driver | ||
| 16 | # if they are available. | ||
| 17 | DEPENDS += "cryptodev-linux pkgconfig virtual/qat" | ||
| 18 | |||
| 19 | SRC_URI = "http://www.zlib.net/zlib-${ZLIB_VERSION}.tar.gz;name=zlib \ | ||
| 20 | https://01.org/sites/default/files/page/zlib_shim_0.4.7-002_withdocumentation.zip;name=zlibqat \ | ||
| 21 | file://zlib-qat-0.4.7-002-qat_mem-build-qat_mem-ko-against-yocto-kernel-src.patch \ | ||
| 22 | file://zlib-qat-0.4.7-002-zlib-qat-add-a-install-target-to-makefile.patch \ | ||
| 23 | file://zlib-qat-0.4.7-002-zlib-Remove-rpaths-from-makefile.patch \ | ||
| 24 | " | ||
| 25 | |||
| 26 | SRC_URI[zlib.md5sum] = "44d667c142d7cda120332623eab69f40" | ||
| 27 | SRC_URI[zlib.sha256sum] = "36658cb768a54c1d4dec43c3116c27ed893e88b02ecfcb44f2166f9c0b7f2a0d" | ||
| 28 | |||
| 29 | SRC_URI[zlibqat.md5sum] = "dfde8618198aa8d35ecc00d10dcc7000" | ||
| 30 | SRC_URI[zlibqat.sha256sum] = "8e5786400bbc2a879ae705c864ec63b53ae019b4f2d1c94524a97223847b6e46" | ||
| 31 | |||
| 32 | COMPATIBLE_MACHINE = "crystalforest|intel-corei7-64" | ||
| 33 | |||
| 34 | ZLIB_VERSION = "1.2.8" | ||
| 35 | ZLIB_QAT_VERSION = "0.4.7-002" | ||
| 36 | QAT_PATCH_VERSION = "l.0.4.7_002" | ||
| 37 | |||
| 38 | S = "${WORKDIR}/zlib-${ZLIB_VERSION}" | ||
| 39 | |||
| 40 | export ICP_ROOT = "${S}" | ||
| 41 | export ZLIB_ROOT = "${S}" | ||
| 42 | export KERNEL_SOURCE_ROOT = "${STAGING_KERNEL_DIR}" | ||
| 43 | export KERNEL_BUILDDIR = "${STAGING_KERNEL_BUILDDIR}" | ||
| 44 | export ICP_LAC_API_DIR = "${STAGING_DIR_TARGET}${includedir}/lac" | ||
| 45 | export ICP_DC_API_DIR = "${STAGING_DIR_TARGET}${includedir}/dc" | ||
| 46 | export ZLIB_DH895XCC = "1" | ||
| 47 | export ZLIB_MEMORY_DRIVER = "qat_mem" | ||
| 48 | export ICP_BUILD_OUTPUT = "${STAGING_DIR_TARGET}" | ||
| 49 | EXTRA_OEMAKE = "-e MAKEFLAGS=" | ||
| 50 | TARGET_CC_ARCH += "${LDFLAGS}" | ||
| 51 | |||
| 52 | inherit module | ||
| 53 | MEM_PATH = "${S}/contrib/qat" | ||
| 54 | |||
| 55 | zlibqat_do_patch() { | ||
| 56 | cd ${WORKDIR} | ||
| 57 | unzip -q -o zlib_quickassist_patch_${QAT_PATCH_VERSION}_stable.zip | ||
| 58 | cd zlib_quickassist_patch_${QAT_PATCH_VERSION}_devbranch | ||
| 59 | tar -xvzf zlib-${ZLIB_VERSION}-qat.L.${ZLIB_QAT_VERSION}.tar.gz | ||
| 60 | cp -f zlib-${ZLIB_VERSION}-qat.patch ${WORKDIR} | ||
| 61 | cd ${S} | ||
| 62 | if [ ! -d ${S}/debian/patches ]; then | ||
| 63 | mkdir -p ${S}/debian/patches | ||
| 64 | cp -f ${WORKDIR}/zlib-${ZLIB_VERSION}-qat.patch ${S}/debian/patches | ||
| 65 | echo "zlib-${ZLIB_VERSION}-qat.patch -p1" > ${S}/debian/patches/series | ||
| 66 | fi | ||
| 67 | quilt pop -a || true | ||
| 68 | if [ -d ${S}/.pc-zlibqat ]; then | ||
| 69 | rm -rf ${S}/.pc | ||
| 70 | mv ${S}/.pc-zlibqat ${S}/.pc | ||
| 71 | QUILT_PATCHES=${S}/debian/patches quilt pop -a | ||
| 72 | rm -rf ${S}/.pc | ||
| 73 | fi | ||
| 74 | QUILT_PATCHES=${S}/debian/patches quilt push -a | ||
| 75 | mv ${S}/.pc ${S}/.pc-zlibqat | ||
| 76 | } | ||
| 77 | |||
| 78 | # We invoke base do_patch at end, to incorporate any local patch | ||
| 79 | python do_patch() { | ||
| 80 | bb.build.exec_func('zlibqat_do_patch', d) | ||
| 81 | bb.build.exec_func('patch_do_patch', d) | ||
| 82 | } | ||
| 83 | |||
| 84 | do_configure() { | ||
| 85 | ./configure --prefix=${prefix} --shared --libdir=${libdir} | ||
| 86 | } | ||
| 87 | |||
| 88 | do_compile() { | ||
| 89 | unset CFLAGS CXXFLAGS | ||
| 90 | oe_runmake | ||
| 91 | |||
| 92 | cd ${S}/contrib/qat/qat_mem | ||
| 93 | oe_runmake | ||
| 94 | |||
| 95 | cd ${S}/contrib/qat/qat_zlib_test | ||
| 96 | oe_runmake | ||
| 97 | } | ||
| 98 | |||
| 99 | do_install() { | ||
| 100 | install -m 0755 -d ${D}${bindir}/ | ||
| 101 | install -m 0755 -d ${D}${sysconfdir}/zlib_conf/ | ||
| 102 | |||
| 103 | install -m 0755 zpipe ${D}${bindir} | ||
| 104 | install -m 0755 minigzip ${D}${bindir} | ||
| 105 | |||
| 106 | cd ${MEM_PATH}/qat_mem | ||
| 107 | oe_runmake INSTALL_MOD_PATH=${D} INSTALL_MOD_DIR="kernel/drivers" install | ||
| 108 | |||
| 109 | cd ${S}/contrib/qat/qat_zlib_test | ||
| 110 | oe_runmake DESTDIR=${D} install | ||
| 111 | |||
| 112 | install -m 660 ${MEM_PATH}/config/dh895xcc/multi_thread_optimized/* ${D}${sysconfdir}/zlib_conf/ | ||
| 113 | } | ||
| 114 | |||
| 115 | PACKAGES += "${PN}-app" | ||
| 116 | |||
| 117 | FILES_${PN} += " \ | ||
| 118 | ${sysconfdir}/zlib_conf/ \ | ||
| 119 | " | ||
| 120 | |||
| 121 | FILES_${PN}-app += " \ | ||
| 122 | ${bindir}/* \ | ||
| 123 | " | ||
| 124 | |||
| 125 | FILES_${PN}-dbg += " \ | ||
| 126 | ${bindir}/.debug \ | ||
| 127 | " | ||
