From patchwork Fri May 12 10:58:25 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Hildenbrand X-Patchwork-Id: 9723939 Return-Path: Received: from mail.wl.linuxfoundation.org (pdx-wl-mail.web.codeaurora.org [172.30.200.125]) by pdx-korg-patchwork.web.codeaurora.org (Postfix) with ESMTP id A2312600CB for ; Fri, 12 May 2017 10:58:46 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 971A1287FB for ; Fri, 12 May 2017 10:58:46 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 8A94628807; Fri, 12 May 2017 10:58:46 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on pdx-wl-mail.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.9 required=2.0 tests=BAYES_00,RCVD_IN_DNSWL_HI autolearn=ham version=3.3.1 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id A6D2F287FB for ; Fri, 12 May 2017 10:58:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757483AbdELK6o (ORCPT ); Fri, 12 May 2017 06:58:44 -0400 Received: from mx1.redhat.com ([209.132.183.28]:49502 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1757383AbdELK6m (ORCPT ); Fri, 12 May 2017 06:58:42 -0400 Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.phx2.redhat.com [10.5.11.14]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 366347704; Fri, 12 May 2017 10:58:42 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mx1.redhat.com 366347704 Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; dmarc=none (p=none dis=none) header.from=redhat.com Authentication-Results: ext-mx09.extmail.prod.ext.phx2.redhat.com; spf=pass smtp.mailfrom=david@redhat.com DKIM-Filter: OpenDKIM Filter v2.11.0 mx1.redhat.com 366347704 Received: from t460s.redhat.com (ovpn-116-140.ams2.redhat.com [10.36.116.140]) by smtp.corp.redhat.com (Postfix) with ESMTP id 89A807D533; Fri, 12 May 2017 10:58:37 +0000 (UTC) From: David Hildenbrand To: kvm@vger.kernel.org Cc: Paolo Bonzini , =?UTF-8?q?Radim=20Kr=C4=8Dm=C3=A1=C5=99?= , Thomas Huth , david@redhat.com, Christian Borntraeger , Cornelia Huck Subject: [kvm-unit-tests PATCH v1 1/6] s390x: initial infrastructure Date: Fri, 12 May 2017 12:58:25 +0200 Message-Id: <20170512105830.10604-2-david@redhat.com> In-Reply-To: <20170512105830.10604-1-david@redhat.com> References: <20170512105830.10604-1-david@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.14 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.38]); Fri, 12 May 2017 10:58:42 +0000 (UTC) Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This adds the very basic infrastructure for s390x. As we compile for z900, also QEMU tcg can be used. To cross compile: $./configure --arch=s390x --cross-prefix=/usr/bin/s390x-linux-gnu- $ make Please note that for now, nothing will be compiled, as there is no test to compile. A basic self test will be added in the following patches. smp and stack unwinding is not supported yet. sclp console output will be added in the following patches. Parts based on a prototype by Thomas Huth. Signed-off-by: David Hildenbrand --- configure | 2 +- lib/s390x/asm/barrier.h | 16 ++++++++++++++ lib/s390x/asm/io.h | 17 +++++++++++++++ lib/s390x/asm/page.h | 16 ++++++++++++++ lib/s390x/asm/spinlock.h | 16 ++++++++++++++ lib/s390x/asm/stack.h | 21 ++++++++++++++++++ lib/s390x/io.c | 48 +++++++++++++++++++++++++++++++++++++++++ lib/s390x/stack.c | 28 ++++++++++++++++++++++++ s390x/Makefile | 32 +++++++++++++++++++++++++++ s390x/cstart64.S | 39 +++++++++++++++++++++++++++++++++ s390x/flat.lds | 42 ++++++++++++++++++++++++++++++++++++ s390x/run | 56 ++++++++++++++++++++++++++++++++++++++++++++++++ s390x/unittests.cfg | 19 ++++++++++++++++ 13 files changed, 351 insertions(+), 1 deletion(-) create mode 100644 lib/s390x/asm/barrier.h create mode 100644 lib/s390x/asm/io.h create mode 100644 lib/s390x/asm/page.h create mode 100644 lib/s390x/asm/spinlock.h create mode 100644 lib/s390x/asm/stack.h create mode 100644 lib/s390x/io.c create mode 100644 lib/s390x/stack.c create mode 100644 s390x/Makefile create mode 100644 s390x/cstart64.S create mode 100644 s390x/flat.lds create mode 100755 s390x/run create mode 100644 s390x/unittests.cfg diff --git a/configure b/configure index d152414..3690041 100755 --- a/configure +++ b/configure @@ -7,7 +7,7 @@ objcopy=objcopy objdump=objdump ar=ar addr2line=addr2line -arch=`uname -m | sed -e 's/i.86/i386/;s/arm.*/arm/;s/ppc64.*/ppc64/'` +arch=`uname -m | sed -e 's/i.86/i386/;s/arm.*/arm/;s/ppc64.*/ppc64/;s/s390x.*/s390x/'` host=$arch cross_prefix= endian="" diff --git a/lib/s390x/asm/barrier.h b/lib/s390x/asm/barrier.h new file mode 100644 index 0000000..5e77984 --- /dev/null +++ b/lib/s390x/asm/barrier.h @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * Thomas Huth + * David Hildenbrand + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ +#include + +#ifndef _ASM_S390X_BARRIER_H_ +#define _ASM_S390X_BARRIER_H_ + +#endif diff --git a/lib/s390x/asm/io.h b/lib/s390x/asm/io.h new file mode 100644 index 0000000..feb4115 --- /dev/null +++ b/lib/s390x/asm/io.h @@ -0,0 +1,17 @@ +/* + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * Thomas Huth + * David Hildenbrand + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ +#ifndef _ASMS390X_IO_H_ +#define _ASMS390X_IO_H_ + +#define __iomem + +#include +#endif diff --git a/lib/s390x/asm/page.h b/lib/s390x/asm/page.h new file mode 100644 index 0000000..c67b251 --- /dev/null +++ b/lib/s390x/asm/page.h @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * Thomas Huth + * David Hildenbrand + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ +#include + +#ifndef _ASMS390X_PAGE_H_ +#define _ASMS390X_PAGE_H_ + +#endif diff --git a/lib/s390x/asm/spinlock.h b/lib/s390x/asm/spinlock.h new file mode 100644 index 0000000..9d40a94 --- /dev/null +++ b/lib/s390x/asm/spinlock.h @@ -0,0 +1,16 @@ +/* + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * Thomas Huth + * David Hildenbrand + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ +#include + +#ifndef __ASMS390X_SPINLOCK_H +#define __ASMS390X_SPINLOCK_H + +#endif diff --git a/lib/s390x/asm/stack.h b/lib/s390x/asm/stack.h new file mode 100644 index 0000000..e36d975 --- /dev/null +++ b/lib/s390x/asm/stack.h @@ -0,0 +1,21 @@ +/* + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * Thomas Huth + * David Hildenbrand + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ +#ifndef _ASMS390X_STACK_H_ +#define _ASMS390X_STACK_H_ + +#ifndef _STACK_H_ +#error Do not directly include . Just use . +#endif + +#define HAVE_ARCH_BACKTRACE_FRAME +#define HAVE_ARCH_BACKTRACE + +#endif diff --git a/lib/s390x/io.c b/lib/s390x/io.c new file mode 100644 index 0000000..a652124 --- /dev/null +++ b/lib/s390x/io.c @@ -0,0 +1,48 @@ +/* + * s390x io implementation + * + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * Thomas Huth + * David Hildenbrand + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ +#include +#include + +extern void setup_args_progname(const char *args); +extern char ipl_args[]; + +static struct spinlock lock; + +void puts(const char *s) +{ + spin_lock(&lock); + /* FIXME */ + (void)s; + spin_unlock(&lock); +} + +static void sigp_stop() +{ + register unsigned long status asm ("1") = 0; + register unsigned long cpu asm ("2") = 0; + + asm volatile( + " sigp %0,%1,0(%2)\n" + : "+d" (status) : "d" (cpu), "d" (5) : "cc"); +} + +void setup() +{ + setup_args_progname(ipl_args); +} + +void exit(int code) +{ + printf("\nEXIT: STATUS=%d\n", ((code) << 1) | 1); + sigp_stop(); +} diff --git a/lib/s390x/stack.c b/lib/s390x/stack.c new file mode 100644 index 0000000..cd34b20 --- /dev/null +++ b/lib/s390x/stack.c @@ -0,0 +1,28 @@ +/* + * s390x stack implementation + * + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * Thomas Huth + * David Hildenbrand + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ +#include +#include + +int backtrace_frame(const void *frame, const void **return_addrs, int max_depth) +{ + printf("TODO: Implement backtrace_frame(%p, %p, %d) function!\n", + frame, return_addrs, max_depth); + return 0; +} + +int backtrace(const void **return_addrs, int max_depth) +{ + printf("TODO: Implement backtrace(%p, %d) function!\n", + return_addrs, max_depth); + return 0; +} diff --git a/s390x/Makefile b/s390x/Makefile new file mode 100644 index 0000000..f9468bb --- /dev/null +++ b/s390x/Makefile @@ -0,0 +1,32 @@ +all: test_cases + +test_cases: $(tests) + +CFLAGS += -std=gnu99 +CFLAGS += -ffreestanding +CFLAGS += -Wextra +CFLAGS += -I lib +CFLAGS += -O2 +CFLAGS += -msoft-float +CFLAGS += -march=z900 +LDFLAGS += -nostdlib + +# We want to keep intermediate files +.PRECIOUS: %.o + +cflatobjs += lib/util.o +cflatobjs += lib/alloc.o +cflatobjs += lib/s390x/io.o +cflatobjs += lib/s390x/stack.o + +cstart.o = $(TEST_DIR)/cstart64.o + +FLATLIBS = $(libcflat) +%.elf: %.o $(FLATLIBS) s390x/flat.lds $(cstart.o) + $(CC) $(CFLAGS) -c -o $(@:.elf=.aux.o) lib/auxinfo.c -DPROGNAME=\"$@\" + $(CC) $(LDFLAGS) -o $@ -T s390x/flat.lds -Ttext=0x10000 \ + $(filter %.o, $^) $(FLATLIBS) $(@:.elf=.aux.o) + $(RM) $(@:.elf=.aux.o) + +arch_clean: + $(RM) $(TEST_DIR)/*.{o,elf} $(TEST_DIR)/.*.d lib/s390x/.*.d diff --git a/s390x/cstart64.S b/s390x/cstart64.S new file mode 100644 index 0000000..b5741c2 --- /dev/null +++ b/s390x/cstart64.S @@ -0,0 +1,39 @@ +/* + * s390x startup code + * + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * Thomas Huth + * David Hildenbrand + * + * This code is free software; you can redistribute it and/or modify it + * under the terms of the GNU Library General Public License version 2. + */ +.section .init + +/* entry point - for KVM + TCG we directly start in 64 bit mode */ + .globl start +start: + /* setup stack */ + larl %r15, stacktop + /* setup initial PSW mask */ + larl %r1, initital_psw + lpswe 0(%r1) +init_psw_cont: + /* call setup() */ + brasl %r14, setup + /* forward test parameter */ + larl %r2, __argc + llgf %r2, 0(%r2) + larl %r3, __argv + /* call to main() */ + brasl %r14, main + /* forward exit code */ + lgr %r3, %r2 + /* call exit() */ + j exit + + .align 8 +initital_psw: + .quad 0x0000000180000000, init_psw_cont diff --git a/s390x/flat.lds b/s390x/flat.lds new file mode 100644 index 0000000..b6e2172 --- /dev/null +++ b/s390x/flat.lds @@ -0,0 +1,42 @@ +SECTIONS +{ + .text : { + *(.init) + . = 0x480; + ipl_args = .; + . = 0x600; + *(.text) + *(.text.*) + } + . = ALIGN(64K); + etext = .; + .opd : { *(.opd) } + . = ALIGN(16); + .dynamic : { + dynamic_start = .; + *(.dynamic) + } + .dynsym : { + dynsym_start = .; + *(.dynsym) + } + .rela.dyn : { *(.rela*) } + . = ALIGN(16); + .data : { + *(.data) + *(.data.rel*) + } + . = ALIGN(16); + .rodata : { *(.rodata) *(.rodata.*) } + . = ALIGN(16); + .bss : { *(.bss) } + . = ALIGN(64K); + edata = .; + . += 64K; + . = ALIGN(64K); + /* + * stackptr set with initial stack frame preallocated + */ + stackptr = . - 160; + stacktop = .; +} diff --git a/s390x/run b/s390x/run new file mode 100755 index 0000000..cf333de --- /dev/null +++ b/s390x/run @@ -0,0 +1,56 @@ +#!/usr/bin/env bash + +if [ -z "$STANDALONE" ]; then + if [ ! -f config.mak ]; then + echo "run ./configure && make first. See ./configure -h" + exit 2 + fi + source config.mak + source scripts/arch-run.bash +fi + +if [ -c /dev/kvm ]; then + if [ "$HOST" = "s390x" ] && [ "$ARCH" = "s390x" ]; then + kvm_available=yes + fi +fi + +if [ "$ACCEL" = "kvm" ] && [ "$kvm_available" != "yes" ]; then + echo "KVM is needed, but not available on this host" + exit 2 +fi + +if [ -z "$ACCEL" ]; then + if [ "$kvm_available" = "yes" ]; then + ACCEL="kvm" + else + ACCEL="tcg" + fi +fi + +qemu=$(search_qemu_binary) + +M='-machine s390-ccw-virtio' +M+=",accel=$ACCEL" +command="$qemu -nodefaults -nographic $M" +command+=" -chardev stdio,id=con0 -device sclpconsole,chardev=con0" +[ -f "$ENV" ] && command+=" -initrd $ENV" +command+=" -kernel" +command="$(timeout_cmd) $command" +echo $command "$@" + +# We return the exit code via stdout, not via the QEMU return code +lines=$(run_qemu $command "$@") +ret=$? +echo "$lines" +if [ $ret -eq 1 ]; then + testret=$(grep '^EXIT: ' <<<"$lines" | sed 's/.*STATUS=\([0-9][0-9]*\).*/\1/') + if [ "$testret" ]; then + if [ $testret -eq 1 ]; then + ret=0 + else + ret=$testret + fi + fi +fi +exit $ret diff --git a/s390x/unittests.cfg b/s390x/unittests.cfg new file mode 100644 index 0000000..b1e0b1e --- /dev/null +++ b/s390x/unittests.cfg @@ -0,0 +1,19 @@ +############################################################################## +# unittest configuration +# +# [unittest_name] +# file = .elf # Name of the elf file to be used. +# extra_params = -append # Additional parameters used. +# groups = ... # Used to identify test cases +# # with run_tests -g ... +# # Specify group_name=nodefault +# # to have test not run by default +# accel = kvm|tcg # Optionally specify if test must run with +# # kvm or tcg. If not specified, then kvm will +# # be used when available. +# timeout = # Optionally specify a timeout. +# check = = # check a file for a particular value before running +# # a test. The check line can contain multiple files +# # to check separated by a space but each check +# # parameter needs to be of the form = +##############################################################################