blob: b4178848c6b94ad1c0395afd37fca0c4f2ca0845 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0-only */
/*
* Copyright (C) 2015 - 2025 Intel Corporation
*/
#ifndef IPU7_CPD_H
#define IPU7_CPD_H
struct ipu7_device;
int ipu7_cpd_validate_cpd_file(struct ipu7_device *isp,
const void *cpd_file,
unsigned long cpd_file_size);
int ipu7_cpd_copy_binary(const void *cpd, const char *name,
void *code_region, u32 *entry);
#endif /* IPU7_CPD_H */
|