| [bf84871] | 1 | /*
|
|---|
| 2 | * Copyright (c) 2011 Zdenek Bouska
|
|---|
| 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 |
|
|---|
| [1df224c] | 29 | /** @file e1k.c
|
|---|
| 30 | *
|
|---|
| 31 | * Driver for Intel Pro/1000 8254x Family of Gigabit Ethernet Controllers
|
|---|
| [bf84871] | 32 | *
|
|---|
| 33 | */
|
|---|
| 34 |
|
|---|
| 35 | #include <assert.h>
|
|---|
| 36 | #include <stdio.h>
|
|---|
| 37 | #include <errno.h>
|
|---|
| 38 | #include <adt/list.h>
|
|---|
| 39 | #include <align.h>
|
|---|
| 40 | #include <byteorder.h>
|
|---|
| 41 | #include <sysinfo.h>
|
|---|
| 42 | #include <ipc/irc.h>
|
|---|
| 43 | #include <ipc/ns.h>
|
|---|
| 44 | #include <libarch/ddi.h>
|
|---|
| 45 | #include <as.h>
|
|---|
| 46 | #include <ddf/interrupt.h>
|
|---|
| 47 | #include <devman.h>
|
|---|
| 48 | #include <device/hw_res_parsed.h>
|
|---|
| 49 | #include <device/pci.h>
|
|---|
| 50 | #include <nic.h>
|
|---|
| 51 | #include <nil_remote.h>
|
|---|
| 52 | #include <ops/nic.h>
|
|---|
| 53 | #include <packet_client.h>
|
|---|
| 54 | #include <packet_remote.h>
|
|---|
| 55 | #include <net/packet_header.h>
|
|---|
| [1df224c] | 56 | #include "e1k.h"
|
|---|
| [bf84871] | 57 |
|
|---|
| [1df224c] | 58 | #define NAME "e1k"
|
|---|
| [bf84871] | 59 |
|
|---|
| [9916841] | 60 | #define E1000_DEFAULT_INTERRUPT_INTERVAL_USEC 250
|
|---|
| [bf84871] | 61 |
|
|---|
| [1df224c] | 62 | /* Must be power of 8 */
|
|---|
| 63 | #define E1000_RX_PACKETS_COUNT 128
|
|---|
| 64 | #define E1000_TX_PACKETS_COUNT 128
|
|---|
| [bf84871] | 65 |
|
|---|
| [1df224c] | 66 | #define E1000_RECEIVE_ADDRESS 16
|
|---|
| [bf84871] | 67 |
|
|---|
| 68 | /** Maximum receiving packet size */
|
|---|
| [1df224c] | 69 | #define E1000_MAX_RECEIVE_PACKET_SIZE 2048
|
|---|
| [bf84871] | 70 |
|
|---|
| 71 | /** nic_driver_data_t* -> e1000_t* cast */
|
|---|
| [c4be33a] | 72 | #define DRIVER_DATA_NIC(nic) \
|
|---|
| 73 | ((e1000_t *) nic_get_specific(nic))
|
|---|
| [1df224c] | 74 |
|
|---|
| [bf84871] | 75 | /** device_t* -> nic_driver_data_t* cast */
|
|---|
| [1df224c] | 76 | #define NIC_DATA_DEV(dev) \
|
|---|
| 77 | ((nic_t *) ((dev)->driver_data))
|
|---|
| 78 |
|
|---|
| [bf84871] | 79 | /** device_t* -> e1000_t* cast */
|
|---|
| [1df224c] | 80 | #define DRIVER_DATA_DEV(dev) \
|
|---|
| 81 | (DRIVER_DATA_NIC(NIC_DATA_DEV(dev)))
|
|---|
| [bf84871] | 82 |
|
|---|
| [1df224c] | 83 | /** Cast pointer to uint64_t
|
|---|
| 84 | *
|
|---|
| 85 | * @param ptr Pointer to cast
|
|---|
| 86 | *
|
|---|
| 87 | * @return The uint64_t pointer representation.
|
|---|
| [bf84871] | 88 | *
|
|---|
| 89 | */
|
|---|
| [1df224c] | 90 | #define PTR_TO_U64(ptr) ((uint64_t) ((uintptr_t) (ptr)))
|
|---|
| [bf84871] | 91 |
|
|---|
| 92 | /** Cast the memaddr part to the void*
|
|---|
| 93 | *
|
|---|
| [1df224c] | 94 | * @param memaddr The memaddr value
|
|---|
| 95 | *
|
|---|
| [bf84871] | 96 | */
|
|---|
| [1df224c] | 97 | #define MEMADDR_TO_PTR(memaddr) ((void *) ((size_t) (memaddr)))
|
|---|
| 98 |
|
|---|
| [c4be33a] | 99 | #define E1000_REG_BASE(e1000) \
|
|---|
| 100 | ((e1000)->reg_base_virt)
|
|---|
| [bf84871] | 101 |
|
|---|
| [c4be33a] | 102 | #define E1000_REG_ADDR(e1000, reg) \
|
|---|
| 103 | ((uint32_t *) (E1000_REG_BASE(e1000) + reg))
|
|---|
| [bf84871] | 104 |
|
|---|
| [c4be33a] | 105 | #define E1000_REG_READ(e1000, reg) \
|
|---|
| 106 | (pio_read_32(E1000_REG_ADDR(e1000, reg)))
|
|---|
| [1df224c] | 107 |
|
|---|
| [c4be33a] | 108 | #define E1000_REG_WRITE(e1000, reg, value) \
|
|---|
| 109 | (pio_write_32(E1000_REG_ADDR(e1000, reg), value))
|
|---|
| [bf84871] | 110 |
|
|---|
| 111 | /** E1000 device data */
|
|---|
| [c4be33a] | 112 | typedef struct {
|
|---|
| [bf84871] | 113 | /** Physical registers base address */
|
|---|
| [c4be33a] | 114 | void *reg_base_phys;
|
|---|
| [bf84871] | 115 | /** Virtual registers base address */
|
|---|
| [c4be33a] | 116 | void *reg_base_virt;
|
|---|
| 117 |
|
|---|
| 118 | /** Physical tx ring address */
|
|---|
| 119 | void *tx_ring_phys;
|
|---|
| 120 | /** Virtual tx ring address */
|
|---|
| 121 | void *tx_ring_virt;
|
|---|
| 122 |
|
|---|
| [bf84871] | 123 | /** Packets in tx ring */
|
|---|
| [1df224c] | 124 | packet_t **tx_ring_packets;
|
|---|
| [c4be33a] | 125 |
|
|---|
| 126 | /** Physical rx ring address */
|
|---|
| 127 | void *rx_ring_phys;
|
|---|
| 128 | /** Virtual rx ring address */
|
|---|
| 129 | void *rx_ring_virt;
|
|---|
| 130 |
|
|---|
| [bf84871] | 131 | /** Packets in rx ring */
|
|---|
| [1df224c] | 132 | packet_t **rx_ring_packets;
|
|---|
| [c4be33a] | 133 |
|
|---|
| [bf84871] | 134 | /** VLAN tag */
|
|---|
| 135 | uint16_t vlan_tag;
|
|---|
| [c4be33a] | 136 |
|
|---|
| [1df224c] | 137 | /** Add VLAN tag to packet */
|
|---|
| 138 | bool vlan_tag_add;
|
|---|
| [c4be33a] | 139 |
|
|---|
| [bf84871] | 140 | /** Used unicast Receive Address count */
|
|---|
| 141 | unsigned int unicast_ra_count;
|
|---|
| [c4be33a] | 142 |
|
|---|
| [1df224c] | 143 | /** Used milticast Receive addrress count */
|
|---|
| [bf84871] | 144 | unsigned int multicast_ra_count;
|
|---|
| [c4be33a] | 145 |
|
|---|
| [bf84871] | 146 | /** PCI device ID */
|
|---|
| 147 | uint16_t device_id;
|
|---|
| [c4be33a] | 148 |
|
|---|
| [bf84871] | 149 | /** The irq assigned */
|
|---|
| 150 | int irq;
|
|---|
| [c4be33a] | 151 |
|
|---|
| [bf84871] | 152 | /** Lock for CTRL register */
|
|---|
| 153 | fibril_mutex_t ctrl_lock;
|
|---|
| [c4be33a] | 154 |
|
|---|
| [bf84871] | 155 | /** Lock for receiver */
|
|---|
| 156 | fibril_mutex_t rx_lock;
|
|---|
| [c4be33a] | 157 |
|
|---|
| [bf84871] | 158 | /** Lock for transmitter */
|
|---|
| 159 | fibril_mutex_t tx_lock;
|
|---|
| [c4be33a] | 160 |
|
|---|
| [bf84871] | 161 | /** Lock for EEPROM access */
|
|---|
| 162 | fibril_mutex_t eeprom_lock;
|
|---|
| 163 | } e1000_t;
|
|---|
| 164 |
|
|---|
| 165 | /** Global mutex for work with shared irq structure */
|
|---|
| 166 | FIBRIL_MUTEX_INITIALIZE(irq_reg_mutex);
|
|---|
| 167 |
|
|---|
| 168 | static int e1000_get_address(e1000_t *, nic_address_t *);
|
|---|
| [1df224c] | 169 | static void e1000_eeprom_get_address(e1000_t *, nic_address_t *);
|
|---|
| 170 | static int e1000_set_addr(ddf_fun_t *, const nic_address_t *);
|
|---|
| [bf84871] | 171 |
|
|---|
| [1df224c] | 172 | static int e1000_defective_get_mode(ddf_fun_t *, uint32_t *);
|
|---|
| 173 | static int e1000_defective_set_mode(ddf_fun_t *, uint32_t);
|
|---|
| [bf84871] | 174 |
|
|---|
| [1df224c] | 175 | static int e1000_get_cable_state(ddf_fun_t *, nic_cable_state_t *);
|
|---|
| 176 | static int e1000_get_device_info(ddf_fun_t *, nic_device_info_t *);
|
|---|
| 177 | static int e1000_get_operation_mode(ddf_fun_t *, int *,
|
|---|
| 178 | nic_channel_mode_t *, nic_role_t *);
|
|---|
| 179 | static int e1000_set_operation_mode(ddf_fun_t *, int,
|
|---|
| 180 | nic_channel_mode_t, nic_role_t);
|
|---|
| 181 | static int e1000_autoneg_enable(ddf_fun_t *, uint32_t);
|
|---|
| 182 | static int e1000_autoneg_disable(ddf_fun_t *);
|
|---|
| 183 | static int e1000_autoneg_restart(ddf_fun_t *);
|
|---|
| [bf84871] | 184 |
|
|---|
| [1df224c] | 185 | static int e1000_vlan_set_tag(ddf_fun_t *, uint16_t, bool, bool);
|
|---|
| [bf84871] | 186 |
|
|---|
| 187 | /** Network interface options for E1000 card driver */
|
|---|
| 188 | static nic_iface_t e1000_nic_iface;
|
|---|
| 189 |
|
|---|
| 190 | /** Network interface options for E1000 card driver */
|
|---|
| 191 | static nic_iface_t e1000_nic_iface = {
|
|---|
| 192 | .set_address = &e1000_set_addr,
|
|---|
| 193 | .get_device_info = &e1000_get_device_info,
|
|---|
| 194 | .get_cable_state = &e1000_get_cable_state,
|
|---|
| 195 | .get_operation_mode = &e1000_get_operation_mode,
|
|---|
| 196 | .set_operation_mode = &e1000_set_operation_mode,
|
|---|
| 197 | .autoneg_enable = &e1000_autoneg_enable,
|
|---|
| 198 | .autoneg_disable = &e1000_autoneg_disable,
|
|---|
| 199 | .autoneg_restart = &e1000_autoneg_restart,
|
|---|
| 200 | .vlan_set_tag = &e1000_vlan_set_tag,
|
|---|
| 201 | .defective_get_mode = &e1000_defective_get_mode,
|
|---|
| 202 | .defective_set_mode = &e1000_defective_set_mode,
|
|---|
| 203 | };
|
|---|
| 204 |
|
|---|
| 205 | /** Basic device operations for E1000 driver */
|
|---|
| 206 | static ddf_dev_ops_t e1000_dev_ops;
|
|---|
| 207 |
|
|---|
| [9916841] | 208 | static int e1000_dev_add(ddf_dev_t *);
|
|---|
| [bf84871] | 209 |
|
|---|
| 210 | /** Basic driver operations for E1000 driver */
|
|---|
| 211 | static driver_ops_t e1000_driver_ops = {
|
|---|
| [9916841] | 212 | .dev_add = e1000_dev_add
|
|---|
| [bf84871] | 213 | };
|
|---|
| 214 |
|
|---|
| 215 | /** Driver structure for E1000 driver */
|
|---|
| 216 | static driver_t e1000_driver = {
|
|---|
| 217 | .name = NAME,
|
|---|
| 218 | .driver_ops = &e1000_driver_ops
|
|---|
| 219 | };
|
|---|
| 220 |
|
|---|
| 221 | /* The default implementation callbacks */
|
|---|
| [1df224c] | 222 | static int e1000_on_activating(nic_t *);
|
|---|
| 223 | static int e1000_on_stopping(nic_t *);
|
|---|
| 224 | static void e1000_write_packet(nic_t *, packet_t *);
|
|---|
| [bf84871] | 225 |
|
|---|
| 226 | /** Commands to deal with interrupt
|
|---|
| 227 | *
|
|---|
| 228 | */
|
|---|
| 229 | irq_cmd_t e1000_irq_commands[] = {
|
|---|
| [1df224c] | 230 | {
|
|---|
| 231 | /* Get the interrupt status */
|
|---|
| 232 | .cmd = CMD_PIO_READ_32,
|
|---|
| 233 | .addr = NULL,
|
|---|
| 234 | .dstarg = 2
|
|---|
| 235 | },
|
|---|
| 236 | {
|
|---|
| 237 | .cmd = CMD_PREDICATE,
|
|---|
| 238 | .value = 2,
|
|---|
| 239 | .srcarg = 2
|
|---|
| 240 | },
|
|---|
| 241 | {
|
|---|
| 242 | /* Disable interrupts until interrupt routine is finished */
|
|---|
| 243 | .cmd = CMD_PIO_WRITE_32,
|
|---|
| 244 | .addr = NULL,
|
|---|
| [c4be33a] | 245 | .value = 0xffffffff
|
|---|
| [1df224c] | 246 | },
|
|---|
| 247 | {
|
|---|
| 248 | .cmd = CMD_ACCEPT
|
|---|
| 249 | }
|
|---|
| [bf84871] | 250 | };
|
|---|
| 251 |
|
|---|
| 252 | /** Interrupt code definition */
|
|---|
| 253 | irq_code_t e1000_irq_code = {
|
|---|
| [1df224c] | 254 | .cmdcount = sizeof(e1000_irq_commands) / sizeof(irq_cmd_t),
|
|---|
| [bf84871] | 255 | .cmds = e1000_irq_commands
|
|---|
| 256 | };
|
|---|
| 257 |
|
|---|
| 258 | /** Get the device information
|
|---|
| 259 | *
|
|---|
| [1df224c] | 260 | * @param dev NIC device
|
|---|
| 261 | * @param info Information to fill
|
|---|
| 262 | *
|
|---|
| 263 | * @return EOK
|
|---|
| 264 | *
|
|---|
| [bf84871] | 265 | */
|
|---|
| 266 | static int e1000_get_device_info(ddf_fun_t *dev, nic_device_info_t *info)
|
|---|
| 267 | {
|
|---|
| 268 | assert(dev);
|
|---|
| 269 | assert(info);
|
|---|
| [1df224c] | 270 |
|
|---|
| [bf84871] | 271 | bzero(info, sizeof(nic_device_info_t));
|
|---|
| [1df224c] | 272 |
|
|---|
| 273 | info->vendor_id = 0x8086;
|
|---|
| 274 | str_cpy(info->vendor_name, NIC_VENDOR_MAX_LENGTH,
|
|---|
| 275 | "Intel Corporation");
|
|---|
| 276 | str_cpy(info->model_name, NIC_MODEL_MAX_LENGTH,
|
|---|
| 277 | "Intel Pro");
|
|---|
| 278 |
|
|---|
| [bf84871] | 279 | info->ethernet_support[ETH_10M] = ETH_10BASE_T;
|
|---|
| 280 | info->ethernet_support[ETH_100M] = ETH_100BASE_TX;
|
|---|
| 281 | info->ethernet_support[ETH_1000M] = ETH_1000BASE_T;
|
|---|
| [1df224c] | 282 |
|
|---|
| [bf84871] | 283 | return EOK;
|
|---|
| 284 | }
|
|---|
| 285 |
|
|---|
| 286 | /** Check the cable state
|
|---|
| 287 | *
|
|---|
| [1df224c] | 288 | * @param[in] dev device
|
|---|
| 289 | * @param[out] state state to fill
|
|---|
| 290 | *
|
|---|
| 291 | * @return EOK
|
|---|
| 292 | *
|
|---|
| [bf84871] | 293 | */
|
|---|
| 294 | static int e1000_get_cable_state(ddf_fun_t *dev, nic_cable_state_t *state)
|
|---|
| 295 | {
|
|---|
| 296 | assert(dev);
|
|---|
| 297 | assert(DRIVER_DATA_DEV(dev));
|
|---|
| 298 | assert(state);
|
|---|
| [1df224c] | 299 |
|
|---|
| [c4be33a] | 300 | e1000_t *e1000 = DRIVER_DATA_DEV(dev);
|
|---|
| 301 | if (E1000_REG_READ(e1000, E1000_STATUS) & (STATUS_LU))
|
|---|
| [bf84871] | 302 | *state = NIC_CS_PLUGGED;
|
|---|
| [1df224c] | 303 | else
|
|---|
| [bf84871] | 304 | *state = NIC_CS_UNPLUGGED;
|
|---|
| [1df224c] | 305 |
|
|---|
| [bf84871] | 306 | return EOK;
|
|---|
| 307 | }
|
|---|
| 308 |
|
|---|
| [1df224c] | 309 | static uint16_t e1000_calculate_itr_interval_from_usecs(suseconds_t useconds)
|
|---|
| 310 | {
|
|---|
| [bf84871] | 311 | return useconds * 4;
|
|---|
| 312 | }
|
|---|
| 313 |
|
|---|
| 314 | /** Get operation mode of the device
|
|---|
| [1df224c] | 315 | *
|
|---|
| [bf84871] | 316 | */
|
|---|
| 317 | static int e1000_get_operation_mode(ddf_fun_t *dev, int *speed,
|
|---|
| 318 | nic_channel_mode_t *duplex, nic_role_t *role)
|
|---|
| 319 | {
|
|---|
| [c4be33a] | 320 | e1000_t *e1000 = DRIVER_DATA_DEV(dev);
|
|---|
| 321 | uint32_t status = E1000_REG_READ(e1000, E1000_STATUS);
|
|---|
| [1df224c] | 322 |
|
|---|
| 323 | if (status & STATUS_FD)
|
|---|
| [bf84871] | 324 | *duplex = NIC_CM_FULL_DUPLEX;
|
|---|
| [1df224c] | 325 | else
|
|---|
| [bf84871] | 326 | *duplex = NIC_CM_HALF_DUPLEX;
|
|---|
| [1df224c] | 327 |
|
|---|
| 328 | uint32_t speed_bits =
|
|---|
| 329 | (status >> STATUS_SPEED_SHIFT) & STATUS_SPEED_ALL;
|
|---|
| 330 |
|
|---|
| 331 | if (speed_bits == STATUS_SPEED_10)
|
|---|
| [bf84871] | 332 | *speed = 10;
|
|---|
| [1df224c] | 333 | else if (speed_bits == STATUS_SPEED_100)
|
|---|
| [bf84871] | 334 | *speed = 100;
|
|---|
| [1df224c] | 335 | else if ((speed_bits == STATUS_SPEED_1000A) ||
|
|---|
| 336 | (speed_bits == STATUS_SPEED_1000B))
|
|---|
| [bf84871] | 337 | *speed = 1000;
|
|---|
| [1df224c] | 338 |
|
|---|
| [bf84871] | 339 | *role = NIC_ROLE_UNKNOWN;
|
|---|
| 340 | return EOK;
|
|---|
| 341 | }
|
|---|
| 342 |
|
|---|
| [c4be33a] | 343 | static void e1000_link_restart(e1000_t *e1000)
|
|---|
| [bf84871] | 344 | {
|
|---|
| [c4be33a] | 345 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 346 |
|
|---|
| [c4be33a] | 347 | uint32_t ctrl = E1000_REG_READ(e1000, E1000_CTRL);
|
|---|
| [bf84871] | 348 |
|
|---|
| 349 | if (ctrl & CTRL_SLU) {
|
|---|
| 350 | ctrl &= ~(CTRL_SLU);
|
|---|
| [c4be33a] | 351 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| [bf84871] | 352 | usleep(10);
|
|---|
| [c4be33a] | 353 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| [bf84871] | 354 | ctrl |= CTRL_SLU;
|
|---|
| 355 | }
|
|---|
| [1df224c] | 356 |
|
|---|
| [c4be33a] | 357 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| [bf84871] | 358 |
|
|---|
| [c4be33a] | 359 | e1000_link_restart(e1000);
|
|---|
| [bf84871] | 360 | }
|
|---|
| 361 |
|
|---|
| 362 | /** Set operation mode of the device
|
|---|
| 363 | *
|
|---|
| 364 | */
|
|---|
| 365 | static int e1000_set_operation_mode(ddf_fun_t *dev, int speed,
|
|---|
| 366 | nic_channel_mode_t duplex, nic_role_t role)
|
|---|
| 367 | {
|
|---|
| [1df224c] | 368 | if ((speed != 10) && (speed != 100) && (speed != 1000))
|
|---|
| [bf84871] | 369 | return EINVAL;
|
|---|
| [1df224c] | 370 |
|
|---|
| 371 | if ((duplex != NIC_CM_HALF_DUPLEX) && (duplex != NIC_CM_FULL_DUPLEX))
|
|---|
| [bf84871] | 372 | return EINVAL;
|
|---|
| [1df224c] | 373 |
|
|---|
| [c4be33a] | 374 | e1000_t *e1000 = DRIVER_DATA_DEV(dev);
|
|---|
| [1df224c] | 375 |
|
|---|
| [c4be33a] | 376 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| 377 | uint32_t ctrl = E1000_REG_READ(e1000, E1000_CTRL);
|
|---|
| [1df224c] | 378 |
|
|---|
| [bf84871] | 379 | ctrl |= CTRL_FRCSPD;
|
|---|
| 380 | ctrl |= CTRL_FRCDPLX;
|
|---|
| 381 | ctrl &= ~(CTRL_ASDE);
|
|---|
| [1df224c] | 382 |
|
|---|
| 383 | if (duplex == NIC_CM_FULL_DUPLEX)
|
|---|
| [bf84871] | 384 | ctrl |= CTRL_FD;
|
|---|
| [1df224c] | 385 | else
|
|---|
| [bf84871] | 386 | ctrl &= ~(CTRL_FD);
|
|---|
| 387 |
|
|---|
| 388 | ctrl &= ~(CTRL_SPEED_MASK);
|
|---|
| [1df224c] | 389 | if (speed == 1000)
|
|---|
| [bf84871] | 390 | ctrl |= CTRL_SPEED_1000 << CTRL_SPEED_SHIFT;
|
|---|
| [1df224c] | 391 | else if (speed == 100)
|
|---|
| [bf84871] | 392 | ctrl |= CTRL_SPEED_100 << CTRL_SPEED_SHIFT;
|
|---|
| [1df224c] | 393 | else
|
|---|
| [bf84871] | 394 | ctrl |= CTRL_SPEED_10 << CTRL_SPEED_SHIFT;
|
|---|
| [1df224c] | 395 |
|
|---|
| [c4be33a] | 396 | E1000_REG_WRITE(e1000, E1000_CTRL, ctrl);
|
|---|
| [1df224c] | 397 |
|
|---|
| [c4be33a] | 398 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 399 |
|
|---|
| [c4be33a] | 400 | e1000_link_restart(e1000);
|
|---|
| [1df224c] | 401 |
|
|---|
| [bf84871] | 402 | return EOK;
|
|---|
| 403 | }
|
|---|
| 404 |
|
|---|
| [1df224c] | 405 | /** Enable auto-negotiation
|
|---|
| 406 | *
|
|---|
| 407 | * @param dev Device to update
|
|---|
| 408 | * @param advertisement Ignored on E1000
|
|---|
| 409 | *
|
|---|
| 410 | * @return EOK if advertisement mode set successfully
|
|---|
| [bf84871] | 411 | *
|
|---|
| 412 | */
|
|---|
| 413 | static int e1000_autoneg_enable(ddf_fun_t *dev, uint32_t advertisement)
|
|---|
| 414 | {
|
|---|
| [c4be33a] | 415 | e1000_t *e1000 = DRIVER_DATA_DEV(dev);
|
|---|
| [1df224c] | 416 |
|
|---|
| [c4be33a] | 417 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 418 |
|
|---|
| [c4be33a] | 419 | uint32_t ctrl = E1000_REG_READ(e1000, E1000_CTRL);
|
|---|
| [1df224c] | 420 |
|
|---|
| [bf84871] | 421 | ctrl &= ~(CTRL_FRCSPD);
|
|---|
| 422 | ctrl &= ~(CTRL_FRCDPLX);
|
|---|
| 423 | ctrl |= CTRL_ASDE;
|
|---|
| [1df224c] | 424 |
|
|---|
| [c4be33a] | 425 | E1000_REG_WRITE(e1000, E1000_CTRL, ctrl);
|
|---|
| [1df224c] | 426 |
|
|---|
| [c4be33a] | 427 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 428 |
|
|---|
| [c4be33a] | 429 | e1000_link_restart(e1000);
|
|---|
| [1df224c] | 430 |
|
|---|
| [bf84871] | 431 | return EOK;
|
|---|
| 432 | }
|
|---|
| 433 |
|
|---|
| [1df224c] | 434 | /** Disable auto-negotiation
|
|---|
| 435 | *
|
|---|
| 436 | * @param dev Device to update
|
|---|
| 437 | *
|
|---|
| 438 | * @return EOK
|
|---|
| [bf84871] | 439 | *
|
|---|
| 440 | */
|
|---|
| 441 | static int e1000_autoneg_disable(ddf_fun_t *dev)
|
|---|
| 442 | {
|
|---|
| [c4be33a] | 443 | e1000_t *e1000 = DRIVER_DATA_DEV(dev);
|
|---|
| [1df224c] | 444 |
|
|---|
| [c4be33a] | 445 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 446 |
|
|---|
| [c4be33a] | 447 | uint32_t ctrl = E1000_REG_READ(e1000, E1000_CTRL);
|
|---|
| [1df224c] | 448 |
|
|---|
| [bf84871] | 449 | ctrl |= CTRL_FRCSPD;
|
|---|
| 450 | ctrl |= CTRL_FRCDPLX;
|
|---|
| 451 | ctrl &= ~(CTRL_ASDE);
|
|---|
| [1df224c] | 452 |
|
|---|
| [c4be33a] | 453 | E1000_REG_WRITE(e1000, E1000_CTRL, ctrl);
|
|---|
| [1df224c] | 454 |
|
|---|
| [c4be33a] | 455 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 456 |
|
|---|
| [c4be33a] | 457 | e1000_link_restart(e1000);
|
|---|
| [1df224c] | 458 |
|
|---|
| [bf84871] | 459 | return EOK;
|
|---|
| 460 | }
|
|---|
| 461 |
|
|---|
| [1df224c] | 462 | /** Restart auto-negotiation
|
|---|
| 463 | *
|
|---|
| 464 | * @param dev Device to update
|
|---|
| 465 | *
|
|---|
| 466 | * @return EOK if advertisement mode set successfully
|
|---|
| [bf84871] | 467 | *
|
|---|
| 468 | */
|
|---|
| 469 | static int e1000_autoneg_restart(ddf_fun_t *dev)
|
|---|
| 470 | {
|
|---|
| 471 | return e1000_autoneg_enable(dev, 0);
|
|---|
| 472 | }
|
|---|
| 473 |
|
|---|
| 474 | /** Get state of acceptance of weird packets
|
|---|
| 475 | *
|
|---|
| [1df224c] | 476 | * @param device Device to check
|
|---|
| 477 | * @param[out] mode Current mode
|
|---|
| 478 | *
|
|---|
| [bf84871] | 479 | */
|
|---|
| 480 | static int e1000_defective_get_mode(ddf_fun_t *device, uint32_t *mode)
|
|---|
| 481 | {
|
|---|
| [c4be33a] | 482 | e1000_t *e1000 = DRIVER_DATA_DEV(device);
|
|---|
| [1df224c] | 483 |
|
|---|
| [bf84871] | 484 | *mode = 0;
|
|---|
| [c4be33a] | 485 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [1df224c] | 486 | if (rctl & RCTL_SBP)
|
|---|
| [bf84871] | 487 | *mode = NIC_DEFECTIVE_BAD_CRC | NIC_DEFECTIVE_SHORT;
|
|---|
| [1df224c] | 488 |
|
|---|
| [bf84871] | 489 | return EOK;
|
|---|
| 490 | };
|
|---|
| 491 |
|
|---|
| 492 | /** Set acceptance of weird packets
|
|---|
| 493 | *
|
|---|
| [1df224c] | 494 | * @param device Device to update
|
|---|
| 495 | * @param mode Mode to set
|
|---|
| 496 | *
|
|---|
| 497 | * @return ENOTSUP if the mode is not supported
|
|---|
| 498 | * @return EOK of mode was set
|
|---|
| 499 | *
|
|---|
| [bf84871] | 500 | */
|
|---|
| 501 | static int e1000_defective_set_mode(ddf_fun_t *device, uint32_t mode)
|
|---|
| 502 | {
|
|---|
| [c4be33a] | 503 | e1000_t *e1000 = DRIVER_DATA_DEV(device);
|
|---|
| [bf84871] | 504 | int rc = EOK;
|
|---|
| [1df224c] | 505 |
|
|---|
| [c4be33a] | 506 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [1df224c] | 507 |
|
|---|
| [c4be33a] | 508 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 509 | bool short_mode = (mode & NIC_DEFECTIVE_SHORT ? true : false);
|
|---|
| 510 | bool bad_mode = (mode & NIC_DEFECTIVE_BAD_CRC ? true : false);
|
|---|
| [1df224c] | 511 |
|
|---|
| 512 | if (short_mode && bad_mode)
|
|---|
| [bf84871] | 513 | rctl |= RCTL_SBP;
|
|---|
| [1df224c] | 514 | else if ((!short_mode) && (!bad_mode))
|
|---|
| [bf84871] | 515 | rctl &= ~RCTL_SBP;
|
|---|
| [1df224c] | 516 | else
|
|---|
| [bf84871] | 517 | rc = ENOTSUP;
|
|---|
| [1df224c] | 518 |
|
|---|
| [c4be33a] | 519 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [1df224c] | 520 |
|
|---|
| [c4be33a] | 521 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 522 | return rc;
|
|---|
| 523 | };
|
|---|
| 524 |
|
|---|
| 525 | /** Write receive address to RA registr
|
|---|
| 526 | *
|
|---|
| [c4be33a] | 527 | * @param e1000 E1000 data structure
|
|---|
| [1df224c] | 528 | * @param position RA register position
|
|---|
| 529 | * @param address Ethernet address
|
|---|
| 530 | * @param set_av_bit Set the Addtess Valid bit
|
|---|
| 531 | *
|
|---|
| [bf84871] | 532 | */
|
|---|
| [c4be33a] | 533 | static void e1000_write_receive_address(e1000_t *e1000, unsigned int position,
|
|---|
| 534 | const nic_address_t * address, bool set_av_bit)
|
|---|
| [1df224c] | 535 | {
|
|---|
| 536 | uint8_t *mac0 = (uint8_t *) address->address;
|
|---|
| 537 | uint8_t *mac1 = (uint8_t *) address->address + 1;
|
|---|
| 538 | uint8_t *mac2 = (uint8_t *) address->address + 2;
|
|---|
| 539 | uint8_t *mac3 = (uint8_t *) address->address + 3;
|
|---|
| 540 | uint8_t *mac4 = (uint8_t *) address->address + 4;
|
|---|
| 541 | uint8_t *mac5 = (uint8_t *) address->address + 5;
|
|---|
| 542 |
|
|---|
| [bf84871] | 543 | uint32_t rah;
|
|---|
| 544 | uint32_t ral;
|
|---|
| [1df224c] | 545 |
|
|---|
| [bf84871] | 546 | ral = ((*mac3) << 24) | ((*mac2) << 16) | ((*mac1) << 8) | (*mac0);
|
|---|
| 547 | rah = ((*mac5) << 8) | ((*mac4));
|
|---|
| [1df224c] | 548 |
|
|---|
| 549 | if (set_av_bit)
|
|---|
| [bf84871] | 550 | rah |= RAH_AV;
|
|---|
| [1df224c] | 551 | else
|
|---|
| [c4be33a] | 552 | rah |= E1000_REG_READ(e1000, E1000_RAH_ARRAY(position)) & RAH_AV;
|
|---|
| [1df224c] | 553 |
|
|---|
| [c4be33a] | 554 | E1000_REG_WRITE(e1000, E1000_RAH_ARRAY(position), rah);
|
|---|
| 555 | E1000_REG_WRITE(e1000, E1000_RAL_ARRAY(position), ral);
|
|---|
| [bf84871] | 556 | }
|
|---|
| 557 |
|
|---|
| 558 | /** Disable receive address in RA registr
|
|---|
| 559 | *
|
|---|
| [1df224c] | 560 | * Clear Address Valid bit
|
|---|
| 561 | *
|
|---|
| [c4be33a] | 562 | * @param e1000 E1000 data structure
|
|---|
| 563 | * @param position RA register position
|
|---|
| [1df224c] | 564 | *
|
|---|
| [bf84871] | 565 | */
|
|---|
| [c4be33a] | 566 | static void e1000_disable_receive_address(e1000_t *e1000, unsigned int position)
|
|---|
| [bf84871] | 567 | {
|
|---|
| [c4be33a] | 568 | uint32_t rah = E1000_REG_READ(e1000, E1000_RAH_ARRAY(position));
|
|---|
| [bf84871] | 569 | rah = rah & ~RAH_AV;
|
|---|
| [c4be33a] | 570 | E1000_REG_WRITE(e1000, E1000_RAH_ARRAY(position), rah);
|
|---|
| [bf84871] | 571 | }
|
|---|
| 572 |
|
|---|
| [1df224c] | 573 | /** Clear all unicast addresses from RA registers
|
|---|
| 574 | *
|
|---|
| [c4be33a] | 575 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 576 | *
|
|---|
| 577 | */
|
|---|
| [c4be33a] | 578 | static void e1000_clear_unicast_receive_addresses(e1000_t *e1000)
|
|---|
| [bf84871] | 579 | {
|
|---|
| [1df224c] | 580 | for (unsigned int ra_num = 1;
|
|---|
| [c4be33a] | 581 | ra_num <= e1000->unicast_ra_count;
|
|---|
| [1df224c] | 582 | ra_num++)
|
|---|
| [c4be33a] | 583 | e1000_disable_receive_address(e1000, ra_num);
|
|---|
| [1df224c] | 584 |
|
|---|
| [c4be33a] | 585 | e1000->unicast_ra_count = 0;
|
|---|
| [bf84871] | 586 | }
|
|---|
| 587 |
|
|---|
| [1df224c] | 588 | /** Clear all multicast addresses from RA registers
|
|---|
| 589 | *
|
|---|
| [c4be33a] | 590 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 591 | *
|
|---|
| 592 | */
|
|---|
| [c4be33a] | 593 | static void e1000_clear_multicast_receive_addresses(e1000_t *e1000)
|
|---|
| [bf84871] | 594 | {
|
|---|
| [1df224c] | 595 | unsigned int first_multicast_ra_num =
|
|---|
| [c4be33a] | 596 | E1000_RECEIVE_ADDRESS - e1000->multicast_ra_count;
|
|---|
| [1df224c] | 597 |
|
|---|
| 598 | for (unsigned int ra_num = E1000_RECEIVE_ADDRESS - 1;
|
|---|
| 599 | ra_num >= first_multicast_ra_num;
|
|---|
| 600 | ra_num--)
|
|---|
| [c4be33a] | 601 | e1000_disable_receive_address(e1000, ra_num);
|
|---|
| [1df224c] | 602 |
|
|---|
| [c4be33a] | 603 | e1000->multicast_ra_count = 0;
|
|---|
| [bf84871] | 604 | }
|
|---|
| 605 |
|
|---|
| [1df224c] | 606 | /** Return receive address filter positions count usable for unicast
|
|---|
| 607 | *
|
|---|
| [c4be33a] | 608 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 609 | *
|
|---|
| 610 | * @return receive address filter positions count usable for unicast
|
|---|
| [1df224c] | 611 | *
|
|---|
| [bf84871] | 612 | */
|
|---|
| [c4be33a] | 613 | static unsigned int get_free_unicast_address_count(e1000_t *e1000)
|
|---|
| [bf84871] | 614 | {
|
|---|
| [c4be33a] | 615 | return E1000_RECEIVE_ADDRESS - 1 - e1000->multicast_ra_count;
|
|---|
| [bf84871] | 616 | }
|
|---|
| 617 |
|
|---|
| [1df224c] | 618 | /** Return receive address filter positions count usable for multicast
|
|---|
| 619 | *
|
|---|
| [c4be33a] | 620 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 621 | *
|
|---|
| 622 | * @return receive address filter positions count usable for multicast
|
|---|
| [1df224c] | 623 | *
|
|---|
| [bf84871] | 624 | */
|
|---|
| [c4be33a] | 625 | static unsigned int get_free_multicast_address_count(e1000_t *e1000)
|
|---|
| [bf84871] | 626 | {
|
|---|
| [c4be33a] | 627 | return E1000_RECEIVE_ADDRESS - 1 - e1000->unicast_ra_count;
|
|---|
| [bf84871] | 628 | }
|
|---|
| 629 |
|
|---|
| [1df224c] | 630 | /** Write unicast receive addresses to receive address filter registers
|
|---|
| 631 | *
|
|---|
| [c4be33a] | 632 | * @param e1000 E1000 data structure
|
|---|
| 633 | * @param addr Pointer to address array
|
|---|
| 634 | * @param addr_cnt Address array count
|
|---|
| [bf84871] | 635 | *
|
|---|
| 636 | */
|
|---|
| [c4be33a] | 637 | static void e1000_add_unicast_receive_addresses(e1000_t *e1000,
|
|---|
| [1df224c] | 638 | const nic_address_t *addr, size_t addr_cnt)
|
|---|
| [bf84871] | 639 | {
|
|---|
| [c4be33a] | 640 | assert(addr_cnt <= get_free_unicast_address_count(e1000));
|
|---|
| [1df224c] | 641 |
|
|---|
| 642 | nic_address_t *addr_iterator = (nic_address_t *) addr;
|
|---|
| 643 |
|
|---|
| 644 | /* ra_num = 0 is primary address */
|
|---|
| 645 | for (unsigned int ra_num = 1;
|
|---|
| 646 | ra_num <= addr_cnt;
|
|---|
| 647 | ra_num++) {
|
|---|
| [c4be33a] | 648 | e1000_write_receive_address(e1000, ra_num, addr_iterator, true);
|
|---|
| [bf84871] | 649 | addr_iterator++;
|
|---|
| 650 | }
|
|---|
| 651 | }
|
|---|
| 652 |
|
|---|
| [1df224c] | 653 | /** Write multicast receive addresses to receive address filter registers
|
|---|
| 654 | *
|
|---|
| [c4be33a] | 655 | * @param e1000 E1000 data structure
|
|---|
| 656 | * @param addr Pointer to address array
|
|---|
| 657 | * @param addr_cnt Address array count
|
|---|
| [bf84871] | 658 | *
|
|---|
| 659 | */
|
|---|
| [c4be33a] | 660 | static void e1000_add_multicast_receive_addresses(e1000_t *e1000,
|
|---|
| [1df224c] | 661 | const nic_address_t *addr, size_t addr_cnt)
|
|---|
| [bf84871] | 662 | {
|
|---|
| [c4be33a] | 663 | assert(addr_cnt <= get_free_multicast_address_count(e1000));
|
|---|
| [1df224c] | 664 |
|
|---|
| 665 | nic_address_t *addr_iterator = (nic_address_t *) addr;
|
|---|
| 666 |
|
|---|
| [bf84871] | 667 | unsigned int first_multicast_ra_num = E1000_RECEIVE_ADDRESS - addr_cnt;
|
|---|
| [1df224c] | 668 | for (unsigned int ra_num = E1000_RECEIVE_ADDRESS - 1;
|
|---|
| 669 | ra_num >= first_multicast_ra_num;
|
|---|
| [9916841] | 670 | ra_num--) {
|
|---|
| [c4be33a] | 671 | e1000_write_receive_address(e1000, ra_num, addr_iterator, true);
|
|---|
| [bf84871] | 672 | addr_iterator++;
|
|---|
| 673 | }
|
|---|
| 674 | }
|
|---|
| 675 |
|
|---|
| [1df224c] | 676 | /** Disable receiving packets for default address
|
|---|
| 677 | *
|
|---|
| [c4be33a] | 678 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 679 | *
|
|---|
| 680 | */
|
|---|
| [c4be33a] | 681 | static void disable_ra0_address_filter(e1000_t *e1000)
|
|---|
| [bf84871] | 682 | {
|
|---|
| [c4be33a] | 683 | uint32_t rah0 = E1000_REG_READ(e1000, E1000_RAH_ARRAY(0));
|
|---|
| [bf84871] | 684 | rah0 = rah0 & ~RAH_AV;
|
|---|
| [c4be33a] | 685 | E1000_REG_WRITE(e1000, E1000_RAH_ARRAY(0), rah0);
|
|---|
| [bf84871] | 686 | }
|
|---|
| 687 |
|
|---|
| [1df224c] | 688 | /** Enable receiving packets for default address
|
|---|
| 689 | *
|
|---|
| [c4be33a] | 690 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 691 | *
|
|---|
| 692 | */
|
|---|
| [c4be33a] | 693 | static void enable_ra0_address_filter(e1000_t *e1000)
|
|---|
| [bf84871] | 694 | {
|
|---|
| [c4be33a] | 695 | uint32_t rah0 = E1000_REG_READ(e1000, E1000_RAH_ARRAY(0));
|
|---|
| [bf84871] | 696 | rah0 = rah0 | RAH_AV;
|
|---|
| [c4be33a] | 697 | E1000_REG_WRITE(e1000, E1000_RAH_ARRAY(0), rah0);
|
|---|
| [bf84871] | 698 | }
|
|---|
| 699 |
|
|---|
| [1df224c] | 700 | /** Disable unicast promiscuous mode
|
|---|
| 701 | *
|
|---|
| [c4be33a] | 702 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 703 | *
|
|---|
| 704 | */
|
|---|
| [c4be33a] | 705 | static void e1000_disable_unicast_promisc(e1000_t *e1000)
|
|---|
| [bf84871] | 706 | {
|
|---|
| [c4be33a] | 707 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 708 | rctl = rctl & ~RCTL_UPE;
|
|---|
| [c4be33a] | 709 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [bf84871] | 710 | }
|
|---|
| 711 |
|
|---|
| [1df224c] | 712 | /** Enable unicast promiscuous mode
|
|---|
| 713 | *
|
|---|
| [c4be33a] | 714 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 715 | *
|
|---|
| 716 | */
|
|---|
| [c4be33a] | 717 | static void e1000_enable_unicast_promisc(e1000_t *e1000)
|
|---|
| [bf84871] | 718 | {
|
|---|
| [c4be33a] | 719 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 720 | rctl = rctl | RCTL_UPE;
|
|---|
| [c4be33a] | 721 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [bf84871] | 722 | }
|
|---|
| 723 |
|
|---|
| [1df224c] | 724 | /** Disable multicast promiscuous mode
|
|---|
| 725 | *
|
|---|
| [c4be33a] | 726 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 727 | *
|
|---|
| 728 | */
|
|---|
| [c4be33a] | 729 | static void e1000_disable_multicast_promisc(e1000_t *e1000)
|
|---|
| [bf84871] | 730 | {
|
|---|
| [c4be33a] | 731 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 732 | rctl = rctl & ~RCTL_MPE;
|
|---|
| [c4be33a] | 733 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [bf84871] | 734 | }
|
|---|
| 735 |
|
|---|
| [1df224c] | 736 | /** Enable multicast promiscuous mode
|
|---|
| 737 | *
|
|---|
| [c4be33a] | 738 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 739 | *
|
|---|
| 740 | */
|
|---|
| [c4be33a] | 741 | static void e1000_enable_multicast_promisc(e1000_t *e1000)
|
|---|
| [bf84871] | 742 | {
|
|---|
| [c4be33a] | 743 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 744 | rctl = rctl | RCTL_MPE;
|
|---|
| [c4be33a] | 745 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [bf84871] | 746 | }
|
|---|
| 747 |
|
|---|
| [1df224c] | 748 | /** Enable accepting of broadcast packets
|
|---|
| 749 | *
|
|---|
| [c4be33a] | 750 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 751 | *
|
|---|
| 752 | */
|
|---|
| [c4be33a] | 753 | static void e1000_enable_broadcast_accept(e1000_t *e1000)
|
|---|
| [bf84871] | 754 | {
|
|---|
| [c4be33a] | 755 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 756 | rctl = rctl | RCTL_BAM;
|
|---|
| [c4be33a] | 757 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [bf84871] | 758 | }
|
|---|
| 759 |
|
|---|
| [1df224c] | 760 | /** Disable accepting of broadcast packets
|
|---|
| 761 | *
|
|---|
| [c4be33a] | 762 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 763 | *
|
|---|
| 764 | */
|
|---|
| [c4be33a] | 765 | static void e1000_disable_broadcast_accept(e1000_t *e1000)
|
|---|
| [bf84871] | 766 | {
|
|---|
| [c4be33a] | 767 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 768 | rctl = rctl & ~RCTL_BAM;
|
|---|
| [c4be33a] | 769 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [bf84871] | 770 | }
|
|---|
| 771 |
|
|---|
| [1df224c] | 772 | /** Enable VLAN filtering according to VFTA registers
|
|---|
| 773 | *
|
|---|
| [c4be33a] | 774 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 775 | *
|
|---|
| 776 | */
|
|---|
| [c4be33a] | 777 | static void e1000_enable_vlan_filter(e1000_t *e1000)
|
|---|
| [bf84871] | 778 | {
|
|---|
| [c4be33a] | 779 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 780 | rctl = rctl | RCTL_VFE;
|
|---|
| [c4be33a] | 781 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [bf84871] | 782 | }
|
|---|
| 783 |
|
|---|
| [1df224c] | 784 | /** Disable VLAN filtering
|
|---|
| 785 | *
|
|---|
| [c4be33a] | 786 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 787 | *
|
|---|
| 788 | */
|
|---|
| [c4be33a] | 789 | static void e1000_disable_vlan_filter(e1000_t *e1000)
|
|---|
| [bf84871] | 790 | {
|
|---|
| [c4be33a] | 791 | uint32_t rctl = E1000_REG_READ(e1000, E1000_RCTL);
|
|---|
| [bf84871] | 792 | rctl = rctl & ~RCTL_VFE;
|
|---|
| [c4be33a] | 793 | E1000_REG_WRITE(e1000, E1000_RCTL, rctl);
|
|---|
| [bf84871] | 794 | }
|
|---|
| 795 |
|
|---|
| 796 | /** Set multicast packets acceptance mode
|
|---|
| 797 | *
|
|---|
| [c4be33a] | 798 | * @param nic NIC device to update
|
|---|
| [1df224c] | 799 | * @param mode Mode to set
|
|---|
| 800 | * @param addr Address list (used in mode = NIC_MULTICAST_LIST)
|
|---|
| 801 | * @param addr_cnt Length of address list (used in mode = NIC_MULTICAST_LIST)
|
|---|
| 802 | *
|
|---|
| 803 | * @return EOK
|
|---|
| [bf84871] | 804 | *
|
|---|
| 805 | */
|
|---|
| [c4be33a] | 806 | static int e1000_on_multicast_mode_change(nic_t *nic, nic_multicast_mode_t mode,
|
|---|
| 807 | const nic_address_t *addr, size_t addr_cnt)
|
|---|
| [bf84871] | 808 | {
|
|---|
| [c4be33a] | 809 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 810 | int rc = EOK;
|
|---|
| 811 |
|
|---|
| [c4be33a] | 812 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [1df224c] | 813 |
|
|---|
| [bf84871] | 814 | switch (mode) {
|
|---|
| 815 | case NIC_MULTICAST_BLOCKED:
|
|---|
| [c4be33a] | 816 | e1000_clear_multicast_receive_addresses(e1000);
|
|---|
| 817 | e1000_disable_multicast_promisc(e1000);
|
|---|
| 818 | nic_report_hw_filtering(nic, -1, 1, -1);
|
|---|
| [bf84871] | 819 | break;
|
|---|
| 820 | case NIC_MULTICAST_LIST:
|
|---|
| [c4be33a] | 821 | e1000_clear_multicast_receive_addresses(e1000);
|
|---|
| 822 | if (addr_cnt > get_free_multicast_address_count(e1000)) {
|
|---|
| [1df224c] | 823 | /*
|
|---|
| 824 | * Future work: fill MTA table
|
|---|
| 825 | * Not strictly neccessary, it only saves some compares
|
|---|
| 826 | * in the NIC library.
|
|---|
| 827 | */
|
|---|
| [c4be33a] | 828 | e1000_enable_multicast_promisc(e1000);
|
|---|
| 829 | nic_report_hw_filtering(nic, -1, 0, -1);
|
|---|
| [bf84871] | 830 | } else {
|
|---|
| [c4be33a] | 831 | e1000_disable_multicast_promisc(e1000);
|
|---|
| 832 | e1000_add_multicast_receive_addresses(e1000, addr, addr_cnt);
|
|---|
| 833 | nic_report_hw_filtering(nic, -1, 1, -1);
|
|---|
| [bf84871] | 834 | }
|
|---|
| 835 | break;
|
|---|
| 836 | case NIC_MULTICAST_PROMISC:
|
|---|
| [c4be33a] | 837 | e1000_enable_multicast_promisc(e1000);
|
|---|
| 838 | e1000_clear_multicast_receive_addresses(e1000);
|
|---|
| 839 | nic_report_hw_filtering(nic, -1, 1, -1);
|
|---|
| [bf84871] | 840 | break;
|
|---|
| 841 | default:
|
|---|
| 842 | rc = ENOTSUP;
|
|---|
| 843 | break;
|
|---|
| 844 | }
|
|---|
| [1df224c] | 845 |
|
|---|
| [c4be33a] | 846 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 847 | return rc;
|
|---|
| 848 | }
|
|---|
| [1df224c] | 849 |
|
|---|
| [bf84871] | 850 | /** Set unicast packets acceptance mode
|
|---|
| 851 | *
|
|---|
| [c4be33a] | 852 | * @param nic NIC device to update
|
|---|
| [1df224c] | 853 | * @param mode Mode to set
|
|---|
| 854 | * @param addr Address list (used in mode = NIC_MULTICAST_LIST)
|
|---|
| 855 | * @param addr_cnt Length of address list (used in mode = NIC_MULTICAST_LIST)
|
|---|
| 856 | *
|
|---|
| 857 | * @return EOK
|
|---|
| [bf84871] | 858 | *
|
|---|
| 859 | */
|
|---|
| [c4be33a] | 860 | static int e1000_on_unicast_mode_change(nic_t *nic, nic_unicast_mode_t mode,
|
|---|
| 861 | const nic_address_t *addr, size_t addr_cnt)
|
|---|
| [bf84871] | 862 | {
|
|---|
| [c4be33a] | 863 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 864 | int rc = EOK;
|
|---|
| 865 |
|
|---|
| [c4be33a] | 866 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [1df224c] | 867 |
|
|---|
| [bf84871] | 868 | switch (mode) {
|
|---|
| 869 | case NIC_UNICAST_BLOCKED:
|
|---|
| [c4be33a] | 870 | disable_ra0_address_filter(e1000);
|
|---|
| 871 | e1000_clear_unicast_receive_addresses(e1000);
|
|---|
| 872 | e1000_disable_unicast_promisc(e1000);
|
|---|
| 873 | nic_report_hw_filtering(nic, 1, -1, -1);
|
|---|
| [bf84871] | 874 | break;
|
|---|
| 875 | case NIC_UNICAST_DEFAULT:
|
|---|
| [c4be33a] | 876 | enable_ra0_address_filter(e1000);
|
|---|
| 877 | e1000_clear_unicast_receive_addresses(e1000);
|
|---|
| 878 | e1000_disable_unicast_promisc(e1000);
|
|---|
| 879 | nic_report_hw_filtering(nic, 1, -1, -1);
|
|---|
| [bf84871] | 880 | break;
|
|---|
| 881 | case NIC_UNICAST_LIST:
|
|---|
| [c4be33a] | 882 | enable_ra0_address_filter(e1000);
|
|---|
| 883 | e1000_clear_unicast_receive_addresses(e1000);
|
|---|
| 884 | if (addr_cnt > get_free_unicast_address_count(e1000)) {
|
|---|
| 885 | e1000_enable_unicast_promisc(e1000);
|
|---|
| 886 | nic_report_hw_filtering(nic, 0, -1, -1);
|
|---|
| [bf84871] | 887 | } else {
|
|---|
| [c4be33a] | 888 | e1000_disable_unicast_promisc(e1000);
|
|---|
| 889 | e1000_add_unicast_receive_addresses(e1000, addr, addr_cnt);
|
|---|
| 890 | nic_report_hw_filtering(nic, 1, -1, -1);
|
|---|
| [bf84871] | 891 | }
|
|---|
| 892 | break;
|
|---|
| 893 | case NIC_UNICAST_PROMISC:
|
|---|
| [c4be33a] | 894 | e1000_enable_unicast_promisc(e1000);
|
|---|
| 895 | enable_ra0_address_filter(e1000);
|
|---|
| 896 | e1000_clear_unicast_receive_addresses(e1000);
|
|---|
| 897 | nic_report_hw_filtering(nic, 1, -1, -1);
|
|---|
| [bf84871] | 898 | break;
|
|---|
| 899 | default:
|
|---|
| 900 | rc = ENOTSUP;
|
|---|
| 901 | break;
|
|---|
| 902 | }
|
|---|
| [1df224c] | 903 |
|
|---|
| [c4be33a] | 904 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 905 | return rc;
|
|---|
| 906 | }
|
|---|
| 907 |
|
|---|
| 908 | /** Set broadcast packets acceptance mode
|
|---|
| 909 | *
|
|---|
| [c4be33a] | 910 | * @param nic NIC device to update
|
|---|
| 911 | * @param mode Mode to set
|
|---|
| [1df224c] | 912 | *
|
|---|
| 913 | * @return EOK
|
|---|
| [bf84871] | 914 | *
|
|---|
| 915 | */
|
|---|
| [c4be33a] | 916 | static int e1000_on_broadcast_mode_change(nic_t *nic, nic_broadcast_mode_t mode)
|
|---|
| [bf84871] | 917 | {
|
|---|
| [c4be33a] | 918 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 919 | int rc = EOK;
|
|---|
| 920 |
|
|---|
| [c4be33a] | 921 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [1df224c] | 922 |
|
|---|
| [bf84871] | 923 | switch (mode) {
|
|---|
| 924 | case NIC_BROADCAST_BLOCKED:
|
|---|
| [c4be33a] | 925 | e1000_disable_broadcast_accept(e1000);
|
|---|
| [bf84871] | 926 | break;
|
|---|
| 927 | case NIC_BROADCAST_ACCEPTED:
|
|---|
| [c4be33a] | 928 | e1000_enable_broadcast_accept(e1000);
|
|---|
| [bf84871] | 929 | break;
|
|---|
| 930 | default:
|
|---|
| 931 | rc = ENOTSUP;
|
|---|
| 932 | break;
|
|---|
| 933 | }
|
|---|
| [1df224c] | 934 |
|
|---|
| [c4be33a] | 935 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 936 | return rc;
|
|---|
| 937 | }
|
|---|
| 938 |
|
|---|
| [1df224c] | 939 | /** Check if receiving is enabled
|
|---|
| 940 | *
|
|---|
| [c4be33a] | 941 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 942 | *
|
|---|
| 943 | * @return true if receiving is enabled
|
|---|
| [1df224c] | 944 | *
|
|---|
| [bf84871] | 945 | */
|
|---|
| [c4be33a] | 946 | static bool e1000_is_rx_enabled(e1000_t *e1000)
|
|---|
| [bf84871] | 947 | {
|
|---|
| [c4be33a] | 948 | if (E1000_REG_READ(e1000, E1000_RCTL) & (RCTL_EN))
|
|---|
| [bf84871] | 949 | return true;
|
|---|
| [1df224c] | 950 |
|
|---|
| 951 | return false;
|
|---|
| [bf84871] | 952 | }
|
|---|
| 953 |
|
|---|
| [1df224c] | 954 | /** Enable receiving
|
|---|
| 955 | *
|
|---|
| [c4be33a] | 956 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 957 | *
|
|---|
| 958 | */
|
|---|
| [c4be33a] | 959 | static void e1000_enable_rx(e1000_t *e1000)
|
|---|
| [bf84871] | 960 | {
|
|---|
| [1df224c] | 961 | /* Set Receive Enable Bit */
|
|---|
| [c4be33a] | 962 | E1000_REG_WRITE(e1000, E1000_RCTL,
|
|---|
| 963 | E1000_REG_READ(e1000, E1000_RCTL) | (RCTL_EN));
|
|---|
| [bf84871] | 964 | }
|
|---|
| 965 |
|
|---|
| [1df224c] | 966 | /** Disable receiving
|
|---|
| 967 | *
|
|---|
| [c4be33a] | 968 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 969 | *
|
|---|
| 970 | */
|
|---|
| [c4be33a] | 971 | static void e1000_disable_rx(e1000_t *e1000)
|
|---|
| [bf84871] | 972 | {
|
|---|
| [1df224c] | 973 | /* Clear Receive Enable Bit */
|
|---|
| [c4be33a] | 974 | E1000_REG_WRITE(e1000, E1000_RCTL,
|
|---|
| 975 | E1000_REG_READ(e1000, E1000_RCTL) & ~(RCTL_EN));
|
|---|
| [bf84871] | 976 | }
|
|---|
| 977 |
|
|---|
| 978 | /** Set VLAN mask
|
|---|
| 979 | *
|
|---|
| [c4be33a] | 980 | * @param nic NIC device to update
|
|---|
| [1df224c] | 981 | * @param vlan_mask VLAN mask
|
|---|
| 982 | *
|
|---|
| [bf84871] | 983 | */
|
|---|
| [c4be33a] | 984 | static void e1000_on_vlan_mask_change(nic_t *nic,
|
|---|
| 985 | const nic_vlan_mask_t *vlan_mask)
|
|---|
| [bf84871] | 986 | {
|
|---|
| [c4be33a] | 987 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 988 |
|
|---|
| [c4be33a] | 989 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [1df224c] | 990 |
|
|---|
| [bf84871] | 991 | if (vlan_mask) {
|
|---|
| [1df224c] | 992 | /*
|
|---|
| 993 | * Disable receiving, so that packet matching
|
|---|
| 994 | * partially written VLAN is not received.
|
|---|
| 995 | */
|
|---|
| [c4be33a] | 996 | bool rx_enabled = e1000_is_rx_enabled(e1000);
|
|---|
| [1df224c] | 997 | if (rx_enabled)
|
|---|
| [c4be33a] | 998 | e1000_disable_rx(e1000);
|
|---|
| [1df224c] | 999 |
|
|---|
| 1000 | for (unsigned int i = 0; i < NIC_VLAN_BITMAP_SIZE; i += 4) {
|
|---|
| 1001 | uint32_t bitmap_part =
|
|---|
| 1002 | ((uint32_t) vlan_mask->bitmap[i]) |
|
|---|
| 1003 | (((uint32_t) vlan_mask->bitmap[i + 1]) << 8) |
|
|---|
| 1004 | (((uint32_t) vlan_mask->bitmap[i + 2]) << 16) |
|
|---|
| 1005 | (((uint32_t) vlan_mask->bitmap[i + 3]) << 24);
|
|---|
| [c4be33a] | 1006 | E1000_REG_WRITE(e1000, E1000_VFTA_ARRAY(i / 4), bitmap_part);
|
|---|
| [bf84871] | 1007 | }
|
|---|
| [1df224c] | 1008 |
|
|---|
| [c4be33a] | 1009 | e1000_enable_vlan_filter(e1000);
|
|---|
| [1df224c] | 1010 | if (rx_enabled)
|
|---|
| [c4be33a] | 1011 | e1000_enable_rx(e1000);
|
|---|
| [1df224c] | 1012 | } else
|
|---|
| [c4be33a] | 1013 | e1000_disable_vlan_filter(e1000);
|
|---|
| [bf84871] | 1014 |
|
|---|
| [c4be33a] | 1015 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 1016 | }
|
|---|
| 1017 |
|
|---|
| 1018 | /** Set VLAN mask
|
|---|
| 1019 | *
|
|---|
| [1df224c] | 1020 | * @param device E1000 device
|
|---|
| 1021 | * @param tag VLAN tag
|
|---|
| 1022 | *
|
|---|
| 1023 | * @return EOK
|
|---|
| 1024 | * @return ENOTSUP
|
|---|
| [bf84871] | 1025 | *
|
|---|
| 1026 | */
|
|---|
| [1df224c] | 1027 | static int e1000_vlan_set_tag(ddf_fun_t *device, uint16_t tag, bool add,
|
|---|
| 1028 | bool strip)
|
|---|
| [bf84871] | 1029 | {
|
|---|
| [1df224c] | 1030 | /* VLAN CFI bit cannot be set */
|
|---|
| 1031 | if (tag & VLANTAG_CFI)
|
|---|
| [bf84871] | 1032 | return ENOTSUP;
|
|---|
| [1df224c] | 1033 |
|
|---|
| 1034 | /*
|
|---|
| 1035 | * CTRL.VME is neccessary for both strip and add
|
|---|
| 1036 | * but CTRL.VME means stripping tags on receive.
|
|---|
| 1037 | */
|
|---|
| 1038 | if (!strip && add)
|
|---|
| [bf84871] | 1039 | return ENOTSUP;
|
|---|
| 1040 |
|
|---|
| [c4be33a] | 1041 | e1000_t *e1000 = DRIVER_DATA_DEV(device);
|
|---|
| [1df224c] | 1042 |
|
|---|
| [c4be33a] | 1043 | e1000->vlan_tag = tag;
|
|---|
| 1044 | e1000->vlan_tag_add = add;
|
|---|
| [1df224c] | 1045 |
|
|---|
| [c4be33a] | 1046 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 1047 |
|
|---|
| [c4be33a] | 1048 | uint32_t ctrl = E1000_REG_READ(e1000, E1000_CTRL);
|
|---|
| [1df224c] | 1049 | if (strip)
|
|---|
| [bf84871] | 1050 | ctrl |= CTRL_VME;
|
|---|
| [1df224c] | 1051 | else
|
|---|
| [bf84871] | 1052 | ctrl &= ~CTRL_VME;
|
|---|
| [1df224c] | 1053 |
|
|---|
| [c4be33a] | 1054 | E1000_REG_WRITE(e1000, E1000_CTRL, ctrl);
|
|---|
| [1df224c] | 1055 |
|
|---|
| [c4be33a] | 1056 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| [bf84871] | 1057 | return EOK;
|
|---|
| 1058 | }
|
|---|
| [1df224c] | 1059 |
|
|---|
| [bf84871] | 1060 | /** Fill receive descriptor with new empty packet
|
|---|
| 1061 | *
|
|---|
| [c4be33a] | 1062 | * Store packet in e1000->rx_ring_packets
|
|---|
| [1df224c] | 1063 | *
|
|---|
| [c4be33a] | 1064 | * @param nic NIC data stricture
|
|---|
| 1065 | * @param offset Receive descriptor offset
|
|---|
| [1df224c] | 1066 | *
|
|---|
| [bf84871] | 1067 | */
|
|---|
| [c4be33a] | 1068 | static void e1000_fill_new_rx_descriptor(nic_t *nic, size_t offset)
|
|---|
| [bf84871] | 1069 | {
|
|---|
| [c4be33a] | 1070 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| 1071 | packet_t *packet =
|
|---|
| 1072 | nic_alloc_packet(nic, E1000_MAX_RECEIVE_PACKET_SIZE);
|
|---|
| [1df224c] | 1073 |
|
|---|
| [bf84871] | 1074 | assert(packet);
|
|---|
| [1df224c] | 1075 |
|
|---|
| [c4be33a] | 1076 | *(e1000->rx_ring_packets + offset) = packet;
|
|---|
| 1077 | e1000_rx_descriptor_t *rx_descriptor = (e1000_rx_descriptor_t *)
|
|---|
| 1078 | (e1000->rx_ring_virt + offset * sizeof(e1000_rx_descriptor_t));
|
|---|
| [1df224c] | 1079 |
|
|---|
| [c4be33a] | 1080 | void *phys;
|
|---|
| 1081 | int rc =
|
|---|
| 1082 | nic_dma_lock_packet(packet, E1000_MAX_RECEIVE_PACKET_SIZE, &phys);
|
|---|
| [1df224c] | 1083 |
|
|---|
| [c4be33a] | 1084 | if (rc == EOK)
|
|---|
| 1085 | rx_descriptor->phys_addr = PTR_TO_U64(phys + packet->data_start);
|
|---|
| 1086 | else
|
|---|
| [1df224c] | 1087 | rx_descriptor->phys_addr = 0;
|
|---|
| 1088 |
|
|---|
| [bf84871] | 1089 | rx_descriptor->length = 0;
|
|---|
| 1090 | rx_descriptor->checksum = 0;
|
|---|
| 1091 | rx_descriptor->status = 0;
|
|---|
| 1092 | rx_descriptor->errors = 0;
|
|---|
| 1093 | rx_descriptor->special = 0;
|
|---|
| 1094 | }
|
|---|
| 1095 |
|
|---|
| 1096 | /** Clear receive descriptor
|
|---|
| 1097 | *
|
|---|
| [c4be33a] | 1098 | * @param e1000 E1000 data
|
|---|
| 1099 | * @param offset Receive descriptor offset
|
|---|
| [1df224c] | 1100 | *
|
|---|
| [bf84871] | 1101 | */
|
|---|
| [c4be33a] | 1102 | static void e1000_clear_rx_descriptor(e1000_t *e1000, unsigned int offset)
|
|---|
| [1df224c] | 1103 | {
|
|---|
| 1104 | e1000_rx_descriptor_t *rx_descriptor = (e1000_rx_descriptor_t *)
|
|---|
| [c4be33a] | 1105 | (e1000->rx_ring_virt + offset * sizeof(e1000_rx_descriptor_t));
|
|---|
| [1df224c] | 1106 |
|
|---|
| [bf84871] | 1107 | rx_descriptor->length = 0;
|
|---|
| 1108 | rx_descriptor->checksum = 0;
|
|---|
| 1109 | rx_descriptor->status = 0;
|
|---|
| 1110 | rx_descriptor->errors = 0;
|
|---|
| 1111 | rx_descriptor->special = 0;
|
|---|
| 1112 | }
|
|---|
| 1113 |
|
|---|
| 1114 | /** Clear receive descriptor
|
|---|
| 1115 | *
|
|---|
| [c4be33a] | 1116 | * @param nic NIC data
|
|---|
| 1117 | * @param offset Receive descriptor offset
|
|---|
| [1df224c] | 1118 | *
|
|---|
| [bf84871] | 1119 | */
|
|---|
| [c4be33a] | 1120 | static void e1000_clear_tx_descriptor(nic_t *nic, unsigned int offset)
|
|---|
| [bf84871] | 1121 | {
|
|---|
| [c4be33a] | 1122 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 1123 |
|
|---|
| [c4be33a] | 1124 | e1000_tx_descriptor_t *tx_descriptor = (e1000_tx_descriptor_t *)
|
|---|
| 1125 | (e1000->tx_ring_virt + offset * sizeof(e1000_tx_descriptor_t));
|
|---|
| [bf84871] | 1126 |
|
|---|
| 1127 | if (tx_descriptor->length) {
|
|---|
| [c4be33a] | 1128 | packet_t *old_packet = *(e1000->tx_ring_packets + offset);
|
|---|
| [1df224c] | 1129 | if (old_packet)
|
|---|
| [c4be33a] | 1130 | nic_release_packet(nic, old_packet);
|
|---|
| [bf84871] | 1131 | }
|
|---|
| [1df224c] | 1132 |
|
|---|
| [bf84871] | 1133 | tx_descriptor->phys_addr = 0;
|
|---|
| 1134 | tx_descriptor->length = 0;
|
|---|
| 1135 | tx_descriptor->checksum_offset = 0;
|
|---|
| 1136 | tx_descriptor->command = 0;
|
|---|
| 1137 | tx_descriptor->status = 0;
|
|---|
| 1138 | tx_descriptor->checksum_start_field = 0;
|
|---|
| 1139 | tx_descriptor->special = 0;
|
|---|
| 1140 | }
|
|---|
| 1141 |
|
|---|
| 1142 | /** Increment tail pointer for receive or transmit ring
|
|---|
| 1143 | *
|
|---|
| [1df224c] | 1144 | * @param tail Old Tail
|
|---|
| 1145 | * @param descriptors_count Ring length
|
|---|
| 1146 | *
|
|---|
| 1147 | * @return New tail
|
|---|
| [bf84871] | 1148 | *
|
|---|
| 1149 | */
|
|---|
| 1150 | static uint32_t e1000_inc_tail(uint32_t tail, uint32_t descriptors_count)
|
|---|
| 1151 | {
|
|---|
| [1df224c] | 1152 | if (tail + 1 == descriptors_count)
|
|---|
| [bf84871] | 1153 | return 0;
|
|---|
| [1df224c] | 1154 | else
|
|---|
| [bf84871] | 1155 | return tail + 1;
|
|---|
| 1156 | }
|
|---|
| 1157 |
|
|---|
| 1158 | /** Receive packets
|
|---|
| [1df224c] | 1159 | *
|
|---|
| [c4be33a] | 1160 | * @param nic NIC data
|
|---|
| [1df224c] | 1161 | *
|
|---|
| [bf84871] | 1162 | */
|
|---|
| [c4be33a] | 1163 | static void e1000_receive_packets(nic_t *nic)
|
|---|
| [bf84871] | 1164 | {
|
|---|
| [c4be33a] | 1165 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 1166 |
|
|---|
| [c4be33a] | 1167 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [bf84871] | 1168 |
|
|---|
| [c4be33a] | 1169 | uint32_t *tail_addr = E1000_REG_ADDR(e1000, E1000_RDT);
|
|---|
| [1df224c] | 1170 | uint32_t next_tail = e1000_inc_tail(*tail_addr, E1000_RX_PACKETS_COUNT);
|
|---|
| [bf84871] | 1171 |
|
|---|
| [1df224c] | 1172 | e1000_rx_descriptor_t *rx_descriptor = (e1000_rx_descriptor_t *)
|
|---|
| [c4be33a] | 1173 | (e1000->rx_ring_virt + next_tail * sizeof(e1000_rx_descriptor_t));
|
|---|
| [1df224c] | 1174 |
|
|---|
| 1175 | while (rx_descriptor->status & 0x01) {
|
|---|
| 1176 | uint32_t packet_size = rx_descriptor->length - E1000_CRC_SIZE;
|
|---|
| 1177 |
|
|---|
| [c4be33a] | 1178 | packet_t *packet = *(e1000->rx_ring_packets + next_tail);
|
|---|
| [bf84871] | 1179 | packet_suffix(packet, packet_size);
|
|---|
| [1df224c] | 1180 |
|
|---|
| [c4be33a] | 1181 | nic_dma_unlock_packet(packet, E1000_MAX_RECEIVE_PACKET_SIZE);
|
|---|
| 1182 | nic_received_packet(nic, packet);
|
|---|
| [1df224c] | 1183 |
|
|---|
| [c4be33a] | 1184 | e1000_fill_new_rx_descriptor(nic, next_tail);
|
|---|
| [1df224c] | 1185 |
|
|---|
| 1186 | *tail_addr = e1000_inc_tail(*tail_addr, E1000_RX_PACKETS_COUNT);
|
|---|
| [bf84871] | 1187 | next_tail = e1000_inc_tail(*tail_addr, E1000_RX_PACKETS_COUNT);
|
|---|
| [1df224c] | 1188 |
|
|---|
| 1189 | rx_descriptor = (e1000_rx_descriptor_t *)
|
|---|
| [c4be33a] | 1190 | (e1000->rx_ring_virt + next_tail * sizeof(e1000_rx_descriptor_t));
|
|---|
| [bf84871] | 1191 | }
|
|---|
| 1192 |
|
|---|
| [c4be33a] | 1193 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 1194 | }
|
|---|
| 1195 |
|
|---|
| [1df224c] | 1196 | /** Enable E1000 interupts
|
|---|
| 1197 | *
|
|---|
| [c4be33a] | 1198 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 1199 | *
|
|---|
| 1200 | */
|
|---|
| [c4be33a] | 1201 | static void e1000_enable_interrupts(e1000_t *e1000)
|
|---|
| [bf84871] | 1202 | {
|
|---|
| [c4be33a] | 1203 | E1000_REG_WRITE(e1000, E1000_IMS, ICR_RXT0);
|
|---|
| [bf84871] | 1204 | }
|
|---|
| 1205 |
|
|---|
| [1df224c] | 1206 | /** Disable E1000 interupts
|
|---|
| 1207 | *
|
|---|
| [c4be33a] | 1208 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 1209 | *
|
|---|
| 1210 | */
|
|---|
| [c4be33a] | 1211 | static void e1000_disable_interrupts(e1000_t *e1000)
|
|---|
| [bf84871] | 1212 | {
|
|---|
| [c4be33a] | 1213 | E1000_REG_WRITE(e1000, E1000_IMS, 0);
|
|---|
| [bf84871] | 1214 | }
|
|---|
| 1215 |
|
|---|
| 1216 | /** Interrupt handler implementation
|
|---|
| 1217 | *
|
|---|
| [1df224c] | 1218 | * This function is called from e1000_interrupt_handler()
|
|---|
| 1219 | * and e1000_poll()
|
|---|
| 1220 | *
|
|---|
| [c4be33a] | 1221 | * @param nic NIC data
|
|---|
| 1222 | * @param icr ICR register value
|
|---|
| [1df224c] | 1223 | *
|
|---|
| [bf84871] | 1224 | */
|
|---|
| [c4be33a] | 1225 | static void e1000_interrupt_handler_impl(nic_t *nic, uint32_t icr)
|
|---|
| [1df224c] | 1226 | {
|
|---|
| 1227 | if (icr & ICR_RXT0)
|
|---|
| [c4be33a] | 1228 | e1000_receive_packets(nic);
|
|---|
| [bf84871] | 1229 | }
|
|---|
| 1230 |
|
|---|
| 1231 | /** Handle device interrupt
|
|---|
| 1232 | *
|
|---|
| [1df224c] | 1233 | * @param dev E1000 device
|
|---|
| 1234 | * @param iid IPC call id
|
|---|
| 1235 | * @param icall IPC call structure
|
|---|
| 1236 | *
|
|---|
| [bf84871] | 1237 | */
|
|---|
| 1238 | static void e1000_interrupt_handler(ddf_dev_t *dev, ipc_callid_t iid,
|
|---|
| 1239 | ipc_call_t *icall)
|
|---|
| 1240 | {
|
|---|
| 1241 | uint32_t icr = (uint32_t) IPC_GET_ARG2(*icall);
|
|---|
| [c4be33a] | 1242 | nic_t *nic = NIC_DATA_DEV(dev);
|
|---|
| 1243 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [bf84871] | 1244 |
|
|---|
| [c4be33a] | 1245 | e1000_interrupt_handler_impl(nic, icr);
|
|---|
| 1246 | e1000_enable_interrupts(e1000);
|
|---|
| [1df224c] | 1247 | }
|
|---|
| [bf84871] | 1248 |
|
|---|
| 1249 | /** Register interrupt handler for the card in the system
|
|---|
| 1250 | *
|
|---|
| [1df224c] | 1251 | * Note: The global irq_reg_mutex is locked because of work with global
|
|---|
| 1252 | * structure.
|
|---|
| 1253 | *
|
|---|
| [c4be33a] | 1254 | * @param nic Driver data
|
|---|
| [1df224c] | 1255 | *
|
|---|
| 1256 | * @return EOK if the handler was registered
|
|---|
| 1257 | * @return Negative error code otherwise
|
|---|
| [bf84871] | 1258 | *
|
|---|
| 1259 | */
|
|---|
| [c4be33a] | 1260 | inline static int e1000_register_int_handler(nic_t *nic)
|
|---|
| [bf84871] | 1261 | {
|
|---|
| [c4be33a] | 1262 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 1263 |
|
|---|
| [bf84871] | 1264 | /* Lock the mutex in whole driver while working with global structure */
|
|---|
| 1265 | fibril_mutex_lock(&irq_reg_mutex);
|
|---|
| [1df224c] | 1266 |
|
|---|
| [c4be33a] | 1267 | e1000_irq_code.cmds[0].addr = e1000->reg_base_virt + E1000_ICR;
|
|---|
| 1268 | e1000_irq_code.cmds[2].addr = e1000->reg_base_virt + E1000_IMC;
|
|---|
| [1df224c] | 1269 |
|
|---|
| [c4be33a] | 1270 | int rc = register_interrupt_handler(nic_get_ddf_dev(nic),
|
|---|
| 1271 | e1000->irq, e1000_interrupt_handler, &e1000_irq_code);
|
|---|
| [1df224c] | 1272 |
|
|---|
| [bf84871] | 1273 | fibril_mutex_unlock(&irq_reg_mutex);
|
|---|
| 1274 | return rc;
|
|---|
| 1275 | }
|
|---|
| 1276 |
|
|---|
| 1277 | /** Force receiving all packets in the receive buffer
|
|---|
| 1278 | *
|
|---|
| [c4be33a] | 1279 | * @param nic NIC data
|
|---|
| [1df224c] | 1280 | *
|
|---|
| [bf84871] | 1281 | */
|
|---|
| [c4be33a] | 1282 | static void e1000_poll(nic_t *nic)
|
|---|
| [bf84871] | 1283 | {
|
|---|
| [c4be33a] | 1284 | assert(nic);
|
|---|
| [1df224c] | 1285 |
|
|---|
| [c4be33a] | 1286 | e1000_t *e1000 = nic_get_specific(nic);
|
|---|
| 1287 | assert(e1000);
|
|---|
| [1df224c] | 1288 |
|
|---|
| [c4be33a] | 1289 | uint32_t icr = E1000_REG_READ(e1000, E1000_ICR);
|
|---|
| 1290 | e1000_interrupt_handler_impl(nic, icr);
|
|---|
| [bf84871] | 1291 | }
|
|---|
| 1292 |
|
|---|
| 1293 | /** Calculates ITR register interrupt from timeval structure
|
|---|
| 1294 | *
|
|---|
| [1df224c] | 1295 | * @param period Period
|
|---|
| 1296 | *
|
|---|
| [bf84871] | 1297 | */
|
|---|
| [1df224c] | 1298 | static uint16_t e1000_calculate_itr_interval(const struct timeval *period)
|
|---|
| 1299 | {
|
|---|
| 1300 | // TODO: use also tv_sec
|
|---|
| [bf84871] | 1301 | return e1000_calculate_itr_interval_from_usecs(period->tv_usec);
|
|---|
| 1302 | }
|
|---|
| 1303 |
|
|---|
| 1304 | /** Set polling mode
|
|---|
| 1305 | *
|
|---|
| [1df224c] | 1306 | * @param device Device to set
|
|---|
| 1307 | * @param mode Mode to set
|
|---|
| 1308 | * @param period Period for NIC_POLL_PERIODIC
|
|---|
| 1309 | *
|
|---|
| 1310 | * @return EOK if succeed
|
|---|
| 1311 | * @return ENOTSUP if the mode is not supported
|
|---|
| [bf84871] | 1312 | *
|
|---|
| 1313 | */
|
|---|
| [c4be33a] | 1314 | static int e1000_poll_mode_change(nic_t *nic, nic_poll_mode_t mode,
|
|---|
| [bf84871] | 1315 | const struct timeval *period)
|
|---|
| 1316 | {
|
|---|
| [c4be33a] | 1317 | assert(nic);
|
|---|
| [1df224c] | 1318 |
|
|---|
| [c4be33a] | 1319 | e1000_t *e1000 = nic_get_specific(nic);
|
|---|
| 1320 | assert(e1000);
|
|---|
| [bf84871] | 1321 |
|
|---|
| [1df224c] | 1322 | switch (mode) {
|
|---|
| [bf84871] | 1323 | case NIC_POLL_IMMEDIATE:
|
|---|
| [c4be33a] | 1324 | E1000_REG_WRITE(e1000, E1000_ITR, 0);
|
|---|
| 1325 | e1000_enable_interrupts(e1000);
|
|---|
| [bf84871] | 1326 | break;
|
|---|
| 1327 | case NIC_POLL_ON_DEMAND:
|
|---|
| [c4be33a] | 1328 | e1000_disable_interrupts(e1000);
|
|---|
| [bf84871] | 1329 | break;
|
|---|
| 1330 | case NIC_POLL_PERIODIC:
|
|---|
| 1331 | assert(period);
|
|---|
| 1332 | uint16_t itr_interval = e1000_calculate_itr_interval(period);
|
|---|
| [c4be33a] | 1333 | E1000_REG_WRITE(e1000, E1000_ITR, (uint32_t) itr_interval);
|
|---|
| 1334 | e1000_enable_interrupts(e1000);
|
|---|
| [bf84871] | 1335 | break;
|
|---|
| 1336 | default:
|
|---|
| 1337 | return ENOTSUP;
|
|---|
| 1338 | }
|
|---|
| [1df224c] | 1339 |
|
|---|
| [bf84871] | 1340 | return EOK;
|
|---|
| 1341 | }
|
|---|
| 1342 |
|
|---|
| [1df224c] | 1343 | /** Initialize receive registers
|
|---|
| 1344 | *
|
|---|
| [c4be33a] | 1345 | * @param e1000 E1000 data structure
|
|---|
| [bf84871] | 1346 | *
|
|---|
| 1347 | */
|
|---|
| [c4be33a] | 1348 | static void e1000_initialize_rx_registers(e1000_t *e1000)
|
|---|
| [bf84871] | 1349 | {
|
|---|
| [c4be33a] | 1350 | E1000_REG_WRITE(e1000, E1000_RDLEN, E1000_RX_PACKETS_COUNT * 16);
|
|---|
| 1351 | E1000_REG_WRITE(e1000, E1000_RDH, 0);
|
|---|
| [1df224c] | 1352 |
|
|---|
| 1353 | /* It is not posible to let HW use all descriptors */
|
|---|
| [c4be33a] | 1354 | E1000_REG_WRITE(e1000, E1000_RDT, E1000_RX_PACKETS_COUNT - 1);
|
|---|
| [bf84871] | 1355 |
|
|---|
| [1df224c] | 1356 | /* Set Broadcast Enable Bit */
|
|---|
| [c4be33a] | 1357 | E1000_REG_WRITE(e1000, E1000_RCTL, RCTL_BAM);
|
|---|
| [bf84871] | 1358 | }
|
|---|
| 1359 |
|
|---|
| [1df224c] | 1360 | /** Initialize receive structure
|
|---|
| 1361 | *
|
|---|
| [c4be33a] | 1362 | * @param nic NIC data
|
|---|
| [1df224c] | 1363 | *
|
|---|
| 1364 | * @return EOK if succeed
|
|---|
| 1365 | * @return Negative error code otherwise
|
|---|
| [bf84871] | 1366 | *
|
|---|
| 1367 | */
|
|---|
| [c4be33a] | 1368 | static int e1000_initialize_rx_structure(nic_t *nic)
|
|---|
| [bf84871] | 1369 | {
|
|---|
| [c4be33a] | 1370 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| 1371 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [1df224c] | 1372 |
|
|---|
| [c4be33a] | 1373 | int rc = dmamem_map_anonymous(
|
|---|
| 1374 | E1000_RX_PACKETS_COUNT * sizeof(e1000_rx_descriptor_t),
|
|---|
| 1375 | AS_AREA_READ | AS_AREA_WRITE, 0, &e1000->rx_ring_phys,
|
|---|
| 1376 | &e1000->rx_ring_virt);
|
|---|
| [1df224c] | 1377 | if (rc != EOK)
|
|---|
| [bf84871] | 1378 | return rc;
|
|---|
| [1df224c] | 1379 |
|
|---|
| [c4be33a] | 1380 | E1000_REG_WRITE(e1000, E1000_RDBAH,
|
|---|
| 1381 | (uint32_t) (PTR_TO_U64(e1000->rx_ring_phys) >> 32));
|
|---|
| 1382 | E1000_REG_WRITE(e1000, E1000_RDBAL,
|
|---|
| 1383 | (uint32_t) PTR_TO_U64(e1000->rx_ring_phys));
|
|---|
| [1df224c] | 1384 |
|
|---|
| [c4be33a] | 1385 | e1000->rx_ring_packets =
|
|---|
| [1df224c] | 1386 | malloc(E1000_RX_PACKETS_COUNT * sizeof(packet_t *));
|
|---|
| 1387 | // FIXME: Check return value
|
|---|
| 1388 |
|
|---|
| 1389 | /* Write descriptor */
|
|---|
| 1390 | for (unsigned int offset = 0;
|
|---|
| 1391 | offset < E1000_RX_PACKETS_COUNT;
|
|---|
| 1392 | offset++)
|
|---|
| [c4be33a] | 1393 | e1000_fill_new_rx_descriptor(nic, offset);
|
|---|
| [bf84871] | 1394 |
|
|---|
| [c4be33a] | 1395 | e1000_initialize_rx_registers(e1000);
|
|---|
| [bf84871] | 1396 |
|
|---|
| [c4be33a] | 1397 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 1398 | return EOK;
|
|---|
| 1399 | }
|
|---|
| 1400 |
|
|---|
| [1df224c] | 1401 | /** Uninitialize receive structure
|
|---|
| 1402 | *
|
|---|
| [c4be33a] | 1403 | * @param nic NIC data
|
|---|
| [bf84871] | 1404 | *
|
|---|
| 1405 | */
|
|---|
| [c4be33a] | 1406 | static void e1000_uninitialize_rx_structure(nic_t *nic)
|
|---|
| [bf84871] | 1407 | {
|
|---|
| [c4be33a] | 1408 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 1409 |
|
|---|
| 1410 | /* Write descriptor */
|
|---|
| 1411 | for (unsigned int offset = 0;
|
|---|
| 1412 | offset < E1000_RX_PACKETS_COUNT;
|
|---|
| 1413 | offset++) {
|
|---|
| [c4be33a] | 1414 | packet_t *packet = *(e1000->rx_ring_packets + offset);
|
|---|
| 1415 | nic_dma_unlock_packet(packet, E1000_MAX_RECEIVE_PACKET_SIZE);
|
|---|
| 1416 | nic_release_packet(nic, packet);
|
|---|
| [bf84871] | 1417 | }
|
|---|
| 1418 |
|
|---|
| [c4be33a] | 1419 | free(e1000->rx_ring_packets);
|
|---|
| 1420 | dmamem_unmap_anonymous(e1000->rx_ring_virt);
|
|---|
| [bf84871] | 1421 | }
|
|---|
| 1422 |
|
|---|
| 1423 | /** Clear receive descriptor ring
|
|---|
| 1424 | *
|
|---|
| [c4be33a] | 1425 | * @param e1000 E1000 data
|
|---|
| [1df224c] | 1426 | *
|
|---|
| [bf84871] | 1427 | */
|
|---|
| [c4be33a] | 1428 | static void e1000_clear_rx_ring(e1000_t *e1000)
|
|---|
| [bf84871] | 1429 | {
|
|---|
| [1df224c] | 1430 | /* Write descriptor */
|
|---|
| 1431 | for (unsigned int offset = 0;
|
|---|
| 1432 | offset < E1000_RX_PACKETS_COUNT;
|
|---|
| 1433 | offset++)
|
|---|
| [c4be33a] | 1434 | e1000_clear_rx_descriptor(e1000, offset);
|
|---|
| [bf84871] | 1435 | }
|
|---|
| 1436 |
|
|---|
| 1437 | /** Initialize filters
|
|---|
| 1438 | *
|
|---|
| [c4be33a] | 1439 | * @param e1000 E1000 data
|
|---|
| [1df224c] | 1440 | *
|
|---|
| [bf84871] | 1441 | */
|
|---|
| [c4be33a] | 1442 | static void e1000_initialize_filters(e1000_t *e1000)
|
|---|
| [bf84871] | 1443 | {
|
|---|
| [1df224c] | 1444 | /* Initialize address filter */
|
|---|
| [c4be33a] | 1445 | e1000->unicast_ra_count = 0;
|
|---|
| 1446 | e1000->multicast_ra_count = 0;
|
|---|
| 1447 | e1000_clear_unicast_receive_addresses(e1000);
|
|---|
| [bf84871] | 1448 | }
|
|---|
| 1449 |
|
|---|
| 1450 | /** Initialize VLAN
|
|---|
| 1451 | *
|
|---|
| [c4be33a] | 1452 | * @param e1000 E1000 data
|
|---|
| [1df224c] | 1453 | *
|
|---|
| [bf84871] | 1454 | */
|
|---|
| [c4be33a] | 1455 | static void e1000_initialize_vlan(e1000_t *e1000)
|
|---|
| [bf84871] | 1456 | {
|
|---|
| [c4be33a] | 1457 | e1000->vlan_tag_add = false;
|
|---|
| [bf84871] | 1458 | }
|
|---|
| 1459 |
|
|---|
| [1df224c] | 1460 | /** Fill MAC address from EEPROM to RA[0] register
|
|---|
| 1461 | *
|
|---|
| [c4be33a] | 1462 | * @param e1000 E1000 data
|
|---|
| [bf84871] | 1463 | *
|
|---|
| 1464 | */
|
|---|
| [c4be33a] | 1465 | static void e1000_fill_mac_from_eeprom(e1000_t *e1000)
|
|---|
| [bf84871] | 1466 | {
|
|---|
| [1df224c] | 1467 | /* MAC address from eeprom to RA[0] */
|
|---|
| [bf84871] | 1468 | nic_address_t address;
|
|---|
| [c4be33a] | 1469 | e1000_eeprom_get_address(e1000, &address);
|
|---|
| 1470 | e1000_write_receive_address(e1000, 0, &address, true);
|
|---|
| [bf84871] | 1471 | }
|
|---|
| 1472 |
|
|---|
| [1df224c] | 1473 | /** Initialize other registers
|
|---|
| 1474 | *
|
|---|
| 1475 | * @param dev E1000 data.
|
|---|
| 1476 | *
|
|---|
| 1477 | * @return EOK if succeed
|
|---|
| 1478 | * @return Negative error code otherwise
|
|---|
| [bf84871] | 1479 | *
|
|---|
| 1480 | */
|
|---|
| [c4be33a] | 1481 | static void e1000_initialize_registers(e1000_t *e1000)
|
|---|
| [bf84871] | 1482 | {
|
|---|
| [c4be33a] | 1483 | E1000_REG_WRITE(e1000, E1000_ITR,
|
|---|
| [1df224c] | 1484 | e1000_calculate_itr_interval_from_usecs(
|
|---|
| [9916841] | 1485 | E1000_DEFAULT_INTERRUPT_INTERVAL_USEC));
|
|---|
| [c4be33a] | 1486 | E1000_REG_WRITE(e1000, E1000_FCAH, 0);
|
|---|
| 1487 | E1000_REG_WRITE(e1000, E1000_FCAL, 0);
|
|---|
| 1488 | E1000_REG_WRITE(e1000, E1000_FCT, 0);
|
|---|
| 1489 | E1000_REG_WRITE(e1000, E1000_FCTTV, 0);
|
|---|
| 1490 | E1000_REG_WRITE(e1000, E1000_VET, VET_VALUE);
|
|---|
| 1491 | E1000_REG_WRITE(e1000, E1000_CTRL, CTRL_ASDE);
|
|---|
| [bf84871] | 1492 | }
|
|---|
| 1493 |
|
|---|
| [1df224c] | 1494 | /** Initialize transmit registers
|
|---|
| 1495 | *
|
|---|
| [c4be33a] | 1496 | * @param e1000 E1000 data.
|
|---|
| [bf84871] | 1497 | *
|
|---|
| 1498 | */
|
|---|
| [c4be33a] | 1499 | static void e1000_initialize_tx_registers(e1000_t *e1000)
|
|---|
| [bf84871] | 1500 | {
|
|---|
| [c4be33a] | 1501 | E1000_REG_WRITE(e1000, E1000_TDLEN, E1000_TX_PACKETS_COUNT * 16);
|
|---|
| 1502 | E1000_REG_WRITE(e1000, E1000_TDH, 0);
|
|---|
| 1503 | E1000_REG_WRITE(e1000, E1000_TDT, 0);
|
|---|
| [bf84871] | 1504 |
|
|---|
| [c4be33a] | 1505 | E1000_REG_WRITE(e1000, E1000_TIPG,
|
|---|
| [1df224c] | 1506 | 10 << TIPG_IPGT_SHIFT |
|
|---|
| 1507 | 8 << TIPG_IPGR1_SHIFT |
|
|---|
| 1508 | 6 << TIPG_IPGR2_SHIFT);
|
|---|
| [bf84871] | 1509 |
|
|---|
| [c4be33a] | 1510 | E1000_REG_WRITE(e1000, E1000_TCTL,
|
|---|
| [1df224c] | 1511 | 0x0F << TCTL_CT_SHIFT /* Collision Threshold */ |
|
|---|
| 1512 | 0x40 << TCTL_COLD_SHIFT /* Collision Distance */ |
|
|---|
| 1513 | TCTL_PSP /* Pad Short Packets */);
|
|---|
| [bf84871] | 1514 | }
|
|---|
| 1515 |
|
|---|
| 1516 | /** Initialize transmit structure
|
|---|
| 1517 | *
|
|---|
| [c4be33a] | 1518 | * @param e1000 E1000 data.
|
|---|
| [1df224c] | 1519 | *
|
|---|
| [bf84871] | 1520 | */
|
|---|
| [c4be33a] | 1521 | static int e1000_initialize_tx_structure(e1000_t *e1000)
|
|---|
| [bf84871] | 1522 | {
|
|---|
| [c4be33a] | 1523 | fibril_mutex_lock(&e1000->tx_lock);
|
|---|
| [1df224c] | 1524 |
|
|---|
| [c4be33a] | 1525 | int rc = dmamem_map_anonymous(
|
|---|
| 1526 | E1000_TX_PACKETS_COUNT * sizeof(e1000_tx_descriptor_t),
|
|---|
| 1527 | AS_AREA_READ | AS_AREA_WRITE, 0, &e1000->tx_ring_phys,
|
|---|
| 1528 | &e1000->tx_ring_virt);
|
|---|
| [1df224c] | 1529 | if (rc != EOK)
|
|---|
| [bf84871] | 1530 | return rc;
|
|---|
| 1531 |
|
|---|
| [c4be33a] | 1532 | bzero(e1000->tx_ring_virt,
|
|---|
| [1df224c] | 1533 | E1000_TX_PACKETS_COUNT * sizeof(e1000_tx_descriptor_t));
|
|---|
| 1534 |
|
|---|
| [c4be33a] | 1535 | E1000_REG_WRITE(e1000, E1000_TDBAH,
|
|---|
| 1536 | (uint32_t) (PTR_TO_U64(e1000->tx_ring_phys) >> 32));
|
|---|
| 1537 | E1000_REG_WRITE(e1000, E1000_TDBAL,
|
|---|
| 1538 | (uint32_t) PTR_TO_U64(e1000->tx_ring_phys));
|
|---|
| [1df224c] | 1539 |
|
|---|
| [c4be33a] | 1540 | e1000->tx_ring_packets =
|
|---|
| [1df224c] | 1541 | malloc(E1000_TX_PACKETS_COUNT * sizeof(packet_t *));
|
|---|
| 1542 | // FIXME: Check return value
|
|---|
| [bf84871] | 1543 |
|
|---|
| [c4be33a] | 1544 | e1000_initialize_tx_registers(e1000);
|
|---|
| [bf84871] | 1545 |
|
|---|
| [c4be33a] | 1546 | fibril_mutex_unlock(&e1000->tx_lock);
|
|---|
| [bf84871] | 1547 | return EOK;
|
|---|
| 1548 | }
|
|---|
| 1549 |
|
|---|
| [1df224c] | 1550 | /** Uninitialize transmit structure
|
|---|
| 1551 | *
|
|---|
| [c4be33a] | 1552 | * @param nic NIC data
|
|---|
| [bf84871] | 1553 | *
|
|---|
| 1554 | */
|
|---|
| [c4be33a] | 1555 | static void e1000_uninitialize_tx_structure(e1000_t *e1000)
|
|---|
| [bf84871] | 1556 | {
|
|---|
| [c4be33a] | 1557 | free(e1000->tx_ring_packets);
|
|---|
| 1558 | dmamem_unmap_anonymous(e1000->tx_ring_virt);
|
|---|
| [bf84871] | 1559 | }
|
|---|
| 1560 |
|
|---|
| 1561 | /** Clear transmit descriptor ring
|
|---|
| 1562 | *
|
|---|
| [c4be33a] | 1563 | * @param nic NIC data
|
|---|
| [1df224c] | 1564 | *
|
|---|
| [bf84871] | 1565 | */
|
|---|
| [c4be33a] | 1566 | static void e1000_clear_tx_ring(nic_t *nic)
|
|---|
| [bf84871] | 1567 | {
|
|---|
| [1df224c] | 1568 | /* Write descriptor */
|
|---|
| 1569 | for (unsigned int offset = 0;
|
|---|
| 1570 | offset < E1000_TX_PACKETS_COUNT;
|
|---|
| 1571 | offset++)
|
|---|
| [c4be33a] | 1572 | e1000_clear_tx_descriptor(nic, offset);
|
|---|
| [bf84871] | 1573 | }
|
|---|
| 1574 |
|
|---|
| 1575 | /** Enable transmit
|
|---|
| 1576 | *
|
|---|
| [c4be33a] | 1577 | * @param e1000 E1000 data
|
|---|
| [1df224c] | 1578 | *
|
|---|
| [bf84871] | 1579 | */
|
|---|
| [c4be33a] | 1580 | static void e1000_enable_tx(e1000_t *e1000)
|
|---|
| [bf84871] | 1581 | {
|
|---|
| [1df224c] | 1582 | /* Set Transmit Enable Bit */
|
|---|
| [c4be33a] | 1583 | E1000_REG_WRITE(e1000, E1000_TCTL,
|
|---|
| 1584 | E1000_REG_READ(e1000, E1000_TCTL) | (TCTL_EN));
|
|---|
| [bf84871] | 1585 | }
|
|---|
| 1586 |
|
|---|
| 1587 | /** Disable transmit
|
|---|
| 1588 | *
|
|---|
| [c4be33a] | 1589 | * @param e1000 E1000 data
|
|---|
| [1df224c] | 1590 | *
|
|---|
| [bf84871] | 1591 | */
|
|---|
| [c4be33a] | 1592 | static void e1000_disable_tx(e1000_t *e1000)
|
|---|
| [bf84871] | 1593 | {
|
|---|
| [1df224c] | 1594 | /* Clear Transmit Enable Bit */
|
|---|
| [c4be33a] | 1595 | E1000_REG_WRITE(e1000, E1000_TCTL,
|
|---|
| 1596 | E1000_REG_READ(e1000, E1000_TCTL) & ~(TCTL_EN));
|
|---|
| [bf84871] | 1597 | }
|
|---|
| 1598 |
|
|---|
| 1599 | /** Reset E1000 device
|
|---|
| 1600 | *
|
|---|
| [c4be33a] | 1601 | * @param e1000 The E1000 data
|
|---|
| [1df224c] | 1602 | *
|
|---|
| [bf84871] | 1603 | */
|
|---|
| [c4be33a] | 1604 | static int e1000_reset(nic_t *nic)
|
|---|
| [bf84871] | 1605 | {
|
|---|
| [c4be33a] | 1606 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [bf84871] | 1607 |
|
|---|
| [c4be33a] | 1608 | E1000_REG_WRITE(e1000, E1000_CTRL, CTRL_RST);
|
|---|
| [1df224c] | 1609 |
|
|---|
| 1610 | /* Wait for the reset */
|
|---|
| 1611 | usleep(20);
|
|---|
| 1612 |
|
|---|
| 1613 | /* check if RST_BIT cleared */
|
|---|
| [c4be33a] | 1614 | if (E1000_REG_READ(e1000, E1000_CTRL) & (CTRL_RST))
|
|---|
| [1df224c] | 1615 | return EINVAL;
|
|---|
| 1616 |
|
|---|
| [c4be33a] | 1617 | e1000_initialize_registers(e1000);
|
|---|
| 1618 | e1000_initialize_rx_registers(e1000);
|
|---|
| 1619 | e1000_initialize_tx_registers(e1000);
|
|---|
| 1620 | e1000_fill_mac_from_eeprom(e1000);
|
|---|
| 1621 | e1000_initialize_filters(e1000);
|
|---|
| 1622 | e1000_initialize_vlan(e1000);
|
|---|
| [bf84871] | 1623 |
|
|---|
| 1624 | return EOK;
|
|---|
| 1625 | }
|
|---|
| 1626 |
|
|---|
| 1627 | /** Activate the device to receive and transmit packets
|
|---|
| 1628 | *
|
|---|
| [c4be33a] | 1629 | * @param nic NIC driver data
|
|---|
| [1df224c] | 1630 | *
|
|---|
| 1631 | * @return EOK if activated successfully
|
|---|
| 1632 | * @return Error code otherwise
|
|---|
| 1633 | *
|
|---|
| [bf84871] | 1634 | */
|
|---|
| [c4be33a] | 1635 | static int e1000_on_activating(nic_t *nic)
|
|---|
| [bf84871] | 1636 | {
|
|---|
| [c4be33a] | 1637 | assert(nic);
|
|---|
| [1df224c] | 1638 |
|
|---|
| [c4be33a] | 1639 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 1640 |
|
|---|
| [c4be33a] | 1641 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| 1642 | fibril_mutex_lock(&e1000->tx_lock);
|
|---|
| 1643 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 1644 |
|
|---|
| [c4be33a] | 1645 | e1000_enable_interrupts(e1000);
|
|---|
| [1df224c] | 1646 |
|
|---|
| [c4be33a] | 1647 | nic_enable_interrupt(nic, e1000->irq);
|
|---|
| [bf84871] | 1648 |
|
|---|
| [c4be33a] | 1649 | e1000_clear_rx_ring(e1000);
|
|---|
| 1650 | e1000_enable_rx(e1000);
|
|---|
| [1df224c] | 1651 |
|
|---|
| [c4be33a] | 1652 | e1000_clear_tx_ring(nic);
|
|---|
| 1653 | e1000_enable_tx(e1000);
|
|---|
| [bf84871] | 1654 |
|
|---|
| [c4be33a] | 1655 | uint32_t ctrl = E1000_REG_READ(e1000, E1000_CTRL);
|
|---|
| [bf84871] | 1656 | ctrl |= CTRL_SLU;
|
|---|
| [c4be33a] | 1657 | E1000_REG_WRITE(e1000, E1000_CTRL, ctrl);
|
|---|
| [bf84871] | 1658 |
|
|---|
| [c4be33a] | 1659 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| 1660 | fibril_mutex_unlock(&e1000->tx_lock);
|
|---|
| 1661 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [1df224c] | 1662 |
|
|---|
| [bf84871] | 1663 | return EOK;
|
|---|
| 1664 | }
|
|---|
| 1665 |
|
|---|
| 1666 | /** Callback for NIC_STATE_DOWN change
|
|---|
| 1667 | *
|
|---|
| [c4be33a] | 1668 | * @param nic NIC driver data
|
|---|
| [1df224c] | 1669 | *
|
|---|
| 1670 | * @return EOK if succeed
|
|---|
| 1671 | * @return Error code otherwise
|
|---|
| 1672 | *
|
|---|
| [bf84871] | 1673 | */
|
|---|
| [c4be33a] | 1674 | static int e1000_on_down_unlocked(nic_t *nic)
|
|---|
| [bf84871] | 1675 | {
|
|---|
| [c4be33a] | 1676 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [bf84871] | 1677 |
|
|---|
| [c4be33a] | 1678 | uint32_t ctrl = E1000_REG_READ(e1000, E1000_CTRL);
|
|---|
| [bf84871] | 1679 | ctrl &= ~CTRL_SLU;
|
|---|
| [c4be33a] | 1680 | E1000_REG_WRITE(e1000, E1000_CTRL, ctrl);
|
|---|
| [bf84871] | 1681 |
|
|---|
| [c4be33a] | 1682 | e1000_disable_tx(e1000);
|
|---|
| 1683 | e1000_disable_rx(e1000);
|
|---|
| [bf84871] | 1684 |
|
|---|
| [c4be33a] | 1685 | nic_disable_interrupt(nic, e1000->irq);
|
|---|
| 1686 | e1000_disable_interrupts(e1000);
|
|---|
| [bf84871] | 1687 |
|
|---|
| [1df224c] | 1688 | /*
|
|---|
| 1689 | * Wait for the for the end of all data
|
|---|
| 1690 | * transfers to descriptors.
|
|---|
| 1691 | */
|
|---|
| [bf84871] | 1692 | usleep(100);
|
|---|
| [1df224c] | 1693 |
|
|---|
| [bf84871] | 1694 | return EOK;
|
|---|
| 1695 | }
|
|---|
| 1696 |
|
|---|
| 1697 | /** Callback for NIC_STATE_DOWN change
|
|---|
| 1698 | *
|
|---|
| [c4be33a] | 1699 | * @param nic NIC driver data
|
|---|
| [1df224c] | 1700 | *
|
|---|
| 1701 | * @return EOK if succeed
|
|---|
| 1702 | * @return Error code otherwise
|
|---|
| 1703 | *
|
|---|
| [bf84871] | 1704 | */
|
|---|
| [c4be33a] | 1705 | static int e1000_on_down(nic_t *nic)
|
|---|
| [bf84871] | 1706 | {
|
|---|
| [c4be33a] | 1707 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [bf84871] | 1708 |
|
|---|
| [c4be33a] | 1709 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| 1710 | fibril_mutex_lock(&e1000->tx_lock);
|
|---|
| 1711 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| [1df224c] | 1712 |
|
|---|
| [c4be33a] | 1713 | int rc = e1000_on_down_unlocked(nic);
|
|---|
| [bf84871] | 1714 |
|
|---|
| [c4be33a] | 1715 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| 1716 | fibril_mutex_unlock(&e1000->tx_lock);
|
|---|
| 1717 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 1718 |
|
|---|
| 1719 | return rc;
|
|---|
| 1720 | }
|
|---|
| 1721 |
|
|---|
| 1722 | /** Callback for NIC_STATE_STOPPED change
|
|---|
| 1723 | *
|
|---|
| [c4be33a] | 1724 | * @param nic NIC driver data
|
|---|
| [1df224c] | 1725 | *
|
|---|
| 1726 | * @return EOK if succeed
|
|---|
| 1727 | * @return Error code otherwise
|
|---|
| 1728 | *
|
|---|
| [bf84871] | 1729 | */
|
|---|
| [c4be33a] | 1730 | static int e1000_on_stopping(nic_t *nic)
|
|---|
| [bf84871] | 1731 | {
|
|---|
| [c4be33a] | 1732 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [bf84871] | 1733 |
|
|---|
| [c4be33a] | 1734 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| 1735 | fibril_mutex_lock(&e1000->tx_lock);
|
|---|
| 1736 | fibril_mutex_lock(&e1000->ctrl_lock);
|
|---|
| [bf84871] | 1737 |
|
|---|
| [c4be33a] | 1738 | int rc = e1000_on_down_unlocked(nic);
|
|---|
| [1df224c] | 1739 | if (rc == EOK)
|
|---|
| [c4be33a] | 1740 | rc = e1000_reset(nic);
|
|---|
| [bf84871] | 1741 |
|
|---|
| [c4be33a] | 1742 | fibril_mutex_unlock(&e1000->ctrl_lock);
|
|---|
| 1743 | fibril_mutex_unlock(&e1000->tx_lock);
|
|---|
| 1744 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 1745 |
|
|---|
| 1746 | return rc;
|
|---|
| 1747 | }
|
|---|
| 1748 |
|
|---|
| 1749 | /** Create driver data structure
|
|---|
| 1750 | *
|
|---|
| [1df224c] | 1751 | * @return Intialized device data structure or NULL
|
|---|
| 1752 | *
|
|---|
| [bf84871] | 1753 | */
|
|---|
| 1754 | static e1000_t *e1000_create_dev_data(ddf_dev_t *dev)
|
|---|
| 1755 | {
|
|---|
| 1756 | assert(dev);
|
|---|
| 1757 | assert(!dev->driver_data);
|
|---|
| [1df224c] | 1758 |
|
|---|
| [c4be33a] | 1759 | nic_t *nic = nic_create_and_bind(dev);
|
|---|
| 1760 | if (!nic)
|
|---|
| [bf84871] | 1761 | return NULL;
|
|---|
| [1df224c] | 1762 |
|
|---|
| [c4be33a] | 1763 | e1000_t *e1000 = malloc(sizeof(e1000_t));
|
|---|
| 1764 | if (!e1000) {
|
|---|
| [bf84871] | 1765 | nic_unbind_and_destroy(dev);
|
|---|
| 1766 | return NULL;
|
|---|
| 1767 | }
|
|---|
| [1df224c] | 1768 |
|
|---|
| [c4be33a] | 1769 | bzero(e1000, sizeof(e1000_t));
|
|---|
| [1df224c] | 1770 |
|
|---|
| [c4be33a] | 1771 | nic_set_specific(nic, e1000);
|
|---|
| 1772 | nic_set_write_packet_handler(nic, e1000_write_packet);
|
|---|
| 1773 | nic_set_state_change_handlers(nic, e1000_on_activating,
|
|---|
| [1df224c] | 1774 | e1000_on_down, e1000_on_stopping);
|
|---|
| [c4be33a] | 1775 | nic_set_filtering_change_handlers(nic,
|
|---|
| [1df224c] | 1776 | e1000_on_unicast_mode_change, e1000_on_multicast_mode_change,
|
|---|
| 1777 | e1000_on_broadcast_mode_change, NULL, e1000_on_vlan_mask_change);
|
|---|
| [c4be33a] | 1778 | nic_set_poll_handlers(nic, e1000_poll_mode_change, e1000_poll);
|
|---|
| [1df224c] | 1779 |
|
|---|
| [c4be33a] | 1780 | fibril_mutex_initialize(&e1000->ctrl_lock);
|
|---|
| 1781 | fibril_mutex_initialize(&e1000->rx_lock);
|
|---|
| 1782 | fibril_mutex_initialize(&e1000->tx_lock);
|
|---|
| 1783 | fibril_mutex_initialize(&e1000->eeprom_lock);
|
|---|
| [bf84871] | 1784 |
|
|---|
| [c4be33a] | 1785 | return e1000;
|
|---|
| [bf84871] | 1786 | }
|
|---|
| 1787 |
|
|---|
| [1df224c] | 1788 | /** Delete driver data structure
|
|---|
| 1789 | *
|
|---|
| 1790 | * @param data E1000 device data structure
|
|---|
| [bf84871] | 1791 | *
|
|---|
| 1792 | */
|
|---|
| 1793 | inline static void e1000_delete_dev_data(ddf_dev_t *dev)
|
|---|
| 1794 | {
|
|---|
| 1795 | assert(dev);
|
|---|
| [1df224c] | 1796 |
|
|---|
| [bf84871] | 1797 | if (dev->driver_data != NULL)
|
|---|
| 1798 | nic_unbind_and_destroy(dev);
|
|---|
| 1799 | }
|
|---|
| 1800 |
|
|---|
| [1df224c] | 1801 | /** Clean up the E1000 device structure.
|
|---|
| 1802 | *
|
|---|
| 1803 | * @param dev Device structure.
|
|---|
| [bf84871] | 1804 | *
|
|---|
| 1805 | */
|
|---|
| 1806 | static void e1000_dev_cleanup(ddf_dev_t *dev)
|
|---|
| 1807 | {
|
|---|
| 1808 | assert(dev);
|
|---|
| [1df224c] | 1809 |
|
|---|
| [bf84871] | 1810 | e1000_delete_dev_data(dev);
|
|---|
| [1df224c] | 1811 |
|
|---|
| [bf84871] | 1812 | if (dev->parent_sess != NULL) {
|
|---|
| 1813 | async_hangup(dev->parent_sess);
|
|---|
| 1814 | dev->parent_sess = NULL;
|
|---|
| 1815 | }
|
|---|
| 1816 | }
|
|---|
| 1817 |
|
|---|
| 1818 | /** Fill the irq and io_addr part of device data structure
|
|---|
| 1819 | *
|
|---|
| [1df224c] | 1820 | * The hw_resources must be obtained before calling this function
|
|---|
| 1821 | *
|
|---|
| 1822 | * @param dev Device structure
|
|---|
| 1823 | * @param hw_resources Hardware resources obtained from the parent device
|
|---|
| 1824 | *
|
|---|
| 1825 | * @return EOK if succeed
|
|---|
| 1826 | * @return Negative error code otherwise
|
|---|
| [bf84871] | 1827 | *
|
|---|
| 1828 | */
|
|---|
| [1df224c] | 1829 | static int e1000_fill_resource_info(ddf_dev_t *dev,
|
|---|
| 1830 | const hw_res_list_parsed_t *hw_resources)
|
|---|
| [bf84871] | 1831 | {
|
|---|
| 1832 | assert(dev != NULL);
|
|---|
| 1833 | assert(hw_resources != NULL);
|
|---|
| 1834 | assert(dev->driver_data != NULL);
|
|---|
| [1df224c] | 1835 |
|
|---|
| [c4be33a] | 1836 | e1000_t *e1000 = DRIVER_DATA_DEV(dev);
|
|---|
| [1df224c] | 1837 |
|
|---|
| 1838 | if (hw_resources->irqs.count != 1)
|
|---|
| [bf84871] | 1839 | return EINVAL;
|
|---|
| [1df224c] | 1840 |
|
|---|
| [c4be33a] | 1841 | e1000->irq = hw_resources->irqs.irqs[0];
|
|---|
| 1842 | e1000->reg_base_phys =
|
|---|
| [1df224c] | 1843 | MEMADDR_TO_PTR(hw_resources->mem_ranges.ranges[0].address);
|
|---|
| 1844 |
|
|---|
| [bf84871] | 1845 | return EOK;
|
|---|
| 1846 | }
|
|---|
| 1847 |
|
|---|
| 1848 | /** Obtain information about hardware resources of the device
|
|---|
| 1849 | *
|
|---|
| [1df224c] | 1850 | * The device must be connected to the parent
|
|---|
| 1851 | *
|
|---|
| 1852 | * @param dev Device structure
|
|---|
| 1853 | *
|
|---|
| 1854 | * @return EOK if succeed
|
|---|
| 1855 | * @return Negative error code otherwise
|
|---|
| [bf84871] | 1856 | *
|
|---|
| 1857 | */
|
|---|
| 1858 | static int e1000_get_resource_info(ddf_dev_t *dev)
|
|---|
| 1859 | {
|
|---|
| 1860 | assert(dev != NULL);
|
|---|
| 1861 | assert(NIC_DATA_DEV(dev) != NULL);
|
|---|
| [1df224c] | 1862 |
|
|---|
| [bf84871] | 1863 | hw_res_list_parsed_t hw_res_parsed;
|
|---|
| 1864 | hw_res_list_parsed_init(&hw_res_parsed);
|
|---|
| [1df224c] | 1865 |
|
|---|
| [bf84871] | 1866 | /* Get hw resources form parent driver */
|
|---|
| 1867 | int rc = nic_get_resources(NIC_DATA_DEV(dev), &hw_res_parsed);
|
|---|
| 1868 | if (rc != EOK)
|
|---|
| 1869 | return rc;
|
|---|
| [1df224c] | 1870 |
|
|---|
| [bf84871] | 1871 | /* Fill resources information to the device */
|
|---|
| 1872 | rc = e1000_fill_resource_info(dev, &hw_res_parsed);
|
|---|
| 1873 | hw_res_list_parsed_clean(&hw_res_parsed);
|
|---|
| [1df224c] | 1874 |
|
|---|
| [bf84871] | 1875 | return rc;
|
|---|
| 1876 | }
|
|---|
| 1877 |
|
|---|
| [1df224c] | 1878 | /** Initialize the E1000 device structure
|
|---|
| 1879 | *
|
|---|
| 1880 | * @param dev Device information
|
|---|
| 1881 | *
|
|---|
| 1882 | * @return EOK if succeed
|
|---|
| 1883 | * @return Negative error code otherwise
|
|---|
| [bf84871] | 1884 | *
|
|---|
| 1885 | */
|
|---|
| 1886 | static int e1000_device_initialize(ddf_dev_t *dev)
|
|---|
| 1887 | {
|
|---|
| 1888 | /* Allocate driver data for the device. */
|
|---|
| [c4be33a] | 1889 | e1000_t *e1000 = e1000_create_dev_data(dev);
|
|---|
| 1890 | if (e1000 == NULL)
|
|---|
| [bf84871] | 1891 | return ENOMEM;
|
|---|
| [1df224c] | 1892 |
|
|---|
| [bf84871] | 1893 | /* Obtain and fill hardware resources info */
|
|---|
| [9916841] | 1894 | int rc = e1000_get_resource_info(dev);
|
|---|
| [bf84871] | 1895 | if (rc != EOK) {
|
|---|
| [1df224c] | 1896 | e1000_dev_cleanup(dev);
|
|---|
| 1897 | return rc;
|
|---|
| [bf84871] | 1898 | }
|
|---|
| 1899 |
|
|---|
| 1900 | rc = pci_config_space_read_16(dev->parent_sess, PCI_DEVICE_ID,
|
|---|
| [c4be33a] | 1901 | &e1000->device_id);
|
|---|
| [bf84871] | 1902 | if (rc != EOK) {
|
|---|
| [1df224c] | 1903 | e1000_dev_cleanup(dev);
|
|---|
| 1904 | return rc;
|
|---|
| [bf84871] | 1905 | }
|
|---|
| [1df224c] | 1906 |
|
|---|
| 1907 | return EOK;
|
|---|
| [bf84871] | 1908 | }
|
|---|
| 1909 |
|
|---|
| [1df224c] | 1910 | /** Enable the I/O ports of the device.
|
|---|
| 1911 | *
|
|---|
| 1912 | * @param dev E1000 device.
|
|---|
| 1913 | *
|
|---|
| 1914 | * @return EOK if successed
|
|---|
| 1915 | * @return Negative error code otherwise
|
|---|
| [bf84871] | 1916 | *
|
|---|
| 1917 | */
|
|---|
| 1918 | static int e1000_pio_enable(ddf_dev_t *dev)
|
|---|
| 1919 | {
|
|---|
| [c4be33a] | 1920 | e1000_t *e1000 = DRIVER_DATA_DEV(dev);
|
|---|
| [1df224c] | 1921 |
|
|---|
| [c4be33a] | 1922 | int rc = pio_enable(e1000->reg_base_phys, 8 * PAGE_SIZE,
|
|---|
| 1923 | &e1000->reg_base_virt);
|
|---|
| [1df224c] | 1924 | if (rc != EOK)
|
|---|
| [bf84871] | 1925 | return EADDRNOTAVAIL;
|
|---|
| [1df224c] | 1926 |
|
|---|
| [bf84871] | 1927 | return EOK;
|
|---|
| 1928 | }
|
|---|
| 1929 |
|
|---|
| [9916841] | 1930 | /** Probe and initialize the newly added device.
|
|---|
| [bf84871] | 1931 | *
|
|---|
| [1df224c] | 1932 | * @param dev E1000 device.
|
|---|
| 1933 | *
|
|---|
| [bf84871] | 1934 | */
|
|---|
| [9916841] | 1935 | int e1000_dev_add(ddf_dev_t *dev)
|
|---|
| [bf84871] | 1936 | {
|
|---|
| 1937 | assert(dev);
|
|---|
| [1df224c] | 1938 |
|
|---|
| 1939 | /* Initialize device structure for E1000 */
|
|---|
| [bf84871] | 1940 | int rc = e1000_device_initialize(dev);
|
|---|
| 1941 | if (rc != EOK)
|
|---|
| 1942 | return rc;
|
|---|
| 1943 |
|
|---|
| [1df224c] | 1944 | /* Device initialization */
|
|---|
| [c4be33a] | 1945 | nic_t *nic = dev->driver_data;
|
|---|
| 1946 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 1947 |
|
|---|
| [bf84871] | 1948 | /* Map registers */
|
|---|
| 1949 | rc = e1000_pio_enable(dev);
|
|---|
| 1950 | if (rc != EOK)
|
|---|
| 1951 | goto err_destroy;
|
|---|
| [1df224c] | 1952 |
|
|---|
| [c4be33a] | 1953 | e1000_initialize_registers(e1000);
|
|---|
| 1954 | rc = e1000_initialize_tx_structure(e1000);
|
|---|
| [1df224c] | 1955 | if (rc != EOK)
|
|---|
| [bf84871] | 1956 | goto err_pio;
|
|---|
| [1df224c] | 1957 |
|
|---|
| [c4be33a] | 1958 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [bf84871] | 1959 |
|
|---|
| [c4be33a] | 1960 | e1000_fill_mac_from_eeprom(e1000);
|
|---|
| 1961 | e1000_initialize_filters(e1000);
|
|---|
| [bf84871] | 1962 |
|
|---|
| [c4be33a] | 1963 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [1df224c] | 1964 |
|
|---|
| [c4be33a] | 1965 | e1000_initialize_vlan(e1000);
|
|---|
| [1df224c] | 1966 |
|
|---|
| [c4be33a] | 1967 | rc = nic_register_as_ddf_fun(nic, &e1000_dev_ops);
|
|---|
| [1df224c] | 1968 | if (rc != EOK)
|
|---|
| [bf84871] | 1969 | goto err_tx_structure;
|
|---|
| 1970 |
|
|---|
| [c4be33a] | 1971 | rc = e1000_register_int_handler(nic);
|
|---|
| [1df224c] | 1972 | if (rc != EOK)
|
|---|
| [bf84871] | 1973 | goto err_tx_structure;
|
|---|
| 1974 |
|
|---|
| [c4be33a] | 1975 | rc = nic_connect_to_services(nic);
|
|---|
| [1df224c] | 1976 | if (rc != EOK)
|
|---|
| [bf84871] | 1977 | goto err_irq;
|
|---|
| 1978 |
|
|---|
| [c4be33a] | 1979 | rc = e1000_initialize_rx_structure(nic);
|
|---|
| [1df224c] | 1980 | if (rc != EOK)
|
|---|
| [bf84871] | 1981 | goto err_irq;
|
|---|
| 1982 |
|
|---|
| 1983 | nic_address_t e1000_address;
|
|---|
| [c4be33a] | 1984 | e1000_get_address(e1000, &e1000_address);
|
|---|
| 1985 | rc = nic_report_address(nic, &e1000_address);
|
|---|
| [1df224c] | 1986 | if (rc != EOK)
|
|---|
| [bf84871] | 1987 | goto err_rx_structure;
|
|---|
| [1df224c] | 1988 |
|
|---|
| [bf84871] | 1989 | struct timeval period;
|
|---|
| 1990 | period.tv_sec = 0;
|
|---|
| [1df224c] | 1991 | period.tv_usec = E1000_DEFAULT_INTERRUPT_INTERVAL_USEC;
|
|---|
| [c4be33a] | 1992 | rc = nic_report_poll_mode(nic, NIC_POLL_PERIODIC, &period);
|
|---|
| [1df224c] | 1993 | if (rc != EOK)
|
|---|
| [bf84871] | 1994 | goto err_rx_structure;
|
|---|
| 1995 |
|
|---|
| 1996 | return EOK;
|
|---|
| [1df224c] | 1997 |
|
|---|
| [bf84871] | 1998 | err_rx_structure:
|
|---|
| [c4be33a] | 1999 | e1000_uninitialize_rx_structure(nic);
|
|---|
| [bf84871] | 2000 | err_irq:
|
|---|
| 2001 | unregister_interrupt_handler(dev, DRIVER_DATA_DEV(dev)->irq);
|
|---|
| 2002 | err_tx_structure:
|
|---|
| [c4be33a] | 2003 | e1000_uninitialize_tx_structure(e1000);
|
|---|
| [bf84871] | 2004 | err_pio:
|
|---|
| [1df224c] | 2005 | // TODO: e1000_pio_disable(dev);
|
|---|
| [bf84871] | 2006 | err_destroy:
|
|---|
| 2007 | e1000_dev_cleanup(dev);
|
|---|
| 2008 | return rc;
|
|---|
| [1df224c] | 2009 | }
|
|---|
| [bf84871] | 2010 |
|
|---|
| 2011 | /** Read 16-bit value from EEPROM of E1000 adapter
|
|---|
| [1df224c] | 2012 | *
|
|---|
| 2013 | * Read using the EERD register.
|
|---|
| 2014 | *
|
|---|
| 2015 | * @param device E1000 device
|
|---|
| 2016 | * @param eeprom_address 8-bit EEPROM address
|
|---|
| 2017 | *
|
|---|
| 2018 | * @return 16-bit value from EEPROM
|
|---|
| 2019 | *
|
|---|
| [bf84871] | 2020 | */
|
|---|
| [c4be33a] | 2021 | static uint16_t e1000_eeprom_read(e1000_t *e1000, uint8_t eeprom_address)
|
|---|
| [bf84871] | 2022 | {
|
|---|
| [c4be33a] | 2023 | fibril_mutex_lock(&e1000->eeprom_lock);
|
|---|
| [1df224c] | 2024 |
|
|---|
| [bf84871] | 2025 | uint32_t eerd_done;
|
|---|
| 2026 | uint32_t eerd_address_offset;
|
|---|
| [1df224c] | 2027 |
|
|---|
| [c4be33a] | 2028 | switch (e1000->device_id) {
|
|---|
| [1df224c] | 2029 | case 0x107c:
|
|---|
| 2030 | case 0x1013:
|
|---|
| 2031 | case 0x1018:
|
|---|
| 2032 | case 0x1019:
|
|---|
| 2033 | case 0x101A:
|
|---|
| 2034 | case 0x1076:
|
|---|
| 2035 | case 0x1077:
|
|---|
| 2036 | case 0x1078:
|
|---|
| 2037 | case 0x10b9:
|
|---|
| 2038 | /* 82541xx and 82547GI/EI */
|
|---|
| 2039 | eerd_done = EERD_DONE_82541XX_82547GI_EI;
|
|---|
| 2040 | eerd_address_offset = EERD_ADDRESS_OFFSET_82541XX_82547GI_EI;
|
|---|
| 2041 | break;
|
|---|
| 2042 | default:
|
|---|
| 2043 | eerd_done = EERD_DONE;
|
|---|
| 2044 | eerd_address_offset = EERD_ADDRESS_OFFSET;
|
|---|
| 2045 | break;
|
|---|
| [bf84871] | 2046 | }
|
|---|
| [1df224c] | 2047 |
|
|---|
| 2048 | /* Write address and START bit to EERD register */
|
|---|
| 2049 | uint32_t write_data = EERD_START |
|
|---|
| 2050 | (((uint32_t) eeprom_address) << eerd_address_offset);
|
|---|
| [c4be33a] | 2051 | E1000_REG_WRITE(e1000, E1000_EERD, write_data);
|
|---|
| [bf84871] | 2052 |
|
|---|
| [c4be33a] | 2053 | uint32_t eerd = E1000_REG_READ(e1000, E1000_EERD);
|
|---|
| [bf84871] | 2054 | while ((eerd & eerd_done) == 0) {
|
|---|
| [1df224c] | 2055 | usleep(1);
|
|---|
| [c4be33a] | 2056 | eerd = E1000_REG_READ(e1000, E1000_EERD);
|
|---|
| [bf84871] | 2057 | }
|
|---|
| 2058 |
|
|---|
| [c4be33a] | 2059 | fibril_mutex_unlock(&e1000->eeprom_lock);
|
|---|
| [1df224c] | 2060 |
|
|---|
| 2061 | return (uint16_t) (eerd >> EERD_DATA_OFFSET);
|
|---|
| [bf84871] | 2062 | }
|
|---|
| 2063 |
|
|---|
| 2064 | /** Get MAC address of the E1000 adapter
|
|---|
| 2065 | *
|
|---|
| [1df224c] | 2066 | * @param device E1000 device
|
|---|
| 2067 | * @param address Place to store the address
|
|---|
| 2068 | * @param max_len Maximal addresss length to store
|
|---|
| 2069 | *
|
|---|
| 2070 | * @return EOK if succeed
|
|---|
| 2071 | * @return Negative error code otherwise
|
|---|
| 2072 | *
|
|---|
| [bf84871] | 2073 | */
|
|---|
| [c4be33a] | 2074 | static int e1000_get_address(e1000_t *e1000, nic_address_t *address)
|
|---|
| [bf84871] | 2075 | {
|
|---|
| [c4be33a] | 2076 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| [1df224c] | 2077 |
|
|---|
| 2078 | uint8_t *mac0_dest = (uint8_t *) address->address;
|
|---|
| 2079 | uint8_t *mac1_dest = (uint8_t *) address->address + 1;
|
|---|
| 2080 | uint8_t *mac2_dest = (uint8_t *) address->address + 2;
|
|---|
| 2081 | uint8_t *mac3_dest = (uint8_t *) address->address + 3;
|
|---|
| 2082 | uint8_t *mac4_dest = (uint8_t *) address->address + 4;
|
|---|
| 2083 | uint8_t *mac5_dest = (uint8_t *) address->address + 5;
|
|---|
| 2084 |
|
|---|
| [c4be33a] | 2085 | uint32_t rah = E1000_REG_READ(e1000, E1000_RAH_ARRAY(0));
|
|---|
| 2086 | uint32_t ral = E1000_REG_READ(e1000, E1000_RAL_ARRAY(0));
|
|---|
| [bf84871] | 2087 |
|
|---|
| 2088 | *mac0_dest = (uint8_t) ral;
|
|---|
| 2089 | *mac1_dest = (uint8_t) (ral >> 8);
|
|---|
| 2090 | *mac2_dest = (uint8_t) (ral >> 16);
|
|---|
| 2091 | *mac3_dest = (uint8_t) (ral >> 24);
|
|---|
| 2092 | *mac4_dest = (uint8_t) rah;
|
|---|
| 2093 | *mac5_dest = (uint8_t) (rah >> 8);
|
|---|
| [1df224c] | 2094 |
|
|---|
| [c4be33a] | 2095 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [bf84871] | 2096 | return EOK;
|
|---|
| 2097 | };
|
|---|
| 2098 |
|
|---|
| 2099 | /** Set card MAC address
|
|---|
| 2100 | *
|
|---|
| [1df224c] | 2101 | * @param device E1000 device
|
|---|
| 2102 | * @param address Address
|
|---|
| 2103 | *
|
|---|
| 2104 | * @return EOK if succeed
|
|---|
| 2105 | * @return Negative error code otherwise
|
|---|
| [bf84871] | 2106 | */
|
|---|
| 2107 | static int e1000_set_addr(ddf_fun_t *dev, const nic_address_t *addr)
|
|---|
| 2108 | {
|
|---|
| [c4be33a] | 2109 | nic_t *nic = NIC_DATA_DEV(dev);
|
|---|
| 2110 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| [1df224c] | 2111 |
|
|---|
| [c4be33a] | 2112 | fibril_mutex_lock(&e1000->rx_lock);
|
|---|
| 2113 | fibril_mutex_lock(&e1000->tx_lock);
|
|---|
| [1df224c] | 2114 |
|
|---|
| [c4be33a] | 2115 | int rc = nic_report_address(nic, addr);
|
|---|
| [1df224c] | 2116 | if (rc == EOK)
|
|---|
| [c4be33a] | 2117 | e1000_write_receive_address(e1000, 0, addr, false);
|
|---|
| [1df224c] | 2118 |
|
|---|
| [c4be33a] | 2119 | fibril_mutex_unlock(&e1000->tx_lock);
|
|---|
| 2120 | fibril_mutex_unlock(&e1000->rx_lock);
|
|---|
| [1df224c] | 2121 |
|
|---|
| [bf84871] | 2122 | return rc;
|
|---|
| 2123 | }
|
|---|
| 2124 |
|
|---|
| [c4be33a] | 2125 | static void e1000_eeprom_get_address(e1000_t *e1000,
|
|---|
| [1df224c] | 2126 | nic_address_t *address)
|
|---|
| [bf84871] | 2127 | {
|
|---|
| [1df224c] | 2128 | uint16_t *mac0_dest = (uint16_t *) address->address;
|
|---|
| 2129 | uint16_t *mac2_dest = (uint16_t *) (address->address + 2);
|
|---|
| 2130 | uint16_t *mac4_dest = (uint16_t *) (address->address + 4);
|
|---|
| 2131 |
|
|---|
| [c4be33a] | 2132 | *mac0_dest = e1000_eeprom_read(e1000, 0);
|
|---|
| 2133 | *mac2_dest = e1000_eeprom_read(e1000, 1);
|
|---|
| 2134 | *mac4_dest = e1000_eeprom_read(e1000, 2);
|
|---|
| [bf84871] | 2135 | }
|
|---|
| 2136 |
|
|---|
| [1df224c] | 2137 | /** Send packet
|
|---|
| 2138 | *
|
|---|
| [c4be33a] | 2139 | * @param nic NIC driver data structure
|
|---|
| 2140 | * @param packet Packet to send
|
|---|
| [bf84871] | 2141 | *
|
|---|
| [1df224c] | 2142 | * @return EOK if succeed
|
|---|
| 2143 | * @return Error code in the case of error
|
|---|
| [bf84871] | 2144 | *
|
|---|
| 2145 | */
|
|---|
| [c4be33a] | 2146 | static void e1000_write_packet(nic_t *nic, packet_t *packet)
|
|---|
| [bf84871] | 2147 | {
|
|---|
| [c4be33a] | 2148 | assert(nic);
|
|---|
| [1df224c] | 2149 |
|
|---|
| [c4be33a] | 2150 | e1000_t *e1000 = DRIVER_DATA_NIC(nic);
|
|---|
| 2151 | fibril_mutex_lock(&e1000->tx_lock);
|
|---|
| [1df224c] | 2152 |
|
|---|
| [c4be33a] | 2153 | uint32_t tdt = E1000_REG_READ(e1000, E1000_TDT);
|
|---|
| [1df224c] | 2154 | e1000_tx_descriptor_t *tx_descriptor_addr = (e1000_tx_descriptor_t *)
|
|---|
| [c4be33a] | 2155 | (e1000->tx_ring_virt + tdt * sizeof(e1000_tx_descriptor_t));
|
|---|
| [1df224c] | 2156 |
|
|---|
| [bf84871] | 2157 | bool descriptor_available = false;
|
|---|
| [1df224c] | 2158 |
|
|---|
| 2159 | /* Descriptor never used */
|
|---|
| 2160 | if (tx_descriptor_addr->length == 0)
|
|---|
| [bf84871] | 2161 | descriptor_available = true;
|
|---|
| [1df224c] | 2162 |
|
|---|
| 2163 | /* Descriptor done */
|
|---|
| [bf84871] | 2164 | if (tx_descriptor_addr->status & TXDESCRIPTOR_STATUS_DD) {
|
|---|
| 2165 | descriptor_available = true;
|
|---|
| [c4be33a] | 2166 | packet_t *old_packet = *(e1000->tx_ring_packets + tdt);
|
|---|
| [bf84871] | 2167 | if (old_packet) {
|
|---|
| [c4be33a] | 2168 | size_t old_packet_size = packet_get_data_length(old_packet);
|
|---|
| 2169 | nic_dma_unlock_packet(old_packet, old_packet_size);
|
|---|
| 2170 | nic_release_packet(nic, old_packet);
|
|---|
| [bf84871] | 2171 | }
|
|---|
| 2172 | }
|
|---|
| [1df224c] | 2173 |
|
|---|
| 2174 | if (!descriptor_available) {
|
|---|
| 2175 | /* Packet lost */
|
|---|
| [c4be33a] | 2176 | fibril_mutex_unlock(&e1000->tx_lock);
|
|---|
| [bf84871] | 2177 | return;
|
|---|
| 2178 | }
|
|---|
| [1df224c] | 2179 |
|
|---|
| [bf84871] | 2180 | size_t packet_size = packet_get_data_length(packet);
|
|---|
| [1df224c] | 2181 |
|
|---|
| [c4be33a] | 2182 | void *phys;
|
|---|
| 2183 | int rc = nic_dma_lock_packet(packet, packet_size, &phys);
|
|---|
| 2184 | if (rc != EOK) {
|
|---|
| 2185 | fibril_mutex_unlock(&e1000->tx_lock);
|
|---|
| [bf84871] | 2186 | return;
|
|---|
| 2187 | }
|
|---|
| [1df224c] | 2188 |
|
|---|
| [c4be33a] | 2189 | *(e1000->tx_ring_packets + tdt) = packet;
|
|---|
| [1df224c] | 2190 |
|
|---|
| [bf84871] | 2191 | tx_descriptor_addr->phys_addr =
|
|---|
| [c4be33a] | 2192 | PTR_TO_U64(phys + packet->data_start);
|
|---|
| [bf84871] | 2193 | tx_descriptor_addr->length = packet_size;
|
|---|
| [1df224c] | 2194 |
|
|---|
| 2195 | /*
|
|---|
| 2196 | * Report status to STATUS.DD (descriptor done),
|
|---|
| 2197 | * add ethernet CRC, end of packet.
|
|---|
| 2198 | */
|
|---|
| 2199 | tx_descriptor_addr->command = TXDESCRIPTOR_COMMAND_RS |
|
|---|
| 2200 | TXDESCRIPTOR_COMMAND_IFCS |
|
|---|
| 2201 | TXDESCRIPTOR_COMMAND_EOP;
|
|---|
| 2202 |
|
|---|
| [bf84871] | 2203 | tx_descriptor_addr->checksum_offset = 0;
|
|---|
| 2204 | tx_descriptor_addr->status = 0;
|
|---|
| [c4be33a] | 2205 | if (e1000->vlan_tag_add) {
|
|---|
| 2206 | tx_descriptor_addr->special = e1000->vlan_tag;
|
|---|
| [bf84871] | 2207 | tx_descriptor_addr->command |= TXDESCRIPTOR_COMMAND_VLE;
|
|---|
| [1df224c] | 2208 | } else
|
|---|
| 2209 | tx_descriptor_addr->special = 0;
|
|---|
| 2210 |
|
|---|
| [bf84871] | 2211 | tx_descriptor_addr->checksum_start_field = 0;
|
|---|
| 2212 |
|
|---|
| [1df224c] | 2213 | tdt++;
|
|---|
| 2214 | if (tdt == E1000_TX_PACKETS_COUNT)
|
|---|
| [bf84871] | 2215 | tdt = 0;
|
|---|
| [1df224c] | 2216 |
|
|---|
| [c4be33a] | 2217 | E1000_REG_WRITE(e1000, E1000_TDT, tdt);
|
|---|
| [1df224c] | 2218 |
|
|---|
| [c4be33a] | 2219 | fibril_mutex_unlock(&e1000->tx_lock);
|
|---|
| [bf84871] | 2220 | }
|
|---|
| 2221 |
|
|---|
| 2222 | int main(void)
|
|---|
| 2223 | {
|
|---|
| [9916841] | 2224 | int rc = nic_driver_init(NAME);
|
|---|
| [1df224c] | 2225 | if (rc != EOK)
|
|---|
| [bf84871] | 2226 | return rc;
|
|---|
| [1df224c] | 2227 |
|
|---|
| [c4be33a] | 2228 | nic_driver_implement(&e1000_driver_ops, &e1000_dev_ops,
|
|---|
| 2229 | &e1000_nic_iface);
|
|---|
| [bf84871] | 2230 | return ddf_driver_main(&e1000_driver);
|
|---|
| 2231 | }
|
|---|