1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-09-26 19:04:54 +00:00
Files
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

193 lines
7.4 KiB
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2020 MediaTek Inc.
*/
#ifndef __VPU_HW_H__
#define __VPU_HW_H__
#include "vpu_cfg.h"
#include "vpu_cmn.h"
#include "vpu_reg.h"
struct vpu_code_segment {
uint32_t vpu_core; /* core index*/
uint32_t offset; /* offset from this partition */
uint32_t dst_addr; /* the DDR position is IPU can realize. */
uint32_t length; /* total size for this segment */
uint32_t file_size; /* file size to copy */
};
/* normal algorithm info */
struct vpu_algo_info {
uint32_t vpu_core; /* core index*/
uint32_t offset;
uint32_t length;
char name[ALGO_NAMELEN];
};
/* preloaded algorithm info */
struct vpu_pre_info {
uint32_t vpu_core;
uint32_t off;
uint32_t pAddr;
uint32_t mem_sz;
uint32_t file_sz;
uint32_t flag;
uint32_t info;
uint32_t start_addr; /* preload's start iova */
char name[ALGO_NAMELEN];
};
/*
* The VPU program is stored in EMMC Partitions, and the little kernel will
* load it to DDR. There are three partitions for different purpose, and little
* kernel will merge them to contiguous physical memory. The buffer layout in
* DDR is as follows:
*
* Using the layout, VPU driver could map these binary data
* to the specific mva for VPU booting.
*
* [offset] [mapping mva]
* 0x00000000 +-----------------------+ 0x50000000
* | Reset vector of VPU |
* | code [512KB] |
* 0x00080000 +-----------------------+ 0x60000000
* | Main Program |
* | [1.5MB] |
* 0x00200000 +-----------------------+ 0x60180000
* | Reserved for algo |
* | instruction [12.5MB] |
* 0x00E80000 +-----------------------+ 0x6E000000
* | Main Program IMEM |
* | [256KM] |
* 0x00EC0000 +-----------------------+ no mva
* | Merged image header |
* | [256KB] |
* +-----------------------+
*
* The last part of buffer, named "merged image header", will put a array of
* struct vpu_img_hdr, whose size is 3. All VPU driver needs to know is
* algo's offset for algo loading.
*
*/
struct vpu_img_hdr_legacy {
uint32_t version;
uint32_t build_date;
uint32_t header_desc[8];
uint32_t header_size;
uint32_t image_size;
uint32_t code_segment_count;
struct vpu_code_segment code_segments[VPU_MAX_NUM_CODE_SEGMENTS];
uint32_t algo_info_count;
struct vpu_algo_info algo_infos[VPU_MAX_NUM_ALGOS];
uint32_t reserved[32];
};
struct vpu_img_hdr_preload {
uint32_t version;
uint32_t build_date;
uint32_t header_desc[8];
uint32_t header_size;
uint32_t image_size;
uint32_t mem_size;
uint32_t code_segment_count;
uint32_t seg_info;
uint32_t seg_size;
uint32_t pre_info_count;
uint32_t pre_info;
uint32_t pre_size;
uint32_t algo_info_count;
uint32_t alg_info;
uint32_t reserved[4];
};
/*
* VPU driver uses the spare register to exchange data with VPU program
* (VPU code). The below tables show the usage of spare register:
*
* Command: GET_ALGO_INFO
* +-----------------+--------------------------------------------+-----------+
* | Field | Description | Filled By |
* +-----------------+--------------------------------------------+-----------+
* |FLD_XTENSA_INFO1 | 0x82(GET_ALGO_INFO) | Driver |
* |FLD_XTENSA_INFO5 | num of ports | VPU Code |
* |FLD_XTENSA_INFO6 | pointer to the array of struct port | Driver |
* |FLD_XTENSA_INFO7 | [info] pointer to property buffer | Driver |
* |FLD_XTENSA_INFO8 | [info] size of property buffer(1024) | Driver |
* |FLD_XTENSA_INFO9 | [info] num of property description | VPU Code |
* |FLD_XTENSA_INFO10| [info] pointer to the array of struct desc | Driver |
* |FLD_XTENSA_INFO11| [sett] num of property description | VPU Code |
* |FLD_XTENSA_INFO12| [sett] pointer to the array of struct desc | Driver |
* +-----------------+--------------------------------------------+-----------+
*
* Command: DO_LOADER
* +-----------------+---------------------------------------+-----------+
* | Field | Description | Filled By |
* +-----------------+---------------------------------------+-----------+
* |FLD_XTENSA_INFO1 | 0x01(DO_LOADER) | Driver |
* |FLD_XTENSA_INFO12| pointer to the algo's start-address | Driver |
* |FLD_XTENSA_INFO13| size of the algo | Driver |
* |FLD_XTENSA_INFO14| function entry point (optional) | Driver |
* |FLD_XTENSA_INFO15| VPU frequency (KHz) | Driver |
* |FLD_XTENSA_INFO16| VPU IF frequency (KHz) | Driver |
* +-----------------+---------------------------------------+-----------+
*
* Command: DO_D2D
* +-----------------+---------------------------------------+-----------+
* | Field | Description | Filled By |
* +-----------------+---------------------------------------+-----------+
* |FLD_XTENSA_INFO1 | 0x22(DO_D2D) | Driver |
* |FLD_XTENSA_INFO12| num of buffers | Driver |
* |FLD_XTENSA_INFO13| pointer to the array of struct buffer | Driver |
* |FLD_XTENSA_INFO14| pointer to setting buffer | Driver |
* |FLD_XTENSA_INFO15| size of setting buffer | Driver |
* +-----------------+---------------------------------------+-----------+
*
* Command: GET_SWVER
* +-----------------+---------------------------------------+-----------+
* | Field | Description | Filled By |
* +-----------------+---------------------------------------+-----------+
* |FLD_XTENSA_INFO1 | 0x40(GET_SWVER) | Driver |
* |FLD_XTENSA_INFO20| Software version | VPU Code |
* +-----------------+---------------------------------------+-----------+
*
* Command: SET_DEBUG
* +-----------------+---------------------------------------+-----------+
* | Field | Description | Filled By |
* +-----------------+---------------------------------------+-----------+
* |FLD_XTENSA_INFO1 | 0x40(SET_DEG) | Driver |
* |FLD_XTENSA_INFO19| iram_data_mva | Driver |
* |FLD_XTENSA_INFO21| pa of log buffer | Driver |
* |FLD_XTENSA_INFO22| length of log buffer | Driver |
* |FLD_XTENSA_INFO23| system time in us | Driver |
* |FLD_XTENSA_INFO29| host version | Driver |
* |FLD_XTENSA_INFO30| size of log | Driver |
* +-----------------+---------------------------------------+-----------+
*/
/**
* vpu_dev_boot - boot up vpu
* @vd: vpu device
*/
int vpu_dev_boot(struct vpu_device *vd);
/**
* vpu_dev_boot_sequence - do booting sequence
* @vd: vpu device
*/
int vpu_dev_boot_sequence(struct vpu_device *vd);
/**
* vpu_dev_set_debug - set log buffer and size to VPU
* @vd: vpu device
*/
int vpu_dev_set_debug(struct vpu_device *vd);
extern struct vpu_sys_ops vpu_sops_mt68xx;
extern struct vpu_sys_ops vpu_sops_mt67xx;
extern struct vpu_bin_ops vpu_bops_legacy;
extern struct vpu_bin_ops vpu_bops_preload;
#endif