source: rtems/c/src/lib/libbsp/powerpc/mpc8260ads/network/if_hdlcsubr.h @ 5edbffe

4.104.114.84.95
Last change on this file since 5edbffe was 5edbffe, checked in by Joel Sherrill <joel.sherrill@…>, on 10/22/01 at 14:46:02

01-10-22 Andy Dachs <a.dachs@…>

  • mpc8260ads added as new BSP. tm27 reported not to run at this time.
  • ChangeLog?, Makefile.am, README, aclocal.m4, bsp_specs, clock/.cvsignore, clock/Makefile.am, clock/p_clock.c, configure.in, console/Makefile.am, console/console.c, include/Makefile.am, include/bsp.h, include/coverhd.h, irq/.cvsignore, irq/Makefile.am, irq/irq.c, irq/irq.h, irq/irq_asm.S, irq/irq_init.c, network/Makefile.am, network/README, network/if_hdlcsubr.c, network/if_hdlcsubr.h, network/network.c, start/Makefile.am, start/start.S, startup/Makefile.am, startup/bspstart.c, startup/cpuinit.c, startup/linkcmds, startup/setvec.c, times, vectors/.cvsignore, vectors/Makefile.am, vectors/vectors.S, vectors/vectors.h, vectors/vectors_init.c, wrapup/Makefile.am: New files.
  • Property mode set to 100644
File size: 1.1 KB
Line 
1/*
2 * RTEMS/TCPIP driver for MPC8260 SCC HDLC networking
3 *
4 * Submitted by Andy Dachs <a.dachs@sstl.co.uk>
5 * (c) Surrey Satellite Technology Limited, 2001
6 *
7 *   On the ADS board the ethernet interface is connected to FCC2
8 *   but in my application I want TCP over HDLC (see README)
9 *   so will use SCC3 as the network interface. I have other plans
10 *   for the FCCs so am unlikely to add true ethernet support to
11 *   this BSP.  Contributions welcome!
12 *
13 *  COPYRIGHT (c) 1989-1997.
14 *  On-Line Applications Research Corporation (OAR).
15 *  Copyright assigned to U.S. Government, 1994.
16 *
17 *  The license and distribution terms for this file may in
18 *  the file LICENSE in this distribution or at
19 *  http://www.OARcorp.com/rtems/license.html.
20 *
21 *  $Id$
22 */
23#ifndef __IF_HDLCSUBR_H
24#define __IF_HDLCSUBR_H
25
26
27struct ifnet;
28struct mbuf;
29struct sockaddr;
30struct rtentry;
31
32
33
34void    hdlc_ifattach __P((struct ifnet *));
35void    hdlc_input __P((struct ifnet *, struct mbuf *));
36int     hdlc_output __P((struct ifnet *,
37           struct mbuf *, struct sockaddr *, struct rtentry *));
38int     hdlc_ioctl __P((struct ifnet *, int , caddr_t ));
39
40#endif
Note: See TracBrowser for help on using the repository browser.