xref: /linux/drivers/firmware/iscsi_ibft_find.c (revision 042be38e6106ed70b42d096ab4a1ed4187e510e6)
1138fe4e0SKonrad Rzeszutek /*
2138fe4e0SKonrad Rzeszutek  *  Copyright 2007 Red Hat, Inc.
3138fe4e0SKonrad Rzeszutek  *  by Peter Jones <pjones@redhat.com>
4138fe4e0SKonrad Rzeszutek  *  Copyright 2007 IBM, Inc.
5138fe4e0SKonrad Rzeszutek  *  by Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
6138fe4e0SKonrad Rzeszutek  *  Copyright 2008
7138fe4e0SKonrad Rzeszutek  *  by Konrad Rzeszutek <ketuzsezr@darnok.org>
8138fe4e0SKonrad Rzeszutek  *
9138fe4e0SKonrad Rzeszutek  * This code finds the iSCSI Boot Format Table.
10138fe4e0SKonrad Rzeszutek  *
11138fe4e0SKonrad Rzeszutek  * This program is free software; you can redistribute it and/or modify
12138fe4e0SKonrad Rzeszutek  * it under the terms of the GNU General Public License v2.0 as published by
13138fe4e0SKonrad Rzeszutek  * the Free Software Foundation
14138fe4e0SKonrad Rzeszutek  *
15138fe4e0SKonrad Rzeszutek  * This program is distributed in the hope that it will be useful,
16138fe4e0SKonrad Rzeszutek  * but WITHOUT ANY WARRANTY; without even the implied warranty of
17138fe4e0SKonrad Rzeszutek  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
18138fe4e0SKonrad Rzeszutek  * GNU General Public License for more details.
19138fe4e0SKonrad Rzeszutek  */
20138fe4e0SKonrad Rzeszutek 
21138fe4e0SKonrad Rzeszutek #include <linux/bootmem.h>
22138fe4e0SKonrad Rzeszutek #include <linux/blkdev.h>
23138fe4e0SKonrad Rzeszutek #include <linux/ctype.h>
24138fe4e0SKonrad Rzeszutek #include <linux/device.h>
25138fe4e0SKonrad Rzeszutek #include <linux/err.h>
26138fe4e0SKonrad Rzeszutek #include <linux/init.h>
27138fe4e0SKonrad Rzeszutek #include <linux/limits.h>
28138fe4e0SKonrad Rzeszutek #include <linux/module.h>
29138fe4e0SKonrad Rzeszutek #include <linux/pci.h>
30138fe4e0SKonrad Rzeszutek #include <linux/slab.h>
31138fe4e0SKonrad Rzeszutek #include <linux/stat.h>
32138fe4e0SKonrad Rzeszutek #include <linux/string.h>
33138fe4e0SKonrad Rzeszutek #include <linux/types.h>
34138fe4e0SKonrad Rzeszutek 
35138fe4e0SKonrad Rzeszutek #include <asm/mmzone.h>
36138fe4e0SKonrad Rzeszutek 
37138fe4e0SKonrad Rzeszutek /*
38138fe4e0SKonrad Rzeszutek  * Physical location of iSCSI Boot Format Table.
39138fe4e0SKonrad Rzeszutek  */
40138fe4e0SKonrad Rzeszutek struct ibft_table_header *ibft_addr;
41138fe4e0SKonrad Rzeszutek EXPORT_SYMBOL_GPL(ibft_addr);
42138fe4e0SKonrad Rzeszutek 
43138fe4e0SKonrad Rzeszutek #define IBFT_SIGN "iBFT"
44138fe4e0SKonrad Rzeszutek #define IBFT_SIGN_LEN 4
45138fe4e0SKonrad Rzeszutek #define IBFT_START 0x80000 /* 512kB */
46138fe4e0SKonrad Rzeszutek #define IBFT_END 0x100000 /* 1MB */
47138fe4e0SKonrad Rzeszutek #define VGA_MEM 0xA0000 /* VGA buffer */
48138fe4e0SKonrad Rzeszutek #define VGA_SIZE 0x20000 /* 128kB */
49138fe4e0SKonrad Rzeszutek 
50138fe4e0SKonrad Rzeszutek 
51138fe4e0SKonrad Rzeszutek /*
52138fe4e0SKonrad Rzeszutek  * Routine used to find the iSCSI Boot Format Table. The logical
53138fe4e0SKonrad Rzeszutek  * kernel address is set in the ibft_addr global variable.
54138fe4e0SKonrad Rzeszutek  */
55*042be38eSYinghai Lu unsigned long __init find_ibft_region(unsigned long *sizep)
56138fe4e0SKonrad Rzeszutek {
57138fe4e0SKonrad Rzeszutek 	unsigned long pos;
58138fe4e0SKonrad Rzeszutek 	unsigned int len = 0;
59138fe4e0SKonrad Rzeszutek 	void *virt;
60138fe4e0SKonrad Rzeszutek 
61a01e035eSHarvey Harrison 	ibft_addr = NULL;
62138fe4e0SKonrad Rzeszutek 
63138fe4e0SKonrad Rzeszutek 	for (pos = IBFT_START; pos < IBFT_END; pos += 16) {
64138fe4e0SKonrad Rzeszutek 		/* The table can't be inside the VGA BIOS reserved space,
65138fe4e0SKonrad Rzeszutek 		 * so skip that area */
66138fe4e0SKonrad Rzeszutek 		if (pos == VGA_MEM)
67138fe4e0SKonrad Rzeszutek 			pos += VGA_SIZE;
68ed3c6614SJan Beulich 		virt = isa_bus_to_virt(pos);
69138fe4e0SKonrad Rzeszutek 		if (memcmp(virt, IBFT_SIGN, IBFT_SIGN_LEN) == 0) {
70138fe4e0SKonrad Rzeszutek 			unsigned long *addr =
71ed3c6614SJan Beulich 			    (unsigned long *)isa_bus_to_virt(pos + 4);
72138fe4e0SKonrad Rzeszutek 			len = *addr;
73138fe4e0SKonrad Rzeszutek 			/* if the length of the table extends past 1M,
74138fe4e0SKonrad Rzeszutek 			 * the table cannot be valid. */
75138fe4e0SKonrad Rzeszutek 			if (pos + len <= (IBFT_END-1)) {
76138fe4e0SKonrad Rzeszutek 				ibft_addr = (struct ibft_table_header *)virt;
77138fe4e0SKonrad Rzeszutek 				break;
78138fe4e0SKonrad Rzeszutek 			}
79138fe4e0SKonrad Rzeszutek 		}
80138fe4e0SKonrad Rzeszutek 	}
81*042be38eSYinghai Lu 	if (ibft_addr) {
82*042be38eSYinghai Lu 		*sizep = PAGE_ALIGN(len);
83*042be38eSYinghai Lu 		return pos;
84*042be38eSYinghai Lu 	}
85*042be38eSYinghai Lu 
86*042be38eSYinghai Lu 	*sizep = 0;
87*042be38eSYinghai Lu 	return 0;
88138fe4e0SKonrad Rzeszutek }
89