drv_eth.h 434 B

1234567891011121314151617181920
  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. #include "mmio.h"
  13. #include "dw_eth_mac.h"
  14. #include "cvi_eth_phy.h"
  15. #define DW_MAC_BASE 0x04070000UL
  16. #define DW_MAC_IRQ 31
  17. #endif /* __DRV_ETH_H__ */