Go to the source code of this file.
|
| #define | NV_WAIT_DEFAULT 2000000000ULL |
| |
| #define | nv_wait(o, a, m, v) nouveau_timer_wait_eq((o), NV_WAIT_DEFAULT, (a), (m), (v)) |
| |
| #define | nv_wait_ne(o, a, m, v) nouveau_timer_wait_ne((o), NV_WAIT_DEFAULT, (a), (m), (v)) |
| |
| #define | nv_wait_cb(o, c, d) nouveau_timer_wait_cb((o), NV_WAIT_DEFAULT, (c), (d)) |
| |
| #define | nouveau_timer_create(p, e, o, d) |
| |
| #define | nouveau_timer_destroy(p) nouveau_subdev_destroy(&(p)->base) |
| |
| #define | nouveau_timer_init(p) nouveau_subdev_init(&(p)->base) |
| |
| #define | nouveau_timer_fini(p, s) nouveau_subdev_fini(&(p)->base, (s)) |
| |
|
| bool | nouveau_timer_wait_eq (void *, u64 nsec, u32 addr, u32 mask, u32 data) |
| |
| bool | nouveau_timer_wait_ne (void *, u64 nsec, u32 addr, u32 mask, u32 data) |
| |
| bool | nouveau_timer_wait_cb (void *, u64 nsec, bool(*func)(void *), void *data) |
| |
| void | nouveau_timer_alarm (void *, u32 nsec, struct nouveau_alarm *) |
| |
| int | nouveau_timer_create_ (struct nouveau_object *, struct nouveau_engine *, struct nouveau_oclass *, int size, void **) |
| |
| #define nouveau_timer_create |
( |
|
p, |
|
|
|
e, |
|
|
|
o, |
|
|
|
d |
|
) |
| |
Value:
Definition at line 38 of file timer.h.
| #define NV_WAIT_DEFAULT 2000000000ULL |