drm/nouveau/pbus: add a PBUS subdev that hands IRQs to the right subdevs
We are going to use PTHERM's IRQs for thermal monitoring but we need to route them first. On nv31-50, PBUS's IRQ line is shared with GPIOs IRQs. It seems like nv10-31 GPIO interruptions aren't well handled. I kept the original behaviour but it is wrong and may lead to an IRQ storm. Since we enable all PBUS IRQs, we need a way to avoid being stormed if we don't handle them. The solution I used was to mask the IRQs that have not been handled. This will also print one message in the logs to let us know. v2: drop the shared intr handler because of was racy v3: style fixes v4: drop a useless construct in the chipset-dependent INTR v5: add BUS to the disable mask v6 (Ben Skeggs): - general tidy to match the rest of the driver's style - nva3->nvc0, nva3 can be serviced just fine with nv50.c, rnndb even notes that the THERM_ALARM bit got left in the hw until fermi anyway.. so, it's not going to conflict - removed the peephole and user stuff, for the moment.. will handle them later if we find a good reason to actually care.. - limited INTR_EN to just what we can handle for now, mostly to prevent spam of unknown status bits (seen on at least nv4x) Signed-off-by:Ben Skeggs <bskeggs@redhat.com> Signed-off-by:
Martin Peres <martin.peres@labri.fr>
Showing
- drivers/gpu/drm/nouveau/Makefile 4 additions, 0 deletionsdrivers/gpu/drm/nouveau/Makefile
- drivers/gpu/drm/nouveau/core/include/core/device.h 1 addition, 0 deletionsdrivers/gpu/drm/nouveau/core/include/core/device.h
- drivers/gpu/drm/nouveau/core/include/subdev/bus.h 41 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/include/subdev/bus.h
- drivers/gpu/drm/nouveau/core/subdev/bus/nv04.c 95 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/bus/nv04.c
- drivers/gpu/drm/nouveau/core/subdev/bus/nv31.c 106 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/bus/nv31.c
- drivers/gpu/drm/nouveau/core/subdev/bus/nv50.c 99 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/bus/nv50.c
- drivers/gpu/drm/nouveau/core/subdev/bus/nvc0.c 96 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/bus/nvc0.c
- drivers/gpu/drm/nouveau/core/subdev/device/base.c 1 addition, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/base.c
- drivers/gpu/drm/nouveau/core/subdev/device/nv04.c 3 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/nv04.c
- drivers/gpu/drm/nouveau/core/subdev/device/nv10.c 9 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/nv10.c
- drivers/gpu/drm/nouveau/core/subdev/device/nv20.c 5 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/nv20.c
- drivers/gpu/drm/nouveau/core/subdev/device/nv30.c 6 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/nv30.c
- drivers/gpu/drm/nouveau/core/subdev/device/nv40.c 18 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/nv40.c
- drivers/gpu/drm/nouveau/core/subdev/device/nv50.c 15 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/nv50.c
- drivers/gpu/drm/nouveau/core/subdev/device/nvc0.c 9 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/nvc0.c
- drivers/gpu/drm/nouveau/core/subdev/device/nve0.c 4 additions, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/device/nve0.c
- drivers/gpu/drm/nouveau/core/subdev/gpio/nv10.c 0 additions, 3 deletionsdrivers/gpu/drm/nouveau/core/subdev/gpio/nv10.c
- drivers/gpu/drm/nouveau/core/subdev/mc/nv04.c 1 addition, 1 deletiondrivers/gpu/drm/nouveau/core/subdev/mc/nv04.c
- drivers/gpu/drm/nouveau/core/subdev/mc/nv50.c 1 addition, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/mc/nv50.c
- drivers/gpu/drm/nouveau/core/subdev/mc/nv98.c 1 addition, 0 deletionsdrivers/gpu/drm/nouveau/core/subdev/mc/nv98.c
Loading
Please register or sign in to comment