1 /* $NetBSD: hyperv_common.c,v 1.1 2019/02/15 08:54:01 nonaka Exp $ */ 2 3 /*- 4 * Copyright (c) 2009-2012,2016-2017 Microsoft Corp. 5 * Copyright (c) 2012 NetApp Inc. 6 * Copyright (c) 2012 Citrix Inc. 7 * All rights reserved. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice unmodified, this list of conditions, and the following 14 * disclaimer. 15 * 2. Redistributions in binary form must reproduce the above copyright 16 * notice, this list of conditions and the following disclaimer in the 17 * documentation and/or other materials provided with the distribution. 18 * 19 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 20 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 21 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 22 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 23 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 24 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 25 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 26 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 27 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 28 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 29 */ 30 31 #include <sys/cdefs.h> 32 __KERNEL_RCSID(0, "$NetBSD: hyperv_common.c,v 1.1 2019/02/15 08:54:01 nonaka Exp $"); 33 34 #include "hyperv.h" 35 36 #include <sys/param.h> 37 #include <sys/systm.h> 38 #include <sys/kernel.h> 39 #include <sys/bus.h> 40 #include <sys/kmem.h> 41 42 #include <dev/hyperv/hypervreg.h> 43 #include <dev/hyperv/hypervvar.h> 44 45 hyperv_tc64_t hyperv_tc64; 46 47 int hyperv_nullop(void); 48 void hyperv_voidop(void); 49 uint64_t hyperv_hypercall_error(uint64_t, paddr_t, paddr_t); 50 51 __weak_alias(hyperv_hypercall, hyperv_hypercall_error); 52 __weak_alias(hyperv_hypercall_enabled, hyperv_nullop); 53 __weak_alias(hyperv_synic_supported, hyperv_nullop); 54 __weak_alias(hyperv_set_event_proc, hyperv_voidop); 55 __weak_alias(hyperv_set_message_proc, hyperv_voidop); 56 __weak_alias(hyperv_send_eom, hyperv_voidop); 57 __weak_alias(hyperv_intr, hyperv_voidop); 58 __weak_alias(vmbus_init_interrupts_md, hyperv_voidop); 59 __weak_alias(vmbus_deinit_interrupts_md, hyperv_voidop); 60 __weak_alias(vmbus_init_synic_md, hyperv_voidop); 61 __weak_alias(vmbus_deinit_synic_md, hyperv_voidop); 62 63 int 64 hyperv_nullop(void) 65 { 66 return 0; 67 } 68 69 void 70 hyperv_voidop(void) 71 { 72 } 73 74 uint64_t 75 hyperv_hypercall_error(uint64_t control, paddr_t in_paddr, paddr_t out_paddr) 76 { 77 return ~HYPERCALL_STATUS_SUCCESS; 78 } 79 80 uint64_t 81 hyperv_hypercall_post_message(paddr_t msg) 82 { 83 84 return hyperv_hypercall(HYPERCALL_POST_MESSAGE, msg, 0); 85 } 86 87 uint64_t 88 hyperv_hypercall_signal_event(paddr_t monprm) 89 { 90 91 return hyperv_hypercall(HYPERCALL_SIGNAL_EVENT, monprm, 0); 92 } 93 94 int 95 hyperv_guid2str(const struct hyperv_guid *guid, char *buf, size_t sz) 96 { 97 const uint8_t *d = guid->hv_guid; 98 99 return snprintf(buf, sz, "%02x%02x%02x%02x-" 100 "%02x%02x-%02x%02x-%02x%02x-" 101 "%02x%02x%02x%02x%02x%02x", 102 d[3], d[2], d[1], d[0], 103 d[5], d[4], d[7], d[6], d[8], d[9], 104 d[10], d[11], d[12], d[13], d[14], d[15]); 105 } 106 107 /* 108 * Hyper-V bus_dma utilities. 109 */ 110 void * 111 hyperv_dma_alloc(bus_dma_tag_t dmat, struct hyperv_dma *dma, bus_size_t size, 112 bus_size_t alignment, bus_size_t boundary, int nsegs) 113 { 114 const int kmemflags = cold ? KM_NOSLEEP : KM_SLEEP; 115 const int dmaflags = cold ? BUS_DMA_NOWAIT : BUS_DMA_WAITOK; 116 int rseg, error; 117 118 KASSERT(dma != NULL); 119 KASSERT(dma->segs == NULL); 120 KASSERT(nsegs > 0); 121 122 dma->segs = kmem_zalloc(sizeof(*dma->segs) * nsegs, kmemflags); 123 if (dma->segs == NULL) 124 return NULL; 125 126 dma->nsegs = nsegs; 127 128 error = bus_dmamem_alloc(dmat, size, alignment, boundary, dma->segs, 129 nsegs, &rseg, dmaflags); 130 if (error) { 131 printf("%s: bus_dmamem_alloc failed: error=%d\n", 132 __func__, error); 133 goto fail1; 134 } 135 error = bus_dmamem_map(dmat, dma->segs, rseg, size, &dma->addr, 136 dmaflags); 137 if (error) { 138 printf("%s: bus_dmamem_map failed: error=%d\n", 139 __func__, error); 140 goto fail2; 141 } 142 error = bus_dmamap_create(dmat, size, rseg, size, boundary, dmaflags, 143 &dma->map); 144 if (error) { 145 printf("%s: bus_dmamap_create failed: error=%d\n", 146 __func__, error); 147 goto fail3; 148 } 149 error = bus_dmamap_load(dmat, dma->map, dma->addr, size, NULL, 150 BUS_DMA_READ | BUS_DMA_WRITE | dmaflags); 151 if (error) { 152 printf("%s: bus_dmamap_load failed: error=%d\n", 153 __func__, error); 154 goto fail4; 155 } 156 157 return dma->addr; 158 159 fail4: bus_dmamap_destroy(dmat, dma->map); 160 fail3: bus_dmamem_unmap(dmat, dma->addr, size); 161 dma->addr = NULL; 162 fail2: bus_dmamem_free(dmat, dma->segs, rseg); 163 fail1: kmem_free(dma->segs, sizeof(*dma->segs) * nsegs); 164 dma->segs = NULL; 165 dma->nsegs = 0; 166 return NULL; 167 } 168 169 void 170 hyperv_dma_free(bus_dma_tag_t dmat, struct hyperv_dma *dma) 171 { 172 bus_size_t size = dma->map->dm_mapsize; 173 int rsegs = dma->map->dm_nsegs; 174 175 bus_dmamap_unload(dmat, dma->map); 176 bus_dmamap_destroy(dmat, dma->map); 177 bus_dmamem_unmap(dmat, dma->addr, size); 178 dma->addr = NULL; 179 bus_dmamem_free(dmat, dma->segs, rsegs); 180 kmem_free(dma->segs, sizeof(*dma->segs) * dma->nsegs); 181 dma->segs = NULL; 182 dma->nsegs = 0; 183 } 184