From 9abe84f83212d6e92c8c3d15f73b8fa26b169fdc Mon Sep 17 00:00:00 2001 From: Vasant Hegde Date: Tue, 22 Mar 2016 11:18:55 +0530 Subject: hdata: Initialize SPIRA-H structure Previous patch reduced reserved space in spira structure. Now its safe to reduce the memory for spira section from 2K to 1K. Create separate memory section with 1K size for SPIRA-H. Also initialize SPIRA-H. FSP makes use of this information to pass various boot time data (like SPIRA-S, etc) to host. Signed-off-by: Vasant Hegde Signed-off-by: Stewart Smith --- skiboot.lds.S | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'skiboot.lds.S') diff --git a/skiboot.lds.S b/skiboot.lds.S index 5c8bbbd..7d3d0cf 100644 --- a/skiboot.lds.S +++ b/skiboot.lds.S @@ -31,6 +31,11 @@ SECTIONS KEEP(*(.spira.data)) } + . = SPIRAH_OFF; + .spirah : { + KEEP(*(.spirah.data)) + } + . = PROCIN_OFF; .procin.data : { KEEP(*(.procin.data)) -- cgit v1.1