mirror of
https://gitee.com/Vancouver2017/luban-lite-t3e-pro.git
synced 2025-12-14 18:38:55 +00:00
24 lines
367 B
C
24 lines
367 B
C
/*
|
|
* Copyright (c) 2022, Artinchip Technology Co., Ltd
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef _AIC_DRV_MTOP_H_
|
|
#define _AIC_DRV_MTOP_H_
|
|
|
|
#include "aic_hal_clk.h"
|
|
#include "aic_hal_mtop.h"
|
|
|
|
enum {
|
|
MTOP_SET_PERIOD_MODE,
|
|
MTOP_ENABLE,
|
|
};
|
|
|
|
struct mtop_dev {
|
|
struct rt_device dev;
|
|
struct aic_mtop_dev mtop_handle;
|
|
char *name;
|
|
};
|
|
|
|
#endif |