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
Kirill Smelkov
linux
Commits
e781dc8f
Commit
e781dc8f
authored
Aug 20, 2015
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/device: tidy ctor/dtor interfaces
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
76ecea5b
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
41 deletions
+40
-41
drivers/gpu/drm/nouveau/include/nvkm/core/device.h
drivers/gpu/drm/nouveau/include/nvkm/core/device.h
+4
-6
drivers/gpu/drm/nouveau/nouveau_drm.c
drivers/gpu/drm/nouveau/nouveau_drm.c
+11
-11
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
+25
-24
No files found.
drivers/gpu/drm/nouveau/include/nvkm/core/device.h
View file @
e781dc8f
...
...
@@ -210,12 +210,10 @@ enum nv_bus_type {
NVKM_BUS_PLATFORM
,
};
#define nvkm_device_create(p,t,n,s,c,d,u) \
nvkm_device_create_((void *)(p), (t), (n), (s), (c), (d), \
sizeof(**u), (void **)u)
int
nvkm_device_create_
(
void
*
,
enum
nv_bus_type
type
,
u64
name
,
int
nvkm_device_new
(
void
*
,
enum
nv_bus_type
type
,
u64
name
,
const
char
*
sname
,
const
char
*
cfg
,
const
char
*
dbg
,
int
,
void
**
);
struct
nvkm_device
**
);
void
nvkm_device_del
(
struct
nvkm_device
**
);
/* device logging */
#define nvdev_printk_(d,l,p,f,a...) do { \
...
...
drivers/gpu/drm/nouveau/nouveau_drm.c
View file @
e781dc8f
...
...
@@ -325,9 +325,9 @@ static int nouveau_drm_probe(struct pci_dev *pdev,
remove_conflicting_framebuffers
(
aper
,
"nouveaufb"
,
boot
);
kfree
(
aper
);
ret
=
nvkm_device_
create
(
pdev
,
NVKM_BUS_PCI
,
nouveau_pci_name
(
pdev
),
pci_name
(
pdev
)
,
nouveau_config
,
nouveau_debug
,
&
device
);
ret
=
nvkm_device_
new
(
pdev
,
NVKM_BUS_PCI
,
nouveau_pci_name
(
pdev
)
,
pci_name
(
pdev
),
nouveau_config
,
nouveau_debug
,
&
device
);
if
(
ret
)
return
ret
;
...
...
@@ -335,7 +335,7 @@ static int nouveau_drm_probe(struct pci_dev *pdev,
ret
=
drm_get_pci_dev
(
pdev
,
pent
,
&
driver_pci
);
if
(
ret
)
{
nvkm_
object_ref
(
NULL
,
(
struct
nvkm_object
**
)
&
device
);
nvkm_
device_del
(
&
device
);
return
ret
;
}
...
...
@@ -537,7 +537,7 @@ nouveau_drm_device_remove(struct drm_device *dev)
device
=
client
->
device
;
drm_put_dev
(
dev
);
nvkm_
object_ref
(
NULL
,
(
struct
nvkm_object
**
)
&
device
);
nvkm_
device_del
(
&
device
);
}
static
void
...
...
@@ -1062,12 +1062,12 @@ nouveau_platform_device_create(struct platform_device *pdev,
struct
drm_device
*
drm
;
int
err
;
err
=
nvkm_device_
create
(
pdev
,
NVKM_BUS_PLATFORM
,
err
=
nvkm_device_
new
(
pdev
,
NVKM_BUS_PLATFORM
,
nouveau_platform_name
(
pdev
),
dev_name
(
&
pdev
->
dev
),
nouveau_config
,
nouveau_debug
,
pdevice
);
if
(
err
)
return
ERR_PTR
(
err
)
;
goto
err_free
;
drm
=
drm_dev_alloc
(
&
driver_platform
,
&
pdev
->
dev
);
if
(
!
drm
)
{
...
...
@@ -1085,7 +1085,7 @@ nouveau_platform_device_create(struct platform_device *pdev,
return
drm
;
err_free:
nvkm_
object_ref
(
NULL
,
(
struct
nvkm_object
**
)
pdevice
);
nvkm_
device_del
(
pdevice
);
return
ERR_PTR
(
err
);
}
...
...
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
View file @
e781dc8f
...
...
@@ -666,23 +666,6 @@ nvkm_device_init(struct nvkm_object *object)
return
ret
;
}
static
void
nvkm_device_dtor
(
struct
nvkm_object
*
object
)
{
struct
nvkm_device
*
device
=
(
void
*
)
object
;
nvkm_event_fini
(
&
device
->
event
);
mutex_lock
(
&
nv_devices_mutex
);
list_del
(
&
device
->
head
);
mutex_unlock
(
&
nv_devices_mutex
);
if
(
device
->
pri
)
iounmap
(
device
->
pri
);
nvkm_engine_destroy
(
&
device
->
engine
);
}
resource_size_t
nv_device_resource_start
(
struct
nvkm_device
*
device
,
unsigned
int
bar
)
{
...
...
@@ -728,16 +711,34 @@ static struct nvkm_oclass
nvkm_device_oclass
=
{
.
handle
=
NV_ENGINE
(
DEVICE
,
0x00
),
.
ofuncs
=
&
(
struct
nvkm_ofuncs
)
{
.
dtor
=
nvkm_device_dtor
,
.
init
=
nvkm_device_init
,
.
fini
=
nvkm_device_fini
,
},
};
void
nvkm_device_del
(
struct
nvkm_device
**
pdevice
)
{
struct
nvkm_device
*
device
=
*
pdevice
;
if
(
device
)
{
nvkm_event_fini
(
&
device
->
event
);
mutex_lock
(
&
nv_devices_mutex
);
list_del
(
&
device
->
head
);
mutex_unlock
(
&
nv_devices_mutex
);
if
(
device
->
pri
)
iounmap
(
device
->
pri
);
nvkm_engine_destroy
(
&
device
->
engine
);
*
pdevice
=
NULL
;
}
}
int
nvkm_device_
create_
(
void
*
dev
,
enum
nv_bus_type
type
,
u64
name
,
nvkm_device_
new
(
void
*
dev
,
enum
nv_bus_type
type
,
u64
name
,
const
char
*
sname
,
const
char
*
cfg
,
const
char
*
dbg
,
int
length
,
void
**
pobject
)
struct
nvkm_device
**
pdevice
)
{
struct
nvkm_device
*
device
;
int
ret
=
-
EEXIST
;
...
...
@@ -748,9 +749,9 @@ nvkm_device_create_(void *dev, enum nv_bus_type type, u64 name,
goto
done
;
}
ret
=
nvkm_engine_create
_
(
NULL
,
NULL
,
&
nvkm_device_oclass
,
true
,
"DEVICE"
,
"device"
,
length
,
pobject
);
device
=
*
pobject
;
ret
=
nvkm_engine_create
(
NULL
,
NULL
,
&
nvkm_device_oclass
,
true
,
"DEVICE"
,
"device"
,
&
device
);
*
pdevice
=
device
;
if
(
ret
)
goto
done
;
...
...
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