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