blob: 43a7301da7ab2a9587e1c00df0d28bc143d85e2a [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Andrew Mortoncc2ea412007-07-15 23:41:38 -07002#include <linux/io.h>
Paul Gortmaker8bc3bcc2011-11-16 21:29:17 -05003#include <linux/export.h>
Andrew Mortoncc2ea412007-07-15 23:41:38 -07004
5/**
6 * check_signature - find BIOS signatures
7 * @io_addr: mmio address to check
8 * @signature: signature block
9 * @length: length of signature
10 *
11 * Perform a signature comparison with the mmio address io_addr. This
12 * address should have been obtained by ioremap.
13 * Returns 1 on a match.
14 */
15
16int check_signature(const volatile void __iomem *io_addr,
17 const unsigned char *signature, int length)
18{
19 while (length--) {
20 if (readb(io_addr) != *signature)
21 return 0;
22 io_addr++;
23 signature++;
24 }
25 return 1;
26}
27EXPORT_SYMBOL(check_signature);