OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [bootloaders/] [orpmon/] [services/] [bootp.h] - Blame information for rev 406

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 2 marcus.erl
/*
2
 *      Copied from LiMon - BOOTP.
3
 *
4
 *      Copyright 1994, 1995, 2000 Neil Russell.
5
 *      (See License)
6
 *      Copyright 2000 Paolo Scaffardi
7
 */
8
 
9
#ifndef __BOOTP_H__
10
#define __BOOTP_H__
11
 
12
#ifndef __NET_H__
13
#include        "net.h"
14
#endif /* __NET_H__ */
15
 
16
/**********************************************************************/
17
 
18
/*
19
 *      BOOTP header.
20
 */
21
#if (CONFIG_COMMANDS & CFG_CMD_DHCP)
22 406 julius
#define OPT_SIZE 312            /* Minimum DHCP Options size per RFC2131 - results in 576 byte pkt */
23 2 marcus.erl
#else
24
#define OPT_SIZE 64
25
#endif
26
 
27 406 julius
typedef struct {
28
        unsigned char bp_op;    /* Operation                            */
29 2 marcus.erl
# define OP_BOOTREQUEST 1
30
# define OP_BOOTREPLY   2
31 406 julius
        unsigned char bp_htype; /* Hardware type                        */
32 2 marcus.erl
# define HWT_ETHER      1
33 406 julius
        unsigned char bp_hlen;  /* Hardware address length              */
34 2 marcus.erl
# define HWL_ETHER      6
35 406 julius
        unsigned char bp_hops;  /* Hop count (gateway thing)            */
36
        unsigned long bp_id;    /* Transaction ID                       */
37
        unsigned short bp_secs; /* Seconds since boot                   */
38
        unsigned short bp_spare1;       /* Alignment                            */
39
        IPaddr_t bp_ciaddr;     /* Client IP address                    */
40
        IPaddr_t bp_yiaddr;     /* Your (client) IP address             */
41
        IPaddr_t bp_siaddr;     /* Server IP address                    */
42
        IPaddr_t bp_giaddr;     /* Gateway IP address                   */
43
        unsigned char bp_chaddr[16];    /* Client hardware address              */
44
        char bp_sname[64];      /* Server host name                     */
45
        char bp_file[128];      /* Boot file name                       */
46
        char bp_vend[OPT_SIZE]; /* Vendor information                   */
47
} Bootp_t;
48 2 marcus.erl
 
49
#define BOOTP_HDR_SIZE  sizeof (Bootp_t)
50
#define BOOTP_SIZE      (ETHER_HDR_SIZE + IP_HDR_SIZE + BOOTP_HDR_SIZE)
51
 
52
/**********************************************************************/
53
/*
54
 *      Global functions and variables.
55
 */
56
 
57
/* bootp.c */
58 406 julius
extern unsigned long BootpID;   /* ID of cur BOOTP request              */
59
extern char BootFile[128];      /* Boot file name                       */
60
extern int BootpTry;
61 2 marcus.erl
#ifdef CONFIG_BOOTP_RANDOM_DELAY
62 406 julius
unsigned long seed1, seed2;     /* seed for random BOOTP delay          */
63 2 marcus.erl
#endif
64
 
65
/* Send a BOOTP request */
66 406 julius
extern void BootpRequest(void);
67 2 marcus.erl
 
68
/****************** DHCP Support *********************/
69
extern void DhcpRequest(void);
70
 
71
/* DHCP States */
72
typedef enum { INIT,
73 406 julius
        INIT_REBOOT,
74
        REBOOTING,
75
        SELECTING,
76
        REQUESTING,
77
        REBINDING,
78
        BOUND,
79
        RENEWING
80
} dhcp_state_t;
81 2 marcus.erl
 
82
#define DHCP_DISCOVER 1
83
#define DHCP_OFFER    2
84
#define DHCP_REQUEST  3
85
#define DHCP_DECLINE  4
86
#define DHCP_ACK      5
87
#define DHCP_NAK      6
88
#define DHCP_RELEASE  7
89
 
90
#define SELECT_TIMEOUT 3        /* Seconds to wait for offers */
91
 
92
/**********************************************************************/
93
 
94
#endif /* __BOOTP_H__ */

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.