Blame view

drivers/fsi/Kconfig 2.41 KB
ec8f24b7f   Thomas Gleixner   treewide: Add SPD...
1
  # SPDX-License-Identifier: GPL-2.0-only
0508ad1ff   Jeremy Kerr   drivers/fsi: Add ...
2
3
4
  #
  # FSI subsystem
  #
baa8b941c   Vincent Legoll   fsi: Make FSI a m...
5
  menuconfig FSI
0508ad1ff   Jeremy Kerr   drivers/fsi: Add ...
6
  	tristate "FSI support"
f6a2f8eb7   Jeremy Kerr   fsi: Match fsi sl...
7
  	depends on OF
2b545cd8e   Jeremy Kerr   drivers/fsi: Impl...
8
  	select CRC4
0508ad1ff   Jeremy Kerr   drivers/fsi: Add ...
9
10
11
  	---help---
  	  FSI - the FRU Support Interface - is a simple bus for low-level
  	  access to POWER-based hardware.
ac0385d9f   Christopher Bostic   drivers/fsi: Add ...
12
13
  
  if FSI
0ab5fe537   Benjamin Herrenschmidt   fsi: Add new cent...
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  config FSI_NEW_DEV_NODE
  	bool "Create '/dev/fsi' directory for char devices"
  	default n
  	---help---
  	This option causes char devices created for FSI devices to be
  	located under a common /dev/fsi/ directory. Set to N unless your
  	userspace has been updated to handle the new location.
  
  	Additionally, it also causes the char device names to be offset
  	by one so that chip 0 will have /dev/scom1 and chip1 /dev/scom2
  	to match old userspace expectations.
  
  	New userspace will use udev rules to generate predictable access
  	symlinks in /dev/fsi/by-path when this option is enabled.
ac0385d9f   Christopher Bostic   drivers/fsi: Add ...
28
29
30
31
32
33
  config FSI_MASTER_GPIO
  	tristate "GPIO-based FSI master"
  	depends on GPIOLIB
  	select CRC4
  	---help---
  	This option enables a FSI master driver using GPIO lines.
7f9e8f767   Christopher Bostic   drivers/fsi: Add ...
34
35
36
37
38
39
40
  config FSI_MASTER_HUB
  	tristate "FSI hub master"
  	---help---
  	This option enables a FSI hub master driver.  Hub is a type of FSI
  	master that is connected to the upstream master via a slave.  Hubs
  	allow chaining of FSI links to an arbitrary depth.  This allows for
  	a high target device fanout.
6a794a27d   Benjamin Herrenschmidt   fsi: master-ast-c...
41
42
43
44
  config FSI_MASTER_AST_CF
  	tristate "FSI master based on Aspeed ColdFire coprocessor"
  	depends on GPIOLIB
  	depends on GPIO_ASPEED
64999fa7a   Arnd Bergmann   fsi: master-ast-c...
45
  	select GENERIC_ALLOCATOR
6a794a27d   Benjamin Herrenschmidt   fsi: master-ast-c...
46
47
48
49
  	---help---
  	This option enables a FSI master using the AST2400 and AST2500 GPIO
  	lines driven by the internal ColdFire coprocessor. This requires
  	the corresponding machine specific ColdFire firmware to be available.
680ca6dcf   Christopher Bostic   drivers/fsi: Add ...
50
51
52
53
  config FSI_SCOM
  	tristate "SCOM FSI client device driver"
  	---help---
  	This option enables an FSI based SCOM device driver.
9f4a8a2d7   Benjamin Herrenschmidt   fsi/sbefifo: Add ...
54
55
  config FSI_SBEFIFO
  	tristate "SBEFIFO FSI client device driver"
32f7f89d3   Guenter Roeck   fsi/sbefifo: Add ...
56
  	depends on OF_ADDRESS
9f4a8a2d7   Benjamin Herrenschmidt   fsi/sbefifo: Add ...
57
58
59
60
  	---help---
  	This option enables an FSI based SBEFIFO device driver. The SBEFIFO is
  	a pipe-like FSI device for communicating with the self boot engine
  	(SBE) on POWER processors.
7ed98dddb   Eddie James   fsi: Add On-Chip ...
61
62
63
64
65
66
67
68
69
  config FSI_OCC
  	tristate "OCC SBEFIFO client device driver"
  	depends on FSI_SBEFIFO
  	---help---
  	This option enables an SBEFIFO based On-Chip Controller (OCC) device
  	driver. The OCC is a device embedded on a POWER processor that collects
  	and aggregates sensor data from the processor and system. The OCC can
  	provide the raw sensor data as well as perform thermal and power
  	management on the system.
ac0385d9f   Christopher Bostic   drivers/fsi: Add ...
70
  endif