Experiences Developing a Wayland Based IVI HMI. Ossama Othman 28 May 2013

Size: px
Start display at page:

Download "Experiences Developing a Wayland Based IVI HMI. Ossama Othman 28 May 2013"

Transcription

1 Experiences Developing a Wayland Based IVI HMI Ossama Othman 28 May 2013

2 Context Provide human-machine interface (HMI) better suited for Tizen IVI Driver safety React to vehicle state Options Leverage existing user interfaces: mobile, desktop Develop IVI-specific HMI 2

3 Problems Mobile and desktop user interfaces Suboptimal screen geometry: resolution, orientation Do not react to vehicle state Not safe for drivers Many features are not useful or suitable for IVI Underlying graphics subsystem may be too large or slow Develop IVI-specific HMI May require kernel and graphics hardware expertise May require additional resources for in-house development Cost Compositor User Space Input Framework Kernel KMS evdev DRM Graphics Driver Hardware Graphics Input 3

4 Solution Develop IVI HMI by leveraging Wayland and HTML5/JS Efficient Lightweight Rapid prototyping Simple architecture Open-source Avoids legacy issues with mobile and desktop 4

5 5 HMI Components

6 HMI Service Provides home screen Facilitates layout of application graphical surfaces Out of scope Application lifecycle management Sound handling and policy Input management 6

7 Compositor Handles interactions with graphics hardware Combines and renders multiple graphical surfaces into an image displayed on-screen Wayland Core compositor protocol used by IVI HMI Additional IVI HMI-specific Wayland-based protocols to be defined Weston Reference Wayland compositor HMI will leverage extensibility to fill feature gaps 7

8 Application Run-time Provides reusable set of functionality to applications HTML5 Webkit Web API implementations Toolkits Native C library Middleware Toolkits 8

9 Client Application Draws surfaces in a buffer Cairo OpenGL etc Shares buffer with compositor through Wayland Examples Media player Browser 9

10 10 Component Structure

11 11 HMI Server Side

12 Server Side Architectures HMI Service Stand-alone Integrated Server side architecture remains transparent to the client Just an implementation detail from the client point of view Client does not determine where surfaces are placed 12

13 Stand-alone HMI Service HMI service is another Wayland based client Separate process from compositor Communicates with compositor just as client application would Example: GENIVI style layer management 13

14 Stand-alone HMI Service Sequence Diagram sd Stand-alone HMI Serv ice Application libwayland Weston Weston HMI Plugin HMI Service wl_surface_attach() wl_surface_commit() surface_commit() configure_surface() layout_surface() map_surface() weston_surface_update_transform() 14

15 Integrated HMI Service HMI Service integrated with compositor Embedded directly in compositor plugin Performs same functions as stand-alone service 15

16 Integrated HMI Service Sequence Diagram sd Integrated HMI Serv ice Application libwayland Weston Weston HMI Plugin wl_surface_attach() wl_surface_commit() surface_commit() configure_surface() layout_surface() weston_surface_update_transform() 16

17 HMI Server Side Architecture Comparison Pros Cons Stand-alone Integrated Stand-alone Integrated Reusable / Flexible Simpler architecture Better fatal error recovery More efficient: less IPC Rapid prototyping Flexibility may not be needed Less efficient: more IPC Fatal error recovery may be more difficult Potentially easier to compromise compositor state 17

18 18 HTML5 HMI Problems

19 Context: HTML5 Based HMI HTML5 based HMI functionality similar to desktop window manager User interaction Layout of applications Both native and Web applications must be supported Application may not be full-screen Application may not be integrated with Web run-time (e.g. through NaCl) IVI-specific paradigms such as layers should be supported Layer is a collection of graphical surfaces Sample layers: home screen decorations, input layer, split screens GENIVI style layer management 19

20 Problem: Gap Between HTML5 and Native Sides HTML5 based HMI cannot readily layout surfaces created by native application HMI has no knowledge of surfaces created by native applications JavaScript events are not visible to native application Recall that native application may not be integrated with Web run-time Events generated by compositor are not visible to HTML5 based HMI 20

21 Problem: Supporting the Layer Concept No concept of layers in HTML5 May be emulated using multiple HTML5 Canvases Canvas based approach not always suitable Not all Web applications use HTML5 Canvases Not applicable for native applications 21

22 Solution Compositor Plugin exposes layer functionality required by HMI Web run-time plugin Provides JavaScript API that allows interaction with the compositor Forwards appropriate events to and from native and application and HTML5 based HMI Alternatives Use WebSockets to communicate between compositor plugin and HTML5 based HMI IVI-specific Node.js extensions 22

23 23 Other Problems

24 Desktop Shell-isms Direct use of wl_shell in application or toolkit Specific to desktop shell model / use case Not entirely applicable to IVI Compositor wl_shell implementation may not be available Proposal for better handling of different Wayland shell types currently under review upstream 24

25 25 Conclusion

