Blame view

drivers/firmware/iscsi_ibft_find.c 2.76 KB
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
1
  /*
4e639fdf0   Peter Jones   ibft: Update iBFT...
2
   *  Copyright 2007-2010 Red Hat, Inc.
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
   *  by Peter Jones <pjones@redhat.com>
   *  Copyright 2007 IBM, Inc.
   *  by Konrad Rzeszutek <konradr@linux.vnet.ibm.com>
   *  Copyright 2008
   *  by Konrad Rzeszutek <ketuzsezr@darnok.org>
   *
   * This code finds the iSCSI Boot Format Table.
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License v2.0 as published by
   * the Free Software Foundation
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   */
  
  #include <linux/bootmem.h>
  #include <linux/blkdev.h>
  #include <linux/ctype.h>
  #include <linux/device.h>
4e639fdf0   Peter Jones   ibft: Update iBFT...
25
  #include <linux/efi.h>
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
26
27
28
29
30
  #include <linux/err.h>
  #include <linux/init.h>
  #include <linux/limits.h>
  #include <linux/module.h>
  #include <linux/pci.h>
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
31
32
33
  #include <linux/stat.h>
  #include <linux/string.h>
  #include <linux/types.h>
4e639fdf0   Peter Jones   ibft: Update iBFT...
34
35
  #include <linux/acpi.h>
  #include <linux/iscsi_ibft.h>
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
36
37
38
39
40
41
  
  #include <asm/mmzone.h>
  
  /*
   * Physical location of iSCSI Boot Format Table.
   */
4e639fdf0   Peter Jones   ibft: Update iBFT...
42
  struct acpi_table_ibft *ibft_addr;
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
43
  EXPORT_SYMBOL_GPL(ibft_addr);
140363500   Mike Christie   iscsi_ibft: searc...
44
45
46
  static const struct {
  	char *sign;
  } ibft_signs[] = {
140363500   Mike Christie   iscsi_ibft: searc...
47
48
49
  	{ "iBFT" },
  	{ "BIFT" },	/* Broadcom iSCSI Offload */
  };
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
50
51
52
53
54
  #define IBFT_SIGN_LEN 4
  #define IBFT_START 0x80000 /* 512kB */
  #define IBFT_END 0x100000 /* 1MB */
  #define VGA_MEM 0xA0000 /* VGA buffer */
  #define VGA_SIZE 0x20000 /* 128kB */
1303a35bf   Konrad Rzeszutek Wilk   ibft: For UEFI ma...
55
  static int __init find_ibft_in_mem(void)
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
56
57
58
59
  {
  	unsigned long pos;
  	unsigned int len = 0;
  	void *virt;
140363500   Mike Christie   iscsi_ibft: searc...
60
  	int i;
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
61

138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
62
63
64
65
66
  	for (pos = IBFT_START; pos < IBFT_END; pos += 16) {
  		/* The table can't be inside the VGA BIOS reserved space,
  		 * so skip that area */
  		if (pos == VGA_MEM)
  			pos += VGA_SIZE;
ed3c66144   Jan Beulich   iSCSI/iBFT: use p...
67
  		virt = isa_bus_to_virt(pos);
140363500   Mike Christie   iscsi_ibft: searc...
68
69
70
71
72
73
74
75
76
77
78
  
  		for (i = 0; i < ARRAY_SIZE(ibft_signs); i++) {
  			if (memcmp(virt, ibft_signs[i].sign, IBFT_SIGN_LEN) ==
  			    0) {
  				unsigned long *addr =
  				    (unsigned long *)isa_bus_to_virt(pos + 4);
  				len = *addr;
  				/* if the length of the table extends past 1M,
  				 * the table cannot be valid. */
  				if (pos + len <= (IBFT_END-1)) {
  					ibft_addr = (struct acpi_table_ibft *)virt;
935a9fee5   Yinghai Lu   ibft: Fix finding...
79
80
  					pr_info("iBFT found at 0x%lx.
  ", pos);
140363500   Mike Christie   iscsi_ibft: searc...
81
82
  					goto done;
  				}
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
83
84
85
  			}
  		}
  	}
140363500   Mike Christie   iscsi_ibft: searc...
86
  done:
1303a35bf   Konrad Rzeszutek Wilk   ibft: For UEFI ma...
87
88
89
90
91
92
93
94
  	return len;
  }
  /*
   * Routine used to find the iSCSI Boot Format Table. The logical
   * kernel address is set in the ibft_addr global variable.
   */
  unsigned long __init find_ibft_region(unsigned long *sizep)
  {
1303a35bf   Konrad Rzeszutek Wilk   ibft: For UEFI ma...
95
  	ibft_addr = NULL;
1303a35bf   Konrad Rzeszutek Wilk   ibft: For UEFI ma...
96
97
  	/* iBFT 1.03 section 1.4.3.1 mandates that UEFI machines will
  	 * only use ACPI for this */
935a9fee5   Yinghai Lu   ibft: Fix finding...
98
  	if (!efi_enabled)
1303a35bf   Konrad Rzeszutek Wilk   ibft: For UEFI ma...
99
  		find_ibft_in_mem();
042be38e6   Yinghai Lu   ibft, x86: Change...
100
  	if (ibft_addr) {
4e639fdf0   Peter Jones   ibft: Update iBFT...
101
102
  		*sizep = PAGE_ALIGN(ibft_addr->header.length);
  		return (u64)isa_virt_to_bus(ibft_addr);
042be38e6   Yinghai Lu   ibft, x86: Change...
103
104
105
106
  	}
  
  	*sizep = 0;
  	return 0;
138fe4e06   Konrad Rzeszutek   Firmware: add iSC...
107
  }