forked from torvalds/linux
Permalink
Show file tree
Hide file tree
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
drm/nouveau/nvkm: add a replacement for nvkm_notify
This replaces the twisty, confusing, relationship between nvkm_event and nvkm_notify with something much simpler, and less racey. It also places events in the object tree hierachy, which will allow a bunch of the code tracking events across allocation/teardown/suspend to be removed. This commit just adds the new interfaces, and passes the owning subdev to the event constructor to enable debug-tracing in the new code. v2: - use ?: (lyude) Signed-off-by: Ben Skeggs <bskeggs@redhat.com> Reviewed-by: Lyude Paul <lyude@redhat.com>
- Loading branch information
Showing
21 changed files
with
535 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,26 @@ | ||
| /* SPDX-License-Identifier: MIT */ | ||
| #ifndef __NVIF_IF000E_H__ | ||
| #define __NVIF_IF000E_H__ | ||
|
|
||
| union nvif_event_args { | ||
| struct nvif_event_v0 { | ||
| __u8 version; | ||
| __u8 wait; | ||
| __u8 pad02[6]; | ||
| __u8 data[]; | ||
| } v0; | ||
| }; | ||
|
|
||
| #define NVIF_EVENT_V0_ALLOW 0x00 | ||
| #define NVIF_EVENT_V0_BLOCK 0x01 | ||
|
|
||
| union nvif_event_allow_args { | ||
| struct nvif_event_allow_vn { | ||
| } vn; | ||
| }; | ||
|
|
||
| union nvif_event_block_args { | ||
| struct nvif_event_block_vn { | ||
| } vn; | ||
| }; | ||
| #endif |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,79 @@ | ||
| /* | ||
| * Copyright 2021 Red Hat Inc. | ||
| * | ||
| * 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 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 COPYRIGHT HOLDER(S) OR AUTHOR(S) 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. | ||
| */ | ||
| #include <nvif/event.h> | ||
| #include <nvif/printf.h> | ||
|
|
||
| #include <nvif/class.h> | ||
| #include <nvif/if000e.h> | ||
|
|
||
| int | ||
| nvif_event_block(struct nvif_event *event) | ||
| { | ||
| if (nvif_event_constructed(event)) { | ||
| int ret = nvif_mthd(&event->object, NVIF_EVENT_V0_BLOCK, NULL, 0); | ||
| NVIF_ERRON(ret, &event->object, "[BLOCK]"); | ||
| return ret; | ||
| } | ||
| return 0; | ||
| } | ||
|
|
||
| int | ||
| nvif_event_allow(struct nvif_event *event) | ||
| { | ||
| if (nvif_event_constructed(event)) { | ||
| int ret = nvif_mthd(&event->object, NVIF_EVENT_V0_ALLOW, NULL, 0); | ||
| NVIF_ERRON(ret, &event->object, "[ALLOW]"); | ||
| return ret; | ||
| } | ||
| return 0; | ||
| } | ||
|
|
||
| void | ||
| nvif_event_dtor(struct nvif_event *event) | ||
| { | ||
| nvif_object_dtor(&event->object); | ||
| } | ||
|
|
||
| int | ||
| nvif_event_ctor(struct nvif_object *parent, const char *name, u32 handle, nvif_event_func func, | ||
| bool wait, struct nvif_event_v0 *args, u32 argc, struct nvif_event *event) | ||
| { | ||
| struct nvif_event_v0 _args; | ||
| int ret; | ||
|
|
||
| if (!args) { | ||
| args = &_args; | ||
| argc = sizeof(_args); | ||
| } | ||
|
|
||
| args->version = 0; | ||
| args->wait = wait; | ||
|
|
||
| ret = nvif_object_ctor(parent, name ?: "nvifEvent", handle, | ||
| NVIF_CLASS_EVENT, args, argc, &event->object); | ||
| NVIF_ERRON(ret, parent, "[NEW EVENT wait:%d size:%ld]", args->wait, argc - sizeof(*args)); | ||
| if (ret) | ||
| return ret; | ||
|
|
||
| event->func = func; | ||
| return 0; | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.