blob: d5fe3cb5d33e3e0d2064c3a67ea4df65113e28c1 [file] [log] [blame]
Stefan Roese1eac2a72006-11-29 15:42:37 +01001/*
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+
Stefan Roese1eac2a72006-11-29 15:42:37 +01006 */
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
21int db64360_eth0_poll(void);
22int db64360_eth0_transmit(unsigned int s, volatile char *p);
23void db64360_eth0_disable(void);
24bool network_start(bd_t *bis);
25
Marek Vasut021f6032012-03-02 22:39:32 +000026int mv6446x_eth_initialize(bd_t *);
Stefan Roese1eac2a72006-11-29 15:42:37 +010027
28#endif /* __EVB64360_ETH_H__ */