Rev 4261 | Rev 4350 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed
| Rev 4261 | Rev 4307 | ||
|---|---|---|---|
| Line 32... | Line 32... | ||
| 32 | 32 | ||
| 33 | /** |
33 | /** |
| 34 | * @file |
34 | * @file |
| 35 | */ |
35 | */ |
| 36 | 36 | ||
| 37 | #ifndef __NET_NETIF_MESSAGES_H__ |
37 | #ifndef __NET_NETIF_INTERFACE_H__ |
| 38 | #define __NET_NETIF_MESSAGES_H__ |
38 | #define __NET_NETIF_INTERFACE_H__ |
| 39 | 39 | ||
| 40 | #include <async.h> |
- | |
| 41 | #include <errno.h> |
- | |
| 42 | #include <malloc.h> |
- | |
| 43 | - | ||
| 44 | #include <ipc/ipc.h> |
40 | #include <ipc/services.h> |
| 45 | 41 | ||
| 46 | #include "../messages.h" |
42 | #include "../messages.h" |
| 47 | 43 | ||
| 48 | #include "../structures/measured_strings.h" |
44 | #include "../structures/measured_strings.h" |
| 49 | #include "../structures/packet/packet.h" |
45 | #include "../structures/packet/packet.h" |
| 50 | 46 | ||
| 51 | #include "device.h" |
47 | #include "device.h" |
| 52 | 48 | ||
| 53 | typedef enum { |
- | |
| 54 | /* ( device_id, irq, io ) */ |
- | |
| 55 | NET_NETIF_PROBE = NET_NETIF_FIRST, |
- | |
| 56 | /* () not supported, should ask networking for a name and register device */ |
- | |
| 57 | NET_NETIF_PROBE_AUTO, |
- | |
| 58 | /* ( device_id, packet_id ) */ |
- | |
| 59 | NET_NETIF_SEND, |
- | |
| 60 | /* ( device_id ) */ |
- | |
| 61 | NET_NETIF_START, |
- | |
| 62 | /* ( device_id ), ipc_data_read( stats ) */ |
- | |
| 63 | NET_NETIF_STATS, |
- | |
| 64 | /* ( device_id ) */ |
- | |
| 65 | NET_NETIF_STOP, |
- | |
| 66 | /* */ |
- | |
| 67 | NET_NETIF_SET_ADDR, |
- | |
| 68 | /* */ |
- | |
| 69 | NET_NETIF_GET_ADDR, |
- | |
| 70 | } netif_messages; |
- | |
| 71 | - | ||
| 72 | #ifdef NETIF_BUNDLE |
- | |
| 73 | - | ||
| 74 | #include "../netif/netif_wrappers.h" |
- | |
| 75 | - | ||
| 76 | #define NETIF_GET_IRQ( call ) ( int ) IPC_GET_ARG2( * call ) |
- | |
| 77 | - | ||
| 78 | #define NETIF_GET_IO( call ) ( int ) IPC_GET_ARG3( * call ) |
- | |
| 79 | - | ||
| 80 | #define netif_get_addr( netif_phone, device_id, address, data ) \ |
49 | int netif_get_addr( int netif_phone, device_id_t device_id, measured_string_ref * address, char ** data ); |
| 81 | netif_get_addr_wrapper( device_id, address, data ) |
- | |
| 82 | - | ||
| 83 | static inline int netif_probe_req( int netif_phone, device_id_t device_id, int irq, int io ){ |
50 | int netif_probe_req( int netif_phone, device_id_t device_id, int irq, int io ); |
| 84 | return netif_probe_wrapper( device_id, irq, io ); |
- | |
| 85 | } |
- | |
| 86 | - | ||
| 87 | #define netif_send_msg( netif_phone, device_id, packet, sender ) \ |
51 | int netif_send_msg( int netif_phone, device_id_t device_id, packet_t packet, services_t sender ); |
| 88 | netif_send_wrapper( device_id, packet, sender ) |
- | |
| 89 | - | ||
| 90 | static inline int netif_start_req( int netif_phone, device_id_t device_id ){ |
52 | int netif_start_req( int netif_phone, device_id_t device_id ); |
| 91 | return netif_start_wrapper( device_id ); |
- | |
| 92 | } |
- | |
| 93 | - | ||
| 94 | static inline int netif_stop_req( int netif_phone, device_id_t device_id ){ |
53 | int netif_stop_req( int netif_phone, device_id_t device_id ); |
| 95 | return netif_stop_wrapper( device_id ); |
- | |
| 96 | } |
- | |
| 97 | - | ||
| 98 | #else |
- | |
| 99 | - | ||
| 100 | #define netif_get_addr( netif_phone, device_id, address, data ) \ |
- | |
| 101 | generic_get_addr( netif_phone, NET_NETIF_GET_ADDR, device_id, address, data ) |
- | |
| 102 | - | ||
| 103 | static inline int netif_probe_req( int netif_phone, device_id_t device_id, int irq, int io ){ |
54 | int netif_bind_service( services_t service, device_id_t device_id, services_t me, async_client_conn_t receiver ); |
| 104 | return async_req_3_0( netif_phone, NET_NETIF_PROBE, device_id, irq, io ); |
- | |
| 105 | } |
- | |
| 106 | - | ||
| 107 | #define netif_send_msg( netif_phone, device_id, packet, sender ) \ |
- | |
| 108 | generic_send_msg( netif_phone, NET_NETIF_SEND, device_id, packet_get_id( packet ), sender ) |
- | |
| 109 | - | ||
| 110 | static inline int netif_start_req( int netif_phone, device_id_t device_id ){ |
- | |
| 111 | return async_req_1_0( netif_phone, NET_NETIF_START, device_id ); |
- | |
| 112 | } |
- | |
| 113 | - | ||
| 114 | static inline int netif_stop_req( int netif_phone, device_id_t device_id ){ |
- | |
| 115 | return async_req_1_0( netif_phone, NET_NETIF_STOP, device_id ); |
- | |
| 116 | } |
- | |
| 117 | - | ||
| 118 | #endif |
- | |
| 119 | 55 | ||
| 120 | #endif |
56 | #endif |
| 121 | 57 | ||
| 122 | /** @} |
58 | /** @} |
| 123 | */ |
59 | */ |