[21580dd] | 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 net_nil
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 |
|
---|
| 33 | /** @file
|
---|
| 34 | * Network interface layer module interface.
|
---|
| 35 | * The same interface is used for standalone remote device modules as well as for bundle device modules.
|
---|
| 36 | * The standalone remote device modules have to be compiled with the nil_remote.c source file.
|
---|
| 37 | * The bundle device modules with the appropriate network interface layer source file (eth.c etc.).
|
---|
| 38 | * The upper layers cannot be bundled with the network interface layer.
|
---|
| 39 | */
|
---|
| 40 |
|
---|
| 41 | #ifndef __NET_NIL_INTERFACE_H__
|
---|
| 42 | #define __NET_NIL_INTERFACE_H__
|
---|
| 43 |
|
---|
| 44 | #include <async.h>
|
---|
| 45 | #include <errno.h>
|
---|
| 46 |
|
---|
| 47 | #include <ipc/ipc.h>
|
---|
| 48 |
|
---|
| 49 | #include "../messages.h"
|
---|
| 50 |
|
---|
| 51 | #include "../structures/measured_strings.h"
|
---|
| 52 | #include "../structures/packet/packet.h"
|
---|
| 53 |
|
---|
| 54 | #include "../nil/nil_messages.h"
|
---|
| 55 |
|
---|
| 56 | #include "device.h"
|
---|
| 57 |
|
---|
| 58 | /** @name Network interface layer module interface
|
---|
| 59 | * This interface is used by other modules.
|
---|
| 60 | */
|
---|
| 61 | /*@{*/
|
---|
| 62 |
|
---|
| 63 | /** Returns the device local hardware address.
|
---|
| 64 | * @param[in] nil_phone The network interface layer phone.
|
---|
| 65 | * @param[in] device_id The device identifier.
|
---|
| 66 | * @param[out] address The device local hardware address.
|
---|
| 67 | * @param[out] data The address data.
|
---|
| 68 | * @returns EOK on success.
|
---|
| 69 | * @returns EBADMEM if the address parameter and/or the data parameter is NULL.
|
---|
| 70 | * @returns ENOENT if there no such device.
|
---|
| 71 | * @returns Other error codes as defined for the generic_get_addr_req() function.
|
---|
| 72 | */
|
---|
[aadf01e] | 73 | #define nil_get_addr_req(nil_phone, device_id, address, data) \
|
---|
| 74 | generic_get_addr_req(nil_phone, NET_NIL_ADDR, device_id, address, data)
|
---|
[21580dd] | 75 |
|
---|
| 76 | /** Returns the device broadcast hardware address.
|
---|
| 77 | * @param[in] nil_phone The network interface layer phone.
|
---|
| 78 | * @param[in] device_id The device identifier.
|
---|
| 79 | * @param[out] address The device broadcast hardware address.
|
---|
| 80 | * @param[out] data The address data.
|
---|
| 81 | * @returns EOK on success.
|
---|
| 82 | * @returns EBADMEM if the address parameter is NULL.
|
---|
| 83 | * @returns ENOENT if there no such device.
|
---|
| 84 | * @returns Other error codes as defined for the generic_get_addr_req() function.
|
---|
| 85 | */
|
---|
[aadf01e] | 86 | #define nil_get_broadcast_addr_req(nil_phone, device_id, address, data) \
|
---|
| 87 | generic_get_addr_req(nil_phone, NET_NIL_BROADCAST_ADDR, device_id, address, data)
|
---|
[21580dd] | 88 |
|
---|
| 89 | /** Sends the packet queue.
|
---|
| 90 | * @param[in] nil_phone The network interface layer phone.
|
---|
| 91 | * @param[in] device_id The device identifier.
|
---|
| 92 | * @param[in] packet The packet queue.
|
---|
| 93 | * @param[in] sender The sending module service.
|
---|
| 94 | * @returns EOK on success.
|
---|
| 95 | * @returns Other error codes as defined for the generic_send_msg() function.
|
---|
| 96 | */
|
---|
[aadf01e] | 97 | #define nil_send_msg(nil_phone, device_id, packet, sender) \
|
---|
| 98 | generic_send_msg(nil_phone, NET_NIL_SEND, device_id, packet_get_id(packet), sender, 0)
|
---|
[21580dd] | 99 |
|
---|
[91478aa] | 100 | /** Returns the device packet dimension for sending.
|
---|
[21580dd] | 101 | * @param[in] nil_phone The network interface layer phone.
|
---|
| 102 | * @param[in] device_id The device identifier.
|
---|
[91478aa] | 103 | * @param[out] packet_dimension The packet dimensions.
|
---|
[21580dd] | 104 | * @returns EOK on success.
|
---|
| 105 | * @returns ENOENT if there is no such device.
|
---|
| 106 | * @returns Other error codes as defined for the generic_packet_size_req() function.
|
---|
| 107 | */
|
---|
[aadf01e] | 108 | #define nil_packet_size_req(nil_phone, device_id, packet_dimension) \
|
---|
| 109 | generic_packet_size_req(nil_phone, NET_NIL_PACKET_SPACE, device_id, packet_dimension)
|
---|
[21580dd] | 110 |
|
---|
| 111 | /** Registers new device or updates the MTU of an existing one.
|
---|
| 112 | * @param[in] nil_phone The network interface layer phone.
|
---|
| 113 | * @param[in] device_id The new device identifier.
|
---|
| 114 | * @param[in] mtu The device maximum transmission unit.
|
---|
| 115 | * @param[in] netif_service The device driver service.
|
---|
| 116 | * @returns EOK on success.
|
---|
| 117 | * @returns EEXIST if the device with the different service exists.
|
---|
| 118 | * @returns ENOMEM if there is not enough memory left.
|
---|
| 119 | * @returns Other error codes as defined for the generic_device_req() function.
|
---|
| 120 | */
|
---|
[aadf01e] | 121 | #define nil_device_req(nil_phone, device_id, mtu, netif_service) \
|
---|
| 122 | generic_device_req(nil_phone, NET_NIL_DEVICE, device_id, mtu, netif_service)
|
---|
[21580dd] | 123 |
|
---|
| 124 | /** Notifies the network interface layer about the device state change.
|
---|
| 125 | * @param[in] nil_phone The network interface layer phone.
|
---|
| 126 | * @param[in] device_id The device identifier.
|
---|
| 127 | * @param[in] state The new device state.
|
---|
| 128 | * @returns EOK on success.
|
---|
| 129 | * @returns Other error codes as defined for each specific module device state function.
|
---|
| 130 | */
|
---|
[aadf01e] | 131 | int nil_device_state_msg(int nil_phone, device_id_t device_id, int state);
|
---|
[21580dd] | 132 |
|
---|
| 133 | /** Passes the packet queue to the network interface layer.
|
---|
| 134 | * Processes and redistributes the received packet queue to the registered upper layers.
|
---|
| 135 | * @param[in] nil_phone The network interface layer phone.
|
---|
| 136 | * @param[in] device_id The source device identifier.
|
---|
| 137 | * @param[in] packet The received packet or the received packet queue.
|
---|
| 138 | * @param target The target service. Ignored parameter.
|
---|
| 139 | * @returns EOK on success.
|
---|
| 140 | * @returns Other error codes as defined for each specific module received function.
|
---|
| 141 | */
|
---|
[aadf01e] | 142 | int nil_received_msg(int nil_phone, device_id_t device_id, packet_t packet, services_t target);
|
---|
[21580dd] | 143 |
|
---|
| 144 | /** Creates bidirectional connection with the network interface layer module and registers the message receiver.
|
---|
| 145 | * @param[in] service The network interface layer module service.
|
---|
| 146 | * @param[in] device_id The device identifier.
|
---|
| 147 | * @param[in] me The requesting module service.
|
---|
| 148 | * @param[in] receiver The message receiver.
|
---|
| 149 | * @returns The phone of the needed service.
|
---|
| 150 | * @returns EOK on success.
|
---|
| 151 | * @returns Other error codes as defined for the bind_service() function.
|
---|
| 152 | */
|
---|
[aadf01e] | 153 | #define nil_bind_service(service, device_id, me, receiver) \
|
---|
| 154 | bind_service(service, device_id, me, 0, receiver);
|
---|
[21580dd] | 155 | /*@}*/
|
---|
| 156 |
|
---|
| 157 | #endif
|
---|
| 158 |
|
---|
| 159 | /** @}
|
---|
| 160 | */
|
---|