1 | /*
|
---|
2 | * Copyright (c) 2006 Ondrej Palkovsky
|
---|
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 | #include <ipc/services.h>
|
---|
30 | #include <ipc/ns.h>
|
---|
31 | #include <sysinfo.h>
|
---|
32 | #include <async.h>
|
---|
33 | #include <as.h>
|
---|
34 | #include <align.h>
|
---|
35 | #include <errno.h>
|
---|
36 | #include <stdio.h>
|
---|
37 |
|
---|
38 | #include "fb.h"
|
---|
39 | #include "ega.h"
|
---|
40 | #include "msim.h"
|
---|
41 | #include "ski.h"
|
---|
42 | #include "sgcn.h"
|
---|
43 | #include "niagara.h"
|
---|
44 | #include "main.h"
|
---|
45 |
|
---|
46 | #define NAME "fb"
|
---|
47 |
|
---|
48 | void receive_comm_area(ipc_callid_t callid, ipc_call_t *call, void **area)
|
---|
49 | {
|
---|
50 | void *dest;
|
---|
51 |
|
---|
52 | dest = as_get_mappable_page(IPC_GET_ARG2(*call));
|
---|
53 | if (async_answer_1(callid, EOK, (sysarg_t) dest) == 0) {
|
---|
54 | if (*area)
|
---|
55 | as_area_destroy(*area);
|
---|
56 | *area = dest;
|
---|
57 | }
|
---|
58 | }
|
---|
59 |
|
---|
60 | int main(int argc, char *argv[])
|
---|
61 | {
|
---|
62 | printf("%s: HelenOS Framebuffer service\n", NAME);
|
---|
63 |
|
---|
64 | bool initialized = false;
|
---|
65 | sysarg_t fb_present;
|
---|
66 | sysarg_t fb_kind;
|
---|
67 |
|
---|
68 | if (sysinfo_get_value("fb", &fb_present) != EOK)
|
---|
69 | fb_present = false;
|
---|
70 |
|
---|
71 | if (sysinfo_get_value("fb.kind", &fb_kind) != EOK) {
|
---|
72 | printf("%s: Unable to detect framebuffer configuration\n", NAME);
|
---|
73 | return -1;
|
---|
74 | }
|
---|
75 |
|
---|
76 | #ifdef FB_ENABLED
|
---|
77 | if ((!initialized) && (fb_kind == 1)) {
|
---|
78 | if (fb_init() == 0)
|
---|
79 | initialized = true;
|
---|
80 | }
|
---|
81 | #endif
|
---|
82 | #ifdef EGA_ENABLED
|
---|
83 | if ((!initialized) && (fb_kind == 2)) {
|
---|
84 | if (ega_init() == 0)
|
---|
85 | initialized = true;
|
---|
86 | }
|
---|
87 | #endif
|
---|
88 | #ifdef MSIM_ENABLED
|
---|
89 | if ((!initialized) && (fb_kind == 3)) {
|
---|
90 | if (msim_init() == 0)
|
---|
91 | initialized = true;
|
---|
92 | }
|
---|
93 | #endif
|
---|
94 | #ifdef SGCN_ENABLED
|
---|
95 | if ((!initialized) && (fb_kind == 4)) {
|
---|
96 | if (sgcn_init() == 0)
|
---|
97 | initialized = true;
|
---|
98 | }
|
---|
99 | #endif
|
---|
100 | #ifdef NIAGARA_ENABLED
|
---|
101 | if ((!initialized) && (fb_kind == 5)) {
|
---|
102 | if (niagara_init() == 0)
|
---|
103 | initialized = true;
|
---|
104 | }
|
---|
105 | #endif
|
---|
106 | #ifdef SKI_ENABLED
|
---|
107 | if ((!initialized) && (fb_kind == 6)) {
|
---|
108 | if (ski_init() == 0)
|
---|
109 | initialized = true;
|
---|
110 | }
|
---|
111 | #endif
|
---|
112 |
|
---|
113 | if (!initialized)
|
---|
114 | return -1;
|
---|
115 |
|
---|
116 | if (service_register(SERVICE_VIDEO) != EOK)
|
---|
117 | return -1;
|
---|
118 |
|
---|
119 | printf("%s: Accepting connections\n", NAME);
|
---|
120 | async_manager();
|
---|
121 |
|
---|
122 | /* Never reached */
|
---|
123 | return 0;
|
---|
124 | }
|
---|