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 /drivers/firmware/iscsi_ibft_find.c | |
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 'drivers/firmware/iscsi_ibft_find.c')
-rw-r--r-- | drivers/firmware/iscsi_ibft_find.c | 84 |
1 files changed, 84 insertions, 0 deletions
diff --git a/drivers/firmware/iscsi_ibft_find.c b/drivers/firmware/iscsi_ibft_find.c new file mode 100644 index 000000000000..d0e5fa4ea51b --- /dev/null +++ b/drivers/firmware/iscsi_ibft_find.c | |||
@@ -0,0 +1,84 @@ | |||
1 | /* | ||
2 | * Copyright 2007 Red Hat, Inc. | ||
3 | * by Peter Jones <pjones@redhat.com> | ||
4 | * Copyright 2007 IBM, Inc. | ||
5 | * by Konrad Rzeszutek <konradr@linux.vnet.ibm.com> | ||
6 | * Copyright 2008 | ||
7 | * by Konrad Rzeszutek <ketuzsezr@darnok.org> | ||
8 | * | ||
9 | * This code finds the iSCSI Boot Format Table. | ||
10 | * | ||
11 | * This program is free software; you can redistribute it and/or modify | ||
12 | * it under the terms of the GNU General Public License v2.0 as published by | ||
13 | * the Free Software Foundation | ||
14 | * | ||
15 | * This program is distributed in the hope that it will be useful, | ||
16 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
17 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
18 | * GNU General Public License for more details. | ||
19 | */ | ||
20 | |||
21 | #include <linux/bootmem.h> | ||
22 | #include <linux/blkdev.h> | ||
23 | #include <linux/ctype.h> | ||
24 | #include <linux/device.h> | ||
25 | #include <linux/err.h> | ||
26 | #include <linux/init.h> | ||
27 | #include <linux/limits.h> | ||
28 | #include <linux/module.h> | ||
29 | #include <linux/pci.h> | ||
30 | #include <linux/slab.h> | ||
31 | #include <linux/stat.h> | ||
32 | #include <linux/string.h> | ||
33 | #include <linux/types.h> | ||
34 | |||
35 | #include <asm/mmzone.h> | ||
36 | |||
37 | /* | ||
38 | * Physical location of iSCSI Boot Format Table. | ||
39 | */ | ||
40 | struct ibft_table_header *ibft_addr; | ||
41 | EXPORT_SYMBOL_GPL(ibft_addr); | ||
42 | |||
43 | #define IBFT_SIGN "iBFT" | ||
44 | #define IBFT_SIGN_LEN 4 | ||
45 | #define IBFT_START 0x80000 /* 512kB */ | ||
46 | #define IBFT_END 0x100000 /* 1MB */ | ||
47 | #define VGA_MEM 0xA0000 /* VGA buffer */ | ||
48 | #define VGA_SIZE 0x20000 /* 128kB */ | ||
49 | |||
50 | |||
51 | /* | ||
52 | * Routine used to find the iSCSI Boot Format Table. The logical | ||
53 | * kernel address is set in the ibft_addr global variable. | ||
54 | */ | ||
55 | void __init reserve_ibft_region(void) | ||
56 | { | ||
57 | unsigned long pos; | ||
58 | unsigned int len = 0; | ||
59 | void *virt; | ||
60 | |||
61 | ibft_addr = 0; | ||
62 | |||
63 | for (pos = IBFT_START; pos < IBFT_END; pos += 16) { | ||
64 | /* The table can't be inside the VGA BIOS reserved space, | ||
65 | * so skip that area */ | ||
66 | if (pos == VGA_MEM) | ||
67 | pos += VGA_SIZE; | ||
68 | virt = phys_to_virt(pos); | ||
69 | if (memcmp(virt, IBFT_SIGN, IBFT_SIGN_LEN) == 0) { | ||
70 | unsigned long *addr = | ||
71 | (unsigned long *)phys_to_virt(pos + 4); | ||
72 | len = *addr; | ||
73 | /* if the length of the table extends past 1M, | ||
74 | * the table cannot be valid. */ | ||
75 | if (pos + len <= (IBFT_END-1)) { | ||
76 | ibft_addr = (struct ibft_table_header *)virt; | ||
77 | break; | ||
78 | } | ||
79 | } | ||
80 | } | ||
81 | if (ibft_addr) | ||
82 | reserve_bootmem(pos, PAGE_ALIGN(len), BOOTMEM_DEFAULT); | ||
83 | } | ||
84 | EXPORT_SYMBOL_GPL(reserve_ibft_region); | ||