search for: falcon_mutex

Displaying 3 results from an estimated 3 matches for "falcon_mutex".

2016 Dec 06
0
[PATCH 3/8] core: add falcon library functions
...veau/include/nvkm/core/device.h b/drm/nouveau/include/nvkm/core/device.h index d426b86e2712..3751a8991b9b 100644 --- a/drm/nouveau/include/nvkm/core/device.h +++ b/drm/nouveau/include/nvkm/core/device.h @@ -116,6 +116,9 @@ struct nvkm_device { struct notifier_block nb; } acpi; + struct mutex falcon_mutex; + struct list_head falcons; + struct nvkm_bar *bar; struct nvkm_bios *bios; struct nvkm_bus *bus; diff --git a/drm/nouveau/include/nvkm/engine/falcon.h b/drm/nouveau/include/nvkm/engine/falcon.h index e6baf039c269..cfbef43586cd 100644 --- a/drm/nouveau/include/nvkm/engine/falcon.h +++ b/drm/...
2016 Dec 06
9
[PATCH 0/8] Falcon library
This was the first step of the secure boot refactoring - as Ben asked for some fixes, I now submit it as its own series to make it easier to review (and also because rebasing secure boot on top of this takes time and I don't want to do it until this is validated!). This series attempts to factorize the duplicate falcon-related code into a single library, using the existing nvkm_falcon
2016 Dec 13
15
[PATCH v2 0/15] Falcon library
This was the first step of the secure boot refactoring - as Ben asked for some fixes, I now submit it as its own series to make it easier to review (and also because rebasing secure boot on top of this takes time and I don't want to do it until this is validated!). This series attempts to factorize the duplicate falcon-related code into a single library, using the existing nvkm_falcon