brintos

brintos / linux-shallow public Read only

0
0
Text · 415 B · 2cb0df4 Raw
20 lines · c
1/* SPDX-License-Identifier: BSD-3-Clause OR GPL-2.0-or-later */2/*3 * Copyright 2017 NXP4 */5 6#ifndef __KEYGEN_H7#define __KEYGEN_H8 9#include <linux/io.h>10 11struct fman_keygen;12struct fman_kg_regs;13 14struct fman_keygen *keygen_init(struct fman_kg_regs __iomem *keygen_regs);15 16int keygen_port_hashing_init(struct fman_keygen *keygen, u8 hw_port_id,17			     u32 hash_base_fqid, u32 hash_size);18 19#endif /* __KEYGEN_H */20