RK3368 GPU version Rogue M 1.28
[firefly-linux-kernel-4.4.55.git] / drivers / gpu / rogue_m / build / linux / config / kernel_version.mk
1 ########################################################################### ###
2 #@Copyright     Copyright (c) Imagination Technologies Ltd. All Rights Reserved
3 #@License       Dual MIT/GPLv2
4
5 # The contents of this file are subject to the MIT license as set out below.
6
7 # Permission is hereby granted, free of charge, to any person obtaining a copy
8 # of this software and associated documentation files (the "Software"), to deal
9 # in the Software without restriction, including without limitation the rights
10 # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
11 # copies of the Software, and to permit persons to whom the Software is
12 # furnished to do so, subject to the following conditions:
13
14 # The above copyright notice and this permission notice shall be included in
15 # all copies or substantial portions of the Software.
16
17 # Alternatively, the contents of this file may be used under the terms of
18 # the GNU General Public License Version 2 ("GPL") in which case the provisions
19 # of GPL are applicable instead of those above.
20
21 # If you wish to allow use of your version of this file only under the terms of
22 # GPL, and not to allow others to use your version of this file under the terms
23 # of the MIT license, indicate your decision by deleting the provisions above
24 # and replace them with the notice and other provisions required by GPL as set
25 # out in the file called "GPL-COPYING" included in this distribution. If you do
26 # not delete the provisions above, a recipient may use your version of this file
27 # under the terms of either the MIT license or GPL.
28
29 # This License is also included in this distribution in the file called
30 # "MIT-COPYING".
31
32 # EXCEPT AS OTHERWISE STATED IN A NEGOTIATED AGREEMENT: (A) THE SOFTWARE IS
33 # PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING
34 # BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
35 # PURPOSE AND NONINFRINGEMENT; AND (B) IN NO EVENT SHALL THE AUTHORS OR
36 # COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
37 # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
38 # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
39 ### ###########################################################################
40
41 $(if $(KERNELDIR),,$(error KERNELDIR must be set to obtain a version))
42
43 override KERNEL_VERSION := \
44  $(shell grep "^VERSION = " $(KERNELDIR)/Makefile | cut -f3 -d' ')
45 override KERNEL_PATCHLEVEL := \
46  $(shell grep "^PATCHLEVEL = " $(KERNELDIR)/Makefile | cut -f3 -d' ')
47 override KERNEL_SUBLEVEL := \
48  $(shell grep "^SUBLEVEL = " $(KERNELDIR)/Makefile | cut -f3 -d' ')
49 override KERNEL_EXTRAVERSION := \
50  $(shell grep "^EXTRAVERSION = " $(KERNELDIR)/Makefile | cut -f3 -d' ')
51
52 # Break the kernel version up into a space separated list
53 kernel_version_as_list := $(KERNEL_VERSION) \
54                                 $(KERNEL_PATCHLEVEL) \
55                                 $(KERNEL_SUBLEVEL) \
56                                 $(patsubst .%,%,$(KERNEL_EXTRAVERSION))
57
58 # The base ID doesn't have to be accurate; we only use it for
59 # feature checks which will not care about extraversion bits
60 #
61 override KERNEL_BASE_ID := \
62  $(KERNEL_VERSION).$(KERNEL_PATCHLEVEL).$(KERNEL_SUBLEVEL)
63
64 # Try to get the kernel ID from the kernel.release file.
65
66 KERNEL_ID ?= \
67  $(shell cat $(KERNELDIR)/include/config/kernel.release 2>/dev/null)
68
69 # If the kernel ID isn't set yet, try to set it from the UTS_RELEASE
70 # macro.
71 #
72 ifeq ($(strip $(KERNEL_ID)),)
73 KERNEL_ID := \
74  $(shell grep -h '\#define UTS_RELEASE' \
75         $(KERNELDIR)/include/linux/* | cut -f3 -d' ' | sed s/\"//g)
76 endif
77
78 ifeq ($(strip $(KERNEL_ID)),)
79 KERNEL_ID := \
80  $(KERNEL_VERSION).$(KERNEL_PATCHLEVEL).$(KERNEL_SUBLEVEL)$(KERNEL_EXTRAVERSION)
81 endif
82
83 # Return 1 if the kernel version is at least the value passed to the
84 # function, else return nothing.
85 # Examples
86 #       $(call kernel-version-at-least,2,6,35)
87 #       $(call kernel-version-at-least,2,6,35,7)
88 #
89 define kernel-version-at-least
90 $(shell set -- $(kernel_version_as_list) 0 0 0 0; \
91         Y=true; \
92         for D in $1 $2 $3 $4; \
93         do \
94                 [ $$1 ] || break; \
95                 [ $$1 -eq $$D ] && { shift; continue; };\
96                 [ $$1 -lt $$D ] && Y=; \
97                 break; \
98         done; \
99         echo $$Y)
100 endef