hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
/* SPDX-License-Identifier: GPL-2.0 */
/*
 * Support for Intel Camera Imaging ISP subsystem.
 * Copyright (c) 2010 - 2015, Intel Corporation.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 */
 
#ifndef _IA_CSS_INPUTFIFO_H
#define _IA_CSS_INPUTFIFO_H
 
#include <sp.h>
#include <isp.h>
 
#include "ia_css_stream_format.h"
 
/* SP access */
void ia_css_inputfifo_send_input_frame(
    const unsigned short    *data,
    unsigned int    width,
    unsigned int    height,
    unsigned int    ch_id,
    enum atomisp_input_format    input_format,
    bool            two_ppc);
 
void ia_css_inputfifo_start_frame(
    unsigned int    ch_id,
    enum atomisp_input_format    input_format,
    bool            two_ppc);
 
void ia_css_inputfifo_send_line(
    unsigned int    ch_id,
    const unsigned short    *data,
    unsigned int    width,
    const unsigned short    *data2,
    unsigned int    width2);
 
void ia_css_inputfifo_send_embedded_line(
    unsigned int    ch_id,
    enum atomisp_input_format    data_type,
    const unsigned short    *data,
    unsigned int    width);
 
void ia_css_inputfifo_end_frame(
    unsigned int    ch_id);
 
#endif /* _IA_CSS_INPUTFIFO_H */