STRS Compliant FPGA Waveform Development

Total Page:16

File Type:pdf, Size:1020Kb

STRS Compliant FPGA Waveform Development AN FPGA ABSTRACTION LAYER FOR THE SPACE TELECOMMUNICATIONS RADIO SYSTEM by JENNIFER NAPPIER Submitted in partial fulfillment of the requirements For the degree of Master of Science Thesis Advisor: Dr. Frank Merat Department of Electrical Engineering and Computer Science CASE WESTERN RESERVE UNIVERSITY January, 2009 CASE WESTERN RESERVE UNIVERSITY SCHOOL OF GRADUATE STUDIES We hereby approve the thesis/dissertation of _____________________________________________________Jennifer M. Nappier Master of Science candidate for the ______________________degree *. Dr. Frank Merat (signed)_______________________________________________ (chair of the committee) Dr. Marc Buchner ________________________________________________ Dr. Christos Papachristou ________________________________________________ ________________________________________________ ________________________________________________ ________________________________________________ 11/05/08 (date) _______________________ *We also certify that written approval has been obtained for any proprietary material contained therein. Table of Contents List of Abbreviations ......................................................................................................... vi List of Abbreviations ......................................................................................................... vi Abstract............................................................................................................................viii 1 Introduction............................................................................................................... 10 2 STRS Waveform Development Goals ...................................................................... 14 2.1 Design a waveform that is reconfigurable ........................................................ 14 2.2 Design a waveform that is reusable and portable across SDRs........................ 14 2.3 Design a waveform that is platform independent ............................................. 15 3 Current STRS Architecture Standard ....................................................................... 16 4 Other Standards......................................................................................................... 18 4.1 Joint Tactical Radio System (JTRS) Software Communication Architecture.. 18 4.2 WISHBONE System-on-Chip Interconnection Architecture ........................... 19 4.3 Open Core Protocol Specification .................................................................... 20 5 Extension to STRS: Firmware Developer Interface ................................................. 22 6 Implementation ......................................................................................................... 27 7 FDI Testing ............................................................................................................... 33 7.1 GPP Control Read and Control Write............................................................... 33 7.2 GPP Data Read and Data Write........................................................................ 34 7.3 ADC Data Read and DAC Data Write ............................................................. 35 8 Future Work.............................................................................................................. 37 9 References................................................................................................................. 39 iii List of Tables Table 1: Control FDI signals. ........................................................................................... 25 Table 2: Corresponding FDI DATA and API NAME pairs. ............................................ 25 Table 3: Data FDI signals. ................................................................................................ 26 Table 4: FDI Verilog file descriptions.............................................................................. 30 iv List of Figures Figure 1: STRS Hardware Architecture Diagram............................................................. 11 Figure 2: MHAL API diagram [4].................................................................................... 19 Figure 3: WISHBONE module interfaces [5]................................................................... 20 Figure 4: OCP IP cores communicate via a wrapped buss [6]. ........................................ 21 Figure 5: Conceptual drawing of the Firmware Developer Interface in the FPGA.......... 23 Figure 6: High level block diagram of SDR breadboard.................................................. 28 Figure 7: Conceptual implementation example of the Firmware Developer Interface. ... 28 Figure 8: FDI implementation with file structure labeled. ............................................... 29 Figure 9: FPGA waveform controller............................................................................... 33 Figure 10: GPP control read and control write test. ......................................................... 34 Figure 11: GPP data read and data write test.................................................................... 35 Figure 12: ADC data read and DAC data write loop back test......................................... 36 v List of Abbreviations ADC – Analog to digital converter API – Application programmer interface ASIC – Application specific integrated circuit CoNNeCT – Communications, Navigation and Networking re-Configurable Test bed DAC – Digital to analog computer DSP – Digital signal processor FDI – Firmware developer interface FEC – Forward error correction FIFO – First in first out FPGA – Field programmable gate array GPM – General-purpose processing module GPP – General purpose processor GRC – Glenn Research Center HDL – Hardware description language HID – Hardware interface description IF – Intermediate frequency ISE – Integrated software environment ISS – International Space Station JPEO – Joint Program Executive Office JTRS – Joint Tactical Radio System MHAL – Modem Hardware Abstraction Layer OCP – Open Core Protocol vi NASA – National Aeronautics and Space Administration RF – Radio frequency RFM – Radio frequency module SCA – Software Communications Architecture SDR – Software defined radio SPM – Signal processing module SOC – Silicon-on-a-chip SSP – Specialized signal processing STRS – Space Telecommunications Radio System VHDL – Very high speed integrated circuits (VHSIC) hardware description language VHSIC – Very high speed integrated circuits vii An FPGA Abstraction Layer for the Space Telecommunications Radio System Abstract by Jennifer Nappier The Space Telecommunications Radio System (STRS) Architecture Standard describes a standard for NASA space software defined radios (SDRs). It provides a common framework that can be used to develop and operate a space SDR in a reconfigurable and reprogrammable manner. One goal of the STRS Architecture is to promote waveform reuse among multiple software defined radios. Many space domain waveforms are designed to run in the specialized signal processing (SSP) hardware. However, the STRS Architecture is currently incomplete in defining a standard for designing waveforms in the SSP hardware. Therefore, the STRS Architecture needs to be extended to encompass waveform development in the SSP hardware. The extension of STRS to the SSP hardware will promote easier waveform reconfiguration and reuse. Extensions of the STRS Architecture Standard in the field programmable gate array (FPGA) were proposed. The extensions included a standard hardware abstraction layer for firmware in FPGAs. Current existing FPGA hardware abstraction layer standards were researched. These standards included the Joint Tactical Radio System (JTRS) Modem Hardware Abstraction Layer (MHAL), the WISHBONE Architecture, and the Open Core Protocol (OCP). The proposed STRS hardware abstraction layer was designed to provide standardized interfaces to the STRS waveform application running on the FPGA. Therefore, the waveform developer would not have to know a lot of viii information about the rest of the SDR platform. This standard hardware abstraction layer was called the Firmware Developer Interface (FDI). The FDI was implemented and tested on a laboratory breadboard SDR. The implementation and testing of the FDI on a laboratory breadboard SDR will be discussed. ix 1 Introduction The Space Telecommunications Radio System (STRS) Architecture Standard [1] specifies an open architecture for NASA space software defined radios (SDRs). The STRS Architecture Standard divides the SDR into three functional hardware modules – the general-purpose processing module (GPM), the radio frequency module (RFM), and the signal processing module (SPM). There is a hardware interface description (HID) between each module that describes all of the physical hardware interfaces. The GPM contains a general purpose processor (GPP), memory, and the Spacecraft Telemetry Interface. The GPM runs the STRS Infrastructure and configures and controls the entire radio. The RFM contains filters, up/down converters, power amplifiers, digital to analog converters (DACs), and analog to digital converters (ADCs). It handles the conversion between the radio frequency (RF) and the intermediate frequency (IF) signals. The SPM contains a field programmable gate array (FPGA), digital signal processor (DSP), application specific integrated circuit (ASIC), or other specialized signal processing (SSP) device. The SPM performs the transformations between the IF digitally sampled signals and
Recommended publications
  • A Hardware Abstraction Layer in Java
    A Hardware Abstraction Layer in Java MARTIN SCHOEBERL Vienna University of Technology, Austria STEPHAN KORSHOLM Aalborg University, Denmark TOMAS KALIBERA Purdue University, USA and ANDERS P. RAVN Aalborg University, Denmark Embedded systems use specialized hardware devices to interact with their environment, and since they have to be dependable, it is attractive to use a modern, type-safe programming language like Java to develop programs for them. Standard Java, as a platform independent language, delegates access to devices, direct memory access, and interrupt handling to some underlying operating system or kernel, but in the embedded systems domain resources are scarce and a Java virtual machine (JVM) without an underlying middleware is an attractive architecture. The contribution of this paper is a proposal for Java packages with hardware objects and interrupt handlers that interface to such a JVM. We provide implementations of the proposal directly in hardware, as extensions of standard interpreters, and finally with an operating system middleware. The latter solution is mainly seen as a migration path allowing Java programs to coexist with legacy system components. An important aspect of the proposal is that it is compatible with the Real-Time Specification for Java (RTSJ). Categories and Subject Descriptors: D.4.7 [Operating Systems]: Organization and Design—Real-time sys- tems and embedded systems; D.3.3 [Programming Languages]: Language Classifications—Object-oriented languages; D.3.3 [Programming Languages]: Language Constructs and Features—Input/output General Terms: Languages, Design, Implementation Additional Key Words and Phrases: Device driver, embedded system, Java, Java virtual machine 1. INTRODUCTION When developing software for an embedded system, for instance an instrument, it is nec- essary to control specialized hardware devices, for instance a heating element or an inter- ferometer mirror.
    [Show full text]
  • Modeling of Hardware and Software for Specifying Hardware Abstraction
    Modeling of Hardware and Software for specifying Hardware Abstraction Layers Yves Bernard, Cédric Gava, Cédrik Besseyre, Bertrand Crouzet, Laurent Marliere, Pierre Moreau, Samuel Rochet To cite this version: Yves Bernard, Cédric Gava, Cédrik Besseyre, Bertrand Crouzet, Laurent Marliere, et al.. Modeling of Hardware and Software for specifying Hardware Abstraction Layers. Embedded Real Time Software and Systems (ERTS2014), Feb 2014, Toulouse, France. hal-02272457 HAL Id: hal-02272457 https://hal.archives-ouvertes.fr/hal-02272457 Submitted on 27 Aug 2019 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Modeling of Hardware and Software for specifying Hardware Abstraction Layers Yves BERNARD1, Cédric GAVA2, Cédrik BESSEYRE1, Bertrand CROUZET1, Laurent MARLIERE1, Pierre MOREAU1, Samuel ROCHET2 (1) Airbus Operations SAS (2) Subcontractor for Airbus Operations SAS Abstract In this paper we describe a practical approach for modeling low level interfaces between software and hardware parts based on SysML operations. This method is intended to be applied for the development of drivers involved on what is classically called the “hardware abstraction layer” or the “basic software” which provide high level services for resources management on the top of a bare hardware platform.
    [Show full text]
  • A Full Stack Approach to FPGA Integration in the Cloud
    This article has been accepted for publication in a future issue of this journal, but has not been fully edited. Content may change prior to final publication. Citation information: DOI 10.1109/MM.2018.2877290, IEEE Micro THEME ARTICLE: HARDWARE ACCELERATION Galapagos: A Full Stack Approach to FPGA Integration in the Cloud Naif Tarafdar Field-Programmable Gate Arrays (FPGAs) have University of Toronto shown to be quite beneficial in the cloud due to their Nariman Eskandari energy-efficient application-specific acceleration. University of Toronto These accelerators have always been difficult to use Varun Sharma University of Toronto and at cloud scale, the difficulty of managing these Charles Lo devices scales accordingly. We approach the University of Toronto challenge of managing large FPGA accelerator Paul Chow clusters in the cloud using abstraction layers and a University of Toronto new hardware stack that we call Galapagos. The hardware stack abstracts low-level details while providing flexibility in the amount of low-level access users require to reach their performance needs. Computing today has evolved towards using large-scale data centers that are the basis of what many call the cloud. Within the cloud, large-scale applications for Big Data and machine learn- ing can use thousands of processors. At this scale, even small efficiency gains in performance and power consumption can translate to significant amounts. In the data center, power consump- tion is particularly important as 40 % of the costs are due to power and cooling [1]. Accelerators, which are more efficient for classes of computations, have become an important approach to ad- dressing both performance and power efficiency.
    [Show full text]
  • W4118 Operating Systems OS Overview
    W4118 Operating Systems OS Overview Junfeng Yang Outline OS definitions OS abstractions/concepts OS structure OS evolution What is OS? A program that acts as an intermediary between a user of a computer and the computer hardware. User App stuff between OS HW Two popular definitions Top-down perspective: hardware abstraction layer , turn hardware into something that applications can use Bottom-up perspective: resource manager/coordinator , manage your computers resources OS = hardware abstraction layer standard library OS as virtual machine E.g. printf(hello world), shows up on screen App can make system calls to use OS services Why good? Ease of use : higher level of abstraction, easier to program Reusability : provide common functionality for reuse E.g. each app doesnt have to write a graphics driver Portability / Uniformity : stable, consistent interface, different OS/version/hardware look same E.g. scsi/ide/flash disks Why abstraction hard? What are the right abstractions ??? Too low level ? Lose advantages of abstraction Too high level? All apps pay overhead, even those dont need Worse, may work against some apps E.g. Database Next: example OS abstractions Two popular definitions Top-down perspective: hardware abstraction layer, turn hardware into something that applications can use Bottom-up perspective: resource manager/coordinator , manage your computers resources OS = resource manager/coordinator Computer has resources, OS must manage. Resource = CPU, Memory, disk, device, bandwidth, Shell ppt gcc browser System Call Interface CPU Memory File system scheduling management management OS Network Device Disk system stack drivers management CPU Memory Disk NIC Hardware OS = resource manager/coordinator (cont.) Why good? Sharing/Multiplexing : more than 1 app/user to use resource Protection : protect apps from each other, OS from app Who gets what when Performance : efficient/fair access to resources Why hard? Mechanisms v.s.
    [Show full text]
  • Vypracovane Otazky K Bakalarskym Statnicim
    Učební texty k státní bakalářské zkoušce Obecná informatika študenti MFF 15. augusta 2008 1 Vážený študent/čitateľ, toto je zbierka vypracovaných otázok pre bakalárske skúšky Informatikov. Otáz- ky boli vypracované študentmi MFF počas prípravy na tieto skúšky, a teda zatiaľ neboli overené kvalifikovanými osobami (profesormi/dokotorandmi mff atď.) - preto nie je žiadna záruka ich správnosti alebo úplnosti. Väčšina textov je vypracovaná v čestine resp. slovenčine, prosíme dodržujte túto konvenciu (a obmedzujte teda používanie napr. anglických textov). Ak nájdete ne- jakú chybu, nepresnosť alebo neúplnú informáciu - neváhajte kontaktovať adminis- trátora alebo niektorého z prispievateľov, ktorý má write-prístup k svn stromu, s opravou :-) Podobne - ak nájdete v „texteÿ veci ako ??? a TODO, znamená to že danú informáciu je potrebné skontrolovať, resp. doplniť... Texty je možné ďalej používať a šíriť pod licenciou GNU GFDL (čo pre všet- kých prispievajúcich znamená, že musia súhlasiť so zverejnením svojich úprav podľa tejto licencie). Veríme, že Vám tieto texty pomôžu k úspešnému zloženiu skúšok. Hlavní writeři :-) : • ajs • andree – http://andree.matfyz.cz/ • Hydrant • joshis / Petr Dvořák • kostej • nohis • tuetschek – http://tuetschek.wz.cz/ Úvodné verzie niektorých textov vznikli prepisom otázok vypracovaných „pí- somne na papierÿ, alebo inak ne-TEX-ovsky. Autormi týchto pôvodných verzií sú najmä nasledujúce osoby: gASK, Grafi, Kate (mat-15), Nytram, Oscar, Stando, xSty- ler. Časť je prebratá aj z pôvodných súborkových textov... Všetkým patrí naša/vaša vďaka. 2 Obsah 1 Logika 4 1.1 Logika – jazyk, formule, sémantika, tautologie . 4 1.2 Rozhodnutelnost, splnitelnost, pravdivost a dokazatelnost . 6 1.3 Věty o kompaktnosti a úplnosti výrokové a predikátové logiky . 11 1.4 Normální tvary výrokových formulí, prenexní tvary formulí prediká- tové logiky .
    [Show full text]
  • Web Applications and the Hardware Abstraction Layer
    Web Applications Dilles, 09 Web Applications and the Evolution of the Hardware Abstraction Layer Jacob Dilles George Mason University March 15 2009 A computer is defined as a machine that manipulates data according to a list of instructions, however it has come to mean something more. Operating a modern Core class possessor that can perform 2.4 billion 64-bit operations per second (Intel Corporation, 2009) by listing one instruction at a time would not be very useful. However the first 1960 era computers, like the ENIAC, were only programmable with machine- code instructions entered by hand using switches and patch cables. This was not a significant problem at the time, when the longest program was 304 batch-operated instructions, took days to write and 5 to 10 seconds to run, and the punched card reader limited data input rate to 250 bytes per second. (Ballistic Research Laboratories, 1955). However computers grew more capable at an exponential rate while steadily decreasing in cost. By 1970 machines, like the relativity affordable DEC PDP-7 that were capable of fairly advanced timesharing, expedited the development of the operating system - an interface between the physical computer hardware and an abstract environment that allows more than one program to be run simultaneously. Due to the wide variety of hardware architecture at the time, early operating systems had to be written for a specific machine, and were not consistent or interchangeable between computer manufactures and models. In 1973 the Unix operating system developed at Bell Laboratories was ported from PDP-11/20 assembly to the C programming language, and 1 Web Applications Dilles, 09 could be used on any machine with a C compiler with minimal modification.
    [Show full text]
  • 42 a Hardware Abstraction Layer in Java
    1 A Hardware Abstraction Layer in Java 2 MARTIN SCHOEBERL, Vienna University of Technology 3 STEPHAN KORSHOLM, Aalborg University 4 TOMAS KALIBERA, Purdue University 5 ANDERS P. RAVN, Aalborg University 6 Embedded systems use specialized hardware devices to interact with their environment, and since they 7 have to be dependable, it is attractive to use a modern, type-safe programming language like Java to de- 8 velop programs for them. Standard Java, as a platform-independent language, delegates access to devices, 9 direct memory access, and interrupt handling to some underlying operating system or kernel, but in the 10 embedded systems domain resources are scarce and a Java Virtual Machine (JVM) without an underlying 11 middleware is an attractive architecture. The contribution of this article is a proposal for Java packages 12 with hardware objects and interrupt handlers that interface to such a JVM. We provide implementations 13 of the proposal directly in hardware, as extensions of standard interpreters, and finally with an operating 14 system middleware. The latter solution is mainly seen as a migration path allowing Java programs to co- 15 exist with legacy system components. An important aspect of the proposal is that it is compatible with the 16 Real-Time Specification for Java (RTSJ). 42 17 Categories and Subject Descriptors: D.4.7 [Operating Systems]: Organization and Design—Real-time 18 systems and embedded systems; D.3.3 [Programming Languages]: Language Constructs and Features— 19 Input/output 20 General Terms: Languages, Design 21 Additional Key Words and Phrases: Device driver, embedded system, Java, Java virtual machine 22 ACM Reference Format: 23 Schoeberl, M., Korsholm, S., Kalibera, T., and Ravn, A.
    [Show full text]
  • Operating System Abstraction Layer (OSAL)
    Operating System Abstraction Layer (OSAL) Flight Software Workshop Nicholas J Yanchik November 6,2007 GSFC GSFC Code 582 - Flight Software Branch 1 1/06/07 Page 1 Agenda What is the OSAL? Where does it fit in our current FSW architecture? How does it work? Directory structure What functionality does the OSAL provide? OSAL releases Metrics Open Source Software Future Plans GSFC Code 582 - Flight Software Branch 1 1/06/07 Page 2 What Is The OSAL And What Are Its Benefits? What is the Operating System Abstraction Layer? - A small layer of software that allows programs to run on many different operating systems and hardware platforms - Independent of the underlying OS & hardware - Self-contained Why do we want it? - Removes dependencies from any one operating system - Promotes portable, reusable flight software - Core FSW can be built for multiple processors and operating systems - Example: different missions require different hardware & operating system What does it do? - Allows developers to write and maintain one version of code - Allows for easy reuse across different missions with different hardware - Bonus: Allows for desktop development of flight software; reduces impact of potential hardware delays GSFC Code 582 - Flight Software Branch 11/06/0 7 Page 3 Where Does It Fit in Our Current Core Flight Executive ( cFE ) Real Time Operating System Drivers Board Support Package Flight Computer Hardware GSFC Code 582 - Flight Software Branch 1 1/06/07 Page 4 How Does It Work? OS Abstraction Layer call to create Implementation for Implementation for Implementation for VxWorks Implemented by make files Compiles in only the files needed for a specific OSlarchitecture GSFC Code 582 - Flight Software Branch 1 1/06/07 Page 5 Directory Structure OS type( linux, rtems, vxworks,os x) arch 10platform (coldfire, ppc, x86) 1 board (mac, mcp750) 1 os (rtems, vxworks) LD bsp, exe GSFC Code 582 - Flight.
    [Show full text]
  • Security Across Abstraction Layers: Old and New Examples
    2020 IEEE European Symposium on Security and Privacy Workshops (EuroS&PW) Security across abstraction layers: old and new examples Frank Piessens Dept. of Computer Science KU Leuven Leuven, Belgium [email protected] Abstract—A common technique for building ICT systems is Structured Programming Language to build them as successive layers of abstraction: for instance, Compiler the Instruction Set Architecture (ISA) is an abstraction of User-level Instruction Set Architecture the hardware, and compilers or interpreters build higher Operating system level abstractions on top of the ISA. Privileged Instruction Set Architecture The functionality of an ICT application can often be Processor understood by considering only a single level of abstraction. Hardware description language For instance the source code of the application defines the functionality using the level of abstraction of the source pro- Figure 1. A stack of abstraction layers gramming language. Functionality can be well understood by just studying this source code. the resulting ICT systems. So-called layer-below attacks, Many important security issues in ICT system however where an attacker exploits implementation details of lower are cross-layer issues: they can not be understood by con- layers to attack one of the upper layers have been common sidering the system at a single level of abstraction, but they multiple and have been among the most dangerous attacks over the require understanding how levels of abstraction are history of computing. Important examples include: implemented. Attacks may rely on, or exploit, implementa- tion details of one or more layers below the source code level 1) memory corruption attacks [1] that can take over of abstraction.
    [Show full text]
  • 60 Years of Mastering Concurrent Computing Through Sequential Thinking Sergio Rajsbaum, Michel Raynal
    60 Years of Mastering Concurrent Computing through Sequential Thinking Sergio Rajsbaum, Michel Raynal To cite this version: Sergio Rajsbaum, Michel Raynal. 60 Years of Mastering Concurrent Computing through Sequential Thinking. ACM SIGACT News, Association for Computing Machinery (ACM), 2020, 51 (2), pp.59-88. 10.1145/3406678.3406690. hal-03162635 HAL Id: hal-03162635 https://hal.archives-ouvertes.fr/hal-03162635 Submitted on 17 Jun 2021 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. 60 Years of Mastering Concurrent Computing through Sequential Thinking ∗ Sergio Rajsbaumy, Michel Raynal?;◦ yInstituto de Matemáticas, UNAM, Mexico ?Univ Rennes IRISA, 35042 Rennes, France ◦Department of Computing, Hong Kong Polytechnic University [email protected] [email protected] Abstract Modern computing systems are highly concurrent. Threads run concurrently in shared-memory multi-core systems, and programs run in different servers communicating by sending messages to each other. Concurrent programming is hard because it requires to cope with many possible, unpre- dictable behaviors of the processes, and the communication media. The article argues that right from the start in 1960’s, the main way of dealing with concurrency has been by reduction to sequential reasoning.
    [Show full text]
  • Developing Programs Using the Hardware Abstraction Layer, Nios II
    6. Developing Programs Using the Hardware Abstraction Layer January 2014 NII52004-13.1.0 NII52004-13.1.0 This chapter discusses how to develop embedded programs for the Nios® II embedded processor based on the Altera® hardware abstraction layer (HAL). This chapter contains the following sections: ■ “The Nios II Embedded Project Structure” on page 6–2 ■ “The system.h System Description File” on page 6–4 ■ “Data Widths and the HAL Type Definitions” on page 6–5 ■ “UNIX-Style Interface” on page 6–5 ■ “File System” on page 6–6 ■ “Using Character-Mode Devices” on page 6–8 ■ “Using File Subsystems” on page 6–15 ■ “Using Timer Devices” on page 6–16 ■ “Using Flash Devices” on page 6–19 ■ “Using DMA Devices” on page 6–25 ■ “Using Interrupt Controllers” on page 6–30 ■ “Reducing Code Footprint in Embedded Systems” on page 6–30 ■ “Boot Sequence and Entry Point” on page 6–37 ■ “Memory Usage” on page 6–39 ■ “Working with HAL Source Files” on page 6–44 The application program interface (API) for HAL-based systems is readily accessible to software developers who are new to the Nios II processor. Programs based on the HAL use the ANSI C standard library functions and runtime environment, and access hardware resources with the HAL API’s generic device models. The HAL API largely conforms to the familiar ANSI C standard library functions, though the ANSI C standard library is separate from the HAL. The close integration of the ANSI C standard library and the HAL makes it possible to develop useful programs that never call the HAL functions directly.
    [Show full text]
  • Overveld Van J IM9906 AF SE Scriptie Pure
    MASTER'S THESIS Abstractions for software communication Programming protocols in typescript van Overveld, J. (Jan) Award date: 2020 Link to publication General rights Copyright and moral rights for the publications made accessible in the public portal are retained by the authors and/or other copyright owners and it is a condition of accessing publications that users recognise and abide by the legal requirements associated with these rights. • Users may download and print one copy of any publication from the public portal for the purpose of private study or research. • You may not further distribute the material or use it for any profit-making activity or commercial gain • You may freely distribute the URL identifying the publication in the public portal ? Take down policy If you believe that this document breaches copyright please contact us at: [email protected] providing details and we will investigate your claim. Downloaded from https://research.ou.nl/ on date: 27. Sep. 2021 Open Universiteit www.ou.nl ABSTRACTIONS FOR SOFTWARE COMMUNICATION PROGRAMMING PROTOCOLS IN TYPESCRIPT THESIS Author Jan van Overveld Student number Date of defence 7 February 2020 ABSTRACTIONS FOR SOFTWARE COMMUNICATION PROGRAMMING PROTOCOLS IN TYPESCRIPT by Jan van Overveld in partial fulfillment of the requirements for the degree of Master of Science in Software Engineering at the Open University Student number 851669922 Faculty Faculty of Management, Science and Technology Institute Open University of the Netherlands Course IM9906 Graduation assignment Master program Master’s Programme in Software Engineering Supervisor dr. ir. Sung-Shik Jongmans Open University Chairman Prof. dr. M. C. J. D. van Eekelen Open University ABSTRACT More software parallelization results in more software communication and therefore the need for software communication protocols.
    [Show full text]