xref: /linux/drivers/gpu/drm/nouveau/nvkm/engine/fifo/gb202.c (revision b08494a8f7416e5f09907318c5460ad6f6e2a548)
1 /* SPDX-License-Identifier: MIT
2  *
3  * Copyright (c) 2025, NVIDIA CORPORATION. All rights reserved.
4  */
5 #include "priv.h"
6 #include "cgrp.h"
7 #include "chan.h"
8 #include "runl.h"
9 
10 u32
11 gb202_chan_doorbell_handle(struct nvkm_chan *chan)
12 {
13 	return BIT(30) | (chan->cgrp->runl->id << 16) | chan->id;
14 }
15