summaryrefslogtreecommitdiffstats
path: root/include/soc/fsl/caam.h
blob: a919a114e86fd1988bc6fe0d621cc48966b51c6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// SPDX-License-Identifier: BSD-3-Clause
#ifndef __SOC_FSL_CAAM_H_
#define __SOC_FSL_CAAM_H_

#include <linux/compiler.h>
#include <linux/types.h>

struct caam_ctrl;

int early_caam_init(struct caam_ctrl __iomem *caam, bool is_imx);

static inline int imx_early_caam_init(struct caam_ctrl __iomem *caam)
{
	return early_caam_init(caam, true);
}

#endif