#
# Virtual device drivers for emulator
#
-CONFIG_HW_ACCELERATOR=y
CONFIG_EMUL_LCD=y
CONFIG_EMUL_CODEC=y
CONFIG_X86_PLATFORM_DEVICES=y
* converter.
*/
+/*
+ * 2011-08-19 Dohyung Hong <don.hong@samsung.com> Changed device name as HardKeys from keyboard
+ * 2011-11-23 DongKyun Yun <dk77.yun@samsung.com> Modified some keycodes to support hardware key of mobile platform
+ */
+
#include <linux/delay.h>
#include <linux/module.h>
#include <linux/slab.h>
* (at your option) any later version.
*/
+/*
+ * 2011-12-08 GiWoong Kim <giwoong.kim@samsung.com> Add multi-touch function
+ */
+
#include "wacom.h"
#include "wacom_wac.h"
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*/
+
+/*
+ * 2011-12-08 GiWoong Kim <giwoong.kim@samsung.com> Add multi-touch function
+ */
+
#include "wacom.h"
#include "wacom_wac.h"
+/*\r
+ * Virtual device node for event injector of emulator\r
+ *\r
+ * Copyright (c) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.\r
+ *\r
+ * Contact:\r
+ * Sungmin Ha <sungmin82.ha@samsung.com>\r
+ *\r
+ * This program is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU General Public License\r
+ * as published by the Free Software Foundation; either version 2\r
+ * of the License, or (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r
+ *\r
+ * Contributors:\r
+ * - S-Core Co., Ltd\r
+ */\r
+\r
#include <linux/kernel.h>\r
#include <linux/module.h>\r
#include <linux/device.h>\r
+/*\r
+ * Virtual device node for event injector of emulator\r
+ *\r
+ * Copyright (c) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.\r
+ *\r
+ * Contact:\r
+ * Sungmin Ha <sungmin82.ha@samsung.com>\r
+ *\r
+ * This program is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU General Public License\r
+ * as published by the Free Software Foundation; either version 2\r
+ * of the License, or (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r
+ *\r
+ * Contributors:\r
+ * - S-Core Co., Ltd\r
+ */\r
+\r
#include <linux/kernel.h>\r
#include <linux/module.h>\r
#include <linux/device.h>\r
menu "Virtual device drivers for emulator"
-config HW_ACCELERATOR
- tristate "Samsung Virtual 3D Accelerator driver"
- default n
-
config EMUL_LCD
tristate "Samsung emulator LCD driver"
default n
-obj-$(CONFIG_HW_ACCELERATOR) += Accelerator.o
obj-$(CONFIG_EMUL_LCD) += emul_lcd.o
obj-$(CONFIG_EMUL_CODEC) += emul_codec.o
+/*\r
+ * Virtual device node for event injector of emulator\r
+ *\r
+ * Copyright (c) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.\r
+ *\r
+ * Contact:\r
+ * Sungmin Ha <sungmin82.ha@samsung.com>\r
+ *\r
+ * This program is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU General Public License\r
+ * as published by the Free Software Foundation; either version 2\r
+ * of the License, or (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r
+ *\r
+ * Contributors:\r
+ * - S-Core Co., Ltd\r
+ */\r
+\r
#include <linux/kernel.h>\r
#include <linux/module.h>\r
#include <linux/device.h>\r
+/*\r
+ * Virtual device node for event injector of emulator\r
+ *\r
+ * Copyright (c) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.\r
+ *\r
+ * Contact:\r
+ * Sungmin Ha <sungmin82.ha@samsung.com>\r
+ *\r
+ * This program is free software; you can redistribute it and/or\r
+ * modify it under the terms of the GNU General Public License\r
+ * as published by the Free Software Foundation; either version 2\r
+ * of the License, or (at your option) any later version.\r
+ *\r
+ * This program is distributed in the hope that it will be useful,\r
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of\r
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the\r
+ * GNU General Public License for more details.\r
+ *\r
+ * You should have received a copy of the GNU General Public License\r
+ * along with this program; if not, write to the Free Software\r
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.\r
+ *\r
+ * Contributors:\r
+ * - S-Core Co., Ltd\r
+ */\r
+\r
#include <linux/kernel.h>\r
#include <linux/module.h>\r
#include <linux/device.h>\r
/* Virtio general purpose interface implementation
*
- * Copyright 2011 Dongkyun Yun
+ * Copyright (c) 2011 - 2012 Samsung Electronics Co., Ltd. All rights reserved.
*
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
+ * Contact:
+ * DongKyun Yun <dk77.yun@samsung.com>
*
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
*
- * You should have received a copy of the GNU General Public License
- * along with this program; if not, write to the Free Software
- * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
+ *
+ * Contributors:
+ * - S-Core Co., Ltd
*/
#include <linux/kernel.h>
* This code is licenced under the GPL version 2. For details see
* kernel-base/COPYING.
*/
+
+/*
+ * 2011-12-09 Dohyung Hong <don.hong@samsung.com> Add time compensation logic for emulator's system time
+ */
+
#include <linux/cpu.h>
#include <linux/err.h>
#include <linux/hrtimer.h>