Tizen 2.1 base
[sdk/emulator/qemu.git] / tizen / src / hw / maru_overlay.h
1 /*
2  * Maru overlay device for VGA
3  *
4  * Copyright (C) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
5  *
6  * Contact:
7  * SeokYeon Hwang <syeon.hwang@samsung.com>
8  * SangJin Kim <sangjin3.kim@samsung.com>
9  * MunKyu Im <munkyu.im@samsung.com>
10  * KiTae Kim <kt920.kim@samsung.com>
11  * JinHyung Jo <jinhyung.jo@samsung.com>
12  * SungMin Ha <sungmin82.ha@samsung.com>
13  * JiHye Kim <jihye1128.kim@samsung.com>
14  * GiWoong Kim <giwoong.kim@samsung.com>
15  * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
16  * DoHyung Hong
17  * Hyunjun Son
18  *
19  * This program is free software; you can redistribute it and/or
20  * modify it under the terms of the GNU General Public License
21  * as published by the Free Software Foundation; either version 2
22  * of the License, or (at your option) any later version.
23  *
24  * This program is distributed in the hope that it will be useful,
25  * but WITHOUT ANY WARRANTY; without even the implied warranty of
26  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  * GNU General Public License for more details.
28  *
29  * You should have received a copy of the GNU General Public License
30  * along with this program; if not, write to the Free Software
31  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
32  *
33  * Contributors:
34  * - S-Core Co., Ltd
35  *
36  */
37
38
39 #ifndef MARU_OVERLAY_H_
40 #define MARU_OVERLAY_H_
41
42 #include "qemu-common.h"
43
44 extern uint8_t* overlay_ptr;
45 extern uint8_t overlay0_power;
46 extern uint16_t overlay0_left;
47 extern uint16_t overlay0_top;
48 extern uint16_t overlay0_width;
49 extern uint16_t overlay0_height;
50
51 extern uint8_t overlay1_power;
52 extern uint16_t overlay1_left;
53 extern uint16_t overlay1_top;
54 extern uint16_t overlay1_width;
55 extern uint16_t overlay1_height;
56
57 DeviceState *pci_maru_overlay_init( PCIBus *bus );
58
59 #endif /* MARU_OVERLAY_H_ */