Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
923bc416
Commit
923bc416
authored
Nov 08, 2015
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/nvif: split out device interface definitions
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
845f2725
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
50 additions
and
49 deletions
+50
-49
drivers/gpu/drm/nouveau/include/nvif/cl0080.h
drivers/gpu/drm/nouveau/include/nvif/cl0080.h
+45
-0
drivers/gpu/drm/nouveau/include/nvif/class.h
drivers/gpu/drm/nouveau/include/nvif/class.h
+1
-48
drivers/gpu/drm/nouveau/include/nvif/device.h
drivers/gpu/drm/nouveau/include/nvif/device.h
+1
-1
drivers/gpu/drm/nouveau/nouveau_connector.c
drivers/gpu/drm/nouveau/nouveau_connector.c
+1
-0
drivers/gpu/drm/nouveau/nouveau_drm.c
drivers/gpu/drm/nouveau/nouveau_drm.c
+1
-0
drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
+1
-0
No files found.
drivers/gpu/drm/nouveau/include/nvif/cl0080.h
0 → 100644
View file @
923bc416
#ifndef __NVIF_CL0080_H__
#define __NVIF_CL0080_H__
struct
nv_device_v0
{
__u8
version
;
__u8
pad01
[
7
];
__u64
device
;
/* device identifier, ~0 for client default */
};
#define NV_DEVICE_V0_INFO 0x00
#define NV_DEVICE_V0_TIME 0x01
struct
nv_device_info_v0
{
__u8
version
;
#define NV_DEVICE_INFO_V0_IGP 0x00
#define NV_DEVICE_INFO_V0_PCI 0x01
#define NV_DEVICE_INFO_V0_AGP 0x02
#define NV_DEVICE_INFO_V0_PCIE 0x03
#define NV_DEVICE_INFO_V0_SOC 0x04
__u8
platform
;
__u16
chipset
;
/* from NV_PMC_BOOT_0 */
__u8
revision
;
/* from NV_PMC_BOOT_0 */
#define NV_DEVICE_INFO_V0_TNT 0x01
#define NV_DEVICE_INFO_V0_CELSIUS 0x02
#define NV_DEVICE_INFO_V0_KELVIN 0x03
#define NV_DEVICE_INFO_V0_RANKINE 0x04
#define NV_DEVICE_INFO_V0_CURIE 0x05
#define NV_DEVICE_INFO_V0_TESLA 0x06
#define NV_DEVICE_INFO_V0_FERMI 0x07
#define NV_DEVICE_INFO_V0_KEPLER 0x08
#define NV_DEVICE_INFO_V0_MAXWELL 0x09
__u8
family
;
__u8
pad06
[
2
];
__u64
ram_size
;
__u64
ram_user
;
char
chip
[
16
];
char
name
[
64
];
};
struct
nv_device_time_v0
{
__u8
version
;
__u8
pad01
[
7
];
__u64
time
;
};
#endif
drivers/gpu/drm/nouveau/include/nvif/class.h
View file @
923bc416
...
...
@@ -11,7 +11,7 @@
#define NVIF_CLASS_SW_GF100
/* if0005.h */
-7
/* the below match nvidia-assigned (either in hw, or sw) class numbers */
#define NV_DEVICE
0x00000080
#define NV_DEVICE
/* cl0080.h */
0x00000080
#define NV_DMA_FROM_MEMORY
/* cl0002.h */
0x00000002
#define NV_DMA_TO_MEMORY
/* cl0002.h */
0x00000003
...
...
@@ -151,51 +151,4 @@ struct nv_client_devlist_v0 {
__u8
pad02
[
6
];
__u64
device
[];
};
/*******************************************************************************
* device
******************************************************************************/
struct
nv_device_v0
{
__u8
version
;
__u8
pad01
[
7
];
__u64
device
;
/* device identifier, ~0 for client default */
};
#define NV_DEVICE_V0_INFO 0x00
#define NV_DEVICE_V0_TIME 0x01
struct
nv_device_info_v0
{
__u8
version
;
#define NV_DEVICE_INFO_V0_IGP 0x00
#define NV_DEVICE_INFO_V0_PCI 0x01
#define NV_DEVICE_INFO_V0_AGP 0x02
#define NV_DEVICE_INFO_V0_PCIE 0x03
#define NV_DEVICE_INFO_V0_SOC 0x04
__u8
platform
;
__u16
chipset
;
/* from NV_PMC_BOOT_0 */
__u8
revision
;
/* from NV_PMC_BOOT_0 */
#define NV_DEVICE_INFO_V0_TNT 0x01
#define NV_DEVICE_INFO_V0_CELSIUS 0x02
#define NV_DEVICE_INFO_V0_KELVIN 0x03
#define NV_DEVICE_INFO_V0_RANKINE 0x04
#define NV_DEVICE_INFO_V0_CURIE 0x05
#define NV_DEVICE_INFO_V0_TESLA 0x06
#define NV_DEVICE_INFO_V0_FERMI 0x07
#define NV_DEVICE_INFO_V0_KEPLER 0x08
#define NV_DEVICE_INFO_V0_MAXWELL 0x09
__u8
family
;
__u8
pad06
[
2
];
__u64
ram_size
;
__u64
ram_user
;
char
chip
[
16
];
char
name
[
64
];
};
struct
nv_device_time_v0
{
__u8
version
;
__u8
pad01
[
7
];
__u64
time
;
};
#endif
drivers/gpu/drm/nouveau/include/nvif/device.h
View file @
923bc416
...
...
@@ -2,7 +2,7 @@
#define __NVIF_DEVICE_H__
#include <nvif/object.h>
#include <nvif/cl
ass
.h>
#include <nvif/cl
0080
.h>
struct
nvif_device
{
struct
nvif_object
object
;
...
...
drivers/gpu/drm/nouveau/nouveau_connector.c
View file @
923bc416
...
...
@@ -42,6 +42,7 @@
#include "nouveau_encoder.h"
#include "nouveau_crtc.h"
#include <nvif/class.h>
#include <nvif/cl0046.h>
#include <nvif/event.h>
...
...
drivers/gpu/drm/nouveau/nouveau_drm.c
View file @
923bc416
...
...
@@ -37,6 +37,7 @@
#include <core/pci.h>
#include <core/tegra.h>
#include <nvif/class.h>
#include <nvif/cl0002.h>
#include <nvif/cla06f.h>
#include <nvif/if0004.h>
...
...
drivers/gpu/drm/nouveau/nvkm/engine/device/user.c
View file @
923bc416
...
...
@@ -31,6 +31,7 @@
#include <subdev/timer.h>
#include <nvif/class.h>
#include <nvif/cl0080.h>
#include <nvif/unpack.h>
struct
nvkm_udevice
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment