blob: 7c8486187ab12e1c186e5deaeac8bda78613ede6 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2* All Rights Reserved
3*
4* MARVELL CONFIDENTIAL
5* Copyright 2012 Marvell International Ltd All Rights Reserved.
6* The source code contained or described herein and all documents related to
7* the source code ("Material") are owned by Marvell International Ltd or its
8* suppliers or licensors. Title to the Material remains with Marvell International Ltd
9* or its suppliers and licensors. The Material contains trade secrets and
10* proprietary and confidential information of Marvell or its suppliers and
11* licensors. The Material is protected by worldwide copyright and trade secret
12* laws and treaty provisions. No part of the Material may be used, copied,
13* reproduced, modified, published, uploaded, posted, transmitted, distributed,
14* or disclosed in any way without Marvell's prior express written permission.
15*
16* No license under any patent, copyright, trade secret or other intellectual
17* property right is granted to or conferred upon you by disclosure or delivery
18* of the Materials, either expressly, by implication, inducement, estoppel or
19* otherwise. Any license under such intellectual property rights must be
20* express and approved by Marvell in writing.
21*
22*/
23
24#ifndef __H_AC_THREAD__
25#define __H_AC_THREAD__
26
27#define PATHSTATUS_MAX 2048
28
29#ifndef MAX_PATH
30# define MAX_PATH 100
31#endif
32
33#define PATHS_NUM_MAX 20 //no less than APH_PATH_ID_CNT
34
35typedef struct _paths_list{
36 char path[PATHS_NUM_MAX][MAX_PATH];
37 int num;
38} PathsList;
39
40void ACM_Init_Calibration_IPC(void);
41void ACM_Cancel_Calibration_IPC(void);
42
43#endif