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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
/* 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 __QUEUE_ACCESS_H
#define __QUEUE_ACCESS_H
 
#include <linux/errno.h>
 
#include <type_support.h>
#include <ia_css_queue_comm.h>
#include <ia_css_circbuf.h>
 
#define QUEUE_IGNORE_START_FLAG    0x0001
#define QUEUE_IGNORE_END_FLAG    0x0002
#define QUEUE_IGNORE_SIZE_FLAG    0x0004
#define QUEUE_IGNORE_STEP_FLAG    0x0008
#define QUEUE_IGNORE_DESC_FLAGS_MAX 0x000f
 
#define QUEUE_IGNORE_SIZE_START_STEP_FLAGS \
   (QUEUE_IGNORE_SIZE_FLAG | \
   QUEUE_IGNORE_START_FLAG | \
   QUEUE_IGNORE_STEP_FLAG)
 
#define QUEUE_IGNORE_SIZE_END_STEP_FLAGS \
   (QUEUE_IGNORE_SIZE_FLAG | \
   QUEUE_IGNORE_END_FLAG   | \
   QUEUE_IGNORE_STEP_FLAG)
 
#define QUEUE_IGNORE_START_END_STEP_FLAGS \
   (QUEUE_IGNORE_START_FLAG | \
   QUEUE_IGNORE_END_FLAG      | \
   QUEUE_IGNORE_STEP_FLAG)
 
#define QUEUE_CB_DESC_INIT(cb_desc)    \
   do {                \
       (cb_desc)->size  = 0;    \
       (cb_desc)->step  = 0;    \
       (cb_desc)->start = 0;    \
       (cb_desc)->end   = 0;    \
   } while (0)
 
struct ia_css_queue {
   u8 type;        /* Specify remote/local type of access */
   u8 location;    /* Cell location for queue */
   u8 proc_id;     /* Processor id for queue access */
   union {
       ia_css_circbuf_t cb_local;
       struct {
           u32 cb_desc_addr; /*Circbuf desc address for remote queues*/
           u32 cb_elems_addr; /*Circbuf elements addr for remote queue*/
       }    remote;
   } desc;
};
 
int ia_css_queue_load(
    struct ia_css_queue *rdesc,
    ia_css_circbuf_desc_t *cb_desc,
    uint32_t ignore_desc_flags);
 
int ia_css_queue_store(
    struct ia_css_queue *rdesc,
    ia_css_circbuf_desc_t *cb_desc,
    uint32_t ignore_desc_flags);
 
int ia_css_queue_item_load(
    struct ia_css_queue *rdesc,
    u8 position,
    ia_css_circbuf_elem_t *item);
 
int ia_css_queue_item_store(
    struct ia_css_queue *rdesc,
    u8 position,
    ia_css_circbuf_elem_t *item);
 
#endif /* __QUEUE_ACCESS_H */