Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

The second function is the device driver Start() function. This function is called once each time an interface is started.

Files

Every device driver’s net_dev.c

Prototype

Code Block
          static void NetDev_Start (NET_IF  *pif,
                                    NET_ERR *perr);

Note that since every device driver’s Start() function is accessed only by function pointer via the device driver’s API structure, it doesn’t need to be globally available and should therefore be declared as ‘static’.

Arguments

pif

Pointer to the interface to start a network device.

...

Pointer to variable that will receive the return error code from this function.

Returned Value

None.

Required Configuration

None.

Notes / Warnings

The Start() function performs the following items:

...

  1. Configure the transmit ready semaphore count via a call to NetOS_Dev_CfgTxRdySignal(). This function call is optional and is generally performed when the hardware device supports the queuing of multiple transmit frames. By default, the count is initialized to one. However, DMA devices should set the semaphore count equal to the number of configured transmit descriptors for optimal performance. Non-DMA devices that support the queuing of more than one transmit frame may also benefit from a non-default value.

...

  1. Initialize the device MAC address if applicable. For Ethernet devices, this step is mandatory. The MAC address data may come from one of three sources and should be set using the following priority scheme:

      ...

        1. Configure the MAC address using the string found within the device configuration structure. This is a form of static MAC address configuration and may be performed by calling NetASCII_Str_to_MAC() and NetIF_AddrHW_SetHandler(). If the device configuration string has been left empty, or is specified as all 0’s, an error will be returned and the next method should be attempted.

      ...

        1. Check if the application developer has called NetIF_AddrHW_Set() by making a call to NetIF_AddrHW_GetHandler() and NetIF_AddrHW_IsValidHandler() in order to check if the specified MAC address is valid. This method may be used as a static method for configuring the MAC address during run-time, or a dynamic method should a pre-programmed external memory device exist. If the acquired MAC address does not pass the check function, then:

      ...

        1. Call NetIF_AddrHW_SetHandler() using the data found within the MAC individual address registers. If an auto-loading EEPROM is attached to the MAC, the registers will contain valid data. If not, then a configuration error has occurred. This method is often used with a production process where the MAC supports the automatic loading of individual address registers from a serial EEPROM. When using this method, the developer should specify an empty string for the MAC address within the device configuration and refrain from calling NetIF_AddrHW_Set() from within the application.

      ...

      1. Initialize additional MAC registers required by the MAC for proper operation.

      ...

      1. Clear all interrupt flags.

      ...

      1. Locally enable interrupts on the hardware device. The host interrupt controller should have already been configured within the device driver Init() function.

      ...

      1. Enable the receiver and transmitter.

      ...

      1. Set perr equal to NET_DEV_ERR_NONE if no errors have occurred. Otherwise, set perr to an appropriate network device error code.