26 Summary Wayland Simple, lightweight, efficient and extensible protocol is ideal for custom HMI developmen HTML5 is a compelling technology for implementing an HMI Many useful HTML5/JS libraries Very active Web API standardization and development Native application integration is seemingly difficult but is tractable, nonetheless 26

27 References Tizen IVI Images Daily: Snapshots: Tizen 3.0 based IVI images are a work in progress Wayland and Weston GENIVI

28 Legal INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. EXCEPT AS PROVIDED IN INTEL'S TERMS AND CONDITIONS OF SALE FOR SUCH PRODUCTS, INTEL ASSUMES NO LIABILITY WHATSOEVER, AND INTEL DISCLAIMS ANY EXPRESS OR IMPLIED WARRANTY RELATING TO SALE AND/OR USE OF INTEL PRODUCTS, INCLUDING LIABILITY OR WARRANTIES RELATING TO FITNESS FOR A PARTICULAR PURPOSE, MERCHANTABILITY, OR INFRINGEMENT OF ANY PATENT, COPYRIGHT, OR OTHER INTELLECTUAL PROPERTY RIGHT. Intel may make changes to specifications, product descriptions, and plans at any time, without notice. All dates provided are subject to change without notice. Intel is a trademark of Intel Corporation in the U.S. and other countries. *Other names and brands may be claimed as the property of others. Copyright 2013, Intel Corporation. All rights are protected. 28

29

Experiences Developing a Wayland-Based Tizen IVI HMI. Ossama Othman

Experiences Developing a Wayland-Based Tizen IVI HMI. Ossama Othman Experiences Developing a Wayland-Based Tizen IVI HMI Ossama Othman Context Provide human-machine interface (HMI) better suited for Tizen IVI Driver safety React to vehicle state Options Leverage existing

More information

Weston Plugin Based IVI Layer Management. Ossama Othman 20 September 2012

Weston Plugin Based IVI Layer Management. Ossama Othman 20 September 2012 Weston Plugin Based IVI Layer Management Ossama Othman 20 September 2012 Context GNU/Linux based IVI platform Multiple screens Multiple ECUs Applications may be distributed across multiple screens and

More information

Linux in Automotive From Open Source to Products

Linux in Automotive From Open Source to Products Linux in Automotive From Open Source to Products Mark Skarpness Director System Engineering, Intel Tsuguo Nobe Chief Advanced Service Architect and Director, Intel July 1st, 2014 Legal Information INFORMATION

More information

IVI Graphic Subsystem: Weston IVI-shell is ready for Product

IVI Graphic Subsystem: Weston IVI-shell is ready for Product IVI Graphic Subsystem: Weston IVI-shell is ready for Product Nobuhiko Tanibata 1 st July 2014 Contents Introduction Trends of Graphic stacks in IVI segment Problems & Solution Details of Wayland-ivi-extension

More information

Wayland IVI Extension

Wayland IVI Extension Wayland IVI Extension May 10, 2017 Updates in front of us Eugen Friedrich, Emre Ucan Graphics engineers, ADIT Wayland IVI Extension Agenda Short introduction of wayland-ivi-extension Current status of

More information

UI, Graphics & EFL. Carsten Haitzler Principal Engineer Samsung Electronics Korea Founder/Leader Enlightenment / EFL

UI, Graphics & EFL. Carsten Haitzler Principal Engineer Samsung Electronics Korea Founder/Leader Enlightenment / EFL UI, Graphics & EFL Carsten Haitzler Principal Engineer Samsung Electronics Korea c.haitzler@samsung.com Founder/Leader Enlightenment / EFL Display System Overview Graphics 4 Graphics Old-School FB 5 In

More information

Creating outstanding digital cockpits with Qt Automotive Suite

Creating outstanding digital cockpits with Qt Automotive Suite Creating outstanding digital cockpits with Qt Automotive Suite Get your digital cockpit first the finish line with Qt. Embedded World 2017 Trends in cockpit digitalization require a new approach to user

More information

SR-IOV support in Xen. Yaozu (Eddie) Dong Yunhong Jiang Kun (Kevin) Tian

SR-IOV support in Xen. Yaozu (Eddie) Dong Yunhong Jiang Kun (Kevin) Tian SR-IOV support in Xen Yaozu (Eddie) Dong (Eddie.Dong@intel.com) Yunhong Jiang Kun (Kevin) Tian Agenda SR-IOV specification overview Xen/SR-IOV architecture Discussions 2 SR-IOV specification overview Start

More information

Introduction to Intel Boot Loader Development Kit (Intel BLDK) Intel SSG/SSD/UEFI

Introduction to Intel Boot Loader Development Kit (Intel BLDK) Intel SSG/SSD/UEFI Introduction to Intel Boot Loader Development Kit (Intel BLDK) Intel SSG/SSD/UEFI Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

Intel Setup and Configuration Service. (Lightweight)

