hc
2023-05-26 a23f51ed7a39e452c1037343a84d7db1ca2c5bd7
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
/*
 * Copyright (C) 2016 Rockchip Electronics Co.Ltd
 * Authors:
 *    Zhiqin Wei <wzq@rock-chips.com>
 *
 * This program is free software; you can redistribute  it and/or modify it
 * under  the terms of  the GNU General  Public License as published by the
 * Free Software Foundation;  either version 2 of the  License, or (at your
 * option) any later version.
 *
 */
 
#include <stdint.h>
//#include <vector>
#include <sys/types.h>
 
//////////////////////////////////////////////////////////////////////////////////
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <time.h>
#include <unistd.h>
 
#include <sys/mman.h>
#include <linux/stddef.h>
 
#include "stdio.h"
 
#include "drmrga.h"
 
#include "RockchipRgaMacro.h"
 
//////////////////////////////////////////////////////////////////////////////////
 
// -------------------------------------------------------------------------------
 
class RockchipRga 
{
/************************************public**************************************/
 
public:
 
    RockchipRga();
    ~RockchipRga();
 
    int         RkRgaInit();
    void        RkRgaDeInit();
    int         RkRgaAllocBuffer(int drm_fd /* input */, bo_t *bo_info,
                                 int width, int height, int bpp);
    int         RkRgaFreeBuffer(int drm_fd /* input */, bo_t *bo_info);
    int         RkRgaGetAllocBuffer(bo_t *bo_info, int width, int height, int bpp);
    int         RkRgaGetMmap(bo_t *bo_info);
    int         RkRgaUnmap(bo_t *bo_info);
    int         RkRgaFree(bo_t *bo_info);
    int         RkRgaGetBufferFd(bo_t *bo_info, int *fd);
    int         RkRgaBlit(rga_info *src, rga_info *dst, rga_info *src1);
    int         RkRgaCollorFill(rga_info *dst);
 
 
    void        RkRgaSetLogOnceFlag(int log) {mLogOnce = log;}
    void        RkRgaSetAlwaysLogFlag(bool log) {mLogAlways = log;}
    void        RkRgaLogOutRgaReq(struct rga_req rgaReg);
    int         RkRgaLogOutUserPara(rga_info *rgaInfo);
    inline bool RkRgaIsReady() { return mSupportRga; }
 
/************************************private***********************************/
private:
    bool                            mSupportRga;
    int                             mLogOnce;
    int                             mLogAlways;
    void *                          mContext;
};
 
// ---------------------------------------------------------------------------