From patchwork Fri Jan 12 14:34:14 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: David Hildenbrand X-Patchwork-Id: 10161149 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 6589060327 for ; Fri, 12 Jan 2018 14:36:10 +0000 (UTC) Received: from mail.wl.linuxfoundation.org (localhost [127.0.0.1]) by mail.wl.linuxfoundation.org (Postfix) with ESMTP id 52D61223C6 for ; Fri, 12 Jan 2018 14:36:10 +0000 (UTC) Received: by mail.wl.linuxfoundation.org (Postfix, from userid 486) id 47392288F7; Fri, 12 Jan 2018 14:36:10 +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 46607223C6 for ; Fri, 12 Jan 2018 14:36:09 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933994AbeALOgH (ORCPT ); Fri, 12 Jan 2018 09:36:07 -0500 Received: from mx1.redhat.com ([209.132.183.28]:56520 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933917AbeALOgG (ORCPT ); Fri, 12 Jan 2018 09:36:06 -0500 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 6511B46664; Fri, 12 Jan 2018 14:36:06 +0000 (UTC) Received: from t460s.redhat.com (unknown [10.36.118.73]) by smtp.corp.redhat.com (Postfix) with ESMTP id C98B16561B; Fri, 12 Jan 2018 14:35:47 +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 , Christian Borntraeger , Cornelia Huck , David Hildenbrand Subject: [PATCH kvm-unit-tests v2 08/11] s390x: add vmalloc support Date: Fri, 12 Jan 2018 15:34:14 +0100 Message-Id: <20180112143417.16743-9-david@redhat.com> In-Reply-To: <20180112143417.16743-1-david@redhat.com> References: <20180112143417.16743-1-david@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Fri, 12 Jan 2018 14:36:06 +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 To use virtual addresses, we have to - build page tables with identity mapping - setup the primary ASCE in cr1 - enable DAT in the PSW Not using the Linux definitions/implementation as they contain too much software defined stuff / things we don't need. Written from scratch. Tried to stick to the general Linux naming schemes. As we currently don't invalidate anything except page table entries, it is sufficient to only use ipte for now. Signed-off-by: David Hildenbrand --- lib/s390x/asm/arch_def.h | 17 ++++ lib/s390x/asm/page.h | 24 +++++ lib/s390x/asm/pgtable.h | 224 +++++++++++++++++++++++++++++++++++++++++++++++ lib/s390x/mmu.c | 121 +++++++++++++++++++++++++ lib/s390x/sclp.c | 2 + s390x/Makefile | 2 + 6 files changed, 390 insertions(+) create mode 100644 lib/s390x/asm/pgtable.h create mode 100644 lib/s390x/mmu.c diff --git a/lib/s390x/asm/arch_def.h b/lib/s390x/asm/arch_def.h index ee4c96f..f934120 100644 --- a/lib/s390x/asm/arch_def.h +++ b/lib/s390x/asm/arch_def.h @@ -163,4 +163,21 @@ static inline int tprot(unsigned long addr) return cc; } +static inline void lctlg(int cr, uint64_t value) +{ + asm volatile( + " lctlg %1,%1,%0\n" + : : "Q" (value), "i" (cr)); +} + +static inline uint64_t stctg(int cr) +{ + uint64_t value; + + asm volatile( + " stctg %1,%1,%0\n" + : "=Q" (value) : "i" (cr) : "memory"); + return value; +} + #endif diff --git a/lib/s390x/asm/page.h b/lib/s390x/asm/page.h index 141a456..bc19154 100644 --- a/lib/s390x/asm/page.h +++ b/lib/s390x/asm/page.h @@ -13,4 +13,28 @@ #include +typedef uint64_t pgdval_t; /* Region-1 table entry */ +typedef uint64_t p4dval_t; /* Region-2 table entry*/ +typedef uint64_t pudval_t; /* Region-3 table entry */ +typedef uint64_t pmdval_t; /* Segment table entry */ +typedef uint64_t pteval_t; /* Page table entry */ + +typedef struct { pgdval_t pgd; } pgd_t; +typedef struct { p4dval_t p4d; } p4d_t; +typedef struct { pudval_t pud; } pud_t; +typedef struct { pmdval_t pmd; } pmd_t; +typedef struct { pteval_t pte; } pte_t; + +#define pgd_val(x) ((x).pgd) +#define p4d_val(x) ((x).p4d) +#define pud_val(x) ((x).pud) +#define pmd_val(x) ((x).pmd) +#define pte_val(x) ((x).pte) + +#define __pgd(x) ((pgd_t) { (x) } ) +#define __p4d(x) ((p4d_t) { (x) } ) +#define __pud(x) ((pud_t) { (x) } ) +#define __pmd(x) ((pmd_t) { (x) } ) +#define __pte(x) ((pte_t) { (x) } ) + #endif diff --git a/lib/s390x/asm/pgtable.h b/lib/s390x/asm/pgtable.h new file mode 100644 index 0000000..5a169f5 --- /dev/null +++ b/lib/s390x/asm/pgtable.h @@ -0,0 +1,224 @@ +/* + * s390x page table definitions and functions + * + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * 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_PGTABLE_H_ +#define _ASMS390X_PGTABLE_H_ + +#include +#include + +#define ASCE_ORIGIN 0xfffffffffffff000UL +#define ASCE_G 0x0000000000000200UL +#define ASCE_P 0x0000000000000100UL +#define ASCE_S 0x0000000000000080UL +#define ASCE_X 0x0000000000000040UL +#define ASCE_R 0x0000000000000020UL +#define ASCE_DT 0x000000000000000cUL +#define ASCE_TL 0x0000000000000003UL + +#define ASCE_DT_REGION1 0x000000000000000cUL +#define ASCE_DT_REGION2 0x0000000000000008UL +#define ASCE_DT_REGION3 0x0000000000000004UL +#define ASCE_DT_SEGMENT 0x0000000000000000UL + +#define REGION_TABLE_ORDER 2 +#define REGION_TABLE_ENTRIES 2048 +#define REGION_TABLE_LENGTH 3 + +#define REGION1_SHIFT 53 +#define REGION2_SHIFT 42 +#define REGION3_SHIFT 31 + +#define REGION_ENTRY_ORIGIN 0xfffffffffffff000UL +#define REGION_ENTRY_P 0x0000000000000200UL +#define REGION_ENTRY_TF 0x00000000000000c0UL +#define REGION_ENTRY_I 0x0000000000000020UL +#define REGION_ENTRY_TT 0x000000000000000cUL +#define REGION_ENTRY_TL 0x0000000000000003UL + +#define REGION_ENTRY_TT_REGION1 0x000000000000000cUL +#define REGION_ENTRY_TT_REGION2 0x0000000000000008UL +#define REGION_ENTRY_TT_REGION3 0x0000000000000004UL + +#define REGION3_ENTRY_RFAA 0xffffffff80000000UL +#define REGION3_ENTRY_AV 0x0000000000010000UL +#define REGION3_ENTRY_ACC 0x000000000000f000UL +#define REGION3_ENTRY_F 0x0000000000000800UL +#define REGION3_ENTRY_FC 0x0000000000000400UL +#define REGION3_ENTRY_IEP 0x0000000000000100UL +#define REGION3_ENTRY_CR 0x0000000000000010UL + +#define SEGMENT_TABLE_ORDER 2 +#define SEGMENT_TABLE_ENTRIES 2048 +#define SEGMENT_TABLE_LENGTH 3 +#define SEGMENT_SHIFT 20 + +#define SEGMENT_ENTRY_ORIGIN 0xfffffffffffff800UL +#define SEGMENT_ENTRY_SFAA 0xfffffffffff80000UL +#define SEGMENT_ENTRY_AV 0x0000000000010000UL +#define SEGMENT_ENTRY_ACC 0x000000000000f000UL +#define SEGMENT_ENTRY_F 0x0000000000000800UL +#define SEGMENT_ENTRY_FC 0x0000000000000400UL +#define SEGMENT_ENTRY_P 0x0000000000000200UL +#define SEGMENT_ENTRY_IEP 0x0000000000000100UL +#define SEGMENT_ENTRY_I 0x0000000000000020UL +#define SEGMENT_ENTRY_CS 0x0000000000000010UL +#define SEGMENT_ENTRY_TT 0x000000000000000cUL + +#define SEGMENT_ENTRY_TT_REGION1 0x000000000000000cUL +#define SEGMENT_ENTRY_TT_REGION2 0x0000000000000008UL +#define SEGMENT_ENTRY_TT_REGION3 0x0000000000000004UL +#define SEGMENT_ENTRY_TT_SEGMENT 0x0000000000000000UL + +#define PAGE_TABLE_ORDER 0 +#define PAGE_TABLE_ENTRIES 256 + +#define PAGE_ENTRY_I 0x000000000000400UL +#define PAGE_ENTRY_P 0x000000000000200UL +#define PAGE_ENTRY_IEP 0x000000000000100UL + +#define PTRS_PER_PGD REGION_TABLE_ENTRIES +#define PTRS_PER_P4D REGION_TABLE_ENTRIES +#define PTRS_PER_PUD REGION_TABLE_ENTRIES +#define PTRS_PER_PMD SEGMENT_TABLE_ENTRIES +#define PTRS_PER_PTE PAGE_TABLE_ENTRIES + +#define PGDIR_SHIFT REGION1_SHIFT +#define P4D_SHIFT REGION2_SHIFT +#define PUD_SHIFT REGION3_SHIFT +#define PMD_SHIFT SEGMENT_SHIFT + +#define pgd_none(entry) (pgd_val(entry) & REGION_ENTRY_I) +#define p4d_none(entry) (p4d_val(entry) & REGION_ENTRY_I) +#define pud_none(entry) (pud_val(entry) & REGION_ENTRY_I) +#define pmd_none(entry) (pmd_val(entry) & SEGMENT_ENTRY_I) +#define pte_none(entry) (pte_val(entry) & PAGE_ENTRY_I) + +#define pgd_addr(entry) __va(pgd_val(entry) & REGION_ENTRY_ORIGIN) +#define p4d_addr(entry) __va(p4d_val(entry) & REGION_ENTRY_ORIGIN) +#define pud_addr(entry) __va(pud_val(entry) & REGION_ENTRY_ORIGIN) +#define pmd_addr(entry) __va(pmd_val(entry) & SEGMENT_ENTRY_ORIGIN) +#define pte_addr(entry) __va(pte_val(entry) & PAGE_MASK) + +#define pgd_index(addr) (((addr) >> PGDIR_SHIFT) & (PTRS_PER_PGD - 1)) +#define p4d_index(addr) (((addr) >> P4D_SHIFT) & (PTRS_PER_P4D - 1)) +#define pud_index(addr) (((addr) >> PUD_SHIFT) & (PTRS_PER_PUD - 1)) +#define pmd_index(addr) (((addr) >> PMD_SHIFT) & (PTRS_PER_PMD - 1)) +#define pte_index(addr) (((addr) >> PAGE_SHIFT) & (PTRS_PER_PTE - 1)) + +#define pgd_offset(table, addr) ((pgd_t *)(table) + pgd_index(addr)) +#define p4d_offset(pgd, addr) ((p4d_t *)pgd_addr(*(pgd)) + p4d_index(addr)) +#define pud_offset(p4d, addr) ((pud_t *)p4d_addr(*(p4d)) + pud_index(addr)) +#define pmd_offset(pud, addr) ((pmd_t *)pud_addr(*(pud)) + pmd_index(addr)) +#define pte_offset(pmd, addr) ((pte_t *)pmd_addr(*(pmd)) + pte_index(addr)) + +static inline pgd_t *pgd_alloc_one(void) +{ + pgd_t *pgd = alloc_pages(REGION_TABLE_ORDER); + int i; + + for (i = 0; i < REGION_TABLE_ENTRIES; i++) + pgd_val(pgd[i]) = REGION_ENTRY_TT_REGION1 | REGION_ENTRY_I; + return pgd; +} + +static inline p4d_t *p4d_alloc_one(void) +{ + p4d_t *p4d = alloc_pages(REGION_TABLE_ORDER); + int i; + + for (i = 0; i < REGION_TABLE_ENTRIES; i++) + p4d_val(p4d[i]) = REGION_ENTRY_TT_REGION2 | REGION_ENTRY_I; + return p4d; +} + +static inline p4d_t *p4d_alloc(pgd_t *pgd, unsigned long addr) +{ + if (pgd_none(*pgd)) { + p4d_t *p4d = p4d_alloc_one(); + pgd_val(*pgd) = __pa(p4d) | REGION_ENTRY_TT_REGION1 | + REGION_TABLE_LENGTH; + } + return p4d_offset(pgd, addr); +} + +static inline pud_t *pud_alloc_one(void) +{ + pud_t *pud = alloc_pages(REGION_TABLE_ORDER); + int i; + + for (i = 0; i < REGION_TABLE_ENTRIES; i++) + pud_val(pud[i]) = REGION_ENTRY_TT_REGION3 | REGION_ENTRY_I; + return pud; +} + +static inline pud_t *pud_alloc(p4d_t *p4d, unsigned long addr) +{ + if (p4d_none(*p4d)) { + pud_t *pud = pud_alloc_one(); + p4d_val(*p4d) = __pa(pud) | REGION_ENTRY_TT_REGION2 | + REGION_TABLE_LENGTH; + } + return pud_offset(p4d, addr); +} + +static inline pmd_t *pmd_alloc_one(void) +{ + pmd_t *pmd = alloc_pages(SEGMENT_TABLE_ORDER); + int i; + + for (i = 0; i < SEGMENT_TABLE_ENTRIES; i++) + pmd_val(pmd[i]) = SEGMENT_ENTRY_TT_SEGMENT | SEGMENT_ENTRY_I; + return pmd; +} + +static inline pmd_t *pmd_alloc(pud_t *pud, unsigned long addr) +{ + if (pud_none(*pud)) { + pmd_t *pmd = pmd_alloc_one(); + pud_val(*pud) = __pa(pmd) | REGION_ENTRY_TT_REGION3 | + REGION_TABLE_LENGTH; + } + return pmd_offset(pud, addr); +} + +static inline pte_t *pte_alloc_one(void) +{ + pte_t *pte = alloc_pages(PAGE_TABLE_ORDER); + int i; + + for (i = 0; i < PAGE_TABLE_ENTRIES; i++) + pte_val(pte[i]) = PAGE_ENTRY_I; + return pte; +} + +static inline pte_t *pte_alloc(pmd_t *pmd, unsigned long addr) +{ + if (pmd_none(*pmd)) { + pte_t *pte = pte_alloc_one(); + pmd_val(*pmd) = __pa(pte) | SEGMENT_ENTRY_TT_SEGMENT | + SEGMENT_TABLE_LENGTH; + } + return pte_offset(pmd, addr); +} + +static inline void ipte(unsigned long vaddr, pteval_t *p_pte) +{ + unsigned long table_origin = (unsigned long)p_pte & PAGE_MASK; + + asm volatile( + " ipte %0,%1\n" + : : "a" (table_origin), "a" (vaddr) : "memory"); +} + +void configure_dat(int enable); + +#endif /* _ASMS390X_PGTABLE_H_ */ diff --git a/lib/s390x/mmu.c b/lib/s390x/mmu.c new file mode 100644 index 0000000..9febb18 --- /dev/null +++ b/lib/s390x/mmu.c @@ -0,0 +1,121 @@ +/* + * s390x MMU + * + * Copyright (c) 2017 Red Hat Inc + * + * Authors: + * 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 +#include +#include +#include + +void configure_dat(int enable) +{ + struct psw psw = { + .mask = 0, + .addr = 0, + }; + uint32_t mask_upper = 0, mask_lower = 0; + + asm volatile( + /* fetch the old PSW masks */ + " epsw %0,%1\n" + /* remove the DAT flag first */ + " nilh %0,0xfbff\n" + " or %3,%3\n" + " jz 0f\n" + /* set DAT flag if enable == true */ + " oilh %0,0x0400\n" + "0:\n" + " st %0,0(%2)\n" + " st %1,4(%2)\n" + /* load the target address for our new PSW */ + " larl %0,1f\n" + " stg %0,8(%2)\n" + " lpswe 0(%2)\n" + "1:\n" + : "+r" (mask_upper), "+r" (mask_lower): "a" (&psw), "r" (enable) + : "memory", "cc"); +} + +static void mmu_enable(pgd_t *pgtable) +{ + const uint64_t asce = __pa(pgtable) | ASCE_DT_REGION1 | + REGION_TABLE_LENGTH; + + /* set primary asce */ + lctlg(1, asce); + assert(stctg(1) == asce); + + /* enable dat (primary == 0 set as default) */ + configure_dat(1); +} + +static pteval_t *get_pte(pgd_t *pgtable, uintptr_t vaddr) +{ + pgd_t *pgd = pgd_offset(pgtable, vaddr); + p4d_t *p4d = p4d_alloc(pgd, vaddr); + pud_t *pud = pud_alloc(p4d, vaddr); + pmd_t *pmd = pmd_alloc(pud, vaddr); + pte_t *pte = pte_alloc(pmd, vaddr); + + return &pte_val(*pte); +} + +phys_addr_t virt_to_pte_phys(pgd_t *pgtable, void *vaddr) +{ + return (*get_pte(pgtable, (uintptr_t)vaddr) & PAGE_MASK) + + ((unsigned long)vaddr & ~PAGE_MASK); +} + +pteval_t *install_page(pgd_t *pgtable, phys_addr_t phys, void *vaddr) +{ + pteval_t *p_pte = get_pte(pgtable, (uintptr_t)vaddr); + + /* first flush the old entry (if we're replacing anything) */ + if (!(*p_pte & PAGE_ENTRY_I)) + ipte((uintptr_t)vaddr, p_pte); + + *p_pte = __pa(phys); + return p_pte; +} + +static void setup_identity(pgd_t *pgtable, phys_addr_t start_addr, + phys_addr_t end_addr) +{ + phys_addr_t cur; + + start_addr &= PAGE_MASK; + for (cur = start_addr; true; cur += PAGE_SIZE) { + if (start_addr < end_addr && cur >= end_addr) + break; + if (start_addr > end_addr && cur <= end_addr) + break; + install_page(pgtable, cur, __va(cur)); + } +} + +void *setup_mmu(phys_addr_t phys_end){ + pgd_t *page_root; + + /* allocate a region-1 table */ + page_root = pgd_alloc_one(); + + /* map all physical memory 1:1 */ + setup_identity(page_root, 0, phys_end); + + /* generate 128MB of invalid adresses at the end (for testing PGM) */ + init_alloc_vpage((void *) -(1UL << 27)); + setup_identity(page_root, -(1UL << 27), 0); + + /* finally enable DAT with the new table */ + mmu_enable(page_root); + return page_root; +} diff --git a/lib/s390x/sclp.c b/lib/s390x/sclp.c index c7471b1..005ae52 100644 --- a/lib/s390x/sclp.c +++ b/lib/s390x/sclp.c @@ -28,6 +28,8 @@ static void mem_init(phys_addr_t mem_end) phys_addr_t freemem_start = (phys_addr_t)&stacktop & PAGE_MASK; phys_alloc_init(freemem_start, mem_end - freemem_start); + + setup_vm(); } void sclp_memory_setup(void) diff --git a/s390x/Makefile b/s390x/Makefile index 4198fdc..d9bef37 100644 --- a/s390x/Makefile +++ b/s390x/Makefile @@ -24,12 +24,14 @@ cflatobjs += lib/util.o cflatobjs += lib/alloc.o cflatobjs += lib/alloc_phys.o cflatobjs += lib/alloc_page.o +cflatobjs += lib/vmalloc.o cflatobjs += lib/alloc_phys.o cflatobjs += lib/s390x/io.o cflatobjs += lib/s390x/stack.o cflatobjs += lib/s390x/sclp.o cflatobjs += lib/s390x/sclp-ascii.o cflatobjs += lib/s390x/interrupt.o +cflatobjs += lib/s390x/mmu.o OBJDIRS += lib/s390x