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
28ec70f7
Commit
28ec70f7
authored
Apr 15, 2013
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/bios: suppress some parser errors when dry-running scripts
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
3f196a04
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
33 additions
and
19 deletions
+33
-19
drivers/gpu/drm/nouveau/core/subdev/bios/init.c
drivers/gpu/drm/nouveau/core/subdev/bios/init.c
+33
-19
No files found.
drivers/gpu/drm/nouveau/core/subdev/bios/init.c
View file @
28ec70f7
...
...
@@ -64,27 +64,33 @@ init_exec_force(struct nvbios_init *init, bool exec)
static
inline
int
init_or
(
struct
nvbios_init
*
init
)
{
if
(
init
->
outp
)
return
ffs
(
init
->
outp
->
or
)
-
1
;
error
(
"script needs OR!!
\n
"
);
if
(
init_exec
(
init
))
{
if
(
init
->
outp
)
return
ffs
(
init
->
outp
->
or
)
-
1
;
error
(
"script needs OR!!
\n
"
);
}
return
0
;
}
static
inline
int
init_link
(
struct
nvbios_init
*
init
)
{
if
(
init
->
outp
)
return
!
(
init
->
outp
->
sorconf
.
link
&
1
);
error
(
"script needs OR link
\n
"
);
if
(
init_exec
(
init
))
{
if
(
init
->
outp
)
return
!
(
init
->
outp
->
sorconf
.
link
&
1
);
error
(
"script needs OR link
\n
"
);
}
return
0
;
}
static
inline
int
init_crtc
(
struct
nvbios_init
*
init
)
{
if
(
init
->
crtc
>=
0
)
return
init
->
crtc
;
error
(
"script needs crtc
\n
"
);
if
(
init_exec
(
init
))
{
if
(
init
->
crtc
>=
0
)
return
init
->
crtc
;
error
(
"script needs crtc
\n
"
);
}
return
0
;
}
...
...
@@ -92,16 +98,21 @@ static u8
init_conn
(
struct
nvbios_init
*
init
)
{
struct
nouveau_bios
*
bios
=
init
->
bios
;
u8
ver
,
len
;
u16
conn
;
if
(
init
->
outp
)
{
u8
ver
,
len
;
u16
conn
=
dcb_conn
(
bios
,
init
->
outp
->
connector
,
&
ver
,
&
len
);
if
(
conn
)
return
nv_ro08
(
bios
,
conn
);
if
(
init_exec
(
init
))
{
if
(
init
->
outp
)
{
conn
=
init
->
outp
->
connector
;
conn
=
dcb_conn
(
bios
,
conn
,
&
ver
,
&
len
);
if
(
conn
)
return
nv_ro08
(
bios
,
conn
);
}
error
(
"script needs connector type
\n
"
);
}
error
(
"script needs connector type
\n
"
);
return
0x00
;
return
0xff
;
}
static
inline
u32
...
...
@@ -227,7 +238,8 @@ init_i2c(struct nvbios_init *init, int index)
}
else
if
(
index
<
0
)
{
if
(
!
init
->
outp
)
{
error
(
"script needs output for i2c
\n
"
);
if
(
init_exec
(
init
))
error
(
"script needs output for i2c
\n
"
);
return
NULL
;
}
...
...
@@ -544,7 +556,8 @@ init_tmds_reg(struct nvbios_init *init, u8 tmds)
return
0x6808b0
+
dacoffset
;
}
error
(
"tmds opcodes need dcb
\n
"
);
if
(
init_exec
(
init
))
error
(
"tmds opcodes need dcb
\n
"
);
}
else
{
if
(
tmds
<
ARRAY_SIZE
(
pramdac_table
))
return
pramdac_table
[
tmds
];
...
...
@@ -792,7 +805,8 @@ init_dp_condition(struct nvbios_init *init)
break
;
}
warn
(
"script needs dp output table data
\n
"
);
if
(
init_exec
(
init
))
warn
(
"script needs dp output table data
\n
"
);
break
;
case
5
:
if
(
!
(
init_rdauxr
(
init
,
0x0d
)
&
1
))
...
...
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