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
819f3fb7
Commit
819f3fb7
authored
Sep 14, 2010
by
Chris Wilson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/i915/sdvo: Propagate i2c error from switching DDC control bus.
Signed-off-by:
Chris Wilson
<
chris@chris-wilson.co.uk
>
parent
9d1a903d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
9 deletions
+18
-9
drivers/gpu/drm/i915/intel_sdvo.c
drivers/gpu/drm/i915/intel_sdvo.c
+18
-9
No files found.
drivers/gpu/drm/i915/intel_sdvo.c
View file @
819f3fb7
...
...
@@ -530,7 +530,7 @@ static int intel_sdvo_get_pixel_multiplier(struct drm_display_mode *mode)
* another I2C transaction after issuing the DDC bus switch, it will be
* switched to the internal SDVO register.
*/
static
void
intel_sdvo_set_control_bus_switch
(
struct
intel_sdvo
*
intel_sdvo
,
static
int
intel_sdvo_set_control_bus_switch
(
struct
intel_sdvo
*
intel_sdvo
,
u8
target
)
{
u8
out_buf
[
2
],
cmd_buf
[
2
],
ret_value
[
2
],
ret
;
...
...
@@ -559,7 +559,8 @@ static void intel_sdvo_set_control_bus_switch(struct intel_sdvo *intel_sdvo,
intel_sdvo_debug_write
(
intel_sdvo
,
SDVO_CMD_SET_CONTROL_BUS_SWITCH
,
&
target
,
1
);
/* write the DDC switch command argument */
intel_sdvo_write_byte
(
intel_sdvo
,
SDVO_I2C_ARG_0
,
target
);
if
(
!
intel_sdvo_write_byte
(
intel_sdvo
,
SDVO_I2C_ARG_0
,
target
))
return
-
EIO
;
out_buf
[
0
]
=
SDVO_I2C_OPCODE
;
out_buf
[
1
]
=
SDVO_CMD_SET_CONTROL_BUS_SWITCH
;
...
...
@@ -569,17 +570,20 @@ static void intel_sdvo_set_control_bus_switch(struct intel_sdvo *intel_sdvo,
ret_value
[
1
]
=
0
;
ret
=
i2c_transfer
(
intel_sdvo
->
base
.
i2c_bus
,
msgs
,
3
);
if
(
ret
<
0
)
return
ret
;
if
(
ret
!=
3
)
{
/* failure in I2C transfer */
DRM_DEBUG_KMS
(
"I2c transfer returned %d
\n
"
,
ret
);
return
;
return
-
EIO
;
}
if
(
ret_value
[
0
]
!=
SDVO_CMD_STATUS_SUCCESS
)
{
DRM_DEBUG_KMS
(
"DDC switch command returns response %d
\n
"
,
ret_value
[
0
]);
return
;
return
-
EIO
;
}
return
;
return
0
;
}
static
bool
intel_sdvo_set_value
(
struct
intel_sdvo
*
intel_sdvo
,
u8
cmd
,
const
void
*
data
,
int
len
)
...
...
@@ -1982,13 +1986,18 @@ static int intel_sdvo_master_xfer(struct i2c_adapter *i2c_adap,
{
struct
intel_sdvo
*
intel_sdvo
;
const
struct
i2c_algorithm
*
algo
;
int
ret
;
intel_sdvo
=
container_of
(
i2c_adap
->
algo_data
,
struct
intel_sdvo
,
base
);
algo
=
intel_sdvo
->
base
.
i2c_bus
->
algo
;
intel_sdvo_set_control_bus_switch
(
intel_sdvo
,
intel_sdvo
->
ddc_bus
);
ret
=
intel_sdvo_set_control_bus_switch
(
intel_sdvo
,
intel_sdvo
->
ddc_bus
);
if
(
ret
)
return
ret
;
return
algo
->
master_xfer
(
i2c_adap
,
msgs
,
num
);
}
...
...
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