Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci
Commits
3587c509
Commit
3587c509
authored
Apr 03, 2006
by
Dave Airlie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
intelfb: fixup pitch calculation like X does
Signed-off-by:
Dave Airlie
<
airlied@linux.ie
>
parent
3aff13cf
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
1 deletion
+18
-1
drivers/video/intelfb/intelfbdrv.c
drivers/video/intelfb/intelfbdrv.c
+17
-0
drivers/video/intelfb/intelfbhw.c
drivers/video/intelfb/intelfbhw.c
+1
-1
No files found.
drivers/video/intelfb/intelfbdrv.c
View file @
3587c509
...
...
@@ -1164,16 +1164,33 @@ intelfb_check_var(struct fb_var_screeninfo *var, struct fb_info *info)
struct
fb_var_screeninfo
v
;
struct
intelfb_info
*
dinfo
;
static
int
first
=
1
;
int
i
;
/* Good pitches to allow tiling. Don't care about pitches < 1024. */
static
const
int
pitches
[]
=
{
128
*
8
,
128
*
16
,
128
*
32
,
128
*
64
,
0
};
DBG_MSG
(
"intelfb_check_var: accel_flags is %d
\n
"
,
var
->
accel_flags
);
dinfo
=
GET_DINFO
(
info
);
/* update the pitch */
if
(
intelfbhw_validate_mode
(
dinfo
,
var
)
!=
0
)
return
-
EINVAL
;
v
=
*
var
;
for
(
i
=
0
;
pitches
[
i
]
!=
0
;
i
++
)
{
if
(
pitches
[
i
]
>=
v
.
xres_virtual
)
{
v
.
xres_virtual
=
pitches
[
i
];
break
;
}
}
/* Check for a supported bpp. */
if
(
v
.
bits_per_pixel
<=
8
)
{
v
.
bits_per_pixel
=
8
;
...
...
drivers/video/intelfb/intelfbhw.c
View file @
3587c509
...
...
@@ -1210,7 +1210,7 @@ intelfbhw_mode_to_hw(struct intelfb_info *dinfo, struct intelfb_hwstate *hw,
*
ss
=
(
hactive
<<
SRC_SIZE_HORIZ_SHIFT
)
|
(
vactive
<<
SRC_SIZE_VERT_SHIFT
);
hw
->
disp_a_stride
=
var
->
xres_virtual
*
var
->
bits_per_pixel
/
8
;
hw
->
disp_a_stride
=
dinfo
->
pitch
;
DBG_MSG
(
"pitch is %d
\n
"
,
hw
->
disp_a_stride
);
hw
->
disp_a_base
=
hw
->
disp_a_stride
*
var
->
yoffset
+
...
...
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