stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2001 |
| 3 | * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc. |
| 4 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | /* |
| 9 | * eth.h - header file for the polled mode GT ethernet driver |
| 10 | */ |
| 11 | |
| 12 | #ifndef __EVB64360_ETH_H__ |
| 13 | #define __EVB64360_ETH_H__ |
| 14 | |
| 15 | #include <asm/types.h> |
| 16 | #include <asm/io.h> |
| 17 | #include <asm/byteorder.h> |
| 18 | #include <common.h> |
| 19 | |
| 20 | |
| 21 | int db64360_eth0_poll(void); |
| 22 | int db64360_eth0_transmit(unsigned int s, volatile char *p); |
| 23 | void db64360_eth0_disable(void); |
| 24 | bool network_start(bd_t *bis); |
| 25 | |
Marek Vasut | 658c3b9 | 2012-03-02 22:39:31 +0000 | [diff] [blame] | 26 | int mv6436x_eth_initialize(bd_t *); |
stroese | 771e05b | 2004-12-16 18:21:17 +0000 | [diff] [blame] | 27 | |
| 28 | #endif /* __EVB64360_ETH_H__ */ |