Skip to content

Commit

Permalink
ibft, x86: Change reserve_ibft_region() to find_ibft_region()
Browse files Browse the repository at this point in the history
This allows arch code could decide the way to reserve the ibft.

And we should reserve ibft as early as possible, instead of BOOTMEM
stage, in case the table is in RAM range and is not reserved by BIOS
(this will often be the case.)

Move to just after find_smp_config().

Also when CONFIG_NO_BOOTMEM=y, We will not have reserve_bootmem() anymore.

-v2: fix typo about ibft pointed by Konrad Rzeszutek Wilk <[email protected]>

Signed-off-by: Yinghai Lu <[email protected]>
LKML-Reference: <[email protected]>
Cc: Pekka Enberg <[email protected]>
Cc: Peter Jones <[email protected]>
Cc: Konrad Rzeszutek Wilk <[email protected]>
CC: Jan Beulich <[email protected]>
Signed-off-by: H. Peter Anvin <[email protected]>
  • Loading branch information
Yinghai Lu authored and H. Peter Anvin committed Apr 1, 2010
1 parent b4a5e8a commit 042be38
Show file tree
Hide file tree
Showing 3 changed files with 26 additions and 7 deletions.
14 changes: 12 additions & 2 deletions arch/x86/kernel/setup.c
Original file line number Diff line number Diff line change
Expand Up @@ -608,6 +608,16 @@ static int __init setup_elfcorehdr(char *arg)
early_param("elfcorehdr", setup_elfcorehdr);
#endif

static __init void reserve_ibft_region(void)
{
unsigned long addr, size = 0;

addr = find_ibft_region(&size);

if (size)
reserve_early_overlap_ok(addr, addr + size, "ibft");
}

#ifdef CONFIG_X86_RESERVE_LOW_64K
static int __init dmi_low_memory_corruption(const struct dmi_system_id *d)
{
Expand Down Expand Up @@ -910,6 +920,8 @@ void __init setup_arch(char **cmdline_p)
*/
find_smp_config();

reserve_ibft_region();

reserve_trampoline_memory();

#ifdef CONFIG_ACPI_SLEEP
Expand Down Expand Up @@ -977,8 +989,6 @@ void __init setup_arch(char **cmdline_p)

dma32_reserve_bootmem();

reserve_ibft_region();

#ifdef CONFIG_KVM_CLOCK
kvmclock_init();
#endif
Expand Down
11 changes: 8 additions & 3 deletions drivers/firmware/iscsi_ibft_find.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ EXPORT_SYMBOL_GPL(ibft_addr);
* Routine used to find the iSCSI Boot Format Table. The logical
* kernel address is set in the ibft_addr global variable.
*/
void __init reserve_ibft_region(void)
unsigned long __init find_ibft_region(unsigned long *sizep)
{
unsigned long pos;
unsigned int len = 0;
Expand All @@ -78,6 +78,11 @@ void __init reserve_ibft_region(void)
}
}
}
if (ibft_addr)
reserve_bootmem(pos, PAGE_ALIGN(len), BOOTMEM_DEFAULT);
if (ibft_addr) {
*sizep = PAGE_ALIGN(len);
return pos;
}

*sizep = 0;
return 0;
}
8 changes: 6 additions & 2 deletions include/linux/iscsi_ibft.h
Original file line number Diff line number Diff line change
Expand Up @@ -42,9 +42,13 @@ extern struct ibft_table_header *ibft_addr;
* mapped address is set in the ibft_addr variable.
*/
#ifdef CONFIG_ISCSI_IBFT_FIND
extern void __init reserve_ibft_region(void);
unsigned long find_ibft_region(unsigned long *sizep);
#else
static inline void reserve_ibft_region(void) { }
static inline unsigned long find_ibft_region(unsigned long *sizep)
{
*sizep = 0;
return 0;
}
#endif

#endif /* ISCSI_IBFT_H */

0 comments on commit 042be38

Please sign in to comment.