[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <20200312083511.28832-3-alexandru.ardelean@analog.com>
Date: Thu, 12 Mar 2020 10:35:05 +0200
From: Alexandru Ardelean <ardeleanalex@...il.com>
To: linux-iio@...r.kernel.org, linux-kernel@...r.kernel.org,
devicetree@...r.kernel.org
Cc: jic23@...nel.org, robh+dt@...nel.org, Laszlo.Nagy@...log.com,
Andrei.Grozav@...log.com, Michael.Hennerich@...log.com,
Istvan.Csomortani@...log.com, Adrian.Costina@...log.com,
Dragos.Bogdan@...log.com,
Alexandru Ardelean <alexandru.ardelean@...log.com>,
Moritz Fischer <mdf@...nel.org>
Subject: [PATCH v9 2/8] include: fpga: adi-axi-common.h: add version helper macros
The format for all ADI AXI IP cores is the same.
i.e. 'major.minor.patch'.
This patch adds the helper macros to be re-used in ADI AXI drivers.
Acked-by: Moritz Fischer <mdf@...nel.org>
Signed-off-by: Alexandru Ardelean <alexandru.ardelean@...log.com>
---
include/linux/fpga/adi-axi-common.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/linux/fpga/adi-axi-common.h b/include/linux/fpga/adi-axi-common.h
index ebd4e07ae3d8..141ac3f251e6 100644
--- a/include/linux/fpga/adi-axi-common.h
+++ b/include/linux/fpga/adi-axi-common.h
@@ -16,4 +16,8 @@
#define ADI_AXI_PCORE_VER(major, minor, patch) \
(((major) << 16) | ((minor) << 8) | (patch))
+#define ADI_AXI_PCORE_VER_MAJOR(version) (((version) >> 16) & 0xff)
+#define ADI_AXI_PCORE_VER_MINOR(version) (((version) >> 8) & 0xff)
+#define ADI_AXI_PCORE_VER_PATCH(version) ((version) & 0xff)
+
#endif /* ADI_AXI_COMMON_H_ */
--
2.20.1
Powered by blists - more mailing lists