search for: a626ce378f04

Displaying 4 results from an estimated 4 matches for "a626ce378f04".

2016 Jan 21
2
[PATCH 1/5] core: add firmware handling functions
...76 insertions(+) > create mode 100644 drm/nouveau/include/nvkm/core/firmware.h > create mode 100644 drm/nouveau/nvkm/core/firmware.c > > diff --git a/drm/nouveau/include/nvkm/core/firmware.h b/drm/nouveau/include/nvkm/core/firmware.h > new file mode 100644 > index 000000000000..a626ce378f04 > --- /dev/null > +++ b/drm/nouveau/include/nvkm/core/firmware.h > @@ -0,0 +1,11 @@ > +#ifndef __NVKM_FIRMWARE_H__ > +#define __NVKM_FIRMWARE_H__ > + > +#include <core/device.h> > + > +int nvkm_firmware_get(struct nvkm_device *device, const char *fwname, > +...
2016 Jan 18
0
[PATCH 1/5] core: add firmware handling functions
...+++++++++++ 3 files changed, 76 insertions(+) create mode 100644 drm/nouveau/include/nvkm/core/firmware.h create mode 100644 drm/nouveau/nvkm/core/firmware.c diff --git a/drm/nouveau/include/nvkm/core/firmware.h b/drm/nouveau/include/nvkm/core/firmware.h new file mode 100644 index 000000000000..a626ce378f04 --- /dev/null +++ b/drm/nouveau/include/nvkm/core/firmware.h @@ -0,0 +1,11 @@ +#ifndef __NVKM_FIRMWARE_H__ +#define __NVKM_FIRMWARE_H__ + +#include <core/device.h> + +int nvkm_firmware_get(struct nvkm_device *device, const char *fwname, + const struct firmware **fw); + +void nvkm_firmw...
2016 Jan 25
0
[PATCH 1/5] core: add firmware handling functions
...t; create mode 100644 drm/nouveau/include/nvkm/core/firmware.h >> create mode 100644 drm/nouveau/nvkm/core/firmware.c >> >> diff --git a/drm/nouveau/include/nvkm/core/firmware.h b/drm/nouveau/include/nvkm/core/firmware.h >> new file mode 100644 >> index 000000000000..a626ce378f04 >> --- /dev/null >> +++ b/drm/nouveau/include/nvkm/core/firmware.h >> @@ -0,0 +1,11 @@ >> +#ifndef __NVKM_FIRMWARE_H__ >> +#define __NVKM_FIRMWARE_H__ >> + >> +#include <core/device.h> >> + >> +int nvkm_firmware_get(struct nvkm_device *dev...
2016 Jan 18
8
[PATCH 0/5] nouveau: unified firmware loading functions
This patchset centralizes the firmware-loading procedure to one set of functions instead of having each engine load its firmware as it pleases. This helps ensure that all firmware comes from the same place, namely nvidia/<chip>/. This changes where the firmware is fetched from for falcon/xtensa/bios, but these locations never seemed to have been official anyway. Also for most (all?) chips