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
bb7ef1ec
Commit
bb7ef1ec
authored
May 19, 2014
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/disp/dp: maintain receiver caps in response to hpd signal
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
b8407c9e
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
68 additions
and
8 deletions
+68
-8
drivers/gpu/drm/nouveau/core/engine/disp/outpdp.c
drivers/gpu/drm/nouveau/core/engine/disp/outpdp.c
+64
-8
drivers/gpu/drm/nouveau/core/engine/disp/outpdp.h
drivers/gpu/drm/nouveau/core/engine/disp/outpdp.h
+4
-0
No files found.
drivers/gpu/drm/nouveau/core/engine/disp/outpdp.c
View file @
bb7ef1ec
...
...
@@ -26,21 +26,73 @@
#include "outpdp.h"
#include "conn.h"
#include "dport.h"
static
int
nvkm_output_dp_
service
(
void
*
data
,
u32
type
,
int
index
)
static
void
nvkm_output_dp_
enable
(
struct
nvkm_output_dp
*
outp
,
bool
present
)
{
struct
nvkm_output_dp
*
outp
=
data
;
DBG
(
"IRQ: %d
\n
"
,
type
);
return
NVKM_EVENT_KEEP
;
struct
nouveau_i2c_port
*
port
=
outp
->
base
.
edid
;
if
(
present
)
{
if
(
!
outp
->
present
)
{
nouveau_i2c
(
port
)
->
acquire_pad
(
port
,
0
);
DBG
(
"aux power -> always
\n
"
);
outp
->
present
=
true
;
}
}
else
{
if
(
outp
->
present
)
{
nouveau_i2c
(
port
)
->
release_pad
(
port
);
DBG
(
"aux power -> demand
\n
"
);
outp
->
present
=
false
;
}
}
}
static
void
nvkm_output_dp_detect
(
struct
nvkm_output_dp
*
outp
)
{
struct
nouveau_i2c_port
*
port
=
outp
->
base
.
edid
;
int
ret
=
nouveau_i2c
(
port
)
->
acquire_pad
(
port
,
0
);
if
(
ret
==
0
)
{
ret
=
nv_rdaux
(
outp
->
base
.
edid
,
DPCD_RC00_DPCD_REV
,
outp
->
dpcd
,
sizeof
(
outp
->
dpcd
));
nvkm_output_dp_enable
(
outp
,
ret
==
0
);
nouveau_i2c
(
port
)
->
release_pad
(
port
);
}
}
static
void
nvkm_output_dp_service_work
(
struct
work_struct
*
work
)
{
struct
nvkm_output_dp
*
outp
=
container_of
(
work
,
typeof
(
*
outp
),
work
);
struct
nouveau_disp
*
disp
=
nouveau_disp
(
outp
);
int
type
=
atomic_xchg
(
&
outp
->
pending
,
0
);
u32
send
=
0
;
if
(
type
&
(
NVKM_I2C_PLUG
|
NVKM_I2C_UNPLUG
))
{
nvkm_output_dp_detect
(
outp
);
if
(
type
&
NVKM_I2C_UNPLUG
)
send
|=
NVKM_HPD_UNPLUG
;
if
(
type
&
NVKM_I2C_PLUG
)
send
|=
NVKM_HPD_PLUG
;
nouveau_event_get
(
outp
->
base
.
conn
->
hpd
.
event
);
}
if
(
type
&
NVKM_I2C_IRQ
)
{
nouveau_event_get
(
outp
->
irq
);
send
|=
NVKM_HPD_IRQ
;
}
nouveau_event_trigger
(
disp
->
hpd
,
send
,
outp
->
base
.
info
.
connector
);
}
static
int
nvkm_output_dp_
hotplug
(
void
*
data
,
u32
type
,
int
index
)
nvkm_output_dp_
service
(
void
*
data
,
u32
type
,
int
index
)
{
struct
nvkm_output_dp
*
outp
=
data
;
DBG
(
"HPD: %d
\n
"
,
type
);
return
NVKM_EVENT_KEEP
;
atomic_or
(
type
,
&
outp
->
pending
);
schedule_work
(
&
outp
->
work
);
return
NVKM_EVENT_DROP
;
}
int
...
...
@@ -48,6 +100,7 @@ _nvkm_output_dp_fini(struct nouveau_object *object, bool suspend)
{
struct
nvkm_output_dp
*
outp
=
(
void
*
)
object
;
nouveau_event_put
(
outp
->
irq
);
nvkm_output_dp_enable
(
outp
,
false
);
return
nvkm_output_fini
(
&
outp
->
base
,
suspend
);
}
...
...
@@ -55,6 +108,7 @@ int
_nvkm_output_dp_init
(
struct
nouveau_object
*
object
)
{
struct
nvkm_output_dp
*
outp
=
(
void
*
)
object
;
nvkm_output_dp_detect
(
outp
);
return
nvkm_output_init
(
&
outp
->
base
);
}
...
...
@@ -113,10 +167,12 @@ nvkm_output_dp_create_(struct nouveau_object *parent,
return
ret
;
}
INIT_WORK
(
&
outp
->
work
,
nvkm_output_dp_service_work
);
/* hotplug detect, replaces gpio-based mechanism with aux events */
ret
=
nouveau_event_new
(
i2c
->
ntfy
,
NVKM_I2C_PLUG
|
NVKM_I2C_UNPLUG
,
outp
->
base
.
edid
->
index
,
nvkm_output_dp_
hotplug
,
outp
,
nvkm_output_dp_
service
,
outp
,
&
outp
->
base
.
conn
->
hpd
.
event
);
if
(
ret
)
{
ERR
(
"error monitoring aux hpd events: %d
\n
"
,
ret
);
...
...
drivers/gpu/drm/nouveau/core/engine/disp/outpdp.h
View file @
bb7ef1ec
...
...
@@ -14,6 +14,10 @@ struct nvkm_output_dp {
struct
nouveau_eventh
*
irq
;
struct
nouveau_eventh
*
hpd
;
struct
work_struct
work
;
atomic_t
pending
;
bool
present
;
u8
dpcd
[
16
];
};
#define nvkm_output_dp_create(p,e,c,b,i,d) \
...
...
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