Skip to content

Commit

Permalink
video: Provide constants for VGA I/O range
Browse files Browse the repository at this point in the history
Provide VGA_FB_ constants for the VGA framebuffer I/O range and convert
fbdev code. In the case of vga16fb, this is a rename of the existing
constants VGA_FB_PHYS and VGA_FB_PHYS_LEN.

v2:
	* clarify relationship with old constants in vga16fb (Javier)

Signed-off-by: Thomas Zimmermann <[email protected]>
Reviewed-by: Javier Martinez Canillas <[email protected]>
Link: https://patchwork.freedesktop.org/patch/msgid/[email protected]
  • Loading branch information
Thomas Zimmermann committed Jul 19, 2022
1 parent 5e01376 commit 4652905
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 11 deletions.
4 changes: 2 additions & 2 deletions drivers/video/fbdev/core/fbmem.c
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@

#include <asm/fb.h>

#include <video/vga.h>

/*
* Frame buffer device initialization and setup routines
Expand Down Expand Up @@ -1561,7 +1562,6 @@ static bool fb_do_apertures_overlap(struct apertures_struct *gena,

static void do_unregister_framebuffer(struct fb_info *fb_info);

#define VGA_FB_PHYS 0xA0000
static void do_remove_conflicting_framebuffers(struct apertures_struct *a,
const char *name, bool primary)
{
Expand All @@ -1580,7 +1580,7 @@ static void do_remove_conflicting_framebuffers(struct apertures_struct *a,
device = registered_fb[i]->device;
if (fb_do_apertures_overlap(gen_aper, a) ||
(primary && gen_aper && gen_aper->count &&
gen_aper->ranges[0].base == VGA_FB_PHYS)) {
gen_aper->ranges[0].base == VGA_FB_PHYS_BASE)) {

printk(KERN_INFO "fb%d: switching to %s from %s\n",
i, name, registered_fb[i]->fix.id);
Expand Down
15 changes: 6 additions & 9 deletions drivers/video/fbdev/vga16fb.c
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@
#include <asm/io.h>
#include <video/vga.h>

#define VGA_FB_PHYS 0xA0000
#define VGA_FB_PHYS_LEN 65536

#define MODE_SKIP4 1
#define MODE_8BPP 2
#define MODE_CFB 4
Expand Down Expand Up @@ -87,8 +84,8 @@ static struct fb_var_screeninfo vga16fb_defined = {
/* name should not depend on EGA/VGA */
static const struct fb_fix_screeninfo vga16fb_fix = {
.id = "VGA16 VGA",
.smem_start = VGA_FB_PHYS,
.smem_len = VGA_FB_PHYS_LEN,
.smem_start = VGA_FB_PHYS_BASE,
.smem_len = VGA_FB_PHYS_SIZE,
.type = FB_TYPE_VGA_PLANES,
.type_aux = FB_AUX_VGA_PLANES_VGA4,
.visual = FB_VISUAL_PSEUDOCOLOR,
Expand Down Expand Up @@ -1333,8 +1330,8 @@ static int vga16fb_probe(struct platform_device *dev)
goto err_ioremap;
}

/* XXX share VGA_FB_PHYS and I/O region with vgacon and others */
info->screen_base = (void __iomem *)VGA_MAP_MEM(VGA_FB_PHYS, 0);
/* XXX share VGA_FB_PHYS_BASE and I/O region with vgacon and others */
info->screen_base = (void __iomem *)VGA_MAP_MEM(VGA_FB_PHYS_BASE, 0);

if (!info->screen_base) {
printk(KERN_ERR "vga16fb: unable to map device\n");
Expand Down Expand Up @@ -1385,8 +1382,8 @@ static int vga16fb_probe(struct platform_device *dev)

vga16fb_update_fix(info);

info->apertures->ranges[0].base = VGA_FB_PHYS;
info->apertures->ranges[0].size = VGA_FB_PHYS_LEN;
info->apertures->ranges[0].base = VGA_FB_PHYS_BASE;
info->apertures->ranges[0].size = VGA_FB_PHYS_SIZE;

if (register_framebuffer(info) < 0) {
printk(KERN_ERR "vga16fb: unable to register framebuffer\n");
Expand Down
2 changes: 2 additions & 0 deletions include/video/vga.h
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@
#include <asm/vga.h>
#include <asm/byteorder.h>

#define VGA_FB_PHYS_BASE 0xA0000 /* VGA framebuffer I/O base */
#define VGA_FB_PHYS_SIZE 65536 /* VGA framebuffer I/O size */

/* Some of the code below is taken from SVGAlib. The original,
unmodified copyright notice for that code is below. */
Expand Down

0 comments on commit 4652905

Please sign in to comment.