source: mainline/kernel/genarch/src/fb/bfb.c@ adec5b45

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since adec5b45 was 38650da, checked in by Martin Decky <martin@…>, 14 years ago

initialize bfb_addr to 0
this fixes the problem with high-order bits being set to 1 when using multiboot v1 protocol on amd64
this fixes ticket #399 on amd64

  • Property mode set to 100644
File size: 2.8 KB
RevLine 
[22cf454d]1/*
[df4ed85]2 * Copyright (c) 2006 Jakub Vana
[22cf454d]3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
[1f5c9c96]29/** @addtogroup genarch
[b45c443]30 * @{
31 */
[3c5006a0]32/**
33 * @file
[1f5c9c96]34 * @brief Boot framebuffer driver.
[b45c443]35 */
36
[1f5c9c96]37#include <typedefs.h>
[22cf454d]38#include <genarch/fb/fb.h>
[1f5c9c96]39#include <genarch/fb/bfb.h>
[a71c158]40#include <console/console.h>
[22cf454d]41
[38650da]42uintptr_t bfb_addr = 0;
[1f5c9c96]43uint32_t bfb_width = 0;
44uint32_t bfb_height = 0;
45uint16_t bfb_bpp = 0;
46uint32_t bfb_scanline = 0;
[22cf454d]47
[1f5c9c96]48uint8_t bfb_red_pos = 0;
49uint8_t bfb_red_size = 0;
[1496f87]50
[1f5c9c96]51uint8_t bfb_green_pos = 0;
52uint8_t bfb_green_size = 0;
[1496f87]53
[1f5c9c96]54uint8_t bfb_blue_pos = 0;
55uint8_t bfb_blue_size = 0;
[1496f87]56
[1f5c9c96]57bool bfb_init(void)
[22cf454d]58{
[38650da]59 if ((bfb_addr == 0) || (bfb_width == 0) || (bfb_height == 0) ||
60 (bfb_bpp == 0) || (bfb_scanline == 0))
[a71c158]61 return false;
[4a26e39]62
[1f5c9c96]63 fb_properties_t bfb_props = {
64 .addr = bfb_addr,
65 .offset = 0,
66 .x = bfb_width,
67 .y = bfb_height,
68 .scan = bfb_scanline
69 };
[2bc137c2]70
[1f5c9c96]71 switch (bfb_bpp) {
[2bc137c2]72 case 8:
[1f5c9c96]73 bfb_props.visual = VISUAL_INDIRECT_8;
[2bc137c2]74 break;
75 case 16:
[1f5c9c96]76 if ((bfb_red_pos == 10) && (bfb_red_size == 5) &&
77 (bfb_green_pos == 5) && (bfb_green_size == 5) &&
78 (bfb_blue_pos == 0) && (bfb_blue_size == 5))
79 bfb_props.visual = VISUAL_RGB_5_5_5_LE;
[1496f87]80 else
[1f5c9c96]81 bfb_props.visual = VISUAL_RGB_5_6_5_LE;
[2bc137c2]82 break;
83 case 24:
[1f5c9c96]84 bfb_props.visual = VISUAL_BGR_8_8_8;
[2bc137c2]85 break;
86 case 32:
[1f5c9c96]87 bfb_props.visual = VISUAL_BGR_8_8_8_0;
[2bc137c2]88 break;
89 default:
[a71c158]90 LOG("Unsupported bits per pixel.");
91 return false;
[2bc137c2]92 }
93
[1f5c9c96]94 outdev_t *fbdev = fb_init(&bfb_props);
[a71c158]95 if (!fbdev)
96 return false;
97
98 stdout_wire(fbdev);
99 return true;
[76fca31]100}
101
[3c5006a0]102/** @}
[b45c443]103 */
Note: See TracBrowser for help on using the repository browser.