Subversion Repositories HelenOS

Rev

Rev 4243 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4243 Rev 4261
1
/*
1
/*
2
 * Copyright (c) 2009 Lukas Mejdrech
2
 * Copyright (c) 2009 Lukas Mejdrech
3
 * All rights reserved.
3
 * All rights reserved.
4
 *
4
 *
5
 * Redistribution and use in source and binary forms, with or without
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
6
 * modification, are permitted provided that the following conditions
7
 * are met:
7
 * are met:
8
 *
8
 *
9
 * - Redistributions of source code must retain the above copyright
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
12
 *   notice, this list of conditions and the following disclaimer in the
13
 *   documentation and/or other materials provided with the distribution.
13
 *   documentation and/or other materials provided with the distribution.
14
 * - The name of the author may not be used to endorse or promote products
14
 * - The name of the author may not be used to endorse or promote products
15
 *   derived from this software without specific prior written permission.
15
 *   derived from this software without specific prior written permission.
16
 *
16
 *
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
17
 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
18
 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
22
 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
23
 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24
 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
25
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
27
 */
28
 
28
 
29
/** @addtogroup netif
29
/** @addtogroup netif
30
 *  @{
30
 *  @{
31
 */
31
 */
32
 
32
 
33
/**
33
/**
34
 * @file
34
 * @file
35
 */
35
 */
36
 
36
 
37
#ifndef __NET_NETIF_MESSAGES_H__
37
#ifndef __NET_NETIF_MESSAGES_H__
38
#define __NET_NETIF_MESSAGES_H__
38
#define __NET_NETIF_MESSAGES_H__
39
 
39
 
40
#include <async.h>
40
#include <async.h>
41
#include <errno.h>
41
#include <errno.h>
42
#include <malloc.h>
42
#include <malloc.h>
43
 
43
 
44
#include <ipc/ipc.h>
44
#include <ipc/ipc.h>
45
 
45
 
46
#include "../messages.h"
46
#include "../messages.h"
47
 
47
 
48
#include "../structures/measured_strings.h"
48
#include "../structures/measured_strings.h"
49
#include "../structures/packet/packet.h"
49
#include "../structures/packet/packet.h"
50
 
50
 
51
#include "device.h"
51
#include "device.h"
52
 
52
 
53
typedef enum {
53
typedef enum {
54
    /* ( device_id, irq, io ) */
54
    /* ( device_id, irq, io ) */
55
    NET_NETIF_PROBE = NET_NETIF_FIRST,
55
    NET_NETIF_PROBE = NET_NETIF_FIRST,
56
    /* () not supported, should ask networking for a name and register device */
56
    /* () not supported, should ask networking for a name and register device */
57
    NET_NETIF_PROBE_AUTO,
57
    NET_NETIF_PROBE_AUTO,
58
    /* ( device_id, packet_id ) */
58
    /* ( device_id, packet_id ) */
59
    NET_NETIF_SEND,
59
    NET_NETIF_SEND,
60
    /* ( device_id ) */
60
    /* ( device_id ) */
61
    NET_NETIF_START,
61
    NET_NETIF_START,
62
    /* ( device_id ), ipc_data_read( stats ) */
62
    /* ( device_id ), ipc_data_read( stats ) */
63
    NET_NETIF_STATS,
63
    NET_NETIF_STATS,
64
    /* ( device_id ) */
64
    /* ( device_id ) */
65
    NET_NETIF_STOP,
65
    NET_NETIF_STOP,
66
    /* */
66
    /* */
67
    NET_NETIF_SET_ADDR,
67
    NET_NETIF_SET_ADDR,
68
    /* */
68
    /* */
69
    NET_NETIF_GET_ADDR,
69
    NET_NETIF_GET_ADDR,
70
} netif_messages;
70
} netif_messages;
71
 
71
 
72
#ifdef NETIF_BUNDLE
72
#ifdef NETIF_BUNDLE
73
 
73
 
74
#include "../netif/netif_wrappers.h"
74
#include "../netif/netif_wrappers.h"
75
 
75
 
76
#define NETIF_GET_DEVICE( call )    ( device_id_t ) IPC_GET_ARG1( * call )
-
 
77
 
-
 
78
#define NETIF_GET_PACKET( call )    ( packet_id_t ) IPC_GET_ARG2( * call )
-
 
79
#define NETIF_GET_IRQ( call )       ( int )         IPC_GET_ARG2( * call )
76
#define NETIF_GET_IRQ( call )       ( int )         IPC_GET_ARG2( * call )
80
 
77
 
