1 // SPDX-License-Identifier: GPL-2.0
3 #include <linux/export.h>
4 #include <linux/ioport.h>
5 #include <linux/screen_info.h>
6 #include <linux/string.h>
8 static void resource_init_named(struct resource
*r
,
9 resource_size_t start
, resource_size_t size
,
10 const char *name
, unsigned int flags
)
12 memset(r
, 0, sizeof(*r
));
15 r
->end
= start
+ size
- 1;
20 static void resource_init_io_named(struct resource
*r
,
21 resource_size_t start
, resource_size_t size
,
24 resource_init_named(r
, start
, size
, name
, IORESOURCE_IO
);
27 static void resource_init_mem_named(struct resource
*r
,
28 resource_size_t start
, resource_size_t size
,
31 resource_init_named(r
, start
, size
, name
, IORESOURCE_MEM
);
34 static inline bool __screen_info_has_ega_gfx(unsigned int mode
)
37 case 0x0d: /* 320x200-4 */
38 case 0x0e: /* 640x200-4 */
39 case 0x0f: /* 640x350-1 */
40 case 0x10: /* 640x350-4 */
47 static inline bool __screen_info_has_vga_gfx(unsigned int mode
)
50 case 0x10: /* 640x480-1 */
51 case 0x12: /* 640x480-4 */
52 case 0x13: /* 320-200-8 */
53 case 0x6a: /* 800x600-4 (VESA) */
56 return __screen_info_has_ega_gfx(mode
);
61 * screen_info_resources() - Get resources from screen_info structure
62 * @si: the screen_info
63 * @r: pointer to an array of resource structures
64 * @num: number of elements in @r:
67 * The number of resources stored in @r on success, or a negative errno code otherwise.
69 * A call to screen_info_resources() returns the resources consumed by the
70 * screen_info's device or framebuffer. The result is stored in the caller-supplied
71 * array @r with up to @num elements. The function returns the number of
72 * initialized elements.
74 ssize_t
screen_info_resources(const struct screen_info
*si
, struct resource
*r
, size_t num
)
76 struct resource
*pos
= r
;
77 unsigned int type
= screen_info_video_type(si
);
83 resource_init_io_named(pos
++, 0x3b0, 12, "mda");
85 resource_init_io_named(pos
++, 0x3bf, 0x01, "mda");
87 resource_init_mem_named(pos
++, 0xb0000, 0x2000, "mda");
91 resource_init_io_named(pos
++, 0x3d4, 0x02, "cga");
93 resource_init_mem_named(pos
++, 0xb8000, 0x2000, "cga");
97 resource_init_io_named(pos
++, 0x3bf, 0x10, "ega");
99 resource_init_mem_named(pos
++, 0xb0000, 0x8000, "ega");
101 case VIDEO_TYPE_EGAC
:
103 resource_init_io_named(pos
++, 0x3c0, 0x20, "ega");
105 if (__screen_info_has_ega_gfx(si
->orig_video_mode
))
106 resource_init_mem_named(pos
++, 0xa0000, 0x10000, "ega");
108 resource_init_mem_named(pos
++, 0xb8000, 0x8000, "ega");
111 case VIDEO_TYPE_VGAC
:
113 resource_init_io_named(pos
++, 0x3c0, 0x20, "vga+");
115 if (__screen_info_has_vga_gfx(si
->orig_video_mode
))
116 resource_init_mem_named(pos
++, 0xa0000, 0x10000, "vga+");
118 resource_init_mem_named(pos
++, 0xb8000, 0x8000, "vga+");
121 case VIDEO_TYPE_VLFB
:
123 base
= __screen_info_lfb_base(si
);
126 size
= __screen_info_lfb_size(si
, type
);
130 resource_init_mem_named(pos
++, base
, size
, "lfb");
132 case VIDEO_TYPE_PICA_S3
:
133 case VIDEO_TYPE_MIPS_G364
:
135 case VIDEO_TYPE_TGAC
:
137 case VIDEO_TYPE_SUNPCI
:
138 case VIDEO_TYPE_PMAC
:
146 EXPORT_SYMBOL(screen_info_resources
);