powerpc/mm: Drop the unnecessary region check
[linux-2.6-block.git] / drivers / fsi / Kconfig
CommitLineData
0508ad1f
JK
1#
2# FSI subsystem
3#
4
baa8b941 5menuconfig FSI
0508ad1f 6 tristate "FSI support"
f6a2f8eb 7 depends on OF
2b545cd8 8 select CRC4
0508ad1f
JK
9 ---help---
10 FSI - the FRU Support Interface - is a simple bus for low-level
11 access to POWER-based hardware.
ac0385d9
CB
12
13if FSI
14
0ab5fe53
BH
15config FSI_NEW_DEV_NODE
16 bool "Create '/dev/fsi' directory for char devices"
17 default n
18 ---help---
19 This option causes char devices created for FSI devices to be
20 located under a common /dev/fsi/ directory. Set to N unless your
21 userspace has been updated to handle the new location.
22
23 Additionally, it also causes the char device names to be offset
24 by one so that chip 0 will have /dev/scom1 and chip1 /dev/scom2
25 to match old userspace expectations.
26
27 New userspace will use udev rules to generate predictable access
28 symlinks in /dev/fsi/by-path when this option is enabled.
29
ac0385d9
CB
30config FSI_MASTER_GPIO
31 tristate "GPIO-based FSI master"
32 depends on GPIOLIB
33 select CRC4
34 ---help---
35 This option enables a FSI master driver using GPIO lines.
36
7f9e8f76
CB
37config FSI_MASTER_HUB
38 tristate "FSI hub master"
39 ---help---
40 This option enables a FSI hub master driver. Hub is a type of FSI
41 master that is connected to the upstream master via a slave. Hubs
42 allow chaining of FSI links to an arbitrary depth. This allows for
43 a high target device fanout.
44
6a794a27
BH
45config FSI_MASTER_AST_CF
46 tristate "FSI master based on Aspeed ColdFire coprocessor"
47 depends on GPIOLIB
48 depends on GPIO_ASPEED
64999fa7 49 select GENERIC_ALLOCATOR
6a794a27
BH
50 ---help---
51 This option enables a FSI master using the AST2400 and AST2500 GPIO
52 lines driven by the internal ColdFire coprocessor. This requires
53 the corresponding machine specific ColdFire firmware to be available.
54
680ca6dc
CB
55config FSI_SCOM
56 tristate "SCOM FSI client device driver"
57 ---help---
58 This option enables an FSI based SCOM device driver.
59
9f4a8a2d
BH
60config FSI_SBEFIFO
61 tristate "SBEFIFO FSI client device driver"
32f7f89d 62 depends on OF_ADDRESS
9f4a8a2d
BH
63 ---help---
64 This option enables an FSI based SBEFIFO device driver. The SBEFIFO is
65 a pipe-like FSI device for communicating with the self boot engine
66 (SBE) on POWER processors.
67
7ed98ddd
EJ
68config FSI_OCC
69 tristate "OCC SBEFIFO client device driver"
70 depends on FSI_SBEFIFO
71 ---help---
72 This option enables an SBEFIFO based On-Chip Controller (OCC) device
73 driver. The OCC is a device embedded on a POWER processor that collects
74 and aggregates sensor data from the processor and system. The OCC can
75 provide the raw sensor data as well as perform thermal and power
76 management on the system.
77
ac0385d9 78endif