Commit f51a14dd authored by David Miller's avatar David Miller Committed by Paul Mundt

svga: Make svga_set_default_atc_regs take an iomem regbase pointer.

Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
Signed-off-by: default avatarPaul Mundt <lethal@linux-sh.org>
parent e2fade2c
...@@ -654,7 +654,7 @@ static int arkfb_set_par(struct fb_info *info) ...@@ -654,7 +654,7 @@ static int arkfb_set_par(struct fb_info *info)
/* Set default values */ /* Set default values */
svga_set_default_gfx_regs(par->state.vgabase); svga_set_default_gfx_regs(par->state.vgabase);
svga_set_default_atc_regs(); svga_set_default_atc_regs(par->state.vgabase);
svga_set_default_seq_regs(); svga_set_default_seq_regs();
svga_set_default_crt_regs(); svga_set_default_crt_regs();
svga_wcrt_multi(par->state.vgabase, ark_line_compare_regs, 0xFFFFFFFF); svga_wcrt_multi(par->state.vgabase, ark_line_compare_regs, 0xFFFFFFFF);
......
...@@ -515,7 +515,7 @@ static int s3fb_set_par(struct fb_info *info) ...@@ -515,7 +515,7 @@ static int s3fb_set_par(struct fb_info *info)
/* Set default values */ /* Set default values */
svga_set_default_gfx_regs(par->state.vgabase); svga_set_default_gfx_regs(par->state.vgabase);
svga_set_default_atc_regs(); svga_set_default_atc_regs(par->state.vgabase);
svga_set_default_seq_regs(); svga_set_default_seq_regs();
svga_set_default_crt_regs(); svga_set_default_crt_regs();
svga_wcrt_multi(par->state.vgabase, s3_line_compare_regs, 0xFFFFFFFF); svga_wcrt_multi(par->state.vgabase, s3_line_compare_regs, 0xFFFFFFFF);
......
...@@ -93,26 +93,26 @@ void svga_set_default_gfx_regs(void __iomem *regbase) ...@@ -93,26 +93,26 @@ void svga_set_default_gfx_regs(void __iomem *regbase)
} }
/* Set attribute controller registers to sane values */ /* Set attribute controller registers to sane values */
void svga_set_default_atc_regs(void) void svga_set_default_atc_regs(void __iomem *regbase)
{ {
u8 count; u8 count;
vga_r(NULL, 0x3DA); vga_r(regbase, 0x3DA);
vga_w(NULL, VGA_ATT_W, 0x00); vga_w(regbase, VGA_ATT_W, 0x00);
/* All standard ATC registers (AR00 - AR14) */ /* All standard ATC registers (AR00 - AR14) */
for (count = 0; count <= 0xF; count ++) for (count = 0; count <= 0xF; count ++)
svga_wattr(NULL, count, count); svga_wattr(regbase, count, count);
svga_wattr(NULL, VGA_ATC_MODE, 0x01); svga_wattr(regbase, VGA_ATC_MODE, 0x01);
/* svga_wattr(NULL, VGA_ATC_MODE, 0x41); */ /* svga_wattr(regbase, VGA_ATC_MODE, 0x41); */
svga_wattr(NULL, VGA_ATC_OVERSCAN, 0x00); svga_wattr(regbase, VGA_ATC_OVERSCAN, 0x00);
svga_wattr(NULL, VGA_ATC_PLANE_ENABLE, 0x0F); svga_wattr(regbase, VGA_ATC_PLANE_ENABLE, 0x0F);
svga_wattr(NULL, VGA_ATC_PEL, 0x00); svga_wattr(regbase, VGA_ATC_PEL, 0x00);
svga_wattr(NULL, VGA_ATC_COLOR_PAGE, 0x00); svga_wattr(regbase, VGA_ATC_COLOR_PAGE, 0x00);
vga_r(NULL, 0x3DA); vga_r(regbase, 0x3DA);
vga_w(NULL, VGA_ATT_W, 0x20); vga_w(regbase, VGA_ATT_W, 0x20);
} }
/* Set sequencer registers to sane values */ /* Set sequencer registers to sane values */
......
...@@ -426,7 +426,7 @@ static int vt8623fb_set_par(struct fb_info *info) ...@@ -426,7 +426,7 @@ static int vt8623fb_set_par(struct fb_info *info)
/* Set default values */ /* Set default values */
svga_set_default_gfx_regs(par->state.vgabase); svga_set_default_gfx_regs(par->state.vgabase);
svga_set_default_atc_regs(); svga_set_default_atc_regs(par->state.vgabase);
svga_set_default_seq_regs(); svga_set_default_seq_regs();
svga_set_default_crt_regs(); svga_set_default_crt_regs();
svga_wcrt_multi(par->state.vgabase, vt8623_line_compare_regs, 0xFFFFFFFF); svga_wcrt_multi(par->state.vgabase, vt8623_line_compare_regs, 0xFFFFFFFF);
......
...@@ -100,7 +100,7 @@ void svga_wcrt_multi(void __iomem *regbase, const struct vga_regset *regset, u32 ...@@ -100,7 +100,7 @@ void svga_wcrt_multi(void __iomem *regbase, const struct vga_regset *regset, u32
void svga_wseq_multi(void __iomem *regbase, const struct vga_regset *regset, u32 value); void svga_wseq_multi(void __iomem *regbase, const struct vga_regset *regset, u32 value);
void svga_set_default_gfx_regs(void __iomem *regbase); void svga_set_default_gfx_regs(void __iomem *regbase);
void svga_set_default_atc_regs(void); void svga_set_default_atc_regs(void __iomem *regbase);
void svga_set_default_seq_regs(void); void svga_set_default_seq_regs(void);
void svga_set_default_crt_regs(void); void svga_set_default_crt_regs(void);
void svga_set_textmode_vga_regs(void); void svga_set_textmode_vga_regs(void);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment