@@ -25,8 +25,6 @@ int main(void);
int main(void)
{
- OFFSET(SPIRA_ACTUAL_SIZE, spira, reserved);
-
OFFSET(CPUTHREAD_PIR, cpu_thread, pir);
OFFSET(CPUTHREAD_SAVE_R1, cpu_thread, save_r1);
OFFSET(CPUTHREAD_STATE, cpu_thread, state);
@@ -806,56 +806,6 @@ enter_nap:
bne 1b
nap
b .
-/*
- *
- * NACA structure, accessed by the FPS to find the SPIRA
- *
- */
- . = 0x4000
-.global naca
-naca:
- .llong spirah /* 0x0000 : SPIRA-H */
- .llong 0 /* 0x0008 : Reserved */
- .llong 0 /* 0x0010 : Reserved */
- .llong hv_release_data /* 0x0018 : HV release data */
- .llong 0 /* 0x0020 : Reserved */
- .llong 0 /* 0x0028 : Reserved */
- .llong spira /* 0x0030 : SP Interface Root */
- .llong hv_lid_load_table /* 0x0038 : LID load table */
- .llong 0 /* 0x0040 : Reserved */
- .space 68
- .long 0 /* 0x008c : Reserved */
- .space 16
- .long SPIRA_ACTUAL_SIZE /* 0x00a0 : Actual size of SPIRA */
- .space 28
- .llong 0 /* 0x00c0 : resident module loadmap */
- .space 136
- .llong 0 /* 0x0150 : reserved */
- .space 40
- .llong 0 /* 0x0180 : reserved */
- .space 36
- .long 0 /* 0x01ac : control flags */
- .byte 0 /* 0x01b0 : reserved */
- .space 4
- .byte 0 /* 0x01b5 : default state for SW attn */
- .space 1
- .byte 0x01 /* 0x01b7 : PCIA format */
- .llong hdat_entry /* 0x01b8 : Primary thread entry */
- .llong hdat_entry /* 0x01c0 : Secondary thread entry */
- .space 0xe38
-
- .balign 0x10
-hv_release_data:
- .space 58
- .llong 0x666 /* VRM ? */
-
- .balign 0x10
-hv_lid_load_table:
- .long 0x10
- .long 0x10
- .long 0
- .long 0
-
/*
*
@@ -1,7 +1,7 @@
# -*-Makefile-*-
SUBDIRS += hdata
-HDATA_OBJS = spira.o paca.o pcia.o hdif.o memory.o fsp.o iohub.o vpd.o slca.o
+HDATA_OBJS = naca.o spira.o paca.o pcia.o hdif.o memory.o fsp.o iohub.o vpd.o slca.o
HDATA_OBJS += cpu-common.o vpd-common.o hostservices.o i2c.o tpmrel.o
DEVSRC_OBJ = hdata/built-in.a
@@ -5,6 +5,8 @@
#define __HDATA_H
#include <processor.h>
+#include "hdif.h"
+#include "spira.h"
struct dt_node;
new file mode 100644
@@ -0,0 +1,26 @@
+#include <compiler.h>
+#include <mem-map.h>
+#include <types.h>
+
+#include "naca.h"
+#include "spira.h"
+
+__section(".naca.data") struct naca naca = {
+ .spirah_addr = CPU_TO_BE64(SPIRAH_OFF),
+ .hv_release_data_addr = CPU_TO_BE64(NACA_OFF + offsetof(struct naca, hv_release_data)),
+ .spira_addr = CPU_TO_BE64(SPIRA_OFF),
+ .lid_table_addr = CPU_TO_BE64(NACA_OFF + offsetof(struct naca, hv_lid_load_table)),
+ .spira_size = CPU_TO_BE32(SPIRA_ACTUAL_SIZE),
+ .hv_load_map_addr = 0,
+ .attn_enabled = 0,
+ .pcia_supported = 1,
+ .__primary_thread_entry = CPU_TO_BE64(0x180),
+ .__secondary_thread_entry = CPU_TO_BE64(0x180),
+ .hv_release_data = {
+ .vrm = CPU_TO_BE64(0x666), /* ? */
+ },
+ .hv_lid_load_table = {
+ .w0 = CPU_TO_BE32(0x10),
+ .w1 = CPU_TO_BE32(0x10),
+ },
+};
new file mode 100644
@@ -0,0 +1,54 @@
+// SPDX-License-Identifier: Apache-2.0
+/* Copyright 2019 IBM Corp. */
+
+#ifndef __NACA_H
+#define __NACA_H
+
+#include <compiler.h>
+#include <inttypes.h>
+#include <types.h>
+
+struct hv_release_data {
+ uint8_t reserved_0x0[58];
+ __be64 vrm;
+} __packed __attribute__((aligned(0x10)));
+
+struct hv_lid_load_table {
+ __be32 w0;
+ __be32 w1;
+ __be32 w2;
+ __be32 w3;
+} __packed __attribute__((aligned(0x10)));
+
+/*
+ * NACA structure, accessed by the FSP to find the SPIRA
+ */
+struct naca {
+ __be64 spirah_addr; /* 0x0000 */
+ uint8_t reserved_0x8[0x10];
+ __be64 hv_release_data_addr; /* 0x0018 */
+ uint8_t reserved_0x20[0x10];
+ __be64 spira_addr; /* 0x0030 */
+ __be64 lid_table_addr; /* 0x0038 */
+ uint8_t reserved_0x40[0x60];
+ __be32 spira_size; /* 0x00a0 */
+ uint8_t reserved_0xa4[0x1c];
+ __be64 hv_load_map_addr; /* 0x00c0 */
+ uint8_t reserved_0xc8[0xe4];
+ uint8_t flags[4]; /* 0x01ac */
+ uint8_t reserved_0x1b0[0x5];
+ uint8_t attn_enabled; /* 0x01b5 */
+ uint8_t reserved_0x1b6[0x1];
+ uint8_t pcia_supported; /* 0x01b7 */
+ __be64 __primary_thread_entry; /* 0x01b8 */
+ __be64 __secondary_thread_entry; /* 0x01c0 */
+ uint8_t reserved_0x1d0[0xe38];
+
+ /* Not part of the naca but it's convenient to put them here */
+ struct hv_release_data hv_release_data;
+ struct hv_lid_load_table hv_lid_load_table;
+} __packed __attribute((aligned(0x10)));
+
+extern struct naca naca;
+
+#endif
@@ -3,7 +3,6 @@
#include <inttypes.h>
#include <device.h>
-#include "spira.h"
#include <cpu.h>
#include <vpd.h>
#include <interrupts.h>
@@ -15,6 +14,8 @@
#include "hdata.h"
#include "hostservices.h"
+#include "naca.h"
+#include "spira.h"
/* Processor Initialization structure, contains
* the initial NIA and MSR values for the entry
@@ -1706,15 +1707,11 @@ static void fixup_spira(void)
static void update_spirah_addr(void)
{
#if !defined(TEST)
- extern uint32_t naca;
- uint64_t *spirah_offset = (uint64_t *)&naca;
- uint64_t *spira_offset = (uint64_t *)((u64)(&naca) + 0x30);
-
if (proc_gen < proc_gen_p9)
return;
- *spirah_offset = SPIRAH_OFF;
- *spira_offset = SPIRA_OFF;
+ naca.spirah_addr = CPU_TO_BE64(SPIRAH_OFF);
+ naca.spira_addr = CPU_TO_BE64(SPIRA_OFF);
spirah.ntuples.hs_data_area.addr = CPU_TO_BE64(SPIRA_HEAP_BASE - SKIBOOT_BASE);
spirah.ntuples.mdump_res.addr = CPU_TO_BE64(MDRT_TABLE_BASE - SKIBOOT_BASE);
#endif
@@ -80,6 +80,8 @@ struct spira {
u8 reserved[0x60];
} __packed __align(0x100);
+#define SPIRA_ACTUAL_SIZE (sizeof(struct spira) - 0x60)
+
extern struct spira spira;
/* SPIRA-H signature */
@@ -21,6 +21,8 @@
*/
#define EXCEPTION_VECTORS_END 0x2000
+#define NACA_OFF 0x4000
+
/* The NACA and other stuff in head.S need to be at the start: we
* give it 64k before placing the SPIRA and related data.
*/
@@ -59,6 +59,11 @@ SECTIONS
KEEP(*(.head))
}
+ . = NACA_OFF;
+ .naca : {
+ KEEP(*(.naca.data))
+ }
+
. = SPIRA_OFF;
.spira : {
KEEP(*(.spira.data))
This results in the same layout and location of the naca and hv data structures. Signed-off-by: Nicholas Piggin <npiggin@gmail.com> --- asm/asm-offsets.c | 2 -- asm/head.S | 50 ------------------------------------------ hdata/Makefile.inc | 2 +- hdata/hdata.h | 2 ++ hdata/naca.c | 26 ++++++++++++++++++++++ hdata/naca.h | 54 ++++++++++++++++++++++++++++++++++++++++++++++ hdata/spira.c | 11 ++++------ hdata/spira.h | 2 ++ include/mem-map.h | 2 ++ skiboot.lds.S | 5 +++++ 10 files changed, 96 insertions(+), 60 deletions(-) create mode 100644 hdata/naca.c create mode 100644 hdata/naca.h