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

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 84239b1 was a35b458, checked in by Jiří Zárevúcky <zarevucky.jiri@…>, 7 years ago

style: Remove trailing whitespace on _all_ lines, including empty ones, for particular file types.

Command used: tools/srepl '\s\+$' '' -- *.c *.h *.py *.sh *.s *.S *.ag

Currently, whitespace on empty lines is very inconsistent.
There are two basic choices: Either remove the whitespace, or keep empty lines
indented to the level of surrounding code. The former is AFAICT more common,
and also much easier to do automatically.

Alternatively, we could write script for automatic indentation, and use that
instead. However, if such a script exists, it's possible to use the indented
style locally, by having the editor apply relevant conversions on load/save,
without affecting remote repository. IMO, it makes more sense to adopt
the simpler rule.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1/*
2 * Copyright (c) 2006 Jakub Vana
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
29/** @addtogroup genarch
30 * @{
31 */
32/**
33 * @file
34 * @brief Boot framebuffer driver.
35 */
36
37#include <debug.h>
38#include <typedefs.h>
39#include <genarch/fb/fb.h>
40#include <genarch/fb/bfb.h>
41#include <console/console.h>
42
43uintptr_t bfb_addr = 0;
44uint32_t bfb_width = 0;
45uint32_t bfb_height = 0;
46uint16_t bfb_bpp = 0;
47uint32_t bfb_scanline = 0;
48
49uint8_t bfb_red_pos = 0;
50uint8_t bfb_red_size = 0;
51
52uint8_t bfb_green_pos = 0;
53uint8_t bfb_green_size = 0;
54
55uint8_t bfb_blue_pos = 0;
56uint8_t bfb_blue_size = 0;
57
58bool bfb_init(void)
59{
60 if ((bfb_addr == 0) || (bfb_width == 0) || (bfb_height == 0) ||
61 (bfb_bpp == 0) || (bfb_scanline == 0))
62 return false;
63
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 };
71
72 switch (bfb_bpp) {
73 case 8:
74 bfb_props.visual = VISUAL_INDIRECT_8;
75 break;
76 case 16:
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;
81 else
82 bfb_props.visual = VISUAL_RGB_5_6_5_LE;
83 break;
84 case 24:
85 bfb_props.visual = VISUAL_BGR_8_8_8;
86 break;
87 case 32:
88 bfb_props.visual = VISUAL_BGR_8_8_8_0;
89 break;
90 default:
91 LOG("Unsupported bits per pixel.");
92 return false;
93 }
94
95 outdev_t *fbdev = fb_init(&bfb_props);
96 if (!fbdev)
97 return false;
98
99 stdout_wire(fbdev);
100 return true;
101}
102
103/** @}
104 */
Note: See TracBrowser for help on using the repository browser.