Subversion Repositories HelenOS

Rev

Rev 4743 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
4243 mejdrech 1
/*
2
 * Copyright (c) 2009 Lukas Mejdrech
3
 * All rights reserved.
4
 *
5
 * Redistribution and use in source and binary forms, with or without
6
 * modification, are permitted provided that the following conditions
7
 * are met:
8
 *
9
 * - Redistributions of source code must retain the above copyright
10
 *   notice, this list of conditions and the following disclaimer.
11
 * - Redistributions in binary form must reproduce the above copyright
12
 *   notice, this list of conditions and the following disclaimer in the
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
15
 *   derived from this software without specific prior written permission.
16
 *
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
19
 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20
 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21
 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
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
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
26
 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
 */
28
 
29
/** @addtogroup netif
30
 *  @{
31
 */
32
 
4350 mejdrech 33
/** @file
34
 *  Network interface module interface.
35
 *  The same interface is used for standalone remote modules as well as for bundle network interface layer modules.
36
 *  The standalone remote modules have to be compiled with the netif_remote.c source file.
37
 *  The bundle network interface layer modules are compiled with the netif_nil_bundle.c source file and the choosen network interface layer implementation source file.
4243 mejdrech 38
 */
39
 
4307 mejdrech 40
#ifndef __NET_NETIF_INTERFACE_H__
41
#define __NET_NETIF_INTERFACE_H__
4243 mejdrech 42
 
4307 mejdrech 43
#include <ipc/services.h>
4243 mejdrech 44
 
45
#include "../messages.h"
46
 
47
#include "../structures/measured_strings.h"
48
#include "../structures/packet/packet.h"
49
 
50
#include "device.h"
51
 
4703 mejdrech 52
/** @name Network interface module interface
53
 *  This interface is used by other modules.
54
 */
55
/*@{*/
56
 
4350 mejdrech 57
/** Returns the device local hardware address.
4756 mejdrech 58
 *  @param[in] netif_phone The network interface phone.
59
 *  @param[in] device_id The device identifier.
60
 *  @param[out] address The device local hardware address.
61
 *  @param[out] data The address data.
4350 mejdrech 62
 *  @returns EOK on success.
63
 *  @returns EBADMEM if the address parameter is NULL.
64
 *  @returns ENOENT if there no such device.
4743 mejdrech 65
 *  @returns Other error codes as defined for the netif_get_addr_message() function.
4350 mejdrech 66
 */
4743 mejdrech 67
int netif_get_addr_req( int netif_phone, device_id_t device_id, measured_string_ref * address, char ** data );
4350 mejdrech 68
 
69
/** Probes the existence of the device.
4756 mejdrech 70
 *  @param[in] netif_phone The network interface phone.
71
 *  @param[in] device_id The device identifier.
72
 *  @param[in] irq The device interrupt number.
73
 *  @param[in] io The device input/output address.
4350 mejdrech 74
 *  @returns EOK on success.
75
 *  @returns Other errro codes as defined for the netif_probe_message().
76
 */
4307 mejdrech 77
int netif_probe_req( int netif_phone, device_id_t device_id, int irq, int io );
4350 mejdrech 78
 
79
/** Sends the packet queue.
4756 mejdrech 80
 *  @param[in] netif_phone The network interface phone.
81
 *  @param[in] device_id The device identifier.
82
 *  @param[in] packet The packet queue.
83
 *  @param[in] sender The sending module service.
4350 mejdrech 84
 *  @returns EOK on success.
85
 *  @returns Other error codes as defined for the generic_send_msg() function.
86
 */
4307 mejdrech 87
int netif_send_msg( int netif_phone, device_id_t device_id, packet_t packet, services_t sender );
4350 mejdrech 88
 
89
/** Starts the device.
4756 mejdrech 90
 *  @param[in] netif_phone The network interface phone.
91
 *  @param[in] device_id The device identifier.
4350 mejdrech 92
 *  @returns EOK on success.
93
 *  @returns Other error codes as defined for the find_device() function.
94
 *  @returns Other error codes as defined for the netif_start_message() function.
95
 */
4307 mejdrech 96
int netif_start_req( int netif_phone, device_id_t device_id );
4350 mejdrech 97
 
98
/** Stops the device.
4756 mejdrech 99
 *  @param[in] netif_phone The network interface phone.
100
 *  @param[in] device_id The device identifier.
4350 mejdrech 101
 *  @returns EOK on success.
102
 *  @returns Other error codes as defined for the find_device() function.
103
 *  @returns Other error codes as defined for the netif_stop_message() function.
104
 */
4307 mejdrech 105
int netif_stop_req( int netif_phone, device_id_t device_id );
4350 mejdrech 106
 
4703 mejdrech 107
/** Returns the device usage statistics.
4756 mejdrech 108
 *  @param[in] netif_phone The network interface phone.
109
 *  @param[in] device_id The device identifier.
110
 *  @param[out] stats The device usage statistics.
4703 mejdrech 111
 *  @returns EOK on success.
112
 */
113
int netif_stats_req( int netif_phone, device_id_t device_id, device_stats_ref stats );
114
 
4743 mejdrech 115
/** Creates bidirectional connection with the network interface module and registers the message receiver.
4756 mejdrech 116
 *  @param[in] service The network interface module service.
117
 *  @param[in] device_id The device identifier.
118
 *  @param[in] me The requesting module service.
119
 *  @param[in] receiver The message receiver.
4350 mejdrech 120
 *  @returns The phone of the needed service.
121
 *  @returns EOK on success.
122
 *  @returns Other error codes as defined for the bind_service() function.
123
 */
4307 mejdrech 124
int netif_bind_service( services_t service, device_id_t device_id, services_t me, async_client_conn_t receiver );
4243 mejdrech 125
 
4703 mejdrech 126
/*@}*/
127
 
4243 mejdrech 128
#endif
129
 
130
/** @}
131
 */