mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-16 01:06:50 +07:00
297b9cebd2
Add support for using the caam/jr backend on DPAA2-based SoCs. These have some particularities we have to account for: -HW S/G format is different -Management Complex (MC) firmware initializes / manages (partially) the CAAM block: MCFGR, QI enablement in QICTL, RNG Signed-off-by: Horia Geantă <horia.geanta@nxp.com> Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
16 lines
290 B
C
16 lines
290 B
C
/*
|
|
* CAAM control-plane driver backend public-level include definitions
|
|
*
|
|
* Copyright 2012 Freescale Semiconductor, Inc.
|
|
*/
|
|
|
|
#ifndef CTRL_H
|
|
#define CTRL_H
|
|
|
|
/* Prototypes for backend-level services exposed to APIs */
|
|
int caam_get_era(void);
|
|
|
|
extern bool caam_dpaa2;
|
|
|
|
#endif /* CTRL_H */
|