Blame view

Documentation/watchdog/mlx-wdt.rst 2.49 KB
cc2a2d19f   Mauro Carvalho Chehab   docs: watchdog: c...
1
2
3
4
5
6
  =========================
  Mellanox watchdog drivers
  =========================
  
  for x86 based system switches
  =============================
9d489ad12   Michael Shych   Documentation/wat...
7
8
9
10
11
12
13
14
15
  
  This driver provides watchdog functionality for various Mellanox
  Ethernet and Infiniband switch systems.
  
  Mellanox watchdog device is implemented in a programmable logic device.
  
  There are 2 types of HW watchdog implementations.
  
  Type 1:
cc2a2d19f   Mauro Carvalho Chehab   docs: watchdog: c...
16
17
18
19
    Actual HW timeout can be defined as a power of 2 msec.
    e.g. timeout 20 sec will be rounded up to 32768 msec.
    The maximum timeout period is 32 sec (32768 msec.),
    Get time-left isn't supported
9d489ad12   Michael Shych   Documentation/wat...
20
21
  
  Type 2:
cc2a2d19f   Mauro Carvalho Chehab   docs: watchdog: c...
22
23
24
25
    Actual HW timeout is defined in sec. and it's the same as
    a user-defined timeout.
    Maximum timeout is 255 sec.
    Get time-left is supported.
9d489ad12   Michael Shych   Documentation/wat...
26

d6e6d5627   Michael Shych   docs: watchdog: m...
27
28
29
  Type 3:
    Same as Type 2 with extended maximum timeout period.
    Maximum timeout is 65535 sec.
9d489ad12   Michael Shych   Documentation/wat...
30
31
32
  Type 1 HW watchdog implementation exist in old systems and
  all new systems have type 2 HW watchdog.
  Two types of HW implementation have also different register map.
d6e6d5627   Michael Shych   docs: watchdog: m...
33
34
35
36
  Type 3 HW watchdog implementation can exist on all Mellanox systems
  with new programmer logic device.
  It's differentiated by WD capability bit.
  Old systems still have only one main watchdog.
9d489ad12   Michael Shych   Documentation/wat...
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
  Mellanox system can have 2 watchdogs: main and auxiliary.
  Main and auxiliary watchdog devices can be enabled together
  on the same system.
  There are several actions that can be defined in the watchdog:
  system reset, start fans on full speed and increase register counter.
  The last 2 actions are performed without a system reset.
  Actions without reset are provided for auxiliary watchdog device,
  which is optional.
  Watchdog can be started during a probe, in this case it will be
  pinged by watchdog core before watchdog device will be opened by
  user space application.
  Watchdog can be initialised in nowayout way, i.e. oncse started
  it can't be stopped.
  
  This mlx-wdt driver supports both HW watchdog implementations.
  
  Watchdog driver is probed from the common mlx_platform driver.
  Mlx_platform driver provides an appropriate set of registers for
  Mellanox watchdog device, identity name (mlx-wdt-main or mlx-wdt-aux),
  initial timeout, performed action in expiration and configuration flags.
  watchdog configuration flags: nowayout and start_at_boot, hw watchdog
  version - type1 or type2.
  The driver checks during initialization if the previous system reset
  was done by the watchdog. If yes, it makes a notification about this event.
  
  Access to HW registers is performed through a generic regmap interface.
d6e6d5627   Michael Shych   docs: watchdog: m...
63
  Programmable logic device registers have little-endian order.