Files
luban-lite-t3e-pro/bsp/artinchip/include/drv/aic_drv_mtop.h
刘可亮 7bbc029dae v1.0.0
2023-08-30 16:21:18 +08:00

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