81
#define NETIF_GET_IO( call )        ( int )         IPC_GET_ARG3( * call )
78
#define NETIF_GET_IO( call )        ( int )         IPC_GET_ARG3( * call )
82
 
79
 
83
#define netif_get_addr( netif_phone, device_id, address, data ) \
80
#define netif_get_addr( netif_phone, device_id, address, data ) \
84
    netif_get_addr_wrapper( netif_phone, device_id, address, data )
81
    netif_get_addr_wrapper( device_id, address, data )
85
 
82
 
86
#define netif_probe_req( netif_phone, device_id, irq, io )  \
83
static inline int   netif_probe_req( int netif_phone, device_id_t device_id, int irq, int io ){
87
    netif_probe_wrapper( device_id, irq, io )
84
    return netif_probe_wrapper( device_id, irq, io );
-
 
85
}
88
 
86
 
89
#define netif_send_msg( netif_phone, device_id, packet )    \
87
#define netif_send_msg( netif_phone, device_id, packet, sender )    \
90
    netif_send_wrapper( device_id, packet )
88
    netif_send_wrapper( device_id, packet, sender )
91
 
89
 
92
#define netif_start_req( netif_phone, device_id )   \
90
static inline int   netif_start_req( int netif_phone, device_id_t device_id ){
93
    netif_start_wrapper( device_id )
91
    return netif_start_wrapper( device_id );
-
 
92
}
94
 
93
 
95
#define netif_stop_req( netif_phone, device_id )    \
94
static inline int   netif_stop_req( int netif_phone, device_id_t device_id ){
96
    netif_stop_wrapper( device_id )
95
    return netif_stop_wrapper( device_id );
-
 
96
}
97
 
97
 
98
#else
98
#else
99
 
99
 
100
static inline int netif_get_addr( int netif_phone, device_id_t device_id, measured_string_ref * address, char ** data ){
-
 
101
    aid_t           message;
-
 
102
//  ipc_call_t      answer;
-
 
103
    ipcarg_t        result;
-
 
104
    int             string;
-
 
105
 
-
 
106
    if( !( address && data )) return EBADMEM;
-
 
107
    message = async_send_1( netif_phone, NET_NETIF_GET_ADDR, device_id, NULL /* & answer */ );
-
 
108
    string = measured_strings_return( netif_phone, address, data, 1 );
-
 
109
    async_wait_for( message, & result );
-
 
110
    if(( string == EOK ) && ( result != EOK )){
-
 
111
        free( * address );
-
 
112
        free( * data );
-
 
113
    }
-
 
114
    return result;
-
 
115
}
-
 
116
 
-
 
117
#define netif_probe_req( netif_phone, device_id, irq, io )  \
100
#define netif_get_addr( netif_phone, device_id, address, data ) \
118
    async_req_3_0( netif_phone, NET_NETIF_PROBE, device_id, irq, io )
101
    generic_get_addr( netif_phone, NET_NETIF_GET_ADDR, device_id, address, data )
119
 
102
 
-
 
103
static inline int   netif_probe_req( int netif_phone, device_id_t device_id, int irq, int io ){
-
 
104
    return async_req_3_0( netif_phone, NET_NETIF_PROBE, device_id, irq, io );
-
 
105
}
-
 
106
 
120
#define netif_send_msg( netif_phone, device_id, packet )    \
107
#define netif_send_msg( netif_phone, device_id, packet, sender )    \
121
    async_msg_2( netif_phone, NET_NETIF_SEND, device_id, packet_get_id( packet ))
108
    generic_send_msg( netif_phone, NET_NETIF_SEND, device_id, packet_get_id( packet ), sender )
122
 
109
 
123
#define netif_start_req( netif_phone, device_id )   \
110
static inline int   netif_start_req( int netif_phone, device_id_t device_id ){
124
    async_req_1_0( netif_phone, NET_NETIF_START, device_id )
111
    return async_req_1_0( netif_phone, NET_NETIF_START, device_id );
-
 
112
}
125
 
113
 
126
#define netif_stop_req( netif_phone, device_id )    \
114
static inline int   netif_stop_req( int netif_phone, device_id_t device_id ){
127
    async_req_1_0( netif_phone, NET_NETIF_STOP, device_id )
115
    return async_req_1_0( netif_phone, NET_NETIF_STOP, device_id );
-
 
116
}
128
 
117
 
129
#endif
118
#endif
130
 
119
 
131
#endif
120
#endif
132
 
121
 
133
/** @}
122
/** @}
134
 */
123
 */
135
 
124