blob: b469e8afeb0b23024ffa5a98dc8ca83384a03c3d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* 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;
}
|