summaryrefslogtreecommitdiffstats
path: root/bsps/shared/net/cs8900.h.bsp
blob: 65ce0d2e9309d49665f29f7fd61ebeacd2f200fd (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/*
 * RTEMS CS8900 Driver Setup for the DIMM-PC/i386 made by Kontron.
 *
 * Port to the DIMM PC copyright (c) 2004 Angelo Fraietta
 *   This project has been assisted by the Commonwealth Government
 *   through the Australia Council, its arts funding and advisory body.
 *
 *  Port performed by Chris Johns, Cybertec Pty Ltd, Jan 2004.
 *  Based on the Cybertec CS8900 driver setup for the SFP-101.
 */

#if !defined (__BSP_CS8900_H__)
#define __BSP_CS8900_H__

/**
 * BSP CS8900 Device initialisation and interface attach.
 *
 * @param io_base The I/O base address of the device.
 *
 * @param mem_base The memory base address. Currently not used.
 *
 * @param intrp The ISA bus IRQ. These are currently limited to
 *              5, 10, 11, and 12 as documented in the CS8900
 *              manual.
 *
 * @param ip IP address in ASCII. For example 10.10.10.10. If the
 *           pointer is a NULL (0) the interface will BOOTP.
 *
 * @param nm Network Mask in ASCII. For example 10.10.10.255.
 *
 * @param gw Address of the gateway machine. For example
 *           10.10.10.1.
 */

void BSP_cs8900_attach (unsigned long io_base, unsigned long mem_base, int intrp,
                        const char* ip, const char* nm, const char* gw);

#endif