diff options
author | Matt Porter <mporter@kernel.crashing.org> | 2005-11-07 04:00:15 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2005-11-07 10:53:46 -0500 |
commit | 394b701ce4fbfde919a9bcbf84cb4820a7c6d47c (patch) | |
tree | a397fff4043a9810e753fb81224349bd36db45b8 /drivers/rapidio/Kconfig | |
parent | d217d5450f11d8c907c0458d175b0dc999b4d06d (diff) |
[PATCH] RapidIO support: core base
Adds a RapidIO subsystem to the kernel. RIO is a switched fabric interconnect
used in higher-end embedded applications. The curious can look at the specs
over at http://www.rapidio.org
The core code implements enumeration/discovery, management of
devices/resources, and interfaces for RIO drivers.
There's a lot more to do to take advantages of all the hardware features.
However, this should provide a good base for folks with RIO hardware to start
contributing.
Signed-off-by: Matt Porter <mporter@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers/rapidio/Kconfig')
-rw-r--r-- | drivers/rapidio/Kconfig | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/drivers/rapidio/Kconfig b/drivers/rapidio/Kconfig new file mode 100644 index 000000000000..0b2d2c3579a7 --- /dev/null +++ b/drivers/rapidio/Kconfig | |||
@@ -0,0 +1,18 @@ | |||
1 | # | ||
2 | # RapidIO configuration | ||
3 | # | ||
4 | config RAPIDIO_8_BIT_TRANSPORT | ||
5 | bool "8-bit transport addressing" | ||
6 | depends on RAPIDIO | ||
7 | ---help--- | ||
8 | By default, the kernel assumes a 16-bit addressed RapidIO | ||
9 | network. By selecting this option, the kernel will support | ||
10 | an 8-bit addressed network. | ||
11 | |||
12 | config RAPIDIO_DISC_TIMEOUT | ||
13 | int "Discovery timeout duration (seconds)" | ||
14 | depends on RAPIDIO | ||
15 | default "30" | ||
16 | ---help--- | ||
17 | Amount of time a discovery node waits for a host to complete | ||
18 | enumeration beforing giving up. | ||