Commit d37766e5 authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/bus: switch to instanced constructor

Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
Reviewed-by: default avatarLyude Paul <lyude@redhat.com>
parent e07f50d3
...@@ -60,7 +60,6 @@ struct nvkm_device { ...@@ -60,7 +60,6 @@ struct nvkm_device {
struct notifier_block nb; struct notifier_block nb;
} acpi; } acpi;
struct nvkm_bus *bus;
struct nvkm_clk *clk; struct nvkm_clk *clk;
struct nvkm_devinit *devinit; struct nvkm_devinit *devinit;
struct nvkm_fault *fault; struct nvkm_fault *fault;
...@@ -145,7 +144,6 @@ struct nvkm_device_chip { ...@@ -145,7 +144,6 @@ struct nvkm_device_chip {
#include <core/layout.h> #include <core/layout.h>
#undef NVKM_LAYOUT_INST #undef NVKM_LAYOUT_INST
#undef NVKM_LAYOUT_ONCE #undef NVKM_LAYOUT_ONCE
int (*bus )(struct nvkm_device *, int idx, struct nvkm_bus **);
int (*clk )(struct nvkm_device *, int idx, struct nvkm_clk **); int (*clk )(struct nvkm_device *, int idx, struct nvkm_clk **);
int (*devinit )(struct nvkm_device *, int idx, struct nvkm_devinit **); int (*devinit )(struct nvkm_device *, int idx, struct nvkm_devinit **);
int (*fault )(struct nvkm_device *, int idx, struct nvkm_fault **); int (*fault )(struct nvkm_device *, int idx, struct nvkm_fault **);
......
/* SPDX-License-Identifier: MIT */ /* SPDX-License-Identifier: MIT */
NVKM_LAYOUT_ONCE(NVKM_SUBDEV_VBIOS , struct nvkm_bios , bios) NVKM_LAYOUT_ONCE(NVKM_SUBDEV_VBIOS , struct nvkm_bios , bios)
NVKM_LAYOUT_ONCE(NVKM_SUBDEV_BUS , struct nvkm_bus , bus)
NVKM_LAYOUT_ONCE(NVKM_SUBDEV_BAR , struct nvkm_bar , bar) NVKM_LAYOUT_ONCE(NVKM_SUBDEV_BAR , struct nvkm_bar , bar)
NVKM_LAYOUT_ONCE(NVKM_SUBDEV_ACR , struct nvkm_acr , acr) NVKM_LAYOUT_ONCE(NVKM_SUBDEV_ACR , struct nvkm_acr , acr)
...@@ -18,9 +18,9 @@ void nvkm_hwsq_wait(struct nvkm_hwsq *, u8 flag, u8 data); ...@@ -18,9 +18,9 @@ void nvkm_hwsq_wait(struct nvkm_hwsq *, u8 flag, u8 data);
void nvkm_hwsq_wait_vblank(struct nvkm_hwsq *); void nvkm_hwsq_wait_vblank(struct nvkm_hwsq *);
void nvkm_hwsq_nsec(struct nvkm_hwsq *, u32 nsec); void nvkm_hwsq_nsec(struct nvkm_hwsq *, u32 nsec);
int nv04_bus_new(struct nvkm_device *, int, struct nvkm_bus **); int nv04_bus_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_bus **);
int nv31_bus_new(struct nvkm_device *, int, struct nvkm_bus **); int nv31_bus_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_bus **);
int nv50_bus_new(struct nvkm_device *, int, struct nvkm_bus **); int nv50_bus_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_bus **);
int g94_bus_new(struct nvkm_device *, int, struct nvkm_bus **); int g94_bus_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_bus **);
int gf100_bus_new(struct nvkm_device *, int, struct nvkm_bus **); int gf100_bus_new(struct nvkm_device *, enum nvkm_subdev_type, int inst, struct nvkm_bus **);
#endif #endif
...@@ -33,7 +33,6 @@ nvkm_subdev_type[NVKM_SUBDEV_NR] = { ...@@ -33,7 +33,6 @@ nvkm_subdev_type[NVKM_SUBDEV_NR] = {
#include <core/layout.h> #include <core/layout.h>
#undef NVKM_LAYOUT_ONCE #undef NVKM_LAYOUT_ONCE
#undef NVKM_LAYOUT_INST #undef NVKM_LAYOUT_INST
[NVKM_SUBDEV_BUS ] = "bus",
[NVKM_SUBDEV_CLK ] = "clk", [NVKM_SUBDEV_CLK ] = "clk",
[NVKM_SUBDEV_DEVINIT ] = "devinit", [NVKM_SUBDEV_DEVINIT ] = "devinit",
[NVKM_SUBDEV_FAULT ] = "fault", [NVKM_SUBDEV_FAULT ] = "fault",
......
...@@ -53,12 +53,12 @@ nvkm_bus = { ...@@ -53,12 +53,12 @@ nvkm_bus = {
int int
nvkm_bus_new_(const struct nvkm_bus_func *func, struct nvkm_device *device, nvkm_bus_new_(const struct nvkm_bus_func *func, struct nvkm_device *device,
int index, struct nvkm_bus **pbus) enum nvkm_subdev_type type, int inst, struct nvkm_bus **pbus)
{ {
struct nvkm_bus *bus; struct nvkm_bus *bus;
if (!(bus = *pbus = kzalloc(sizeof(*bus), GFP_KERNEL))) if (!(bus = *pbus = kzalloc(sizeof(*bus), GFP_KERNEL)))
return -ENOMEM; return -ENOMEM;
nvkm_subdev_ctor(&nvkm_bus, device, index, &bus->subdev); nvkm_subdev_ctor(&nvkm_bus, device, type, inst, &bus->subdev);
bus->func = func; bus->func = func;
return 0; return 0;
} }
...@@ -58,7 +58,8 @@ g94_bus = { ...@@ -58,7 +58,8 @@ g94_bus = {
}; };
int int
g94_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus) g94_bus_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst,
struct nvkm_bus **pbus)
{ {
return nvkm_bus_new_(&g94_bus, device, index, pbus); return nvkm_bus_new_(&g94_bus, device, type, inst, pbus);
} }
...@@ -69,7 +69,8 @@ gf100_bus = { ...@@ -69,7 +69,8 @@ gf100_bus = {
}; };
int int
gf100_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus) gf100_bus_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst,
struct nvkm_bus **pbus)
{ {
return nvkm_bus_new_(&gf100_bus, device, index, pbus); return nvkm_bus_new_(&gf100_bus, device, type, inst, pbus);
} }
...@@ -68,7 +68,8 @@ nv04_bus = { ...@@ -68,7 +68,8 @@ nv04_bus = {
}; };
int int
nv04_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus) nv04_bus_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst,
struct nvkm_bus **pbus)
{ {
return nvkm_bus_new_(&nv04_bus, device, index, pbus); return nvkm_bus_new_(&nv04_bus, device, type, inst, pbus);
} }
...@@ -82,7 +82,8 @@ nv31_bus = { ...@@ -82,7 +82,8 @@ nv31_bus = {
}; };
int int
nv31_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus) nv31_bus_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst,
struct nvkm_bus **pbus)
{ {
return nvkm_bus_new_(&nv31_bus, device, index, pbus); return nvkm_bus_new_(&nv31_bus, device, type, inst, pbus);
} }
...@@ -99,7 +99,8 @@ nv50_bus = { ...@@ -99,7 +99,8 @@ nv50_bus = {
}; };
int int
nv50_bus_new(struct nvkm_device *device, int index, struct nvkm_bus **pbus) nv50_bus_new(struct nvkm_device *device, enum nvkm_subdev_type type, int inst,
struct nvkm_bus **pbus)
{ {
return nvkm_bus_new_(&nv50_bus, device, index, pbus); return nvkm_bus_new_(&nv50_bus, device, type, inst, pbus);
} }
...@@ -11,7 +11,7 @@ struct nvkm_bus_func { ...@@ -11,7 +11,7 @@ struct nvkm_bus_func {
u32 hwsq_size; u32 hwsq_size;
}; };
int nvkm_bus_new_(const struct nvkm_bus_func *, struct nvkm_device *, int, int nvkm_bus_new_(const struct nvkm_bus_func *, struct nvkm_device *, enum nvkm_subdev_type, int,
struct nvkm_bus **); struct nvkm_bus **);
void nv50_bus_init(struct nvkm_bus *); void nv50_bus_init(struct nvkm_bus *);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment