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
c79965d8
Commit
c79965d8
authored
Aug 21, 2014
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/bios: support for opcodes 0x47/0x48
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
17187c81
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
36 additions
and
0 deletions
+36
-0
drivers/gpu/drm/nouveau/core/subdev/bios/init.c
drivers/gpu/drm/nouveau/core/subdev/bios/init.c
+36
-0
No files found.
drivers/gpu/drm/nouveau/core/subdev/bios/init.c
View file @
c79965d8
...
@@ -843,6 +843,40 @@ init_io_or(struct nvbios_init *init)
...
@@ -843,6 +843,40 @@ init_io_or(struct nvbios_init *init)
init_wrvgai
(
init
,
0x03d4
,
index
,
data
|
(
1
<<
or
));
init_wrvgai
(
init
,
0x03d4
,
index
,
data
|
(
1
<<
or
));
}
}
/**
* INIT_ANDN_REG - opcode 0x47
*
*/
static
void
init_andn_reg
(
struct
nvbios_init
*
init
)
{
struct
nouveau_bios
*
bios
=
init
->
bios
;
u32
reg
=
nv_ro32
(
bios
,
init
->
offset
+
1
);
u32
mask
=
nv_ro32
(
bios
,
init
->
offset
+
5
);
trace
(
"ANDN_REG
\t
R[0x%06x] &= ~0x%08x
\n
"
,
reg
,
mask
);
init
->
offset
+=
9
;
init_mask
(
init
,
reg
,
mask
,
0
);
}
/**
* INIT_OR_REG - opcode 0x48
*
*/
static
void
init_or_reg
(
struct
nvbios_init
*
init
)
{
struct
nouveau_bios
*
bios
=
init
->
bios
;
u32
reg
=
nv_ro32
(
bios
,
init
->
offset
+
1
);
u32
mask
=
nv_ro32
(
bios
,
init
->
offset
+
5
);
trace
(
"OR_REG
\t
R[0x%06x] |= 0x%08x
\n
"
,
reg
,
mask
);
init
->
offset
+=
9
;
init_mask
(
init
,
reg
,
0
,
mask
);
}
/**
/**
* INIT_INDEX_ADDRESS_LATCHED - opcode 0x49
* INIT_INDEX_ADDRESS_LATCHED - opcode 0x49
*
*
...
@@ -2074,6 +2108,8 @@ static struct nvbios_init_opcode {
...
@@ -2074,6 +2108,8 @@ static struct nvbios_init_opcode {
[
0x3a
]
=
{
init_dp_condition
},
[
0x3a
]
=
{
init_dp_condition
},
[
0x3b
]
=
{
init_io_mask_or
},
[
0x3b
]
=
{
init_io_mask_or
},
[
0x3c
]
=
{
init_io_or
},
[
0x3c
]
=
{
init_io_or
},
[
0x47
]
=
{
init_andn_reg
},
[
0x48
]
=
{
init_or_reg
},
[
0x49
]
=
{
init_idx_addr_latched
},
[
0x49
]
=
{
init_idx_addr_latched
},
[
0x4a
]
=
{
init_io_restrict_pll2
},
[
0x4a
]
=
{
init_io_restrict_pll2
},
[
0x4b
]
=
{
init_pll2
},
[
0x4b
]
=
{
init_pll2
},
...
...
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