search for: g94gl

Displaying 6 results from an estimated 6 matches for "g94gl".

Did you mean: g84gl
2016 Jul 06
2
Nouveau fails to initialize G94GL / Quadro-FX1800 on aarch64 board
Hi Ilia, > Very odd. Perhaps you're trying to run X as non-root and don't have > proper permissions on /dev/dri/card0? It seems like something in > https://cgit.freedesktop.org/nouveau/xf86-video-nouveau/tree/src/nv_driver.c#n400 Thanks for the pointer, I'll try to dig a bit deeper there. I forgot to mention that I am trying to run X inside an debian unstable chroot (the
2016 Jul 07
0
Nouveau fails to initialize G94GL / Quadro-FX1800 on aarch64 board
Hi, >> Very odd. Perhaps you're trying to run X as non-root and don't have >> proper permissions on /dev/dri/card0? It seems like something in >> https://cgit.freedesktop.org/nouveau/xf86-video-nouveau/tree/src/nv_driver.c#n400 The call to HasKMS came from NVPlatformProbe - NVPlatformProbe succeeds and returns true. However, it seems Xorg aborts before NVPciProbe is
2016 Jul 07
2
Nouveau fails to initialize G94GL / Quadro-FX1800 on aarch64 board
Hi again, Some further digging revealed that NVPlatformProbe is called with the flag PLATFORM_PROBE_GPU_SCREEN, so the flag XF86_ALLOCATE_GPU_SCREEN is passed to xf86AllocateScreen. After xf86AllocateScreen I end up with xf86GPUScreens == 1 and xf86NumScreens == 0. The xf86GPUScreens seems to be ignored by all the following code, only xf86NumScreens is evaluated afterwards in xf86BusConfig:
2016 Jul 07
0
Nouveau fails to initialize G94GL / Quadro-FX1800 on aarch64 board
It's surprising that it's coming up as a platform device and not a pci device. Perhaps xorg was built without pci support? (Not sure if that's even possible.) It should definitely not be coming up as a GPU screen, but as a regular screen. -ilia On Thu, Jul 7, 2016 at 1:15 PM, Clemens Eisserer <linuxhippy at gmail.com> wrote: > Hi again, > > Some further digging
2016 Jul 06
0
Nouveau fails to initialize G94GL / Quadro-FX1800 on aarch64 board
...though. HasKMS is returning successfully (since no error is printing and you see the interface version). Will require you to do some debugging, I'm afraid. -ilia On Wed, Jul 6, 2016 at 1:37 PM, Clemens Eisserer <linuxhippy at gmail.com> wrote: > Hi, > > I am trying to use a G94GL based card (Quadro FX1800) on an > arm64/aarch64 based board. > As the board is running linux-4.1.8, I had to apply the following > patches to get the kernel module / drm working: > https://lkml.org/lkml/2015/5/15/83 > https://lists.freedesktop.org/archives/dri-devel/2015-July/085449...
2016 Jul 06
2
Nouveau fails to initialize G94GL / Quadro-FX1800 on aarch64 board
Hi, I am trying to use a G94GL based card (Quadro FX1800) on an arm64/aarch64 based board. As the board is running linux-4.1.8, I had to apply the following patches to get the kernel module / drm working: https://lkml.org/lkml/2015/5/15/83 https://lists.freedesktop.org/archives/dri-devel/2015-July/085449.html So far everything...