drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
/*
|
|
|
|
* Copyright(c) 2011-2016 Intel Corporation. All rights reserved.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice (including the next
|
|
|
|
* paragraph) shall be included in all copies or substantial portions of the
|
|
|
|
* Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
* SOFTWARE.
|
2016-08-30 03:06:17 +00:00
|
|
|
*
|
|
|
|
* Authors:
|
|
|
|
* Kevin Tian <kevin.tian@intel.com>
|
|
|
|
* Eddie Dong <eddie.dong@intel.com>
|
|
|
|
*
|
|
|
|
* Contributors:
|
|
|
|
* Niu Bing <bing.niu@intel.com>
|
|
|
|
* Zhi Wang <zhi.a.wang@intel.com>
|
|
|
|
*
|
drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _GVT_H_
|
|
|
|
#define _GVT_H_
|
|
|
|
|
|
|
|
#include "debug.h"
|
|
|
|
#include "hypercall.h"
|
2016-08-30 03:06:17 +00:00
|
|
|
#include "mmio.h"
|
2016-07-05 16:40:49 +00:00
|
|
|
#include "reg.h"
|
2015-09-17 01:22:08 +00:00
|
|
|
#include "interrupt.h"
|
2016-03-28 15:23:16 +00:00
|
|
|
#include "gtt.h"
|
2016-04-25 22:28:56 +00:00
|
|
|
#include "display.h"
|
|
|
|
#include "edid.h"
|
2016-05-01 06:48:25 +00:00
|
|
|
#include "execlist.h"
|
2016-05-01 09:22:47 +00:00
|
|
|
#include "scheduler.h"
|
2016-05-01 21:09:58 +00:00
|
|
|
#include "sched_policy.h"
|
2016-05-01 23:02:37 +00:00
|
|
|
#include "render.h"
|
2016-05-03 22:26:57 +00:00
|
|
|
#include "cmd_parser.h"
|
drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
|
|
|
|
#define GVT_MAX_VGPU 8
|
|
|
|
|
|
|
|
enum {
|
|
|
|
INTEL_GVT_HYPERVISOR_XEN = 0,
|
|
|
|
INTEL_GVT_HYPERVISOR_KVM,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct intel_gvt_host {
|
|
|
|
bool initialized;
|
|
|
|
int hypervisor_type;
|
|
|
|
struct intel_gvt_mpt *mpt;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern struct intel_gvt_host intel_gvt_host;
|
|
|
|
|
|
|
|
/* Describe per-platform limitations. */
|
|
|
|
struct intel_gvt_device_info {
|
|
|
|
u32 max_support_vgpus;
|
2016-06-30 16:45:34 +00:00
|
|
|
u32 cfg_space_size;
|
2015-09-17 01:22:08 +00:00
|
|
|
u32 mmio_size;
|
2016-06-30 16:45:34 +00:00
|
|
|
u32 mmio_bar;
|
2015-09-17 01:22:08 +00:00
|
|
|
unsigned long msi_cap_offset;
|
2016-03-28 15:23:16 +00:00
|
|
|
u32 gtt_start_offset;
|
|
|
|
u32 gtt_entry_size;
|
|
|
|
u32 gtt_entry_size_shift;
|
2016-05-03 22:26:57 +00:00
|
|
|
int gmadr_bytes_in_cmd;
|
|
|
|
u32 max_surface_size;
|
drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
};
|
|
|
|
|
2016-09-02 04:41:29 +00:00
|
|
|
/* GM resources owned by a vGPU */
|
|
|
|
struct intel_vgpu_gm {
|
|
|
|
u64 aperture_sz;
|
|
|
|
u64 hidden_sz;
|
|
|
|
struct drm_mm_node low_gm_node;
|
|
|
|
struct drm_mm_node high_gm_node;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define INTEL_GVT_MAX_NUM_FENCES 32
|
|
|
|
|
|
|
|
/* Fences owned by a vGPU */
|
|
|
|
struct intel_vgpu_fence {
|
|
|
|
struct drm_i915_fence_reg *regs[INTEL_GVT_MAX_NUM_FENCES];
|
|
|
|
u32 base;
|
|
|
|
u32 size;
|
|
|
|
};
|
|
|
|
|
2016-07-05 16:40:49 +00:00
|
|
|
struct intel_vgpu_mmio {
|
|
|
|
void *vreg;
|
|
|
|
void *sreg;
|
2016-09-02 05:33:29 +00:00
|
|
|
bool disable_warn_untrack;
|
2016-07-05 16:40:49 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#define INTEL_GVT_MAX_CFG_SPACE_SZ 256
|
|
|
|
#define INTEL_GVT_MAX_BAR_NUM 4
|
|
|
|
|
|
|
|
struct intel_vgpu_pci_bar {
|
|
|
|
u64 size;
|
|
|
|
bool tracked;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct intel_vgpu_cfg_space {
|
|
|
|
unsigned char virtual_cfg_space[INTEL_GVT_MAX_CFG_SPACE_SZ];
|
|
|
|
struct intel_vgpu_pci_bar bar[INTEL_GVT_MAX_BAR_NUM];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define vgpu_cfg_space(vgpu) ((vgpu)->cfg_space.virtual_cfg_space)
|
|
|
|
|
2016-04-25 22:28:56 +00:00
|
|
|
#define INTEL_GVT_MAX_PIPE 4
|
|
|
|
|
2015-09-17 01:22:08 +00:00
|
|
|
struct intel_vgpu_irq {
|
|
|
|
bool irq_warn_once[INTEL_GVT_EVENT_MAX];
|
2016-04-25 22:28:56 +00:00
|
|
|
DECLARE_BITMAP(flip_done_event[INTEL_GVT_MAX_PIPE],
|
|
|
|
INTEL_GVT_EVENT_MAX);
|
2015-09-17 01:22:08 +00:00
|
|
|
};
|
|
|
|
|
2016-07-20 05:14:38 +00:00
|
|
|
struct intel_vgpu_opregion {
|
|
|
|
void *va;
|
|
|
|
u32 gfn[INTEL_GVT_OPREGION_PAGES];
|
|
|
|
struct page *pages[INTEL_GVT_OPREGION_PAGES];
|
|
|
|
};
|
|
|
|
|
|
|
|
#define vgpu_opregion(vgpu) (&(vgpu->opregion))
|
|
|
|
|
2016-04-25 22:28:56 +00:00
|
|
|
#define INTEL_GVT_MAX_PORT 5
|
|
|
|
|
|
|
|
struct intel_vgpu_display {
|
|
|
|
struct intel_vgpu_i2c_edid i2c_edid;
|
|
|
|
struct intel_vgpu_port ports[INTEL_GVT_MAX_PORT];
|
|
|
|
struct intel_vgpu_sbi sbi;
|
|
|
|
};
|
|
|
|
|
drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
struct intel_vgpu {
|
|
|
|
struct intel_gvt *gvt;
|
|
|
|
int id;
|
|
|
|
unsigned long handle; /* vGPU handle used by hypervisor MPT modules */
|
2016-07-05 16:40:49 +00:00
|
|
|
bool active;
|
|
|
|
bool resetting;
|
2016-05-01 21:09:58 +00:00
|
|
|
void *sched_data;
|
2016-09-02 04:41:29 +00:00
|
|
|
|
|
|
|
struct intel_vgpu_fence fence;
|
|
|
|
struct intel_vgpu_gm gm;
|
2016-07-05 16:40:49 +00:00
|
|
|
struct intel_vgpu_cfg_space cfg_space;
|
|
|
|
struct intel_vgpu_mmio mmio;
|
2015-09-17 01:22:08 +00:00
|
|
|
struct intel_vgpu_irq irq;
|
2016-03-28 15:23:16 +00:00
|
|
|
struct intel_vgpu_gtt gtt;
|
2016-07-20 05:14:38 +00:00
|
|
|
struct intel_vgpu_opregion opregion;
|
2016-04-25 22:28:56 +00:00
|
|
|
struct intel_vgpu_display display;
|
2016-05-01 06:48:25 +00:00
|
|
|
struct intel_vgpu_execlist execlist[I915_NUM_ENGINES];
|
2016-05-01 09:22:47 +00:00
|
|
|
struct list_head workload_q_head[I915_NUM_ENGINES];
|
|
|
|
struct kmem_cache *workloads;
|
2016-05-01 11:42:16 +00:00
|
|
|
atomic_t running_workload_num;
|
2016-05-01 23:02:37 +00:00
|
|
|
DECLARE_BITMAP(tlb_handle_pending, I915_NUM_ENGINES);
|
2016-05-01 11:42:16 +00:00
|
|
|
struct i915_gem_context *shadow_ctx;
|
|
|
|
struct notifier_block shadow_ctx_notifier_block;
|
drm/i915/gvt: add KVMGT support
KVMGT is the MPT implementation based on VFIO/KVM. It provides
a kvmgt_mpt ops to gvt for vGPU access mediation, e.g. to
mediate and emulate the MMIO accesses, to inject interrupts
to vGPU user, to intercept the GTT writing and replace it with
DMA-able address, to write-protect guest PPGTT table for
shadowing synchronization, etc. This patch provides the MPT
implementation for GVT, not yet functional due to theabsence
of mdev.
It's built as kvmgt.ko, depends on vfio.ko, kvm.ko and mdev.ko,
and being required by i915.ko. To not introduce hard dependency
in i915.ko, we used indirect symbol reference. But that means
users have to include kvmgt.ko into init ramdisk if their
i915.ko is included.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Xiaoguang Chen <xiaoguang.chen@intel.com>
Signed-off-by: Jike Song <jike.song@intel.com>
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
2016-11-09 12:30:59 +00:00
|
|
|
|
|
|
|
#if IS_ENABLED(CONFIG_DRM_I915_GVT_KVMGT)
|
|
|
|
struct {
|
2016-12-08 03:00:36 +00:00
|
|
|
struct mdev_device *mdev;
|
drm/i915/gvt: add KVMGT support
KVMGT is the MPT implementation based on VFIO/KVM. It provides
a kvmgt_mpt ops to gvt for vGPU access mediation, e.g. to
mediate and emulate the MMIO accesses, to inject interrupts
to vGPU user, to intercept the GTT writing and replace it with
DMA-able address, to write-protect guest PPGTT table for
shadowing synchronization, etc. This patch provides the MPT
implementation for GVT, not yet functional due to theabsence
of mdev.
It's built as kvmgt.ko, depends on vfio.ko, kvm.ko and mdev.ko,
and being required by i915.ko. To not introduce hard dependency
in i915.ko, we used indirect symbol reference. But that means
users have to include kvmgt.ko into init ramdisk if their
i915.ko is included.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Xiaoguang Chen <xiaoguang.chen@intel.com>
Signed-off-by: Jike Song <jike.song@intel.com>
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
2016-11-09 12:30:59 +00:00
|
|
|
struct vfio_region *region;
|
|
|
|
int num_regions;
|
|
|
|
struct eventfd_ctx *intx_trigger;
|
|
|
|
struct eventfd_ctx *msi_trigger;
|
|
|
|
struct rb_root cache;
|
|
|
|
struct mutex cache_lock;
|
|
|
|
struct notifier_block iommu_notifier;
|
2016-12-08 03:00:36 +00:00
|
|
|
struct notifier_block group_notifier;
|
|
|
|
struct kvm *kvm;
|
|
|
|
struct work_struct release_work;
|
2016-12-16 02:51:06 +00:00
|
|
|
atomic_t released;
|
drm/i915/gvt: add KVMGT support
KVMGT is the MPT implementation based on VFIO/KVM. It provides
a kvmgt_mpt ops to gvt for vGPU access mediation, e.g. to
mediate and emulate the MMIO accesses, to inject interrupts
to vGPU user, to intercept the GTT writing and replace it with
DMA-able address, to write-protect guest PPGTT table for
shadowing synchronization, etc. This patch provides the MPT
implementation for GVT, not yet functional due to theabsence
of mdev.
It's built as kvmgt.ko, depends on vfio.ko, kvm.ko and mdev.ko,
and being required by i915.ko. To not introduce hard dependency
in i915.ko, we used indirect symbol reference. But that means
users have to include kvmgt.ko into init ramdisk if their
i915.ko is included.
Signed-off-by: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Xiaoguang Chen <xiaoguang.chen@intel.com>
Signed-off-by: Jike Song <jike.song@intel.com>
Signed-off-by: Zhenyu Wang <zhenyuw@linux.intel.com>
2016-11-09 12:30:59 +00:00
|
|
|
} vdev;
|
|
|
|
#endif
|
2016-09-02 04:41:29 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct intel_gvt_gm {
|
|
|
|
unsigned long vgpu_allocated_low_gm_size;
|
|
|
|
unsigned long vgpu_allocated_high_gm_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct intel_gvt_fence {
|
|
|
|
unsigned long vgpu_allocated_fence_num;
|
drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
};
|
|
|
|
|
2016-08-30 03:06:17 +00:00
|
|
|
#define INTEL_GVT_MMIO_HASH_BITS 9
|
|
|
|
|
|
|
|
struct intel_gvt_mmio {
|
|
|
|
u32 *mmio_attribute;
|
|
|
|
DECLARE_HASHTABLE(mmio_info_table, INTEL_GVT_MMIO_HASH_BITS);
|
|
|
|
};
|
|
|
|
|
2016-06-30 16:45:34 +00:00
|
|
|
struct intel_gvt_firmware {
|
|
|
|
void *cfg_space;
|
|
|
|
void *mmio;
|
|
|
|
bool firmware_loaded;
|
|
|
|
};
|
|
|
|
|
2016-07-20 05:14:38 +00:00
|
|
|
struct intel_gvt_opregion {
|
2016-10-20 06:08:46 +00:00
|
|
|
void __iomem *opregion_va;
|
2016-07-20 05:14:38 +00:00
|
|
|
u32 opregion_pa;
|
|
|
|
};
|
|
|
|
|
2016-11-03 10:38:31 +00:00
|
|
|
#define NR_MAX_INTEL_VGPU_TYPES 20
|
|
|
|
struct intel_vgpu_type {
|
|
|
|
char name[16];
|
|
|
|
unsigned int max_instance;
|
|
|
|
unsigned int avail_instance;
|
|
|
|
unsigned int low_gm_size;
|
|
|
|
unsigned int high_gm_size;
|
|
|
|
unsigned int fence;
|
|
|
|
};
|
|
|
|
|
drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
struct intel_gvt {
|
|
|
|
struct mutex lock;
|
|
|
|
struct drm_i915_private *dev_priv;
|
|
|
|
struct idr vgpu_idr; /* vGPU IDR pool */
|
|
|
|
|
|
|
|
struct intel_gvt_device_info device_info;
|
2016-09-02 04:41:29 +00:00
|
|
|
struct intel_gvt_gm gm;
|
|
|
|
struct intel_gvt_fence fence;
|
2016-08-30 03:06:17 +00:00
|
|
|
struct intel_gvt_mmio mmio;
|
2016-06-30 16:45:34 +00:00
|
|
|
struct intel_gvt_firmware firmware;
|
2015-09-17 01:22:08 +00:00
|
|
|
struct intel_gvt_irq irq;
|
2016-03-28 15:23:16 +00:00
|
|
|
struct intel_gvt_gtt gtt;
|
2016-07-20 05:14:38 +00:00
|
|
|
struct intel_gvt_opregion opregion;
|
2016-05-01 09:22:47 +00:00
|
|
|
struct intel_gvt_workload_scheduler scheduler;
|
2016-05-03 22:26:57 +00:00
|
|
|
DECLARE_HASHTABLE(cmd_table, GVT_CMD_HASH_BITS);
|
2016-11-03 10:38:31 +00:00
|
|
|
struct intel_vgpu_type *types;
|
|
|
|
unsigned int num_types;
|
2016-04-25 22:28:56 +00:00
|
|
|
|
|
|
|
struct task_struct *service_thread;
|
|
|
|
wait_queue_head_t service_thread_wq;
|
|
|
|
unsigned long service_request;
|
drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
};
|
|
|
|
|
2016-10-20 09:15:03 +00:00
|
|
|
static inline struct intel_gvt *to_gvt(struct drm_i915_private *i915)
|
|
|
|
{
|
|
|
|
return i915->gvt;
|
|
|
|
}
|
|
|
|
|
2016-04-25 22:28:56 +00:00
|
|
|
enum {
|
|
|
|
INTEL_GVT_REQUEST_EMULATE_VBLANK = 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
static inline void intel_gvt_request_service(struct intel_gvt *gvt,
|
|
|
|
int service)
|
|
|
|
{
|
|
|
|
set_bit(service, (void *)&gvt->service_request);
|
|
|
|
wake_up(&gvt->service_thread_wq);
|
|
|
|
}
|
|
|
|
|
2016-06-30 16:45:34 +00:00
|
|
|
void intel_gvt_free_firmware(struct intel_gvt *gvt);
|
|
|
|
int intel_gvt_load_firmware(struct intel_gvt *gvt);
|
|
|
|
|
2016-11-03 10:38:31 +00:00
|
|
|
/* Aperture/GM space definitions for GVT device */
|
|
|
|
#define MB_TO_BYTES(mb) ((mb) << 20ULL)
|
|
|
|
#define BYTES_TO_MB(b) ((b) >> 20ULL)
|
|
|
|
|
|
|
|
#define HOST_LOW_GM_SIZE MB_TO_BYTES(128)
|
|
|
|
#define HOST_HIGH_GM_SIZE MB_TO_BYTES(384)
|
|
|
|
#define HOST_FENCE 4
|
|
|
|
|
2016-09-02 04:41:29 +00:00
|
|
|
/* Aperture/GM space definitions for GVT device */
|
|
|
|
#define gvt_aperture_sz(gvt) (gvt->dev_priv->ggtt.mappable_end)
|
|
|
|
#define gvt_aperture_pa_base(gvt) (gvt->dev_priv->ggtt.mappable_base)
|
|
|
|
|
|
|
|
#define gvt_ggtt_gm_sz(gvt) (gvt->dev_priv->ggtt.base.total)
|
2016-09-02 05:33:29 +00:00
|
|
|
#define gvt_ggtt_sz(gvt) \
|
|
|
|
((gvt->dev_priv->ggtt.base.total >> PAGE_SHIFT) << 3)
|
2016-09-02 04:41:29 +00:00
|
|
|
#define gvt_hidden_sz(gvt) (gvt_ggtt_gm_sz(gvt) - gvt_aperture_sz(gvt))
|
|
|
|
|
|
|
|
#define gvt_aperture_gmadr_base(gvt) (0)
|
|
|
|
#define gvt_aperture_gmadr_end(gvt) (gvt_aperture_gmadr_base(gvt) \
|
|
|
|
+ gvt_aperture_sz(gvt) - 1)
|
|
|
|
|
|
|
|
#define gvt_hidden_gmadr_base(gvt) (gvt_aperture_gmadr_base(gvt) \
|
|
|
|
+ gvt_aperture_sz(gvt))
|
|
|
|
#define gvt_hidden_gmadr_end(gvt) (gvt_hidden_gmadr_base(gvt) \
|
|
|
|
+ gvt_hidden_sz(gvt) - 1)
|
|
|
|
|
|
|
|
#define gvt_fence_sz(gvt) (gvt->dev_priv->num_fence_regs)
|
|
|
|
|
|
|
|
/* Aperture/GM space definitions for vGPU */
|
|
|
|
#define vgpu_aperture_offset(vgpu) ((vgpu)->gm.low_gm_node.start)
|
|
|
|
#define vgpu_hidden_offset(vgpu) ((vgpu)->gm.high_gm_node.start)
|
|
|
|
#define vgpu_aperture_sz(vgpu) ((vgpu)->gm.aperture_sz)
|
|
|
|
#define vgpu_hidden_sz(vgpu) ((vgpu)->gm.hidden_sz)
|
|
|
|
|
|
|
|
#define vgpu_aperture_pa_base(vgpu) \
|
|
|
|
(gvt_aperture_pa_base(vgpu->gvt) + vgpu_aperture_offset(vgpu))
|
|
|
|
|
|
|
|
#define vgpu_ggtt_gm_sz(vgpu) ((vgpu)->gm.aperture_sz + (vgpu)->gm.hidden_sz)
|
|
|
|
|
|
|
|
#define vgpu_aperture_pa_end(vgpu) \
|
|
|
|
(vgpu_aperture_pa_base(vgpu) + vgpu_aperture_sz(vgpu) - 1)
|
|
|
|
|
|
|
|
#define vgpu_aperture_gmadr_base(vgpu) (vgpu_aperture_offset(vgpu))
|
|
|
|
#define vgpu_aperture_gmadr_end(vgpu) \
|
|
|
|
(vgpu_aperture_gmadr_base(vgpu) + vgpu_aperture_sz(vgpu) - 1)
|
|
|
|
|
|
|
|
#define vgpu_hidden_gmadr_base(vgpu) (vgpu_hidden_offset(vgpu))
|
|
|
|
#define vgpu_hidden_gmadr_end(vgpu) \
|
|
|
|
(vgpu_hidden_gmadr_base(vgpu) + vgpu_hidden_sz(vgpu) - 1)
|
|
|
|
|
|
|
|
#define vgpu_fence_base(vgpu) (vgpu->fence.base)
|
|
|
|
#define vgpu_fence_sz(vgpu) (vgpu->fence.size)
|
|
|
|
|
|
|
|
struct intel_vgpu_creation_params {
|
|
|
|
__u64 handle;
|
|
|
|
__u64 low_gm_sz; /* in MB */
|
|
|
|
__u64 high_gm_sz; /* in MB */
|
|
|
|
__u64 fence_sz;
|
|
|
|
__s32 primary;
|
|
|
|
__u64 vgpu_id;
|
|
|
|
};
|
|
|
|
|
|
|
|
int intel_vgpu_alloc_resource(struct intel_vgpu *vgpu,
|
|
|
|
struct intel_vgpu_creation_params *param);
|
2017-01-13 03:15:56 +00:00
|
|
|
void intel_vgpu_reset_resource(struct intel_vgpu *vgpu);
|
2016-09-02 04:41:29 +00:00
|
|
|
void intel_vgpu_free_resource(struct intel_vgpu *vgpu);
|
|
|
|
void intel_vgpu_write_fence(struct intel_vgpu *vgpu,
|
|
|
|
u32 fence, u64 value);
|
|
|
|
|
2016-07-05 16:40:49 +00:00
|
|
|
/* Macros for easily accessing vGPU virtual/shadow register */
|
|
|
|
#define vgpu_vreg(vgpu, reg) \
|
|
|
|
(*(u32 *)(vgpu->mmio.vreg + INTEL_GVT_MMIO_OFFSET(reg)))
|
|
|
|
#define vgpu_vreg8(vgpu, reg) \
|
|
|
|
(*(u8 *)(vgpu->mmio.vreg + INTEL_GVT_MMIO_OFFSET(reg)))
|
|
|
|
#define vgpu_vreg16(vgpu, reg) \
|
|
|
|
(*(u16 *)(vgpu->mmio.vreg + INTEL_GVT_MMIO_OFFSET(reg)))
|
|
|
|
#define vgpu_vreg64(vgpu, reg) \
|
|
|
|
(*(u64 *)(vgpu->mmio.vreg + INTEL_GVT_MMIO_OFFSET(reg)))
|
|
|
|
#define vgpu_sreg(vgpu, reg) \
|
|
|
|
(*(u32 *)(vgpu->mmio.sreg + INTEL_GVT_MMIO_OFFSET(reg)))
|
|
|
|
#define vgpu_sreg8(vgpu, reg) \
|
|
|
|
(*(u8 *)(vgpu->mmio.sreg + INTEL_GVT_MMIO_OFFSET(reg)))
|
|
|
|
#define vgpu_sreg16(vgpu, reg) \
|
|
|
|
(*(u16 *)(vgpu->mmio.sreg + INTEL_GVT_MMIO_OFFSET(reg)))
|
|
|
|
#define vgpu_sreg64(vgpu, reg) \
|
|
|
|
(*(u64 *)(vgpu->mmio.sreg + INTEL_GVT_MMIO_OFFSET(reg)))
|
|
|
|
|
|
|
|
#define for_each_active_vgpu(gvt, vgpu, id) \
|
|
|
|
idr_for_each_entry((&(gvt)->vgpu_idr), (vgpu), (id)) \
|
|
|
|
for_each_if(vgpu->active)
|
|
|
|
|
|
|
|
static inline void intel_vgpu_write_pci_bar(struct intel_vgpu *vgpu,
|
|
|
|
u32 offset, u32 val, bool low)
|
|
|
|
{
|
|
|
|
u32 *pval;
|
|
|
|
|
|
|
|
/* BAR offset should be 32 bits algiend */
|
|
|
|
offset = rounddown(offset, 4);
|
|
|
|
pval = (u32 *)(vgpu_cfg_space(vgpu) + offset);
|
|
|
|
|
|
|
|
if (low) {
|
|
|
|
/*
|
|
|
|
* only update bit 31 - bit 4,
|
|
|
|
* leave the bit 3 - bit 0 unchanged.
|
|
|
|
*/
|
|
|
|
*pval = (val & GENMASK(31, 4)) | (*pval & GENMASK(3, 0));
|
2016-11-24 05:13:00 +00:00
|
|
|
} else {
|
|
|
|
*pval = val;
|
2016-07-05 16:40:49 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-03 10:38:31 +00:00
|
|
|
int intel_gvt_init_vgpu_types(struct intel_gvt *gvt);
|
|
|
|
void intel_gvt_clean_vgpu_types(struct intel_gvt *gvt);
|
2016-07-05 16:40:49 +00:00
|
|
|
|
2016-11-03 10:38:31 +00:00
|
|
|
struct intel_vgpu *intel_gvt_create_vgpu(struct intel_gvt *gvt,
|
|
|
|
struct intel_vgpu_type *type);
|
2016-07-05 16:40:49 +00:00
|
|
|
void intel_gvt_destroy_vgpu(struct intel_vgpu *vgpu);
|
2016-11-03 10:38:35 +00:00
|
|
|
void intel_gvt_reset_vgpu(struct intel_vgpu *vgpu);
|
2016-07-05 16:40:49 +00:00
|
|
|
|
2016-11-03 10:38:31 +00:00
|
|
|
|
2016-03-28 15:23:16 +00:00
|
|
|
/* validating GM functions */
|
|
|
|
#define vgpu_gmadr_is_aperture(vgpu, gmadr) \
|
|
|
|
((gmadr >= vgpu_aperture_gmadr_base(vgpu)) && \
|
|
|
|
(gmadr <= vgpu_aperture_gmadr_end(vgpu)))
|
|
|
|
|
|
|
|
#define vgpu_gmadr_is_hidden(vgpu, gmadr) \
|
|
|
|
((gmadr >= vgpu_hidden_gmadr_base(vgpu)) && \
|
|
|
|
(gmadr <= vgpu_hidden_gmadr_end(vgpu)))
|
|
|
|
|
|
|
|
#define vgpu_gmadr_is_valid(vgpu, gmadr) \
|
|
|
|
((vgpu_gmadr_is_aperture(vgpu, gmadr) || \
|
|
|
|
(vgpu_gmadr_is_hidden(vgpu, gmadr))))
|
|
|
|
|
|
|
|
#define gvt_gmadr_is_aperture(gvt, gmadr) \
|
|
|
|
((gmadr >= gvt_aperture_gmadr_base(gvt)) && \
|
|
|
|
(gmadr <= gvt_aperture_gmadr_end(gvt)))
|
|
|
|
|
|
|
|
#define gvt_gmadr_is_hidden(gvt, gmadr) \
|
|
|
|
((gmadr >= gvt_hidden_gmadr_base(gvt)) && \
|
|
|
|
(gmadr <= gvt_hidden_gmadr_end(gvt)))
|
|
|
|
|
|
|
|
#define gvt_gmadr_is_valid(gvt, gmadr) \
|
|
|
|
(gvt_gmadr_is_aperture(gvt, gmadr) || \
|
|
|
|
gvt_gmadr_is_hidden(gvt, gmadr))
|
|
|
|
|
|
|
|
bool intel_gvt_ggtt_validate_range(struct intel_vgpu *vgpu, u64 addr, u32 size);
|
|
|
|
int intel_gvt_ggtt_gmadr_g2h(struct intel_vgpu *vgpu, u64 g_addr, u64 *h_addr);
|
|
|
|
int intel_gvt_ggtt_gmadr_h2g(struct intel_vgpu *vgpu, u64 h_addr, u64 *g_addr);
|
|
|
|
int intel_gvt_ggtt_index_g2h(struct intel_vgpu *vgpu, unsigned long g_index,
|
|
|
|
unsigned long *h_index);
|
|
|
|
int intel_gvt_ggtt_h2g_index(struct intel_vgpu *vgpu, unsigned long h_index,
|
|
|
|
unsigned long *g_index);
|
2016-07-20 05:14:38 +00:00
|
|
|
|
2016-11-03 10:38:35 +00:00
|
|
|
int intel_vgpu_emulate_cfg_read(struct intel_vgpu *vgpu, unsigned int offset,
|
2016-07-20 05:14:38 +00:00
|
|
|
void *p_data, unsigned int bytes);
|
|
|
|
|
2016-11-03 10:38:35 +00:00
|
|
|
int intel_vgpu_emulate_cfg_write(struct intel_vgpu *vgpu, unsigned int offset,
|
2016-07-20 05:14:38 +00:00
|
|
|
void *p_data, unsigned int bytes);
|
|
|
|
|
|
|
|
void intel_gvt_clean_opregion(struct intel_gvt *gvt);
|
|
|
|
int intel_gvt_init_opregion(struct intel_gvt *gvt);
|
|
|
|
|
|
|
|
void intel_vgpu_clean_opregion(struct intel_vgpu *vgpu);
|
|
|
|
int intel_vgpu_init_opregion(struct intel_vgpu *vgpu, u32 gpa);
|
|
|
|
|
|
|
|
int intel_vgpu_emulate_opregion_request(struct intel_vgpu *vgpu, u32 swsci);
|
2016-10-26 01:38:52 +00:00
|
|
|
int setup_vgpu_mmio(struct intel_vgpu *vgpu);
|
|
|
|
void populate_pvinfo_page(struct intel_vgpu *vgpu);
|
2016-07-20 05:14:38 +00:00
|
|
|
|
2016-11-03 10:38:35 +00:00
|
|
|
struct intel_gvt_ops {
|
|
|
|
int (*emulate_cfg_read)(struct intel_vgpu *, unsigned int, void *,
|
|
|
|
unsigned int);
|
|
|
|
int (*emulate_cfg_write)(struct intel_vgpu *, unsigned int, void *,
|
|
|
|
unsigned int);
|
|
|
|
int (*emulate_mmio_read)(struct intel_vgpu *, u64, void *,
|
|
|
|
unsigned int);
|
|
|
|
int (*emulate_mmio_write)(struct intel_vgpu *, u64, void *,
|
|
|
|
unsigned int);
|
|
|
|
struct intel_vgpu *(*vgpu_create)(struct intel_gvt *,
|
|
|
|
struct intel_vgpu_type *);
|
|
|
|
void (*vgpu_destroy)(struct intel_vgpu *);
|
|
|
|
void (*vgpu_reset)(struct intel_vgpu *);
|
|
|
|
};
|
|
|
|
|
|
|
|
|
drm/i915: gvt: Introduce the basic architecture of GVT-g
This patch introduces the very basic framework of GVT-g device model,
includes basic prototypes, definitions, initialization.
v12:
- Call intel_gvt_init() in driver early initialization stage. (Chris)
v8:
- Remove the GVT idr and mutex in intel_gvt_host. (Joonas)
v7:
- Refine the URL link in Kconfig. (Joonas)
- Refine the introduction of GVT-g host support in Kconfig. (Joonas)
- Remove the macro GVT_ALIGN(), use round_down() instead. (Joonas)
- Make "struct intel_gvt" a data member in struct drm_i915_private.(Joonas)
- Remove {alloc, free}_gvt_device()
- Rename intel_gvt_{create, destroy}_gvt_device()
- Expost intel_gvt_init_host()
- Remove the dummy "struct intel_gvt" declaration in intel_gvt.h (Joonas)
v6:
- Refine introduction in Kconfig. (Chris)
- The exposed API functions will take struct intel_gvt * instead of
void *. (Chris/Tvrtko)
- Remove most memebers of strct intel_gvt_device_info. Will add them
in the device model patches.(Chris)
- Remove gvt_info() and gvt_err() in debug.h. (Chris)
- Move GVT kernel parameter into i915_params. (Chris)
- Remove include/drm/i915_gvt.h, as GVT-g will be built within i915.
- Remove the redundant struct i915_gvt *, as the functions in i915
will directly take struct intel_gvt *.
- Add more comments for reviewer.
v5:
Take Tvrtko's comments:
- Fix the misspelled words in Kconfig
- Let functions take drm_i915_private * instead of struct drm_device *
- Remove redundant prints/local varible initialization
v3:
Take Joonas' comments:
- Change file name i915_gvt.* to intel_gvt.*
- Move GVT kernel parameter into intel_gvt.c
- Remove redundant debug macros
- Change error handling style
- Add introductions for some stub functions
- Introduce drm/i915_gvt.h.
Take Kevin's comments:
- Move GVT-g host/guest check into intel_vgt_balloon in i915_gem_gtt.c
v2:
- Introduce i915_gvt.c.
It's necessary to introduce the stubs between i915 driver and GVT-g host,
as GVT-g components is configurable in kernel config. When disabled, the
stubs here do nothing.
Take Joonas' comments:
- Replace boolean return value with int.
- Replace customized info/warn/debug macros with DRM macros.
- Document all non-static functions like i915.
- Remove empty and unused functions.
- Replace magic number with marcos.
- Set GVT-g in kernel config to "n" by default.
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Tvrtko Ursulin <tvrtko.ursulin@linux.intel.com>
Cc: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Zhi Wang <zhi.a.wang@intel.com>
Link: http://patchwork.freedesktop.org/patch/msgid/1466078825-6662-5-git-send-email-zhi.a.wang@intel.com
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
2016-06-16 12:07:00 +00:00
|
|
|
#include "mpt.h"
|
|
|
|
|
|
|
|
#endif
|