]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blame - drivers/gpu/drm/nouveau/nvkm/subdev/bus/priv.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-jammy-kernel.git] / drivers / gpu / drm / nouveau / nvkm / subdev / bus / priv.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
bb23f9d7
BS
2#ifndef __NVKM_BUS_PRIV_H__
3#define __NVKM_BUS_PRIV_H__
4#define nvkm_bus(p) container_of((p), struct nvkm_bus, subdev)
5#include <subdev/bus.h>
6
7struct nvkm_bus_func {
8 void (*init)(struct nvkm_bus *);
9 void (*intr)(struct nvkm_bus *);
10 int (*hwsq_exec)(struct nvkm_bus *, u32 *, u32);
11 u32 hwsq_size;
12};
13
14int nvkm_bus_new_(const struct nvkm_bus_func *, struct nvkm_device *, int,
15 struct nvkm_bus **);
16
17void nv50_bus_init(struct nvkm_bus *);
18void nv50_bus_intr(struct nvkm_bus *);
19#endif