From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.1 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI, SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DAE48C55179 for ; Thu, 5 Nov 2020 16:58:40 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 79E2C206F9 for ; Thu, 5 Nov 2020 16:58:40 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1604595520; bh=wlQoVhvq7nreh/YwalXJyyQSu3zGNtWpKt2wvj5t+Wg=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=l8/LKRrd9BNaai0zpZ8TJpu3qsHXV2qsOVV1VRNYOWiUmQvOZ/3sEI6erJAQ9hAqy LX2jIJPJP3P/0ortrBtkfoYROrIXfZVt4h3KlNrKQRdCe4mwGOAmW5AOH/k5v7gWEJ aewozT9W3ytVKTEomtfUxJ98x9w6kV4EoGI32qUY= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731862AbgKEQ6j (ORCPT ); Thu, 5 Nov 2020 11:58:39 -0500 Received: from mail-wm1-f68.google.com ([209.85.128.68]:36624 "EHLO mail-wm1-f68.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1731779AbgKEQ6e (ORCPT ); Thu, 5 Nov 2020 11:58:34 -0500 Received: by mail-wm1-f68.google.com with SMTP id a65so1951045wme.1; Thu, 05 Nov 2020 08:58:32 -0800 (PST) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=T+5cdHutuUA6EocbXq66t9UAokwgwiTTLHmiOikJqFA=; b=j+DHvZiQ84Ks+WnvswGxzs4nIo3yC3UKaGByrygxwaRDvr/y757sZvaxykYKVBEejJ YxKB3FM4yCFRUQbrlyO0vPmKRQEjTmhS33eMZWdDMkRnrKY6j9lPieAtWcZDWWjk9/J1 tFKD+8fuKJIOkZcnPQFb63nyIqsgb9vWInZehYULNRHkQuSIqKrzp0lM4RaSFwkHkZx9 EQf1ODrk4axmJdaO7xSS7WSrJqWLNjqVddaPMg2TZQmipY1BvWSClCfniVtWYP7Zz7mz uzufbx4zO9DU1bjIYT1Ce6dADvGKvrso0b3BYFkNugF3Quw/hL/H7ZrUgFfRiGyP6yVP W69A== X-Gm-Message-State: AOAM533vNLmpRL0/jtLKgR/dgMG+Mj2lLSWZN0IzEiYTMTpnqq/v0lHW f6BXU+1hJfwJUYUEWhyF9l7jKSc6Bus= X-Google-Smtp-Source: ABdhPJzWmQJR2fvOGewz/GmIg/it1S5HrKiQm6iGY1hQIqJ/17qtiJlH8shiTuv5ye80GP9HFqBogA== X-Received: by 2002:a7b:c055:: with SMTP id u21mr3712241wmc.27.1604595511860; Thu, 05 Nov 2020 08:58:31 -0800 (PST) Received: from liuwe-devbox-debian-v2.j3c5onc20sse1dnehy4noqpfcg.zx.internal.cloudapp.net ([51.145.34.42]) by smtp.gmail.com with ESMTPSA id z5sm3350729wrw.87.2020.11.05.08.58.31 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 05 Nov 2020 08:58:31 -0800 (PST) From: Wei Liu To: Linux on Hyper-V List Cc: virtualization@lists.linux-foundation.org, Linux Kernel List , Michael Kelley , Vineeth Pillai , Sunil Muthuswamy , Nuno Das Neves , Wei Liu , "K. Y. Srinivasan" , Haiyang Zhang , Stephen Hemminger , Arnd Bergmann , linux-arch@vger.kernel.org (open list:GENERIC INCLUDE/ASM HEADER FILES) Subject: [PATCH v2 13/17] asm-generic/hyperv: introduce hv_device_id and auxiliary structures Date: Thu, 5 Nov 2020 16:58:10 +0000 Message-Id: <20201105165814.29233-14-wei.liu@kernel.org> X-Mailer: git-send-email 2.20.1 In-Reply-To: <20201105165814.29233-1-wei.liu@kernel.org> References: <20201105165814.29233-1-wei.liu@kernel.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org We will need to identify the device we want Microsoft Hypervisor to manipulate. Introduce the data structures for that purpose. They will be used in a later patch. Signed-off-by: Sunil Muthuswamy Co-Developed-by: Sunil Muthuswamy Signed-off-by: Wei Liu --- include/asm-generic/hyperv-tlfs.h | 79 +++++++++++++++++++++++++++++++ 1 file changed, 79 insertions(+) diff --git a/include/asm-generic/hyperv-tlfs.h b/include/asm-generic/hyperv-tlfs.h index b6895d4d9ad0..09223e41172c 100644 --- a/include/asm-generic/hyperv-tlfs.h +++ b/include/asm-generic/hyperv-tlfs.h @@ -623,4 +623,83 @@ struct hv_set_vp_registers_input { } element[]; } __packed; +enum hv_device_type { + HV_DEVICE_TYPE_LOGICAL = 0, + HV_DEVICE_TYPE_PCI = 1, + HV_DEVICE_TYPE_IOAPIC = 2, + HV_DEVICE_TYPE_ACPI = 3, +}; + +typedef u16 hv_pci_rid; +typedef u16 hv_pci_segment; +typedef u64 hv_logical_device_id; +union hv_pci_bdf { + u16 as_uint16; + + struct { + u8 function:3; + u8 device:5; + u8 bus; + }; +} __packed; + +union hv_pci_bus_range { + u16 as_uint16; + + struct { + u8 subordinate_bus; + u8 secondary_bus; + }; +} __packed; + +union hv_device_id { + u64 as_uint64; + + struct { + u64 :62; + u64 device_type:2; + }; + + /* HV_DEVICE_TYPE_LOGICAL */ + struct { + u64 id:62; + u64 device_type:2; + } logical; + + /* HV_DEVICE_TYPE_PCI */ + struct { + union { + hv_pci_rid rid; + union hv_pci_bdf bdf; + }; + + hv_pci_segment segment; + union hv_pci_bus_range shadow_bus_range; + + u16 phantom_function_bits:2; + u16 source_shadow:1; + + u16 rsvdz0:11; + u16 device_type:2; + } pci; + + /* HV_DEVICE_TYPE_IOAPIC */ + struct { + u8 ioapic_id; + u8 rsvdz0; + u16 rsvdz1; + u16 rsvdz2; + + u16 rsvdz3:14; + u16 device_type:2; + } ioapic; + + /* HV_DEVICE_TYPE_ACPI */ + struct { + u32 input_mapping_base; + u32 input_mapping_count:30; + u32 device_type:2; + } acpi; +} __packed; + #endif -- 2.20.1