Intel Setup and Configuration Service. (Lightweight) Intel Setup and Configuration Service (Lightweight) Release Notes Version 6.0 (Technology Preview #3) Document Release Date: August 30, 2009 Information in this document is provided in connection with

More information

Intel vpro Technology Virtual Seminar 2010

Intel vpro Technology Virtual Seminar 2010 Intel Software Network Connecting Developers. Building Community. Intel vpro Technology Virtual Seminar 2010 Getting to know Intel Active Management Technology 6.0 Intel Active Management Technology (AMT)

More information

Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing

Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing Sample for OpenCL* and DirectX* Video Acceleration Surface Sharing User s Guide Intel SDK for OpenCL* Applications Sample Documentation Copyright 2010 2013 Intel Corporation All Rights Reserved Document

More information

Intel Desktop Board DZ68DB

Intel Desktop Board DZ68DB Intel Desktop Board DZ68DB Specification Update April 2011 Part Number: G31558-001 The Intel Desktop Board DZ68DB may contain design defects or errors known as errata, which may cause the product to deviate

More information

Graphics Pass-through with VT-d

Graphics Pass-through with VT-d Graphics Pass-through with VT-d Nov-19-2009 Weidong Han Ben Lin Xen Summit Asia 2009 Agenda Graphics Virtualization Introduction Graphics Pass-through with VT-d Performance Conclusion 2 Requirements on

More information

In the Driver s Seat

In the Driver s Seat In the Driver s Seat Use Cases of Qt in Automotive Dr Tuukka Ahoniemi Product Manager tuukka.ahoniemi@theqtcompany.com Contents Requirements for Automotive Systems Transition of Automotive Software Power

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC6CAYS, NUC6CAYH (Standard BIOS) BIOS Version 0043 - AYAPLCEL.86A.0043.2017.1123.1559 Date: November 23, 2017 TXE Firmware: 3.1.50.2222 EC Firmware: 20.00 Memory Reference

More information

Towards More Power Friendly Xen

Towards More Power Friendly Xen Towards More Power Friendly Xen June 2008 Yu Ke Tian Kevin Wei Gang Liu Jinsong Agenda Xen power management current

More information

Intel Stereo 3D SDK Developer s Guide. Alpha Release

Intel Stereo 3D SDK Developer s Guide. Alpha Release Intel Stereo 3D SDK Developer s Guide Alpha Release Contents Why Intel Stereo 3D SDK?... 3 HW and SW requirements... 3 Intel Stereo 3D SDK samples... 3 Developing Intel Stereo 3D SDK Applications... 4

More information

See What's Coming in Oracle CPQ Cloud

See What's Coming in Oracle CPQ Cloud See What's Coming in Oracle CPQ Cloud Release 2015 R1 Release Content Document 1 TABLE OF CONTENTS ORACLE CPQ CLOUD... 3 End User Enhancements... 3 Desktop Performance Enhancements... 3 Easy Administration...

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC6CAYS, NUC6CAYH (Standard BIOS) BIOS Version 0045 - AYAPLCEL.86A.0045.2017.1218.1433 Date: December 18, 2017 ME Firmware: 3.1.50.2222 EC Firmware: 20.00 Memory Reference

More information

Porting Tizen-IVI 3.0 to an ARM based SoC Platform

Porting Tizen-IVI 3.0 to an ARM based SoC Platform Porting Tizen-IVI 3.0 to an ARM based SoC Platform Damian Hobson-Garcia Automotive Linux Summit July 1-2, 2014 Tokyo, Japan Tizen IVI support Until recently Intel architecture (x86) system Tizen IVI 2.0alpha,

More information

OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing

OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing OpenCL* and Microsoft DirectX* Video Acceleration Surface Sharing Intel SDK for OpenCL* Applications Sample Documentation Copyright 2010 2012 Intel Corporation All Rights Reserved Document Number: 327281-001US

More information

Intel Unite Plugin Guide for VDO360 Clearwater

Intel Unite Plugin Guide for VDO360 Clearwater Intel Unite Plugin Guide for VDO360 Clearwater INSTALLATION AND USER GUIDE Version 1.2 December 2017 Legal Disclaimers & Copyrights All information provided here is subject to change without notice. Contact

More information

Making Nested Virtualization Real by Using Hardware Virtualization Features

Making Nested Virtualization Real by Using Hardware Virtualization Features Making Nested Virtualization Real by Using Hardware Virtualization Features May 28, 2013 Jun Nakajima Intel Corporation 1 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL

More information

VISUAL APPLICATION CREATION AND PUBLISHING FOR ANYONE

VISUAL APPLICATION CREATION AND PUBLISHING FOR ANYONE Oracle Autonomous Visual Builder Cloud Service provides an easy way to create and host web and mobile applications in a secure cloud environment. An intuitive visual development experience on top of a

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC6CAYS, NUC6CAYH (Standard BIOS) BIOS Version 0049 - AYAPLCEL.86A.0049.2018.0508.1356 Date: May 08, 2018 ME Firmware: 3.1.50.2222 EC Firmware: 20.00 Memory Reference

More information

Porting Tizen-IVI 3.0 to an ARM based SoC Platform. Damian Hobson-Garcia, IGEL Co., Ltd.

Porting Tizen-IVI 3.0 to an ARM based SoC Platform. Damian Hobson-Garcia, IGEL Co., Ltd. Porting Tizen-IVI 3.0 to an ARM based SoC Platform Damian Hobson-Garcia, IGEL Co., Ltd. Current State of Affairs Intel architecture (x86) system Tizen IVI 2.0alpha, Tizen IVI 3.0 ARM architecture based

More information

How to abstract hardware acceleration device in cloud environment. Maciej Grochowski Intel DCG Ireland

How to abstract hardware acceleration device in cloud environment. Maciej Grochowski Intel DCG Ireland How to abstract hardware acceleration device in cloud environment Maciej Grochowski Intel DCG Ireland Outline Introduction to Hardware Accelerators Intel QuickAssist Technology (Intel QAT) as example of

More information

Intel Education Theft Deterrent Release Note WW16'14. August 2014

Intel Education Theft Deterrent Release Note WW16'14. August 2014 Intel Education Theft Deterrent Release Note WW16'14 August 2014 Legal Notices Information in this document is provided in connection with Intel products. No license, express or implied, by estoppels

More information

Drive Recovery Panel

Drive Recovery Panel Drive Recovery Panel Don Verner Senior Application Engineer David Blunden Channel Application Engineering Mgr. Intel Corporation 1 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION

More information

Intel Server Board S2600CW2S

Intel Server Board S2600CW2S Redhat* Testing Services Enterprise Platforms and Services Division Intel Server Board S2600CW2S Server Test Submission (STS) Report For Redhat* Certification Rev 1.0 This report describes the Intel Server

More information

Intel Virtualization Technology Roadmap and VT-d Support in Xen

Intel Virtualization Technology Roadmap and VT-d Support in Xen Intel Virtualization Technology Roadmap and VT-d Support in Xen Jun Nakajima Intel Open Source Technology Center Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS.

More information

Innovating and Integrating for Communications and Storage

Innovating and Integrating for Communications and Storage Innovating and Integrating for Communications and Storage Stephen Price Director of Marketing Performance Platform Division Embedded and Communications Group September 2009 WHAT IS THE NEWS? New details

More information

Intel Open Source HD Graphics, Intel Iris Graphics, and Intel Iris Pro Graphics

Intel Open Source HD Graphics, Intel Iris Graphics, and Intel Iris Pro Graphics Intel Open Source HD Graphics, Intel Iris Graphics, and Intel Iris Pro Graphics Programmer's Reference Manual For the 2015-2016 Intel Core Processors, Celeron Processors, and Pentium Processors based on

More information

Update on the open source browser space

Update on the open source browser space static void _f_do_barnacle_install_properties(gobjectclass *gobject_class) { GParamSpec *pspec; Update on the open source browser space Jacobo Aragunde Pérez blogs.igalia.com/jaragunde /* Party code attribute

More information

Chromium on Wayland - Status update. Automotive Grade Linux F2F meeting (04/2017) Antonio Gomes & Silvia Cho

Chromium on Wayland - Status update. Automotive Grade Linux F2F meeting (04/2017) Antonio Gomes & Silvia Cho Chromium on Wayland - Status update Automotive Grade Linux F2F meeting (04/2017) Antonio Gomes & Silvia Cho Who is Igalia? Motivation Background Discussion Agenda Who is Igalia? Worker-owned, employee-run

More information

Reboot: Tizen Widget Framework. Hyun Ho, Kang Engineer Samsung Electronics. Copyright 2017 Samsung. All Rights Reserved.

Reboot: Tizen Widget Framework. Hyun Ho, Kang Engineer Samsung Electronics. Copyright 2017 Samsung. All Rights Reserved. Reboot: 1 Tizen Framework Hyun Ho, Kang Engineer Samsung Electronics Copyright 2017 Samsung. All Rights Reserved. Hello! My name is Hyun Ho, Kang. I m working for Samsung Electronics I m one of the Tizen

More information

Using Tasking to Scale Game Engine Systems

Using Tasking to Scale Game Engine Systems Using Tasking to Scale Game Engine Systems Yannis Minadakis March 2011 Intel Corporation 2 Introduction Desktop gaming systems with 6 cores and 12 hardware threads have been on the market for some time

More information

Intel Platform Administration Technology Quick Start Guide

Intel Platform Administration Technology Quick Start Guide Intel Platform Administration Technology Quick Start Guide 320014-003US This document explains how to get started with core features of Intel Platform Administration Technology (Intel PAT). After reading

More information

Specification Update. January 2014

Specification Update. January 2014 Intel Embedded Media and Graphics Driver v36.40.21 (32-bit) & v37.40.21 (64-bit) for Intel Processor E3800 Product Family/ Intel Celeron Processor N2920/ J1900 Linux* Specification Update January 2014

More information

Connecting with Tizen : An Overview & Roadmap. Mohan Rao

Connecting with Tizen : An Overview & Roadmap. Mohan Rao Connecting with Tizen : An Overview & Roadmap Mohan Rao Contents What is Tizen? Why Tizen? Device profile Tizen 2.4 Tizen 3.0 What s next? Conclusion 2 What is Tizen? (1/2) Designed for various category

More information

Migration Guide: Numonyx StrataFlash Embedded Memory (P30) to Numonyx StrataFlash Embedded Memory (P33)

Migration Guide: Numonyx StrataFlash Embedded Memory (P30) to Numonyx StrataFlash Embedded Memory (P33) Migration Guide: Numonyx StrataFlash Embedded Memory (P30) to Numonyx StrataFlash Embedded Memory (P33) Application Note August 2006 314750-03 Legal Lines and Disclaimers INFORMATION IN THIS DOCUMENT IS

More information

Intel IXP400 Digital Signal Processing (DSP) Software: Priority Setting for 10 ms Real Time Task

Intel IXP400 Digital Signal Processing (DSP) Software: Priority Setting for 10 ms Real Time Task Intel IXP400 Digital Signal Processing (DSP) Software: Priority Setting for 10 ms Real Time Task Application Note November 2005 Document Number: 310033, Revision: 001 November 2005 Legal Notice INFORMATION

More information

The Wayland Display Server

The Wayland Display Server The Wayland Display Server Kristian Hgsberg krh@bitplanet.net July 26, 2010 1 Wayland Overview wayland is a protocol for a new display server. wayland is an implementation 1.1 Replacing X11 Over time,

More information

Intel Graphics Virtualization Technology. Kevin Tian Graphics Virtualization Architect

Intel Graphics Virtualization Technology. Kevin Tian Graphics Virtualization Architect Intel Graphics Virtualization Technology Kevin Tian Graphics Virtualization Architect Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR

More information

LED Manager for Intel NUC

LED Manager for Intel NUC LED Manager for Intel NUC User Guide Version 1.0.0 March 14, 2018 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO

More information

KVM for IA64. Anthony Xu

KVM for IA64. Anthony Xu KVM for IA64 Anthony Xu Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE, TO ANY INTELLECTUAL PROPERTY

More information

Intel Authoring Tools for UPnP* Technologies

Intel Authoring Tools for UPnP* Technologies Intel Authoring Tools for UPnP* Technologies (Version 1.00, 05-07-2003) INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED, BY ESTOPPEL OR OTHERWISE,

More information

BIOS Update Release Notes

BIOS Update Release Notes PRODUCTS: DQ77KB (Standard BIOS) BIOS Update Release Notes BIOS Version 0059 - KBQ7710H.86A.0059.2017.0526.1645 Date: May 26, 2017 ME Firmware: 8.1.71.3608 Updated Intel ME firmware to version 8.1.71.3608.

More information

BIOS Update Release Notes

BIOS Update Release Notes PRODUCTS: DZ77SL-50K (Standard BIOS) BIOS Update Release Notes BIOS Version 0094 - SLZ7710H.86A.0094.2012.1222.1254 Date: December 22, 2012 ME Firmware: 8.1.20.1336 SATA RAID Option ROM: v11.6.0.1702 Visual

More information

Configuring Microsoft Windows Shared

Configuring Microsoft Windows Shared Application Notes Mar. 2018 Configuring Microsoft Windows Shared Folder Permissions in QES 2018 QNAP Systems, Inc. All Rights Reserved. 1 Notices This user manual provides detailed instructions of using

More information

Integration of the Chromium. Browser in the GENIVI Platform

Integration of the Chromium. Browser in the GENIVI Platform static void _f_do_barnacle_install_properties(gobjectclass *gobject_class) Integration of the Chromium { GParamSpec *pspec; Browser in the GENIVI Platform /* Party code attribute */ pspec = g_param_spec_uint64

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC6CAYS, NUC6CAYH (Standard BIOS) BIOS Version 0055 - AYAPLCEL.86A.0055.2018.0821.1152 Date: August 21, 2018 ME Firmware: 3.1.50.2244 EC Firmware: 21.00 Memory Reference

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC6CAYS, NUC6CAYH (Standard BIOS) BIOS Version 0056 - AYAPLCEL.86A.0056.2018.0926.1100 Date: September 26, 2018 ME Firmware: 3.1.55.2269 BIOS functionality enhancements.

More information

Etanova Enterprise Solutions

Etanova Enterprise Solutions Etanova Enterprise Solutions Front End Development» 2018-09-23 http://www.etanova.com/technologies/front-end-development Contents HTML 5... 6 Rich Internet Applications... 6 Web Browser Hardware Acceleration...

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: D525MW, D525MWV, D425KT, D425KTW (Standard BIOS) BIOS Version 0132 - MWPNT10N.86A.0132.2013.0726.1534 Date: July 26, 2013 Fixed issue where system hangs when plugging

More information

Intel Transparent Computing

Intel Transparent Computing Intel Transparent Computing Jeff Griffen Director of Platform Software Infrastructure Software and Services Group October, 21 2010 1 Legal Information INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION

More information

More performance options

More performance options More performance options OpenCL, streaming media, and native coding options with INDE April 8, 2014 2014, Intel Corporation. All rights reserved. Intel, the Intel logo, Intel Inside, Intel Xeon, and Intel

More information

Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design

Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design Intel Atom Processor E3800 Product Family Development Kit Based on Intel Intelligent System Extended (ISX) Form Factor Reference Design Quick Start Guide March 2014 Document Number: 330217-002 Legal Lines

More information

Intel G31/P31 Express Chipset

Intel G31/P31 Express Chipset Intel G31/P31 Express Chipset Specification Update For the Intel 82G31 Graphics and Memory Controller Hub (GMCH) and Intel 82GP31 Memory Controller Hub (MCH) February 2008 Notice: The Intel G31/P31 Express

More information

Intel 945(GM/GME)/915(GM/GME)/ 855(GM/GME)/852(GM/GME) Chipsets VGA Port Always Enabled Hardware Workaround

Intel 945(GM/GME)/915(GM/GME)/ 855(GM/GME)/852(GM/GME) Chipsets VGA Port Always Enabled Hardware Workaround Intel 945(GM/GME)/915(GM/GME)/ 855(GM/GME)/852(GM/GME) Chipsets VGA Port Always Enabled Hardware Workaround White Paper June 2007 Order Number: 12608-002EN INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION

More information

Yocto Overview. Dexuan Cui Intel Corporation

Yocto Overview. Dexuan Cui Intel Corporation Yocto Overview Dexuan Cui Intel Corporation Agenda Introduction to the Yocto Project Participating Organizations Yocto Project Build System Yocto Project Workflow Quick Start Guide in a Slide What is the

More information

Enhancing pass through device support with IOMMU. Haitao Shan Yunhong Jiang Allen M Kay Eddie (Yaozu) Dong

Enhancing pass through device support with IOMMU. Haitao Shan Yunhong Jiang Allen M Kay Eddie (Yaozu) Dong Enhancing pass through device support with IOMMU Haitao Shan (haitao.shan@intel.com) Yunhong Jiang Allen M Kay Eddie (Yaozu) Dong Agenda Current Status Further enhancement Hardening host Improving functionality

More information

QtWayland. Creating Window Compositors with the QtWayland module

QtWayland. Creating Window Compositors with the QtWayland module QtWayland Creating Window Compositors with the QtWayland module Andy Nichols 2012 A little about me... Andy Nichols Software Engineer at Digia 6 years of Qt experience Former Qt Support Engineer Maintainer

More information

Non-Volatile Memory Cache Enhancements: Turbo-Charging Client Platform Performance

Non-Volatile Memory Cache Enhancements: Turbo-Charging Client Platform Performance Non-Volatile Memory Cache Enhancements: Turbo-Charging Client Platform Performance By Robert E Larsen NVM Cache Product Line Manager Intel Corporation August 2008 1 Legal Disclaimer INFORMATION IN THIS

More information

Intel Unite Solution. Linux* Release Notes Software version 3.2

Intel Unite Solution. Linux* Release Notes Software version 3.2 Intel Unite Solution Linux* Release Notes Software version 3.2 December 2017 Legal Disclaimers & Copyrights All information provided here is subject to change without notice. Contact your Intel representative

More information

Solid-State Drive System Optimizations In Data Center Applications

Solid-State Drive System Optimizations In Data Center Applications Solid-State Drive System Optimizations In Data Center Applications Tahmid Rahman Senior Technical Marketing Engineer Non Volatile Memory Solutions Group Intel Corporation Flash Memory Summit 2011 Santa

More information

Using Web Workers to Improve the Performance of Metro HTML5- JavaScript* Apps

Using Web Workers to Improve the Performance of Metro HTML5- JavaScript* Apps Using Web Workers to Improve the Performance of Metro HTML5- JavaScript* Apps Objective This article provides an introduction on how to use web workers inside HTML5-JavaScript* Metro apps. We will discuss

More information

Installation Guide and Release Notes

Installation Guide and Release Notes Intel C++ Studio XE 2013 for Windows* Installation Guide and Release Notes Document number: 323805-003US 26 June 2013 Table of Contents 1 Introduction... 1 1.1 What s New... 2 1.1.1 Changes since Intel

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC7i3BNK, NUC7i3BNH, NUC7i5BNK, NUC7i5BNH, NUC7i7BNH (Standard BIOS) BIOS Version 0050 - BNKBL357.86A.0050.2017.0816.2002 Date: August 16, 2017 EC Firmware: 8.05 :

More information

Intel AppUp SM developer program and Native Apps

Intel AppUp SM developer program and Native Apps Intel AppUp SM developer program and Native Apps Amar Kona Raghav Darisi Intel Corporation GDC 2012 Agenda Intel AppUp SM developer program - what is it all about Reviewing the SDK Demo App Submission

More information

Jomar Silva Technical Evangelist

Jomar Silva Technical Evangelist Jomar Silva Technical Evangelist Agenda Introduction Intel Graphics Performance Analyzers: what is it, where do I get it, and how do I use it? Intel GPA with VR What devices can I use Intel GPA with and

More information

Clear CMOS after Hardware Configuration Changes

Clear CMOS after Hardware Configuration Changes Clear CMOS after Hardware Configuration Changes Technical White Paper August 2018 Revision 001 Document Number: 337986-001 You may not use or facilitate the use of this document in connection with any

More information

Understanding Windows To Go

Understanding Windows To Go Understanding Windows To Go By Simon Huang Technical Product Manager simon.huang@supertalent.com Super Talent Technology September, 2012 Release 1.21 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED

More information

INTEL PERCEPTUAL COMPUTING SDK. How To Use the Privacy Notification Tool

INTEL PERCEPTUAL COMPUTING SDK. How To Use the Privacy Notification Tool INTEL PERCEPTUAL COMPUTING SDK How To Use the Privacy Notification Tool LEGAL DISCLAIMER THIS DOCUMENT CONTAINS INFORMATION ON PRODUCTS IN THE DESIGN PHASE OF DEVELOPMENT. INFORMATION IN THIS DOCUMENT

More information

Nested Virtualization Update From Intel. Xiantao Zhang, Eddie Dong Intel Corporation

Nested Virtualization Update From Intel. Xiantao Zhang, Eddie Dong Intel Corporation Nested Virtualization Update From Intel Xiantao Zhang, Eddie Dong Intel Corporation Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

Trusted Platform Module (TPM) Quick Reference Guide

Trusted Platform Module (TPM) Quick Reference Guide Trusted Platform Module (TPM) Quick Reference Guide System builders/integrators should give this Guide to the system owners to assist them in enabling and activating the Trusted Platform Module. Warning

More information

REST APIs on z/os. How to use z/os Connect RESTful APIs with Modern Cloud Native Applications. Bill Keller

REST APIs on z/os. How to use z/os Connect RESTful APIs with Modern Cloud Native Applications. Bill Keller REST APIs on z/os How to use z/os Connect RESTful APIs with Modern Cloud Native Applications Bill Keller bill.keller@us.ibm.com Important Disclaimer IBM s statements regarding its plans, directions and

More information

Intel Desktop Board D945GCLF2

Intel Desktop Board D945GCLF2 Intel Desktop Board D945GCLF2 Specification Update July 2010 Order Number: E54886-006US The Intel Desktop Board D945GCLF2 may contain design defects or errors known as errata, which may cause the product

More information

Intel Serial to Parallel PCI Bridge Evaluation Board

Intel Serial to Parallel PCI Bridge Evaluation Board Intel 41210 Serial to Parallel PCI Bridge Evaluation Board User s Guide October 2004 Order Number: 278947-002 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

IEEE1588 Frequently Asked Questions (FAQs)

IEEE1588 Frequently Asked Questions (FAQs) IEEE1588 Frequently Asked Questions (FAQs) LAN Access Division December 2011 Revision 1.0 Legal INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS OR IMPLIED,

More information

Intel Server Board S2400SC

Intel Server Board S2400SC VMware* Testing Services Enterprise Platforms and Services Division Intel Server Board S2400SC Server Test Submission (STS) Report For VMware* ESX 4.1 Server Certification Rev 1.0 Dec. 3 rd, 2012 This

More information

WPE WebKit. HTML5 user interfaces for embedded devices. Juan José Sánchez Penas Embedded Linux Conference Prague, October 2017

WPE WebKit. HTML5 user interfaces for embedded devices. Juan José Sánchez Penas Embedded Linux Conference Prague, October 2017 WPE WebKit HTML5 user interfaces for embedded devices Juan José Sánchez Penas Embedded Linux Conference Prague, October 2017 Myself, Igalia and Web Browsers Co-founder of Igalia in 2001. 60 engineers.

More information

Intel Cache Acceleration Software for Windows* Workstation

Intel Cache Acceleration Software for Windows* Workstation Intel Cache Acceleration Software for Windows* Workstation Release 3.1 Release Notes July 8, 2016 Revision 1.3 INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Intel Atom Processor Based Platform Technologies. Intelligent Systems Group Intel Corporation

Intel Atom Processor Based Platform Technologies. Intelligent Systems Group Intel Corporation Intel Atom Processor Based Platform Technologies Intelligent Systems Group Intel Corporation Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE, EXPRESS

More information

Intel SDK for OpenCL* - Sample for OpenCL* and Intel Media SDK Interoperability

Intel SDK for OpenCL* - Sample for OpenCL* and Intel Media SDK Interoperability Intel SDK for OpenCL* - Sample for OpenCL* and Intel Media SDK Interoperability User s Guide Copyright 2010 2012 Intel Corporation All Rights Reserved Document Number: 327283-001US Revision: 1.0 World

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC7i3BNK, NUC7i3BNH, NUC7i5BNK, NUC7i5BNH, NUC7i7BNH (Standard BIOS) BIOS Version 0047 - BNKBL357.86A.0047.2017.0518.1824 Date: May 18, 2017 ME Firmware: 11.6.27.3264

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC7i3BNK, NUC7i3BNH, NUC7i5BNK, NUC7i5BNH, NUC7i7BNH (Standard BIOS) BIOS Version 0054 - BNKBL357.86A.0054.2017.1025.1822 Date: October 25, 2017 ME Firmware: 11.6.27.3264

More information

Oracle Mobile Application Framework

Oracle Mobile Application Framework Oracle Mobile Application Framework Oracle Mobile Application Framework (Oracle MAF) is a hybrid-mobile development framework that enables development teams to rapidly develop single-source applications

More information

Intel Desktop Board DH61CR

Intel Desktop Board DH61CR Intel Desktop Board DH61CR Specification Update December 2011 Order Number: G27744-003 The Intel Desktop Board DH61CR may contain design defects or errors known as errata, which may cause the product to

More information

Intel and the Future of Consumer Electronics. Shahrokh Shahidzadeh Sr. Principal Technologist

Intel and the Future of Consumer Electronics. Shahrokh Shahidzadeh Sr. Principal Technologist 1 Intel and the Future of Consumer Electronics Shahrokh Shahidzadeh Sr. Principal Technologist Legal Notices and Disclaimers INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS.

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC7i3BNK, NUC7i3BNH, NUC7i5BNK, NUC7i5BNH, NUC7i7BNH (Standard BIOS) BIOS Version 0051 - BNKBL357.86A.0051.2017.0901.1328 Date: September 01, 2017 ME Firmware: 11.6.27.3264

More information

I/O virtualization. Jiang, Yunhong Yang, Xiaowei Software and Service Group 2009 虚拟化技术全国高校师资研讨班

I/O virtualization. Jiang, Yunhong Yang, Xiaowei Software and Service Group 2009 虚拟化技术全国高校师资研讨班 I/O virtualization Jiang, Yunhong Yang, Xiaowei 1 Legal Disclaimer INFORMATION IN THIS DOCUMENT IS PROVIDED IN CONNECTION WITH INTEL PRODUCTS. NO LICENSE,

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: NUC7i3BNK, NUC7i3BNH, NUC7i5BNK, NUC7i5BNH, NUC7i7BNH (Standard BIOS) BIOS Version 0057 - BNKBL357.86A.0057.2017.1122.1550 Date: November 22, 2017 ME Firmware: 11.8.50.3425

More information

Graphics Performance Analyzer for Android

Graphics Performance Analyzer for Android Graphics Performance Analyzer for Android 1 What you will learn from this slide deck Detailed optimization workflow of Graphics Performance Analyzer Android* System Analysis Only Please see subsequent

More information

Modern and Responsive Mobile-enabled Web Applications

Modern and Responsive Mobile-enabled Web Applications Available online at www.sciencedirect.com ScienceDirect Procedia Computer Science 110 (2017) 410 415 The 12th International Conference on Future Networks and Communications (FNC-2017) Modern and Responsive

More information

Intel Desktop Board D2700DC. MLP Report. Motherboard Logo Program (MLP)

Intel Desktop Board D2700DC. MLP Report. Motherboard Logo Program (MLP) Motherboard Logo Program (MLP) Intel Desktop Board D2700DC MLP Report 1/5/2012 Purpose: This report describes the Board D2700DC Motherboard Logo Program testing run conducted by Intel Corporation. THIS

More information

BIOS Update Release Notes

BIOS Update Release Notes PRODUCTS: DH77EB (Standard BIOS) BIOS Update Release Notes BIOS Version 0098 - EBH7710H.86A.0098.2012.1219.1026 Date: December 23, 2012 ME Firmware: 8.1.20.1336 Integrated Graphics Option ROM: Build 2143

More information

BIOS Update Release Notes

BIOS Update Release Notes BIOS Update Release Notes PRODUCTS: DX58SO2, DX58OG (Standard BIOS) BIOS Version 0888 - SOX5820J.86A.0888.2012.0129.2203 Date: January 29, 2011 ICH10 SATA RAID Option ROM: v11.0.0.1339 Updated processor

More information

Tizen IVI Architecture New features. Dominig ar Foll, Intel Open Source

Tizen IVI Architecture New features. Dominig ar Foll, Intel Open Source Tizen IVI Architecture New features Dominig ar Foll, Intel Open Source Agenda What is Tizen IVI How to join the project Our road map Architecture New Features 2 What is Tizen IVI Tizen IVI Support Intel

More information