Local Interconnect Network
LIN is a serial network protocol used for communication between components in vehicles. The need for a cheap serial network arose as the technologies and the facilities implemented in the car grew, while the CAN bus was too expensive to implement for every component in the car. European car manufacturers started using different serial communication technologies, which led to compatibility problems.
In the late 1990s, the LIN Consortium was founded by five automakers, with the technologies supplied from Volcano Automotive Group and Motorola. The first fully implemented version of the new LIN specification was published in November 2002. In September 2003, version 2.0 was introduced to expand capabilities and make provisions for additional diagnostics features. LIN may be used also over the vehicle's battery power-line with a special LIN over DC power line transceiver.
LIN over DC power line was standardized as ISO/AWI 17987-8.
CAN in Automation has been appointed by the ISO Technical Management Board as the Registration Authority for the LIN Supplier ID standardized in the ISO 17987 series.
Network topology
LIN is a broadcast serial network comprising 16 nodes.All messages are initiated by the master with at most one slave replying to a given message identifier. The master node can also act as a slave by replying to its own messages. Because all communications are initiated by the master it is not necessary to implement a collision detection.
The master and slaves are typically microcontrollers, but may be implemented in specialized hardware or ASICs in order to save cost, space, or power.
Current uses combine the low-cost efficiency of LIN and simple sensors to create small networks. These sub-systems can be connected by back-bone-network.
Overview
The LIN bus is an inexpensive serial communications protocol, which effectively supports remote application within a car's network. It is particularly intended for mechatronic nodes in distributed automotive applications, but is equally suited to industrial applications. It is intended to complement the existing CAN network leading to hierarchical networks within cars.In the late 1990s the Local Interconnect Network Consortium was founded by five European automakers, Mentor Graphics and Freescale. The first fully implemented version of the new LIN specification was published in November 2002 as LIN version 1.3. In September 2003 version 2.0 was introduced to expand configuration capabilities and make provisions for significant additional diagnostics features and tool interfaces.
The protocol’s main features are listed below:
- Single master, up to 16 slaves. This is the value recommended by the LIN Consortium to achieve deterministic time response.
- * Slave Node Position Detection allows node address assignment after power-up
- Single wire communications up to 19.2 kbit/s @ 40 meter bus length. In the LIN specification 2.2, the speed up to 20 kbit/s.
- Guaranteed latency times.
- Variable length of data frame.
- Configuration flexibility.
- Multi-cast reception with time synchronization, without crystals or ceramic resonators.
- Data checksum and error detection.
- Detection of defective nodes.
- Low cost silicon implementation based on standard UART/SCI hardware.
- Enabler for hierarchical networks.
- Operating voltage of 12 V.
LIN message frame
A message contains the following fields:- Synchronization break
- Synchronization byte
- Identifier byte
- Data bytes
- Checksum byte
Frame types
- Unconditional frame. These always carry signals and their identifiers are in the range 0 to 59. All subscribers of the unconditional frame shall receive the frame and make it available to the application.
- Event-triggered frame. The purpose of this is to increase the responsiveness of the LIN cluster without assigning too much of the bus bandwidth to the polling of multiple slave nodes with seldom occurring events. The first data byte of the carried unconditional frame shall be equal to a protected identifier assigned to an event-triggered frame. A slave shall reply with an associated unconditional frame only if its data value has changed. If none of the slave tasks responds to the header the rest of the frame slot is silent and the header is ignored. If more than one slave task responds to the header in the same frame slot a collision will occur, and the master has to resolve the collision by requesting all associated unconditional frames before requesting the event-triggered frame again.
- Sporadic frame. This frame is transmitted by the master as required, so a collision cannot occur. The header of a sporadic frame shall only be sent in its associated frame slot when the master task knows that a signal carried in the frame has been updated. The publisher of the sporadic frame shall always provide the response to the header.
- Diagnostic frame. These always carry diagnostic or configuration data and they always contain eight data bytes. The identifier is either 60, called master request frame, or 61, called slave response frame. Before generating the header of a diagnostic frame, the master task asks its diagnostic module if it shall be sent or if the bus shall be silent. The slave tasks publish and subscribe to the response according to their diagnostic module.
- User-defined frame. These can carry any kind of information. Their identifier is 62. The header of a user-defined frame is always transmitted when a frame slot allocated to the frame is processed
- Reserved frame. These shall not be used in a LIN 2.0 cluster. Their identifier is 63.
LIN hardware
The microcontroller generates all needed LIN data by software and is connected to the LIN network via a LIN transceiver. Working as a LIN node is only part of the possible functionality.
The LIN hardware may include this transceiver and works as a pure LIN node without added functionality.
As LIN Slave nodes should be as cheap as possible, they may generate their internal clocks by using RC oscillators instead of crystal oscillators.
To ensure the baud rate-stability within one LIN frame, the SYNC field within the header is used.
LIN protocol
The LIN-Master uses one or more predefined scheduling tables to start the sending and receiving to the LIN bus. These scheduling tables contain at least the relative timing, where the message sending is initiated.One LIN Frame consists of the two parts header and response. The header is always sent by the LIN Master, while the response is sent by either one dedicated LIN-Slave or the LIN master itself.
Transmitted data within the LIN is transmitted serially as eight bit data bytes with one start bit, one stop-bit, and no parity. Bit rates vary within the range of 1 kbit/s to 20 kbit/s.
Data on the bus is divided into recessive and dominant.
The time normal is considered by the LIN Masters stable clock source, the smallest entity is one bit time.
Two bus states — Sleep-mode and active — are used within the LIN protocol. While data is on the bus, all LIN-nodes are requested to be in active state. After a specified timeout, the nodes enter Sleep mode and will be released back to active state by a WAKEUP frame.
This frame may be sent by any node requesting activity on the bus, either the LIN Master following its internal schedule, or one of the attached LIN Slaves being activated by its internal software application.
After all nodes are awakened, the Master continues to schedule the next Identifier.
Header
The header consists of five parts:BREAK:
The BREAK field is used to activate all attached LIN slaves to listen to the following parts of the header. It consists of one start bit and several dominant bits. The length is at least 11-bit times; standard use as of today are 13-bit times, and therefore differs from the basic data format.
This is used to ensure that listening LIN nodes with a main-clock differing from the set bus baud rate in specified ranges will detect the BREAK as the frame starting the communication and not as a standard data byte with all values zero.
SYNC:
The SYNC is a standard data format byte with a value of hexadecimal 0x55.
LIN slaves running on RC oscillator will use the distance between a fixed amount of rising and falling edges to measure the current bit time on the bus and to recalculate the internal baud rate.
INTER BYTE SPACE:
Inter Byte Space is used to adjust for bus jitter. It is an optional component within the LIN specification. If enabled, then all LIN nodes must be prepared to deal with it.
There is an Inter Byte Space between the BREAK and SYNC field, one between the SYNC and IDENTIFIER, one between the payload and Checksum and one between every Data byte in the payload.
IDENTIFIER:
The IDENTIFIER defines one action to be fulfilled by one or several of the attached LIN slave nodes. The network designer has to ensure the fault-free functionality in the design phase.
If the identifier causes one physical LIN slave to send the response, the identifier may be called a Rx-identifier.
If the master's slave task sends data to the bus, it may be called Tx-identifier.
RESPONSE SPACE:
Response Space is the time between the IDENTIFIER field and the first Data byte which starts the LIN RESPONSE part of the LIN frame. When a particular LIN frame is transmitted completely, Header + Response, by the LIN MASTER, the LIN MASTER will use the full RESPONSE SPACE TIME to calculate when to send the response after sending the header. If the response part of the LIN frame is coming from a physically different SLAVE NODE, then each node will utilize 50% of the Response Space time in their timeout calculations.
Response
The response is sent by one of the attached LIN slave tasks and is divided into data and checksum.DATA:
The responding slave may send zero to eight data bytes to the bus. The amount of data is fixed by the application designer and mirrors data relevant for the application which the LIN slave runs in.
CHECKSUM:
There are two checksum-models available within LIN - The first is the checksum including the data bytes only, the second one includes the identifier in addition.
The used checksum model is pre-defined by the application designer.
Slave node position detection (SNPD) or autoaddressing
These methods allow the detection of the position of slave nodes on the LIN bus and allow the assignment of a unique node address.- Allows similar or the same devices to be connected on the bus without end of line programming or connector pin programming.
- All auto-addressing slaves must be in one line
- * Standard slaves can be connected in any way
SNPD Method | SNPD Method ID | Company |
Extra wire daisy chain | 0x01 | NXP |
Bus shunt method | 0x02 | Elmos Semiconductor |
Reserved | 0x03 | TBD |
Reserved | 0x04 | TBD |
Reserved | 0xFF | TBD |
Extra wire daisy chain (XWDC)
Each slave node has to provide two extra pins, one input, D1, and one output, D2.- The first SNPD node input D1 is either set to GND or connected to the output of the master.
- * The output of the first node, D2, is connected to the input, D1 of the second node, and so on resulting in a daisy chain.
- Switchable resistive pull-up to Vbat
- Pull-down to GND
- Comparator referenced to Vbat/2
XWDC auto-addressing procedure
1 First auto-addressing LIN message
2 Subsequent auto-addressing LIN messages
3 All pull-ups and pull-downs are turned off completing the addressing procedure
Bus shunt method (BSM)
Each slave node has two LIN pins- bus_in
- bus_out
- The standard pull-up must be switchable
- Switchable 2 mA current source from Vbat
- Shunt resistor
- Differential amplifier
- Analog to digital converter
BSM auto-addressing procedure
1 Offset current measurement
2 Pull-up mode
3 Current source mode
This technique is covered by the patents EP 1490772 B1 and US 7091876.
LIN advantages
- Easy to use
- Components available
- Cheaper than CAN and other communications buses
- Harness reduction
- More reliable vehicles
- Extension easy to implement.
- No protocol license fee required
Applications
Application segments | Specific LIN application examples |
Roof | Sensor, light sensor, light control, sun roof |
Steering wheel | Cruise control, wiper, turning light, climate control, radio, wheel lock |
Seat | Seat position motors, occupant sensors, control panel |
Engine | Sensors, small motors, cooling fan motors |
Grille | Grille shutter |
Climate | Small motors, control panel |
Door | Mirror, central ECU, mirror switch, window lift, seat control switch, door lock |
Illumination | Vehicle trim enhancement, sill plates illuminated with RGB LED |
Addressing
Addressing in LIN is achieved with a NAD that is part of the PID. NAD values are on 7bits, so in the range 1 to 127 and it is a composition of supplier ID, function ID and variant ID.You can obtain a supplier ID by contacting CAN in Automation that is the authority responsible for the assignment of such identifiers.