add hal ethernet driver

This commit is contained in:
lr
2024-06-03 16:45:09 +08:00
parent 5d6cd493bf
commit 4f182f90c9
29 changed files with 28189 additions and 2 deletions
@@ -0,0 +1,22 @@
/* SPDX-License-Identifier: BSD-3-Clause */
/*
* Copyright (c) 2021 Rockchip Electronics Co., Ltd.
*/
#ifndef __BSP_H__
#define __BSP_H__
#include "hal_base.h"
/***************************** MACRO Definition ******************************/
/***************************** Structure Definition **************************/
#define SYS_TIMER TIMER5
extern const struct HAL_GMAC_DEV g_gmac0Dev;
extern const struct HAL_GMAC_DEV g_gmac1Dev;
/***************************** Function Declare ******************************/
void BSP_Init(void);
#endif