2024-04-03 16:40:57 +08:00
|
|
|
/*
|
2024-09-03 11:16:08 +08:00
|
|
|
* Copyright (c) 2024, ArtInChip Technology Co., Ltd
|
2023-08-30 16:21:18 +08:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
2024-09-03 11:16:08 +08:00
|
|
|
*
|
|
|
|
|
* Authors: Weihui.Xu <weihui.xu@artinchip.com>
|
2023-08-30 16:21:18 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _ARTINCHIP_AIC_DRV_BARE_H_
|
|
|
|
|
#define _ARTINCHIP_AIC_DRV_BARE_H_
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
extern "C" {
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#include <aic_hal.h>
|
|
|
|
|
#include "driver.h"
|
|
|
|
|
#include "aic_tlsf.h"
|
|
|
|
|
#include "tlsf.h"
|
|
|
|
|
#include "heap.h"
|
|
|
|
|
#include "aic_stdio.h"
|
|
|
|
|
#include "console.h"
|
2024-09-03 11:16:08 +08:00
|
|
|
#include "drv_rtc.h"
|
2023-08-30 16:21:18 +08:00
|
|
|
#include "uart.h"
|
|
|
|
|
#include "mmc.h"
|
|
|
|
|
#include "mtd.h"
|
|
|
|
|
#ifdef AIC_SPINAND_DRV
|
|
|
|
|
#include "spinand_port.h"
|
|
|
|
|
#endif
|
|
|
|
|
#ifdef AIC_BOOT_USB_DRV
|
|
|
|
|
#include "usb_drv.h"
|
|
|
|
|
#endif
|
|
|
|
|
#include "wdt.h"
|
|
|
|
|
|
|
|
|
|
#ifdef __cplusplus
|
|
|
|
|
}
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
#endif /* _ARTINCHIP_AIC_DRV_BARE_H_ */
|