blob: c2067a4d94083a68dd04b2d64e96e08c7b373e75 [file] [log] [blame]
wdenk3a473b22004-01-03 00:43:19 +00001/*
2 * (C) Copyright 2001
3 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
wdenk3a473b22004-01-03 00:43:19 +00006 */
7
8/*
9 * eth.h - header file for the polled mode GT ethernet driver
10 */
11
12#ifndef __EVB64460_ETH_H__
13#define __EVB64460_ETH_H__
14
15#include <asm/types.h>
16#include <asm/io.h>
17#include <asm/byteorder.h>
18#include <common.h>
19
20int db64460_eth0_poll(void);
21int db64460_eth0_transmit(unsigned int s, volatile char *p);
22void db64460_eth0_disable(void);
23bool network_start(bd_t *bis);
24
Marek Vasut021f6032012-03-02 22:39:32 +000025int mv6446x_eth_initialize(bd_t *);
26
wdenk3a473b22004-01-03 00:43:19 +000027#endif /* __EVB64460_ETH_H__ */