~pmdj/ubuntu/trusty/qemu/2.9+applesmc+fadtv3

« back to all changes in this revision

Viewing changes to roms/u-boot/board/Marvell/db64460/eth.h

  • Committer: Phil Dennis-Jordan
  • Date: 2017-07-21 08:03:43 UTC
  • mfrom: (1.1.1)
  • Revision ID: phil@philjordan.eu-20170721080343-2yr2vdj7713czahv
New upstream release 2.9.0.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * (C) Copyright 2001
 
3
 * Josh Huber <huber@mclx.com>, Mission Critical Linux, Inc.
 
4
 *
 
5
 * SPDX-License-Identifier:     GPL-2.0+
 
6
 */
 
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
 
 
20
int db64460_eth0_poll(void);
 
21
int db64460_eth0_transmit(unsigned int s, volatile char *p);
 
22
void db64460_eth0_disable(void);
 
23
bool network_start(bd_t *bis);
 
24
 
 
25
int mv6446x_eth_initialize(bd_t *);
 
26
 
 
27
#endif /* __EVB64460_ETH_H__ */