diff options
author | Konrad Rzeszutek <ketuzsezr@darnok.org> | 2008-04-09 22:50:41 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2008-04-19 22:10:28 -0400 |
commit | 138fe4e069798d9aa948a5402ff15e58f483ee4e (patch) | |
tree | 413ab0c86618df7dba7724c1945fd46cd33298b9 /arch/x86 | |
parent | 95bc6a10830de469eee94c17fb1c37b3b1430715 (diff) |
Firmware: add iSCSI iBFT Support
Add /sysfs/firmware/ibft/[initiator|targetX|ethernetX] directories along with
text properties which export the the iSCSI Boot Firmware Table (iBFT)
structure.
What is iSCSI Boot Firmware Table? It is a mechanism for the iSCSI tools to
extract from the machine NICs the iSCSI connection information so that they
can automagically mount the iSCSI share/target. Currently the iSCSI
information is hard-coded in the initrd. The /sysfs entries are read-only
one-name-and-value fields.
The usual set of data exposed is:
# for a in `find /sys/firmware/ibft/ -type f -print`; do echo -n "$a: "; cat $a; done
/sys/firmware/ibft/target0/target-name: iqn.2007.com.intel-sbx44:storage-10gb
/sys/firmware/ibft/target0/nic-assoc: 0
/sys/firmware/ibft/target0/chap-type: 0
/sys/firmware/ibft/target0/lun: 00000000
/sys/firmware/ibft/target0/port: 3260
/sys/firmware/ibft/target0/ip-addr: 192.168.79.116
/sys/firmware/ibft/target0/flags: 3
/sys/firmware/ibft/target0/index: 0
/sys/firmware/ibft/ethernet0/mac: 00:11:25:9d:8b:01
/sys/firmware/ibft/ethernet0/vlan: 0
/sys/firmware/ibft/ethernet0/gateway: 192.168.79.254
/sys/firmware/ibft/ethernet0/origin: 0
/sys/firmware/ibft/ethernet0/subnet-mask: 255.255.252.0
/sys/firmware/ibft/ethernet0/ip-addr: 192.168.77.41
/sys/firmware/ibft/ethernet0/flags: 7
/sys/firmware/ibft/ethernet0/index: 0
/sys/firmware/ibft/initiator/initiator-name: iqn.2007-07.com:konrad.initiator
/sys/firmware/ibft/initiator/flags: 3
/sys/firmware/ibft/initiator/index: 0
For full details of the IBFT structure please take a look at:
ftp://ftp.software.ibm.com/systems/support/system_x_pdf/ibm_iscsi_boot_firmware_table_v1.02.pdf
[akpm@linux-foundation.org: fix build]
Signed-off-by: Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
Cc: Mike Christie <michaelc@cs.wisc.edu>
Cc: Peter Jones <pjones@redhat.com>
Cc: James Bottomley <James.Bottomley@HansenPartnership.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'arch/x86')
-rw-r--r-- | arch/x86/kernel/setup_32.c | 3 | ||||
-rw-r--r-- | arch/x86/kernel/setup_64.c | 4 |
2 files changed, 7 insertions, 0 deletions
diff --git a/arch/x86/kernel/setup_32.c b/arch/x86/kernel/setup_32.c index 5b0bffb7fcc9..4ef91749959e 100644 --- a/arch/x86/kernel/setup_32.c +++ b/arch/x86/kernel/setup_32.c | |||
@@ -39,6 +39,7 @@ | |||
39 | #include <linux/efi.h> | 39 | #include <linux/efi.h> |
40 | #include <linux/init.h> | 40 | #include <linux/init.h> |
41 | #include <linux/edd.h> | 41 | #include <linux/edd.h> |
42 | #include <linux/iscsi_ibft.h> | ||
42 | #include <linux/nodemask.h> | 43 | #include <linux/nodemask.h> |
43 | #include <linux/kexec.h> | 44 | #include <linux/kexec.h> |
44 | #include <linux/crash_dump.h> | 45 | #include <linux/crash_dump.h> |
@@ -689,6 +690,8 @@ void __init setup_bootmem_allocator(void) | |||
689 | #endif | 690 | #endif |
690 | numa_kva_reserve(); | 691 | numa_kva_reserve(); |
691 | reserve_crashkernel(); | 692 | reserve_crashkernel(); |
693 | |||
694 | reserve_ibft_region(); | ||
692 | } | 695 | } |
693 | 696 | ||
694 | /* | 697 | /* |
diff --git a/arch/x86/kernel/setup_64.c b/arch/x86/kernel/setup_64.c index 674ef3510cdf..216c93bd9993 100644 --- a/arch/x86/kernel/setup_64.c +++ b/arch/x86/kernel/setup_64.c | |||
@@ -33,6 +33,7 @@ | |||
33 | #include <linux/acpi.h> | 33 | #include <linux/acpi.h> |
34 | #include <linux/kallsyms.h> | 34 | #include <linux/kallsyms.h> |
35 | #include <linux/edd.h> | 35 | #include <linux/edd.h> |
36 | #include <linux/iscsi_ibft.h> | ||
36 | #include <linux/mmzone.h> | 37 | #include <linux/mmzone.h> |
37 | #include <linux/kexec.h> | 38 | #include <linux/kexec.h> |
38 | #include <linux/cpufreq.h> | 39 | #include <linux/cpufreq.h> |
@@ -434,6 +435,9 @@ void __init setup_arch(char **cmdline_p) | |||
434 | } | 435 | } |
435 | #endif | 436 | #endif |
436 | reserve_crashkernel(); | 437 | reserve_crashkernel(); |
438 | |||
439 | reserve_ibft_region(); | ||
440 | |||
437 | paging_init(); | 441 | paging_init(); |
438 | map_vsyscall(); | 442 | map_vsyscall(); |
439 | 443 | ||