Merge 'v2.2.0' into tizen_next_qemu_2.2
[sdk/emulator/qemu.git] / tizen / src / hw / maru_board.c
1 /*
2  * TIZEN base board
3  *
4  * Copyright (c) 2011 Samsung Electronics Co., Ltd All Rights Reserved
5  *
6  * Contact:
7  * YeongKyoon Lee <yeongkyoon.lee@samsung.com>
8  * SeokYeon Hwang <syeon.hwang@samsung.com>
9  * SangJin Kim <sangjin3.kim@samsung.com>
10  * KiTae Kim <kt920.kim@samsung.com>
11  * JinHyung Jo <jinhyung.jo@samsung.com>
12  * SungMin Ha <sungmin82.ha@samsung.com>
13  * MunKyu Im <munkyu.im@samsung.com>
14  * JiHye Kim <jihye1128.kim@samsung.com>
15  * GiWoong Kim <giwoong.kim@samsung.com>
16  * DongKyun Yun
17  * DoHyung Hong
18  * Hyunjun Son
19  *
20  * This program is free software; you can redistribute it and/or
21  * modify it under the terms of the GNU General Public License
22  * as published by the Free Software Foundation; either version 2
23  * of the License, or (at your option) any later version.
24  *
25  * This program is distributed in the hope that it will be useful,
26  * but WITHOUT ANY WARRANTY; without even the implied warranty of
27  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
28  * GNU General Public License for more details.
29  *
30  * You should have received a copy of the GNU General Public License
31  * along with this program; if not, write to the Free Software
32  * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
33  *
34  * Contributors:
35  * - S-Core Co., Ltd
36  *
37  * x86 board from pc_piix.c...
38  * add some TIZEN-speciaized device...
39  */
40
41 #include "hw/boards.h"
42 #include "hw/i386/pc.h"
43
44 #include "emulator_common.h"
45 #include "maru_pm.h"
46
47 /* maru specialized device init */
48 static void maru_device_init(void)
49 {
50     // do nothing for now...
51 }
52
53 extern void maru_pc_init_pci(MachineState *args);
54 static void maru_x86_board_init(MachineState *args)
55 {
56     maru_pc_init_pci(args);
57
58     maru_device_init();
59 }
60
61 static QEMUMachine maru_x86_machine = {
62     PC_DEFAULT_MACHINE_OPTIONS,
63     .name = "maru-x86-machine",
64     .alias = "maru-x86-machine",
65     .desc = "Maru Board (x86)",
66     .init = maru_x86_board_init,
67     .hot_add_cpu = pc_hot_add_cpu,
68     .no_parallel = 1,
69     .no_floppy = 1,
70     .no_cdrom = 1,
71     .no_sdcard = 1,
72     .default_machine_opts = "firmware=bios-256k.bin",
73     .default_boot_order = "c",
74 };
75
76 static void maru_machine_init(void)
77 {
78     qemu_register_machine(&maru_x86_machine);
79 }
80
81 machine_init(maru_machine_init);