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

Last change on this file was 6404aca, checked in by Jakub Jermar <jakub@…>, 7 years ago

Disambiguate doxygroup genarch*

  • 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
[6404aca]29/** @addtogroup kernel_genarch
[b45c443]30 * @{
31 */
[3c5006a0]32/**
33 * @file
[1f5c9c96]34 * @brief Boot framebuffer driver.
[b45c443]35 */
36
[63e27ef]37#include <debug.h>
[1f5c9c96]38#include <typedefs.h>
[22cf454d]39#include <genarch/fb/fb.h>
[1f5c9c96]40#include <genarch/fb/bfb.h>
[a71c158]41#include <console/console.h>
[22cf454d]42
[38650da]43uintptr_t bfb_addr = 0;
[1f5c9c96]44uint32_t bfb_width = 0;
45uint32_t bfb_height = 0;
46uint16_t bfb_bpp = 0;
47uint32_t bfb_scanline = 0;
[22cf454d]48
[1f5c9c96]49uint8_t bfb_red_pos = 0;
50uint8_t bfb_red_size = 0;
[1496f87]51
[1f5c9c96]52uint8_t bfb_green_pos = 0;
53uint8_t bfb_green_size = 0;
[1496f87]54
[1f5c9c96]55uint8_t bfb_blue_pos = 0;
56uint8_t bfb_blue_size = 0;
[1496f87]57
[1f5c9c96]58bool bfb_init(void)
[22cf454d]59{
[38650da]60 if ((bfb_addr == 0) || (bfb_width == 0) || (bfb_height == 0) ||
61 (bfb_bpp == 0) || (bfb_scanline == 0))
[a71c158]62 return false;
[a35b458]63
[1f5c9c96]64 fb_properties_t bfb_props = {
65 .addr = bfb_addr,
66 .offset = 0,
67 .x = bfb_width,
68 .y = bfb_height,
69 .scan = bfb_scanline
70 };
[a35b458]71
[1f5c9c96]72 switch (bfb_bpp) {
[2bc137c2]73 case 8:
[1f5c9c96]74 bfb_props.visual = VISUAL_INDIRECT_8;
[2bc137c2]75 break;
76 case 16:
[1f5c9c96]77 if ((bfb_red_pos == 10) && (bfb_red_size == 5) &&
78 (bfb_green_pos == 5) && (bfb_green_size == 5) &&
79 (bfb_blue_pos == 0) && (bfb_blue_size == 5))
80 bfb_props.visual = VISUAL_RGB_5_5_5_LE;
[1496f87]81 else
[1f5c9c96]82 bfb_props.visual = VISUAL_RGB_5_6_5_LE;
[2bc137c2]83 break;
84 case 24:
[1f5c9c96]85 bfb_props.visual = VISUAL_BGR_8_8_8;
[2bc137c2]86 break;
87 case 32:
[1f5c9c96]88 bfb_props.visual = VISUAL_BGR_8_8_8_0;
[2bc137c2]89 break;
90 default:
[a71c158]91 LOG("Unsupported bits per pixel.");
92 return false;
[2bc137c2]93 }
[a35b458]94
[1f5c9c96]95 outdev_t *fbdev = fb_init(&bfb_props);
[a71c158]96 if (!fbdev)
97 return false;
[a35b458]98
[a71c158]99 stdout_wire(fbdev);
100 return true;
[76fca31]101}
102
[3c5006a0]103/** @}
[b45c443]104 */
Note: See TracBrowser for help on using the repository browser.