2 * Copyright 2007-2010 Red Hat, Inc.
3 * by Peter Jones <pjones@redhat.com>
4 * Copyright 2008 IBM, Inc.
5 * by Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
7 * by Konrad Rzeszutek <ketuzsezr@darnok.org>
9 * This code exposes the iSCSI Boot Format Table to userland via sysfs.
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
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.
22 * 06 Jan 2010 - Peter Jones <pjones@redhat.com>
23 * New changelog entries are in the git log from now on. Not here.
25 * 14 Mar 2008 - Konrad Rzeszutek <ketuzsezr@darnok.org>
26 * Updated comments and copyrights. (v0.4.9)
28 * 11 Feb 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
29 * Converted to using ibft_addr. (v0.4.8)
31 * 8 Feb 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
32 * Combined two functions in one: reserve_ibft_region. (v0.4.7)
34 * 30 Jan 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
35 * Added logic to handle IPv6 addresses. (v0.4.6)
37 * 25 Jan 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
38 * Added logic to handle badly not-to-spec iBFT. (v0.4.5)
40 * 4 Jan 2008 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
41 * Added __init to function declarations. (v0.4.4)
43 * 21 Dec 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
44 * Updated kobject registration, combined unregister functions in one
45 * and code and style cleanup. (v0.4.3)
47 * 5 Dec 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
48 * Added end-markers to enums and re-organized kobject registration. (v0.4.2)
50 * 4 Dec 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
51 * Created 'device' sysfs link to the NIC and style cleanup. (v0.4.1)
53 * 28 Nov 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
54 * Added sysfs-ibft documentation, moved 'find_ibft' function to
55 * in its own file and added text attributes for every struct field. (v0.4)
57 * 21 Nov 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
58 * Added text attributes emulating OpenFirmware /proc/device-tree naming.
59 * Removed binary /sysfs interface (v0.3)
61 * 29 Aug 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
62 * Added functionality in setup.c to reserve iBFT region. (v0.2)
64 * 27 Aug 2007 - Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
65 * First version exposing iBFT data via a binary /sysfs. (v0.1)
70 #include <linux/blkdev.h>
71 #include <linux/capability.h>
72 #include <linux/ctype.h>
73 #include <linux/device.h>
74 #include <linux/err.h>
75 #include <linux/init.h>
76 #include <linux/iscsi_ibft.h>
77 #include <linux/limits.h>
78 #include <linux/module.h>
79 #include <linux/pci.h>
80 #include <linux/slab.h>
81 #include <linux/stat.h>
82 #include <linux/string.h>
83 #include <linux/types.h>
84 #include <linux/acpi.h>
85 #include <linux/iscsi_boot_sysfs.h>
87 #define IBFT_ISCSI_VERSION "0.5.0"
88 #define IBFT_ISCSI_DATE "2010-Feb-25"
90 MODULE_AUTHOR("Peter Jones <pjones@redhat.com> and "
91 "Konrad Rzeszutek <ketuzsezr@darnok.org>");
92 MODULE_DESCRIPTION("sysfs interface to BIOS iBFT information");
93 MODULE_LICENSE("GPL");
94 MODULE_VERSION(IBFT_ISCSI_VERSION
);
96 #ifndef CONFIG_ISCSI_IBFT_FIND
97 struct acpi_table_ibft
*ibft_addr
;
106 } __attribute__((__packed__
));
108 struct ibft_control
{
116 } __attribute__((__packed__
));
118 struct ibft_initiator
{
120 char isns_server
[16];
122 char pri_radius_server
[16];
123 char sec_radius_server
[16];
124 u16 initiator_name_len
;
125 u16 initiator_name_off
;
126 } __attribute__((__packed__
));
131 u8 subnet_mask_prefix
;
134 char primary_dns
[16];
135 char secondary_dns
[16];
142 } __attribute__((__packed__
));
157 u16 rev_chap_name_len
;
158 u16 rev_chap_name_off
;
159 u16 rev_chap_secret_len
;
160 u16 rev_chap_secret_off
;
161 } __attribute__((__packed__
));
164 * The kobject different types and its names.
168 id_reserved
= 0, /* We don't support. */
169 id_control
= 1, /* Should show up only once and is not exported. */
173 id_extensions
= 5, /* We don't support. */
178 * The kobject and attribute structures.
181 struct ibft_kobject
{
182 struct acpi_table_ibft
*header
;
184 struct ibft_initiator
*initiator
;
185 struct ibft_nic
*nic
;
186 struct ibft_tgt
*tgt
;
187 struct ibft_hdr
*hdr
;
191 static struct iscsi_boot_kset
*boot_kset
;
193 /* fully null address */
194 static const char nulls
[16];
196 /* IPv4-mapped IPv6 ::ffff:0.0.0.0 */
197 static const char mapped_nulls
[16] = { 0x00, 0x00, 0x00, 0x00,
198 0x00, 0x00, 0x00, 0x00,
199 0x00, 0x00, 0xff, 0xff,
200 0x00, 0x00, 0x00, 0x00 };
202 static int address_not_null(u8
*ip
)
204 return (memcmp(ip
, nulls
, 16) && memcmp(ip
, mapped_nulls
, 16));
208 * Helper functions to parse data properly.
210 static ssize_t
sprintf_ipaddr(char *buf
, u8
*ip
)
214 if (ip
[0] == 0 && ip
[1] == 0 && ip
[2] == 0 && ip
[3] == 0 &&
215 ip
[4] == 0 && ip
[5] == 0 && ip
[6] == 0 && ip
[7] == 0 &&
216 ip
[8] == 0 && ip
[9] == 0 && ip
[10] == 0xff && ip
[11] == 0xff) {
220 str
+= sprintf(buf
, "%pI4", ip
+ 12);
225 str
+= sprintf(str
, "%pI6", ip
);
227 str
+= sprintf(str
, "\n");
231 static ssize_t
sprintf_string(char *str
, int len
, char *buf
)
233 return sprintf(str
, "%.*s\n", len
, buf
);
237 * Helper function to verify the IBFT header.
239 static int ibft_verify_hdr(char *t
, struct ibft_hdr
*hdr
, int id
, int length
)
242 printk(KERN_ERR
"iBFT error: We expected the %s " \
243 "field header.id to have %d but " \
244 "found %d instead!\n", t
, id
, hdr
->id
);
247 if (hdr
->length
!= length
) {
248 printk(KERN_ERR
"iBFT error: We expected the %s " \
249 "field header.length to have %d but " \
250 "found %d instead!\n", t
, length
, hdr
->length
);
258 * Routines for parsing the iBFT data to be human readable.
260 static ssize_t
ibft_attr_show_initiator(void *data
, int type
, char *buf
)
262 struct ibft_kobject
*entry
= data
;
263 struct ibft_initiator
*initiator
= entry
->initiator
;
264 void *ibft_loc
= entry
->header
;
271 case ISCSI_BOOT_INI_INDEX
:
272 str
+= sprintf(str
, "%d\n", initiator
->hdr
.index
);
274 case ISCSI_BOOT_INI_FLAGS
:
275 str
+= sprintf(str
, "%d\n", initiator
->hdr
.flags
);
277 case ISCSI_BOOT_INI_ISNS_SERVER
:
278 str
+= sprintf_ipaddr(str
, initiator
->isns_server
);
280 case ISCSI_BOOT_INI_SLP_SERVER
:
281 str
+= sprintf_ipaddr(str
, initiator
->slp_server
);
283 case ISCSI_BOOT_INI_PRI_RADIUS_SERVER
:
284 str
+= sprintf_ipaddr(str
, initiator
->pri_radius_server
);
286 case ISCSI_BOOT_INI_SEC_RADIUS_SERVER
:
287 str
+= sprintf_ipaddr(str
, initiator
->sec_radius_server
);
289 case ISCSI_BOOT_INI_INITIATOR_NAME
:
290 str
+= sprintf_string(str
, initiator
->initiator_name_len
,
292 initiator
->initiator_name_off
);
301 static ssize_t
ibft_attr_show_nic(void *data
, int type
, char *buf
)
303 struct ibft_kobject
*entry
= data
;
304 struct ibft_nic
*nic
= entry
->nic
;
305 void *ibft_loc
= entry
->header
;
313 case ISCSI_BOOT_ETH_INDEX
:
314 str
+= sprintf(str
, "%d\n", nic
->hdr
.index
);
316 case ISCSI_BOOT_ETH_FLAGS
:
317 str
+= sprintf(str
, "%d\n", nic
->hdr
.flags
);
319 case ISCSI_BOOT_ETH_IP_ADDR
:
320 str
+= sprintf_ipaddr(str
, nic
->ip_addr
);
322 case ISCSI_BOOT_ETH_SUBNET_MASK
:
323 val
= cpu_to_be32(~((1 << (32-nic
->subnet_mask_prefix
))-1));
324 str
+= sprintf(str
, "%pI4", &val
);
326 case ISCSI_BOOT_ETH_PREFIX_LEN
:
327 str
+= sprintf(str
, "%d\n", nic
->subnet_mask_prefix
);
329 case ISCSI_BOOT_ETH_ORIGIN
:
330 str
+= sprintf(str
, "%d\n", nic
->origin
);
332 case ISCSI_BOOT_ETH_GATEWAY
:
333 str
+= sprintf_ipaddr(str
, nic
->gateway
);
335 case ISCSI_BOOT_ETH_PRIMARY_DNS
:
336 str
+= sprintf_ipaddr(str
, nic
->primary_dns
);
338 case ISCSI_BOOT_ETH_SECONDARY_DNS
:
339 str
+= sprintf_ipaddr(str
, nic
->secondary_dns
);
341 case ISCSI_BOOT_ETH_DHCP
:
342 str
+= sprintf_ipaddr(str
, nic
->dhcp
);
344 case ISCSI_BOOT_ETH_VLAN
:
345 str
+= sprintf(str
, "%d\n", nic
->vlan
);
347 case ISCSI_BOOT_ETH_MAC
:
348 str
+= sprintf(str
, "%pM\n", nic
->mac
);
350 case ISCSI_BOOT_ETH_HOSTNAME
:
351 str
+= sprintf_string(str
, nic
->hostname_len
,
352 (char *)ibft_loc
+ nic
->hostname_off
);
361 static ssize_t
ibft_attr_show_target(void *data
, int type
, char *buf
)
363 struct ibft_kobject
*entry
= data
;
364 struct ibft_tgt
*tgt
= entry
->tgt
;
365 void *ibft_loc
= entry
->header
;
373 case ISCSI_BOOT_TGT_INDEX
:
374 str
+= sprintf(str
, "%d\n", tgt
->hdr
.index
);
376 case ISCSI_BOOT_TGT_FLAGS
:
377 str
+= sprintf(str
, "%d\n", tgt
->hdr
.flags
);
379 case ISCSI_BOOT_TGT_IP_ADDR
:
380 str
+= sprintf_ipaddr(str
, tgt
->ip_addr
);
382 case ISCSI_BOOT_TGT_PORT
:
383 str
+= sprintf(str
, "%d\n", tgt
->port
);
385 case ISCSI_BOOT_TGT_LUN
:
386 for (i
= 0; i
< 8; i
++)
387 str
+= sprintf(str
, "%x", (u8
)tgt
->lun
[i
]);
388 str
+= sprintf(str
, "\n");
390 case ISCSI_BOOT_TGT_NIC_ASSOC
:
391 str
+= sprintf(str
, "%d\n", tgt
->nic_assoc
);
393 case ISCSI_BOOT_TGT_CHAP_TYPE
:
394 str
+= sprintf(str
, "%d\n", tgt
->chap_type
);
396 case ISCSI_BOOT_TGT_NAME
:
397 str
+= sprintf_string(str
, tgt
->tgt_name_len
,
398 (char *)ibft_loc
+ tgt
->tgt_name_off
);
400 case ISCSI_BOOT_TGT_CHAP_NAME
:
401 str
+= sprintf_string(str
, tgt
->chap_name_len
,
402 (char *)ibft_loc
+ tgt
->chap_name_off
);
404 case ISCSI_BOOT_TGT_CHAP_SECRET
:
405 str
+= sprintf_string(str
, tgt
->chap_secret_len
,
406 (char *)ibft_loc
+ tgt
->chap_secret_off
);
408 case ISCSI_BOOT_TGT_REV_CHAP_NAME
:
409 str
+= sprintf_string(str
, tgt
->rev_chap_name_len
,
411 tgt
->rev_chap_name_off
);
413 case ISCSI_BOOT_TGT_REV_CHAP_SECRET
:
414 str
+= sprintf_string(str
, tgt
->rev_chap_secret_len
,
416 tgt
->rev_chap_secret_off
);
425 static ssize_t
ibft_attr_show_acpitbl(void *data
, int type
, char *buf
)
427 struct ibft_kobject
*entry
= data
;
431 case ISCSI_BOOT_ACPITBL_SIGNATURE
:
432 str
+= sprintf_string(str
, ACPI_NAME_SIZE
,
433 entry
->header
->header
.signature
);
435 case ISCSI_BOOT_ACPITBL_OEM_ID
:
436 str
+= sprintf_string(str
, ACPI_OEM_ID_SIZE
,
437 entry
->header
->header
.oem_id
);
439 case ISCSI_BOOT_ACPITBL_OEM_TABLE_ID
:
440 str
+= sprintf_string(str
, ACPI_OEM_TABLE_ID_SIZE
,
441 entry
->header
->header
.oem_table_id
);
450 static int __init
ibft_check_device(void)
456 len
= ibft_addr
->header
.length
;
458 /* Sanity checking of iBFT. */
459 if (ibft_addr
->header
.revision
!= 1) {
460 printk(KERN_ERR
"iBFT module supports only revision 1, " \
461 "while this is %d.\n",
462 ibft_addr
->header
.revision
);
465 for (pos
= (u8
*)ibft_addr
; pos
< (u8
*)ibft_addr
+ len
; pos
++)
469 printk(KERN_ERR
"iBFT has incorrect checksum (0x%x)!\n", csum
);
477 * Helper routiners to check to determine if the entry is valid
478 * in the proper iBFT structure.
480 static umode_t
ibft_check_nic_for(void *data
, int type
)
482 struct ibft_kobject
*entry
= data
;
483 struct ibft_nic
*nic
= entry
->nic
;
487 case ISCSI_BOOT_ETH_INDEX
:
488 case ISCSI_BOOT_ETH_FLAGS
:
491 case ISCSI_BOOT_ETH_IP_ADDR
:
492 if (address_not_null(nic
->ip_addr
))
495 case ISCSI_BOOT_ETH_PREFIX_LEN
:
496 case ISCSI_BOOT_ETH_SUBNET_MASK
:
497 if (nic
->subnet_mask_prefix
)
500 case ISCSI_BOOT_ETH_ORIGIN
:
503 case ISCSI_BOOT_ETH_GATEWAY
:
504 if (address_not_null(nic
->gateway
))
507 case ISCSI_BOOT_ETH_PRIMARY_DNS
:
508 if (address_not_null(nic
->primary_dns
))
511 case ISCSI_BOOT_ETH_SECONDARY_DNS
:
512 if (address_not_null(nic
->secondary_dns
))
515 case ISCSI_BOOT_ETH_DHCP
:
516 if (address_not_null(nic
->dhcp
))
519 case ISCSI_BOOT_ETH_VLAN
:
520 case ISCSI_BOOT_ETH_MAC
:
523 case ISCSI_BOOT_ETH_HOSTNAME
:
524 if (nic
->hostname_off
)
534 static umode_t __init
ibft_check_tgt_for(void *data
, int type
)
536 struct ibft_kobject
*entry
= data
;
537 struct ibft_tgt
*tgt
= entry
->tgt
;
541 case ISCSI_BOOT_TGT_INDEX
:
542 case ISCSI_BOOT_TGT_FLAGS
:
543 case ISCSI_BOOT_TGT_IP_ADDR
:
544 case ISCSI_BOOT_TGT_PORT
:
545 case ISCSI_BOOT_TGT_LUN
:
546 case ISCSI_BOOT_TGT_NIC_ASSOC
:
547 case ISCSI_BOOT_TGT_CHAP_TYPE
:
550 case ISCSI_BOOT_TGT_NAME
:
551 if (tgt
->tgt_name_len
)
554 case ISCSI_BOOT_TGT_CHAP_NAME
:
555 case ISCSI_BOOT_TGT_CHAP_SECRET
:
556 if (tgt
->chap_name_len
)
559 case ISCSI_BOOT_TGT_REV_CHAP_NAME
:
560 case ISCSI_BOOT_TGT_REV_CHAP_SECRET
:
561 if (tgt
->rev_chap_name_len
)
571 static umode_t __init
ibft_check_initiator_for(void *data
, int type
)
573 struct ibft_kobject
*entry
= data
;
574 struct ibft_initiator
*init
= entry
->initiator
;
578 case ISCSI_BOOT_INI_INDEX
:
579 case ISCSI_BOOT_INI_FLAGS
:
582 case ISCSI_BOOT_INI_ISNS_SERVER
:
583 if (address_not_null(init
->isns_server
))
586 case ISCSI_BOOT_INI_SLP_SERVER
:
587 if (address_not_null(init
->slp_server
))
590 case ISCSI_BOOT_INI_PRI_RADIUS_SERVER
:
591 if (address_not_null(init
->pri_radius_server
))
594 case ISCSI_BOOT_INI_SEC_RADIUS_SERVER
:
595 if (address_not_null(init
->sec_radius_server
))
598 case ISCSI_BOOT_INI_INITIATOR_NAME
:
599 if (init
->initiator_name_len
)
609 static umode_t __init
ibft_check_acpitbl_for(void *data
, int type
)
615 case ISCSI_BOOT_ACPITBL_SIGNATURE
:
616 case ISCSI_BOOT_ACPITBL_OEM_ID
:
617 case ISCSI_BOOT_ACPITBL_OEM_TABLE_ID
:
627 static void ibft_kobj_release(void *data
)
633 * Helper function for ibft_register_kobjects.
635 static int __init
ibft_create_kobject(struct acpi_table_ibft
*header
,
636 struct ibft_hdr
*hdr
)
638 struct iscsi_boot_kobj
*boot_kobj
= NULL
;
639 struct ibft_kobject
*ibft_kobj
= NULL
;
640 struct ibft_nic
*nic
= (struct ibft_nic
*)hdr
;
641 struct pci_dev
*pci_dev
;
644 ibft_kobj
= kzalloc(sizeof(*ibft_kobj
), GFP_KERNEL
);
648 ibft_kobj
->header
= header
;
649 ibft_kobj
->hdr
= hdr
;
653 rc
= ibft_verify_hdr("initiator", hdr
, id_initiator
,
654 sizeof(*ibft_kobj
->initiator
));
658 boot_kobj
= iscsi_boot_create_initiator(boot_kset
, hdr
->index
,
660 ibft_attr_show_initiator
,
661 ibft_check_initiator_for
,
669 rc
= ibft_verify_hdr("ethernet", hdr
, id_nic
,
670 sizeof(*ibft_kobj
->nic
));
674 boot_kobj
= iscsi_boot_create_ethernet(boot_kset
, hdr
->index
,
685 rc
= ibft_verify_hdr("target", hdr
, id_target
,
686 sizeof(*ibft_kobj
->tgt
));
690 boot_kobj
= iscsi_boot_create_target(boot_kset
, hdr
->index
,
692 ibft_attr_show_target
,
703 /* Fields which we don't support. Ignore them */
707 printk(KERN_ERR
"iBFT has unknown structure type (%d). " \
708 "Report this bug to %.6s!\n", hdr
->id
,
709 header
->header
.oem_id
);
715 /* Skip adding this kobject, but exit with non-fatal error. */
720 if (hdr
->id
== id_nic
) {
722 * We don't search for the device in other domains than
723 * zero. This is because on x86 platforms the BIOS
724 * executes only devices which are in domain 0. Furthermore, the
725 * iBFT spec doesn't have a domain id field :-(
727 pci_dev
= pci_get_domain_bus_and_slot(0,
728 (nic
->pci_bdf
& 0xff00) >> 8,
729 (nic
->pci_bdf
& 0xff));
731 rc
= sysfs_create_link(&boot_kobj
->kobj
,
732 &pci_dev
->dev
.kobj
, "device");
733 pci_dev_put(pci_dev
);
744 * Scan the IBFT table structure for the NIC and Target fields. When
745 * found add them on the passed-in list. We do not support the other
746 * fields at this point, so they are skipped.
748 static int __init
ibft_register_kobjects(struct acpi_table_ibft
*header
)
750 struct ibft_control
*control
= NULL
;
751 struct iscsi_boot_kobj
*boot_kobj
;
752 struct ibft_kobject
*ibft_kobj
;
758 control
= (void *)header
+ sizeof(*header
);
759 end
= (void *)control
+ control
->hdr
.length
;
760 eot_offset
= (void *)header
+ header
->header
.length
- (void *)control
;
761 rc
= ibft_verify_hdr("control", (struct ibft_hdr
*)control
, id_control
,
764 /* iBFT table safety checking */
765 rc
|= ((control
->hdr
.index
) ? -ENODEV
: 0);
767 printk(KERN_ERR
"iBFT error: Control header is invalid!\n");
770 for (ptr
= &control
->initiator_off
; ptr
< end
; ptr
+= sizeof(u16
)) {
771 offset
= *(u16
*)ptr
;
772 if (offset
&& offset
< header
->header
.length
&&
773 offset
< eot_offset
) {
774 rc
= ibft_create_kobject(header
,
775 (void *)header
+ offset
);
783 ibft_kobj
= kzalloc(sizeof(*ibft_kobj
), GFP_KERNEL
);
787 ibft_kobj
->header
= header
;
788 ibft_kobj
->hdr
= NULL
; /*for ibft_unregister*/
790 boot_kobj
= iscsi_boot_create_acpitbl(boot_kset
, 0,
792 ibft_attr_show_acpitbl
,
793 ibft_check_acpitbl_for
,
803 static void ibft_unregister(void)
805 struct iscsi_boot_kobj
*boot_kobj
, *tmp_kobj
;
806 struct ibft_kobject
*ibft_kobj
;
808 list_for_each_entry_safe(boot_kobj
, tmp_kobj
,
809 &boot_kset
->kobj_list
, list
) {
810 ibft_kobj
= boot_kobj
->data
;
811 if (ibft_kobj
->hdr
&& ibft_kobj
->hdr
->id
== id_nic
)
812 sysfs_remove_link(&boot_kobj
->kobj
, "device");
816 static void ibft_cleanup(void)
820 iscsi_boot_destroy_kset(boot_kset
);
824 static void __exit
ibft_exit(void)
830 static const struct {
834 * One spec says "IBFT", the other says "iBFT". We have to check
839 { "BIFT" }, /* Broadcom iSCSI Offload */
842 static void __init
acpi_find_ibft_region(void)
845 struct acpi_table_header
*table
= NULL
;
850 for (i
= 0; i
< ARRAY_SIZE(ibft_signs
) && !ibft_addr
; i
++) {
851 acpi_get_table(ibft_signs
[i
].sign
, 0, &table
);
852 ibft_addr
= (struct acpi_table_ibft
*)table
;
856 static void __init
acpi_find_ibft_region(void)
862 * ibft_init() - creates sysfs tree entries for the iBFT data.
864 static int __init
ibft_init(void)
869 As on UEFI systems the setup_arch()/find_ibft_region()
870 is called before ACPI tables are parsed and it only does
874 acpi_find_ibft_region();
877 pr_info("iBFT detected.\n");
879 rc
= ibft_check_device();
883 boot_kset
= iscsi_boot_create_kset("ibft");
887 /* Scan the IBFT for data and register the kobjects. */
888 rc
= ibft_register_kobjects(ibft_addr
);
892 printk(KERN_INFO
"No iBFT detected.\n");
901 module_init(ibft_init
);
902 module_exit(ibft_exit
);