mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
15 lines
294 B
C
15 lines
294 B
C
![]() |
/* SPDX-License-Identifier: MIT
|
||
|
*
|
||
|
* Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.
|
||
|
*/
|
||
|
#include "priv.h"
|
||
|
#include "cgrp.h"
|
||
|
#include "chan.h"
|
||
|
#include "runl.h"
|
||
|
|
||
|
u32
|
||
|
gb202_chan_doorbell_handle(struct nvkm_chan *chan)
|
||
|
{
|
||
|
return BIT(30) | (chan->cgrp->runl->id << 16) | chan->id;
|
||
|
}
|