Displaying 4 results from an estimated 4 matches for "nvkm_falcon_v1_read_dmem".
2016 Dec 06
0
[PATCH 3/8] core: add falcon library functions
...u8 port)
+{
+ struct nvkm_device *device = falcon->subdev->device;
+ u32 base = falcon->addr;
+ int i;
+
+ nvkm_wr32(device, base + 0x1c0 + (port * 16), start | (0x1 << 24));
+ for (i = 0; i < size / 4; i++)
+ nvkm_wr32(device, base + 0x1c4, ((u32 *)data)[i]);
+}
+
+static void
+nvkm_falcon_v1_read_dmem(struct nvkm_falcon *falcon, u32 start, u32 size,
+ u8 port, void *data)
+{
+ struct nvkm_device *device = falcon->subdev->device;
+ u32 base = falcon->addr;
+ int i;
+
+ nvkm_wr32(device, base + 0x1c0 + (port * 16), start | (0x1 << 25));
+ for (i = 0; i < size / 4; i++)
+ ((u3...
2020 Apr 19
1
Error -28
I?m having trouble getting my GTX 1050 Ti working in Debian Sid. This machine is a PowerMac G5, 2.3 GHz Dual Core. I?m using a Quadro FX 4500 as well and it seems to work as expected. I?ve installed the firmware-linux-nonfree package, which seems to have the required firmware for the GTX 1050 Ti. In dmesg I see this error after some lines which mention ?direct-loading firmware?:
nouveau
2016 Dec 06
9
[PATCH 0/8] Falcon library
This was the first step of the secure boot refactoring - as Ben asked for some
fixes, I now submit it as its own series to make it easier to review (and also
because rebasing secure boot on top of this takes time and I don't want to do
it until this is validated!).
This series attempts to factorize the duplicate falcon-related code into a
single library, using the existing nvkm_falcon
2016 Dec 13
15
[PATCH v2 0/15] Falcon library
This was the first step of the secure boot refactoring - as Ben asked for some
fixes, I now submit it as its own series to make it easier to review (and also
because rebasing secure boot on top of this takes time and I don't want to do
it until this is validated!).
This series attempts to factorize the duplicate falcon-related code into a
single library, using the existing nvkm_falcon