ENEA Multicore: High Performance Packet Processing Enabled with a Hybrid SMP/AMP OS Technology

Total Page:16

File Type:pdf, Size:1020Kb

ENEA Multicore: High Performance Packet Processing Enabled with a Hybrid SMP/AMP OS Technology WHITE PAPER 1 ENEA MULticore: High performance packet processing enabled with a hybrid SMP/AMP OS technology Patrik Strömblad, Chief System Architect OSE, Enea The multicore technology introduces a great challenge to the entire software industry, and it causes a significant disruption to the embedded device market since it forces much of the existing software to be redesigned according to new, not yet established principles. Abstract distribution scalability to multicore de- IP packets. In most cases, network Moore’s law does still hold, but processor vices has proven to be a fairly straight- traffic processing can be divided in two vendors are rapidly turning to use forward task as it preserves the existing major categories; slow path processing the additional transistors to create software architecture investments. and fast path processing: more cores on the same die instead n Slow path processing: This involves of increasing frequency since this not Introduction network protocol control signaling only gives more chip performance but The embedded software industry is to configure and establish the data also decreases the power consumption facing the challenge to really start to paths, and it also involves packets (watt/mips). think and design in parallel, in order that terminate on this node in This paper starts by describing to be able to fully make use of the higher protocol layers that uses the the widely accepted multiprocessing new multi-core devices. Up until now, socket interface. software design models, and some we have been able to gain higher n Fast path processing: This involves of their benefits and drawbacks. After performance solely by upgrading the IP forwarding and other kinds of that, a few simple packet processing processor, but there is no “free lunch” intermediate processing of the use cases are described, aiming to il- any more. This rises a great challenge actual data packets such as NAT, luminate the pain points of a strict AMP also on the OS side, as the requirement security, etc. It is critical to minimize multiprocessing approach. Finally, we to parallelize also applies within the overhead in fast path processing introduce Enea’s OSE® Multicore Edition OS. The goal for a multicore RTOS must since the I/O bandwidth is dominant (Enea OSE MCE), and show how this be to provide excellent support for the and the CPU cycle budget for soft- new hybrid SMP/AMP RTOS technology application to maximize its performance ware execution is limited. can provide a homogeneous, scalable and scale with more cores, and at the and portable application framework same time maintain standard RTOS real- IP forwarding packets may still be part for high-speed packet processing time characteristics such as determinism of the slow path if it, for any reason, applications within the data- and and interrupt latency. The RTOS must need more cpu processing budget than connectivity layer, while at the same provide a simple, flexible and uniform allowed in the fast path. The categori- time being a feature-rich SMP RTOS for programming environment that offers zation of slow and fast path is a way to networking control protocols. Enea OSE capabilities such as load balancing, boot categorize the cost of processing rather MCE defines a very low-level multicore loading, file system and networking. than the functionality. processor abstraction model which The ongoing convergence between gives high portability and at the same the telecom and datacom domain are time it provides a low-overhead device creating extreme requirements on the programming model. The migration nodes in the networks to be able to of Enea OSE applications designed for handle very high bandwidth of primarily Enea is a global software and services company focused on solutions for communication-driven products. With 40 years of experience Enea is a world leader in the development of software platforms with extreme demands on high-availability and performance. Enea’s expertise in real-time operating systems and high availability middleware shortens development cycles, brings down product costs and increases system reliability. Enea’s vertical solutions cover telecom handsets and infrastructure, medtech, industrial automation, automotive and mil/aero. Enea has 750 employees and is listed on Nasdaq OMX Nordic Exchange Stockholm AB. For more information please visit enea.com or contact us at [email protected]. www.enea.com WHITE PAPER 2 The slow path is not subject for discus- like Linux and Windows provides a is that the OS provides no support to sion in this paper since TCP/IP stacks are best-effort execution platform for these the distributed application for load generally not multicore-adapted. The kinds of CPU-intensive applications. balancing or OS resource management. fast path category is the area which has The high degree of hardware The configuration, load and startup of the highest bandwidth increase, and resource abstraction is in many cases an such an application is also inherently therefore many people seek ways to advantage, but the layer introduces complex to design. offload these features from the legacy substantial overhead when the appli- stacks and create new design models cation becomes as I/O intensive as ”Bare Metal” Model for them on multicore devices. they tend to be in embedded packet The ”Bare Metal” model is a single The next section describes the forwarding/routing applications. The threaded execution model where the common multiprocessing variants that principles of the shared memory available API:s are processor-vendor are subject for evaluation in discussions programming model on the application specific. Since no regular RTOS exist for around multicore software solutions. level and inside the Linux kernel is these threads, a common approach is based on using mutable shared objects to run a regular operating system on Various Multicore Processing in memory, and this is an inherent one or several cores, like Linux, and let Models in SW system design bottleneck to scalability in multicore the rest of the cores execute a “bare- There are fundamentally three multi- systems. This will inevitably lead to poor metal” thread and use an application processing models that are used to scaling to many cores. framework that creates an abstraction describe system designs on multicore This, together with the fact that the of the hardware layer. The advantage devices; the SMP, AMP and the bare complex SMP implementation of kernels here is of course that maximal perform- metal model. These models have a in many cases has the drawback of not ance and minimal overhead is achieved number of benefits and drawbacks, being deterministic, makes the classic SMP when running without an RTOS, but which will be briefly described below. OS:es less suitable as a RTOS for high-speed the disadvantage is though that the packet processing in the long run. software becomes hardware-specific, The SMP Model which will force a redesign of any The Symmetric Multi Processing model The AMP Model applications whenever the hardware is is the model used in the design of The Asymmetric Multi Processing model upgraded. Also, the parts of the system several enterprise OS:es such as Linux uses an approach where each core is running without an RTOS or application as well as in the design of its application running its own complete, isolated, framework will take on the role of a domain. In such OS:es and their appli- operating system or application frame- black box, i.e. there will be no observ- cations data is to a large extent shared, work (an alternative term for a more ability except for the external interfaces. and a number of different locking light-weight RTOS). This leaves the door Any support for tracing, debug or post mechanisms and atomic operations open to also choose to have different mortem dump support is not available, are used frequently for synchronization. RTOS:es on different cores. The advantage and therefore the amount of code “out The SMP model is easy to manage from of an AMP system is that high-perform- there” must therefore naturally be kept a SW management perspective since ance is achieved locally and that it to a minimum. Over the time though, it creates a good abstraction where scales well to several cores. Using the the need for more functionality in these the OS facilitates best-effort cpu load AMP model and virtualization technique parts will most likely grow which in turn balancing, and it has been used in the is also a way to being able to reuse increases the need for better device server and desktop application domain legacy single core designs. abstraction. for a very long time. Enterprise OS:es The drawback with the AMP model Case study: Packet processing use cases using an AMP system design The AMP model is not new to the embedded world. It has been deployed in many systems where DSP:s or network processors are put together as multi- core clusters, dedicated to perform a specific task. Some examples of use cases applic- able to the AMP model: Functional pipelining through cores Parallel, symmetric processing on cores Packet Processing Functions Figure 1. AMP processing models. WHITE PAPER 3 n A set of Digital Signal Processors In many cases these flows has states OS provides no support for state (DSPs) that perform signal proces- (e.g. multimedia transcoding, IP tunnel- migration between cores. Adding sing like transcoding on flows of ing), which means that all packets part support for state check-pointing, packets. of a flow must be “pinned” and passed thread migration and balancing of n A set of network processors that in-order through the same sequence of packet flows can be quite complex. performs IP fast path processing.
Recommended publications
  • Enea® H324m-BRICKS 1
    DATA SHEET ENEA® H324m-BRICKS 1 Multimedia session control and transfer protocols stack for 3G video The ITU-T H.324 recommendation was initially issued to specify a suite of standards for sharing video, voice and data simultaneously over modem connections on PSTN (Public Switched Telephone Network). It defines a control protocol (H.245) and multi plexing mechanism (H.223) as well as audio and video codecs used for real- time multimedia streaming over an established switchedcircuit connection. 3G-324M has been derived from Enea H324m-Bricks n ITU-T H.245 version 11 (backward H.324 standards by 3GPP and 3GPP2 Enea® H324m-Bricks is a portable compatible) including support for standard ization bodies to specify implementation of this set of standards H.223 Annexes A, B and C required multimedia communication in mobile compliant with: for mobile communications switched circuit environments. n ITU-T H.324 (09/2005) including 3G-324M set of protocols is well mobile support specified in Annex Enea H324m-BRICKS consists of the suited for delay sensitive applications A , C and K (Note 1) following: like video phone, video conferencing, n 3GPP & 3GPP2 specifications: TS n ITU-T H.245 protocol for multimedia TV broadcasting, and video-ondemand. 26.111 (V6.01), TSDatasheet 26.110 (V6.00), mobile call control in compliance Such applications could not be satis- and TS 26.911 (V6.00) with H.324 recommendation factorily operated using currently n ITU-T H.223 including Annex A, B, C n ITU-T H.223 multiplexing protocol H324m-BRICKS deployed mobile packet technology due and D (Note 1) including: to high packet transmission overhead, n Adaptation layer procedures for high BER, and variable transit delay.
    [Show full text]
  • University Microfilms International T U T T L E , V Ir G in Ia G R a C E
    INFORMATION TO USERS This was produced from a copy of a document sent to us for microfilming. While the most advanced technological means to photograph and reproduce this document have been used, the quality is heavily dependent upon the quality of the material subm itted. The following explanation of techniques is provided to help you understand markings or notations which may appear on this reproduction. 1. The sign or “target” for pages apparently lacking from the document photographed is “Missing Page(s)”. If it was possible to obtain the missing page(s) or section, they are spliced into the film along with adjacent pages. This may have necessitated cutting through an image and duplicating adjacent pages to assure you of complete continuity. 2. When an image on the film is obliterated with a round black mark it is an indication that the film inspector noticed either blurred copy because of movement during exposure, or duplicate copy. Unless we meant to delete copyrighted materials that should not have been filmed, you will find a good image of the page in the adjacent frame. 3. When a map, drawing or chart, etc., is part of the material being photo­ graphed the photographer has followed a definite method in “sectioning” the material. It is customary to begin filming at the upper left hand corner of a large sheet and to continue from left to right in equal sections with small overlaps. If necessary, sectioning is continued again-beginning below the first row and continuing on until complete. 4. For any illustrations that cannot be reproduced satisfactorily by xerography, photographic prints can be purchased at additional cost and tipped into your xerographic copy.
    [Show full text]
  • 14 Cict 21 P4 :06
    L 1' ti Popayán 21 de octubre de 2014 14 CICT 21 P4 :06 Señores Supervisores Rosaura Bermúdez Ayala (.5`) PU. Of. Gestión Ambiental ARCHIVESE EN Holman Gaitán PE. Of. Gestión Ambiental Corporación Autónoma Regional del Cauca — CRC ASUNTO: ENTREGA INFORME FINAL CONTRATO 0151-17-05-2013 Cordial Saludo, Para los fines pertinentes de la realización de liquidación del presente contrato les remito el informe final del Proyecto: "PARTICIPACION COMUNITARIA INSTITUCIONAL PARA LA ORDENACION Y MANEJO DE LAS SUBZONAS HIDROGRAFICAS DE LOS RIOS PAÉZ, PALO, TIMBA Y EL PROYECTO DE ORDENACION FORESTAL EN EL DEPARTAMENTO DEL CAUCA, el informe consta de 49 folios y además se anexa un CD con toda la información y cartografía generada para estos proyectos, MXD (Mapas). archivos en formato Shapefile, tablas en formato de Excel y Geodatabase de las Subzonas antes mencionadas y el proyecto de ordenación. Institucionalmente, UARDO VERA M. CC. 017 de Popayán Geógrafo Contratista CRC Preparo y Reviso* Luis E / Sub Gestión Amb. C ten 2' • • • .....•• t Ole Vtr, ni!~ ") '. *21 ") *. 08265 -HOZ 7W CORPORACION AUTONOMA REGIONAL DEL CAUCA CRC INFORME FINAL CONTRATO 0151/2013: PROYECTO DE PARTICIPACION COMUNITARIA INSTITUCIONAL PARA LA ORDENACION Y MANEJO DE LAS SUBZONAS HIDROGRAFICAS RIO PAEZ. PALO Y) TIMBA EN EL DEPARTAMENTO DEL CAUCA. PROYECTO DE ORDENACION FORESTAL DEL DEPARTAMENTO DEL CAUCA. RESENTADO POR: LUIS EDUARDO RIVERA MORALES GEOGRAFO CONTRATISTA POPAYÁN 2013 1 ti TABLA DE CONTENIDO PÁG. INTRODUCCIÓN 4 1. OBJETIVOS 5 1.1. Objetivo General 5 1.2. Objetivos Especificos 5 2. METODOLOGIA 6 2.1. Primera Fase 6 2.1.1. Revisión y recolección de información cartográfica y secundaria 6 2.2.
    [Show full text]
  • Annual Report 2006 (Pdf)
    ANNUAL REPORT NCC 2006 CONTENTS This is NCC 1 FINANCIAL REPORT Review by the President 2 Report of the Board of Directors, including risk analysis 40 Group overview 6 Consolidated income statement 50 Strategic orientation 10 Consolidated balance sheet 52 Financial objectives and dividend policy 13 Parent Company income statement 54 Market and competitors 16 Parent Company balance sheet 55 Employees 22 Changes in shareholders’ equity 56 The environment and society 25 Cash flow statement 58 Business areas Notes 60 – NCC Construction Sweden 30 Auditors’ Report 95 – NCC Construction Denmark 32 – NCC Construction Finland 33 Multi-year review 96 – NCC Construction Norway 34 Quarterly data 98 – NCC Construction Germany 35 Definitions / Glossary 99 – NCC Property Development 36 – NCC Roads 38 SHAREHOLDER INFORMATION Corporate governance 100 Board of Directors and Auditors 106 Management 108 The NCC share 110 This is a translation of the original Swedish Annual Report. In Financial information 112 the event of differences between the English translation and the Swedish original, the Swedish Annual Report shall prevail. Index of key words 113 Kanalhusen, Kristianstad, Sweden. Kollegie, Viborg, Denmark. NCC 2006 FINANCIAL OVERVIEW OF 2006 Stångåstrand, Linköping, Sweden. Key figures Net sales by business area, percent SEK M 2006 2005 Orders received 57,213 52,413 NCC Roads, 18 (18)% NCC Construction Sweden, 39 (39)% Net sales 55,876 49,506 Operating profit 2,392 1,748 Profit after financial items 2,263 1,580 NCC Property Net profit for the year
    [Show full text]
  • Notice of Annual General Meeting of Shareholders in Enea AB (Publ)
    Notice of Annual General Meeting of Shareholders in Enea AB (publ) The shareholders in Enea AB (publ), corp. id. no. 556209-7146, (the ”Company”), are hereby invited to attend the annual general meeting (“AGM”) to be held on Tuesday May 9, 2017, at 4.30 p.m. at Kista Science Tower, Färögatan 33 in Kista, Stockholm. Registration starts at 3.30 p.m. Notice of attendance Shareholders who wish to attend the AGM must be recorded as shareholder in the share register maintained by Euroclear Sweden AB no later than Wednesday May 3, 2017 and notify the Company no later than 5 p.m. on Wednesday May 3, 2017. Notice of attendance can be given by post to Enea AB (publ), P.O. Box 1033, 164 21 Kista, by telephone +46 8 50 71 50 05 or by e-mail to [email protected]. Notice of attendance shall contain name, personal or corporate identification number, number of represented shares, address, telephone no. and assistant, if any, (no more than 2). Shareholders represented by proxy shall issue a dated proxy. The proxy may be valid for a maximum of five years if so has been specifically stated. If no term of validity is stated, the proxy is valid for one year. The proxy shall be submitted to the Company well ahead of the AGM to the address stated above. Proxies issued by a legal entity must be accompanied by an attested copy of the entity’s registration certificate. The registration certificate must not be older than one year. A proxy form will be kept available at the Company’s website www.enea.com and will also be sent to shareholders who so request and state their address.
    [Show full text]
  • Computer Architectures an Overview
    Computer Architectures An Overview PDF generated using the open source mwlib toolkit. See http://code.pediapress.com/ for more information. PDF generated at: Sat, 25 Feb 2012 22:35:32 UTC Contents Articles Microarchitecture 1 x86 7 PowerPC 23 IBM POWER 33 MIPS architecture 39 SPARC 57 ARM architecture 65 DEC Alpha 80 AlphaStation 92 AlphaServer 95 Very long instruction word 103 Instruction-level parallelism 107 Explicitly parallel instruction computing 108 References Article Sources and Contributors 111 Image Sources, Licenses and Contributors 113 Article Licenses License 114 Microarchitecture 1 Microarchitecture In computer engineering, microarchitecture (sometimes abbreviated to µarch or uarch), also called computer organization, is the way a given instruction set architecture (ISA) is implemented on a processor. A given ISA may be implemented with different microarchitectures.[1] Implementations might vary due to different goals of a given design or due to shifts in technology.[2] Computer architecture is the combination of microarchitecture and instruction set design. Relation to instruction set architecture The ISA is roughly the same as the programming model of a processor as seen by an assembly language programmer or compiler writer. The ISA includes the execution model, processor registers, address and data formats among other things. The Intel Core microarchitecture microarchitecture includes the constituent parts of the processor and how these interconnect and interoperate to implement the ISA. The microarchitecture of a machine is usually represented as (more or less detailed) diagrams that describe the interconnections of the various microarchitectural elements of the machine, which may be everything from single gates and registers, to complete arithmetic logic units (ALU)s and even larger elements.
    [Show full text]
  • Analysis and Design of a Policy Based Approach to Software Download in a Distributed Automotive Middleware
    Analysis and Design of a Policy based approach to Software Download in a Distributed Automotive Middleware ANDREAS LINDELL Master of Science Thesis Stockholm, Sweden 2007 This sentence was intentionally made white. Analysis and Design of a Policy based approach to Software Download in a Distributed Automotive Middleware Andreas Lindell This sentence was intentionally made white. Master of Science Thesis MMK 2007:76 fMDA 308g KTH Industrial Engineering and Management Machine Design SE-100 44 Stockholm This sentence was intentionally made white. This Master Thesis was written at, and in cooperation with, Keywords: Automotive Middleware, Embedded System, Distributed System, Software Load, Policy, Repository, Policy Repository, DySCAS, AUTOSAR, OSE Epsilon, Linux, Polyhedra The contents, results and conclusions of this master thesis represents the au- thor's opinion only, and is not in any way affiliated with those of the DySCAS or AUTOSAR consortium, or that of Enea AB or the Royal Institute of Technology. c 2007 Andreas Lindell . Master of Science Thesis MMK2007:76 MDA 308 Analysis and Design of a Policy based approach to Software Download in a Distributed Automotive Middleware Andreas Lindell Approved: Examiner: Supervisor: 2007-12-18 Martin T¨orngren Magnus Persson Commissioner: Contact Person: Enea Detlef Scholle . Abstract . DySCAS is an automotive research project with the purpose of providing a future standard within the vehicle electronics layer satisfying the needs of both today's and tomorrow's automotive producers. This master thesis was carried out at Enea during the fall of 2007 with the purpose of investigating the implementation of software download through an external and secure communication link to every node in a DySCAS system.
    [Show full text]
  • Graphics System in Vehicle Electronics
    UPTEC IT09 008 Examensarbete 30 hp April 2009 Graphics System in Vehicle Electronics Andreas Kjellgren Abstract Graphics System in Vehicle Electronics Andreas Kjellgren Teknisk- naturvetenskaplig fakultet UTH-enheten In this thesis three problems areas are studied related to embedded system and device driver programming: a GPS driver, the CAN Bus and study of graphics libraries Besöksadress: suitable for embedded systems. The thesis has two parts: an academic study and an Ångströmlaboratoriet Lägerhyddsvägen 1 implementation phase based on the academic study. The Freescale i.MX31ADS Hus 4, Plan 0 development board together with ENEA's operating system OSE is used as a basis for the study and it is shown that OpenGL ES is best suited for the platform. Further the Postadress: system can be complemented by the use of Mobile 3D Graphics, a Java based Box 536 751 21 Uppsala solution. A driver for the graphics port is implemented for Linux and OpenGL ES works using a graphics accelerator on the hardware. In the field of CAN Telefon: communication an analysis of an existing driver is made. The driver has two 018 – 471 30 03 shortcomings that lead to an incorrect priority order when multiple messages are Telefax: sent simultaneously on the CAN bus. The main problem is that the bit, which tells if 018 – 471 30 00 the data field of the CAN message fits in a single message, has the greatest impact on a CAN message priority. Another problem is that the signal numbers have not been Hemsida: assigned in a consistent manner. A design proposal and an implementation are made.
    [Show full text]
  • Elekta Annual Report 2020/21 1 May 13, 5:15 Pm May 13, 10:45 Pm Kolkata, India Alexandria, Egypt Access Gap of ~1,400 Linacs Access Gap of ~100 Linacs
    Towards a world where everyone has access to the best cancer care Annual Report 2020/21 LIMA, PERU MAY 14, 06:15 AM Content THIS IS ELEKTA This is Elekta 1 BUSINESS OVERVIEW A global leader in CEO comment 6 Market and trends 8 Precision Radiation Strategic framework 11 Offering 18 Geographical overview 30 Medicine Risk management 34 The share 39 Elekta is a global leader in radiotherapy solutions to fight cancer and neurological diseases. In fact, we are IN-DEPTH SUSTAINABILITY REPORT the only independent radiotherapy provider of scale. We Introduction 42 have a broad offering of advanced solutions for deliver- Access to Healthcare 44 ing the most efficient radiotherapy treatments. Green Processes 48 Business Ethics 51 Elekta’s offering allows clinicians to treat more patients People in Focus 55 Sustainability governance with increased quality, both with value-creating and reporting principles 63 innovations in solutions and AI-supported service based GRI content index 67 on a global network. At present Elekta has an installed Auditor’s report 70 base of CORPORATE GOVERNANCE Chairman’s comment 72 Corporate governance report 2020/21 73 > 6,650 Internal control 81 systems globally. Board of Directors 84 Executive Management 86 Auditor’s report 88 Remuneration report 2020/21 89 FINANCIAL REPORTING Solutions ~60% of net sales Board of Director’s report 94 Consolidated income statement 104 Consolidated statement of comprehensive income 104 Oncology Informatics Solutions Consolidated balance sheet 106 Changes in consolidated equity 108 Consolidated cash flow statement 110 Financial statements – MR-Linac Linac Parent Company 112 Solutions Solutions Notes 114 Signatures of the Board 147 Auditor’s report 148 Glossary 152 Brachy Neuro Definitions 154 Solutions Solutions Alternative performance measures 155 Five year review and key figures 158 Annual General Meeting 2021 160 Service ~40% of net sales About the Annual Report Pages 92–147 constitute the statutory annual report, which has been audited.
    [Show full text]
  • Enea® T38gw-BRICKS 1
    DATA SHEET ENEA® T38gw-BRICKS 1 Fax Over IP Gateway Protocols SIP – T.38 – SoftModem ITU-T T.38 recommendation specifies the communication protocol to be used between facsimile gateways or between facsimile gateways and IAF (Internet Aware Fax device) connected via an Internet network in order to transfer fax between G3FEs (Group 3 Fax Equipments) connected to facsimile gateways via PSTN (Public Switched Telephone Network) or between G3FEs and IAFs. Enea has developed a fax transmission Enea T38GW-Bricks Features product named Enea® SIP-Bricks and and protocol software package named Enea T38GW-Bricks is a portable soft- widely used in Terminals, Servers Enea® T38GW-Bricks designed to be in- ware package written in ‘C’ language (registrar, redirect or unified messaging corporated in equipments performing that integrates the following commu- servers) as well as in Proxy. Fax to Foip gateway functions. nication protocols and transmission n T.38 fax over IP transport protocol Enea T38GW-Bricks is a time and technology: as defined by ITU-T T.38 recommen- risk saving solution to develop fax gate- n SIP Session Initiation Protocol as dation (2002) and also compliant ways. Fully portable in a wide variety of specified by IETF RFC 3261 and with ITU-T T.38 Amendment 3 hardware and software configurations, featuring numerous extensions “Implementation guidelines. Enea it deals with complexity of mixing circuit/ including RFC 3362 for support Netbricks T.38 protocol is already in modem and IP/Packet technologies of T.38 in Enea SIP. Enea Netbricks SIP use in a lot of residential gateways, applied to fax transmission.
    [Show full text]
  • Årsredovisning 2010 Kort Om Enea
    Årsredovisning 2010 Kort om Enea VÄRLDENS KOMMUNIKATIONS BEHOV DRIVER ENEA Världsledande inom telekom Enea är världens tredje största Eneas konsulter tillhör de bästa Världens ledande telekombolag vänder sig aktör inom realtidsoperativsystem Eneas konsultverksamhet erbjuder expertis till Enea när de bygger infrastruktur för global Eneas operativsystem återfinns inom så inom komplexa områden såsom inbyggda kommunikation. Eneas lösningar fungerar många basstationer och mobiltelefoner att system, test och trådlös kommunikation. inom många typer av kommunicerande fem miljarder samtal om dagen är beroende Inom dessa områden tillhör Eneas konsulter system så företag inom närliggande seg­ av Eneas teknik. Det gör Enea till världens de absolut bästa. ment såsom medicinteknik, flygindustrin och tredje största aktör på marknaden som bil industrin finns även med på kundlistan. helhet. Rörelseresultat och Omsättning Rörelseresultatmarginal, MSEK/%och marginal Omsättning Mkr Antal aktieägare MSEK Aktieägare (%) AntalMSEK aktier Innehav &% Röster (%) 1 000 100 10 80 VäsentligtFysiska personer 9 358 93,3 4 200 626 23,2 80 8 förbättrat 800 60 Jurdiska personer 673 6,7 13 880 545 76,860 6 600 40 40 4 resultatTotalt 10 031 100% 18 081400 171 100% 20 ENea erBJUDer PRODU KTer OCH TJÄNSTer 20 2 200 10 för kunder som utvecklarRörelseresultat kommunikations och - marginal, MSEK/% 0 drivna produkter. Verksamheten är organiserad 0 0 0 -10 -1 -10 i två affärsområden: Software som inkluderar 06 07 08 09 10 06 07 08 09 10 realtidsoperativsystem och kompletterande Omsättning per Omsättning per aärsområde segment programvaror och tjänster, samt Consulting som Omsättning per affärsområde Omsättning per segment erbjuder tekniska konsulttjänster. 100 10 52 % 21 % 52 % Rörelseresultat och 80 Consulting Övrigt Telekom marginal, MSEK/% Enea hade under 2010 en omsättning på 726,1 MSEK infrastruktur 80 80 vilket är 6,6 procent80 lägre än före gående år.
    [Show full text]
  • Information Fusion
    Information Fusion from Databases, Sensors and Simulations Annual Report 2006 Information Fusion from Databases, Sensors and Simulations Annual Report 2006 Technical Report HS-IKI-TR-07-007 December 2007 Sten F. Andler (Ed.), Program Director ([email protected]) Marcus Brohede (Ed.), Program Administrator ([email protected]) University of Skövde, P.O. Box 408, SE-54128 Skövde, Sweden www.infofusion.se PART I ACTIVITY REPORT ........................................................................................................................1 1 SCIENTIFIC QUALITY AND THE RELATION TO THE EXPRESSED UNIVERSITY PROFILE.......................................3 2 NATIONAL AND INTERNATIONAL COMPETITIVE SITUATION OF THE RESEARCH PROGRAM ..............................3 3 UNIVERSITY COLLABORATION AND OPPORTUNITIES FOR COOPERATION ........................................................5 4 INFLUENCE ON GRADUATE AND UNDERGRADUATE EDUCATION.....................................................................7 5 INDUSTRIAL RELEVANCE ...............................................................................................................................8 6 COMMERCIAL MOTIVATION OF PARTICIPATING COMPANIES.........................................................................11 7 GROWTH POTENTIAL FOR THE RESEARCH PROGRAM....................................................................................14 8 OPPORTUNITY FOR CONTINUED FUNDING ....................................................................................................16
    [Show full text]