Table of Contents

Overview
#

Software-Defined Vehicles (SDVs) require a complex network of communication protocols to enable everything from basic vehicle functions to advanced autonomous driving capabilities. This guide covers the key protocols used in modern automotive systems.

Protocol Categories
#

┌─────────────────────────────────────────────────────────┐
│              SDV Communication Architecture              │
├─────────────────────────────────────────────────────────┤
│  External Communication  │  In-Vehicle Communication    │
├─────────────────────────┼───────────────────────────────┤
│  • 5G/LTE               │  • CAN / CAN FD              │
│  • Wi-Fi                │  • LIN                        │
│  • DSRC                 │  • FlexRay                    │
│  • C-V2X                │  • Automotive Ethernet        │
│  • Bluetooth            │  • MOST                       │
└─────────────────────────┴───────────────────────────────┘

Legacy In-Vehicle Protocols
#

CAN - Controller Area Network (1986)
#

The backbone of traditional automotive communication.

Characteristics:

  • Standard speed: 1 Mbps
  • Reliable data transmission
  • Multi-master architecture
  • Priority-based arbitration

CAN FD (Flexible Data-rate):

  • Higher bandwidth than classic CAN
  • Data field up to 64 bytes (vs 8 bytes)
  • Speeds up to 8 Mbps
FeatureCAN 2.0CAN FD
Max Speed1 Mbps8 Mbps
Data Length8 bytes64 bytes
Error DetectionCRC-15CRC-17/21

LIN - Local Interconnect Network (1999)
#

Low-cost protocol for simple vehicle functions.

Use Cases:

  • Window controls
  • Seat adjustment
  • Mirror positioning
  • Climate control sensors

Specifications:

  • Single master, multiple slaves
  • Speed: 20 kbps max
  • Single wire (plus ground)
  • Cost-effective solution

FlexRay (2000)
#

High-speed, deterministic protocol for safety-critical systems.

Characteristics:

  • Speed: Up to 10 Mbps per channel
  • Dual-channel redundancy
  • Time-triggered and event-triggered modes
  • Deterministic timing for safety systems

Applications:

  • Brake-by-wire
  • Steer-by-wire
  • Active suspension
  • Chassis systems

Timing Model:

$$ \text{Communication Cycle} = \text{Static Segment} + \text{Dynamic Segment} + \text{Symbol Window} + \text{NIT} $$

Modern Automotive Standards
#

MOST - Media Oriented Systems Transport (2001)
#

Optimized for multimedia and infotainment.

Versions:

VersionSpeedApplication
MOST2525 MbpsBasic audio
MOST5050 MbpsAdvanced audio
MOST150150 MbpsVideo streaming

Features:

  • Ring topology
  • Synchronous streaming for audio/video
  • Plug-and-play capability

Automotive Ethernet (2011+)
#

High-bandwidth backbone for modern vehicles.

Speed Tiers:

StandardSpeedApplication
100BASE-T1100 MbpsDiagnostics, basic connectivity
1000BASE-T11 GbpsADAS, surround view
10GBASE-T110 GbpsAutonomous driving

Advantages over Traditional Ethernet:

  • Single twisted pair (reduces weight)
  • Automotive-grade EMC compliance
  • Point-to-point or switched networks

Use Cases:

  • Camera data transmission
  • High-definition mapping
  • Software updates (OTA)
  • Diagnostic communication

MIPI Standards (2003+)
#

Mobile Industry Processor Interface adapted for automotive.

MIPI CSI-2 (Camera):

  • High-speed camera interface
  • Up to 6 Gbps per lane
  • Multiple virtual channels

MIPI DSI (Display):

  • High-resolution display interface
  • Multiple data lanes
  • Low power consumption

Wireless & External Communication
#

Bluetooth
#

Automotive Applications:

  • Phone connectivity
  • Audio streaming
  • Key fob functionality
  • Tire pressure monitoring
VersionSpeedRange
4.0 BLE1 Mbps50m
5.02 Mbps200m

Wi-Fi
#

In-Vehicle Uses:

  • Passenger connectivity
  • Infotainment updates
  • Hotspot functionality

5G/LTE
#

V2N (Vehicle-to-Network):

  • Telematics services
  • Real-time traffic data
  • Remote diagnostics
  • OTA updates

Performance:

TechnologyLatencyThroughput
4G LTE50-100ms100 Mbps
5G1-10ms1+ Gbps

DSRC - Dedicated Short-Range Communication
#

Specifications:

  • Frequency: 5.9 GHz
  • Range: Up to 1000m
  • Latency: ~1ms

Applications:

  • Toll collection
  • Traffic signal priority
  • Vehicle safety messages

C-V2X - Cellular Vehicle-to-Everything
#

LTE/5G-based V2X communication.

Modes:

ModeCommunication
V2VVehicle to Vehicle
V2IVehicle to Infrastructure
V2PVehicle to Pedestrian
V2NVehicle to Network

Advantages over DSRC:

  • Leverages cellular infrastructure
  • Longer range
  • Better scalability

Service-Oriented Architecture
#

SOME/IP
#

Scalable service-Oriented MiddlewarE over IP.

Features:

  • Service discovery
  • Remote procedure calls (RPC)
  • Event notification
  • Serialization

Architecture:

┌──────────────────────────────────────┐
│           Application Layer          │
├──────────────────────────────────────┤
│              SOME/IP                 │
├──────────────────────────────────────┤
│            UDP / TCP                 │
├──────────────────────────────────────┤
│          Automotive Ethernet         │
└──────────────────────────────────────┘

Protocol Comparison
#

ProtocolSpeedUse CaseCost
CAN1 MbpsBody, powertrainLow
CAN FD8 MbpsEnhanced CAN appsLow
LIN20 kbpsSimple controlsVery Low
FlexRay10 MbpsSafety-criticalHigh
MOST150 MbpsMultimediaMedium
Ethernet10 GbpsADAS, autonomousMedium

Domain-Based Architecture
#

Modern SDVs organize communication by domain:

┌─────────────────────────────────────────────┐
│              Central Gateway                 │
├─────────┬─────────┬─────────┬───────────────┤
│Powertrain│ Chassis │  Body   │ Infotainment │
│  Domain  │  Domain │ Domain  │    Domain    │
├─────────┼─────────┼─────────┼───────────────┤
│CAN/CAN FD│FlexRay │  LIN    │ MOST/Ethernet │
└─────────┴─────────┴─────────┴───────────────┘

Summary
#

SDV communication requires multiple protocols working together:

  1. CAN/CAN FD: Reliable backbone for control systems
  2. LIN: Cost-effective for simple functions
  3. FlexRay: Safety-critical deterministic communication
  4. Automotive Ethernet: High-bandwidth backbone
  5. V2X: External connectivity for smart transportation