1 /*
2  * Copyright (c) 2006-2024, RT-Thread Development Team
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  *
6  * Change Logs:
7  * Date           Author       Notes
8  * 2024/04/25     flyingcys    first version
9  */
10 #ifndef __DRV_ETH_H__
11 #define __DRV_ETH_H__
12 
13 #include "mmio.h"
14 #include "dw_eth_mac.h"
15 #include "cvi_eth_phy.h"
16 #include "drv_ioremap.h"
17 
18 #define DW_MAC_BASE                 DRV_IOREMAP((void *)0x04070000, 0x10000)
19 #define DW_MAC_IRQ                  31
20 
21 #endif /* __DRV_ETH_H__ */
22