1 / 61

Software Development

Software Development. Objectives. After completing this module, you will be able to: Identify the functionality included in the GNU tools: GCC, AS, LD, GDB Examine the IP driver’s functionality and design Examine the Xilinx Libraries Determine what is a BSP and what is included. Outline.

alva
Download Presentation

Software Development

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Software Development

  2. Objectives After completing this module, you will be able to: • Identify the functionality included in the GNU tools: GCC, AS, LD, GDB • Examine the IP driver’s functionality and design • Examine the Xilinx Libraries • Determine what is a BSP and what is included

  3. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  4. Desktop development: written, debugged, and run on the same machine OS loads the program into the memory when the program has been requested to run Address resolution takes place at the time of loading by a program called the loader The loader is included in the OS The programmer glues into one executable file called ELF Boot code, application code, RTOS, and ISRs address resolution takes place during the “gluing” stage The executable file is downloaded into the target system through different methods Ethernet, serial, JTAG, BDM, ROM programmer Embedded versus Desktop

  5. Embedded versus Desktop • Development takes place on one machine (host) and is downloaded to the embedded system (target) Target Computer Host Computer A cross-compiler is run on the host

  6. Embedded Development • Different set of problems • Unique hardware for every design • Reliability • Real-time response requirement (sometimes) • RTOS versus OS • Code compactness • High-level languages and assembly

  7. MSS File system.mss LibGen Libraries EDK Source Code MHS File system.mhs Source Code Processor IP MPD Files Compile PlatGen Synthesis Object Files EDIF IP Netlists ISE/Xflow system.ucf Link system.bit Data2MEM Executable Focus Here download.bit Hardware

  8. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  9. Software Design Environment • The Library Generator (LibGen) utility generates the necessary libraries and drivers for the embedded soft processors • LibGen takes an MSS (Microprocessor Software Specification) file created by the user as input. The MSS file defines the drivers associated with peripherals, standard input/output devices, interrupt handler routines, and other related software features • The MSS file is generated by XPS by using the software settings specified

  10. project_directory Processor instance directory code directory include directory lib directory libsrc directory LibGen LibGen Generated Directories • code directory • A repository for EDK executables • include directory • C header files that are required by drivers • xparameters.h • Defines base and high addresses of the peripherals in the system • Defines the peripheral IDs required by the drivers and user programs • Defines the function prototypes Note: The number of processor instance directoriesgenerated is related to the number of processor instances present in the system

  11. project_directory processor instance directory code directory include directory lib directory libsrc directory LibGen LibGen Generated Directories • lib directory • libc.a, libm.a and libxil.a libraries • The libxil library contains driver functions that the particular processor can access • libsrc directory • Intermediate files and makefiles that compile the libraries and drivers • Peripheral-specific driver files that are copied from the EDK and user driver directories Note: The processor instance directories content is overwritten every time LibGen is run

  12. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  13. Software Platform Settings • Software settings can be assigned to individual processor instance by double-clicking a respective instance in System BSP view under the System tab, or • Software settings can also be assigned clicking Project  Software Platform Settings and selecting a processor instance

  14. Software Platform Settings Change driver assignmentif needed Select OS Check desired libraries Set library version 1 1 2 3 2 3 4 4

  15. Software Platform Settings Set compiler, archivercore clock frequency,and extra compiler flags Set interrupt handlersfor devices that havethe interrupt mechanismenabled 1 1 2 2

  16. Software Platform Settings Select stdin and stdout devices. Also, if yourapplication is using memory allocation function calls, then select “true” in the nee_xil_malloc field 1 1

  17. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  18. Compiler Settings • Compiler settings can be assigned by double-clicking a processor instance in the Application tab • Environment tab: • Compiler Tools • Displays compiler to be used • Mode • Executable • XmdStub (MicroBlaze only) • Memory Information • Program Start Address • Stack Size • Heap Size

  19. Compiler Settings • Optimization tab: • Optimization Parameters • Optimization Level: 0 to 3 • Use Global Pointer Optimization* • Enable Profiling” • Debug Options • Do not generate debug symbols • Create symbol for debugging (-g option) • Create symbols for assembly (-gstabs option) * For profiling, xilprofile library must be included

  20. Compiler Settings • Directories tab: • Search Paths • Compiler (-B) • Library (-L) • Include (-I) • Linker Options • Libs to link (-I) • Linker Script • Output Information • Output ELF File

  21. Compiler Settings • Advanced tab: • Additional Compiler Options • Add additional options • For example: -g • Pass Space Separated Options to • Preprocessor (-Wp) • Assembler (-Wa) • Linker (-Wl)

  22. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  23. GNU Tools: GCC • GCC translates C source code into assembly language • GCC also functions as the user interface to the GNU assembler and to the GNU linker, calling the assembler and the linker with the appropriate parameters • Supported cross-compilers: • PowerPC processor compiler • GNU GCC (powerpc-eabi-gcc) • Wind River Diab compiler (dcc) • MicroBlaze processor compiler • GNU GCC (mb-gcc) • Command line only; uses the settings set through the GUI C files Cross-compiler Assembly files

  24. GNU Tools • Calls four different executables • Preprocessor (cpp0) • Language specific c-compiler • cc1 C-programming language • cc1plus C++ language • Assembler • mb-as (MicroBlaze processor) • powerpc-eabi-as (PowerPC processor) • Linker and loader • mb-ld (MicroBlaze processor) • powerpc-eabi-ld (PowerPC processor)

  25. GNU Tools: AS • Input: Assembly language files • File extension: .s • Output: Object code • File extension: .o • Contains • Assembled piece of code • Constant data • External references • Debugging information • Typically, the compiler automatically calls the assembler • Use –Wa switch if the source files are assembly only and use gcc Assembly files Cross-assembler Object files

  26. GNU Tools: LD • Linker • Inputs: • Several object files • Archived object files (library) • Linker script (mapfile) • Outputs: • Executable image (.ELF) • Mapfile (different from linker script) Object files Linker script Linker/Locator Executable Map

  27. Binutils: Binary Utilities • AR Archiver • Create, modify, and extract from libraries • Used in EDK to combine the object files of the Board Support Package (BSP) in a library • Used in EDK to extract object files from different libraries • OBJDUMP • Display information from object files and executables • Header information, memory map • Data • Disassemble code • GNU executables • powerpc-eabi-objdump • mb-objdump

  28. Powerpc-eabi-objdump Text section Memorylocation Machinecode Assemblyinstructions

  29. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  30. Device Drivers • The Xilinx device drivers are designed to meet the following objectives: • Provide maximum portability • The device drivers are provided as ANSI C source code • Support FPGA configurability • Supports multiple instances of the device without code duplication for each instance, while at the same time managing unique characteristics on a per-instance basis • Support simple and complex use cases • A layered device driver architecture provides both • Simple device drivers with minimal memory footprints • Full-featured device drivers with larger memory footprints • Ease of use and maintenance • Xilinx uses coding standards and provides well-documented source code for developers

  31. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  32. Drivers: Level 0 / Level 1 • The layered architecture provides seamless integration with… • (Layer 2) RTOS application layer • (Layer 1) High-level device drivers that are full-featured and portable across operating systems and processors • (Layer 0) Low-level drivers for simple use cases

  33. Drivers: Level 0 • Consists of low-level device drivers • Implemented as macros and functions that are designed to allow a developer to create a small system • Characteristics: • Small memory footprint • Little to no error checking is performed • Supports primary device features only • No support of device configuration parameters • Supports multiple instances of a device with base address input to the API • Polled I/O only • Blocking function calls • Header files have “_l” in their names (e.g. xuartlite_l.h)

  34. Drivers: Level 1 • Consists of high-level device drivers • Implemented as macros and functions and designed to allow a developer to utilize all of the features of a device • Characteristics: • Abstract API that isolates the API from hardware device changes • Supports device configuration parameters • Supports multiple instances of a device • Polled and interrupt driven I/O • Non-blocking function calls to aid complex applications • May have a large memory footprint • Typically, provides buffer interfaces for data transfers as opposed to byte interfaces • Header files do not have “_l” in their names (e.g. xuartlite.h)

  35. Comparison Example • Uartlite Level 1 • XStatus XUartLite_Initialize (XUartLite *InstancePtr, Xuint16 DeviceId) • void XUartLite_ResetFifos (XUartLite *InstancePtr) • unsigned int XUartLite_Send (XUartLite *InstancePtr, Xuint8 *DataBufferPtr, unsigned int NumBytes) • unsigned int XUartLite_Recv (XUartLite *InstancePtr, Xuint8 *DataBufferPtr, unsigned int NumBytes) • Xboolean XUartLite_IsSending (XUartLite *InstancePtr) • void XUartLite_GetStats (XUartLite *InstancePtr, XUartLite_Stats *StatsPtr) • void XUartLite_ClearStats (XUartLite *InstancePtr) • XStatus XUartLite_SelfTest (XUartLite *InstancePtr) • void XUartLite_EnableInterrupt (XUartLite *InstancePtr) • void XUartLite_DisableInterrupt (XUartLite *InstancePtr) • void XUartLite_SetRecvHandler (XUartLite *InstancePtr, XUartLite_Handler FuncPtr, void *CallBackRef) • void XUartLite_SetSendHandler (XUartLite *InstancePtr, XUartLite_Handler FuncPtr, void *CallBackRef) • void XUartLite_InterruptHandler (XUartLite *InstancePtr) • Uartlite Level 0 • void XUartLite_SendByte (Xuint32 BaseAddress, Xuint8 Data) • Xuint8 XUartLite_RecvByte (Xuint32 BaseAddress)

  36. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  37. Exceptions and Interrupts • Exceptions are events detected by the processor that require action by the system software • Typically, the result of unexpected error conditions (e.g., bus error) • Some exceptions can be programmed to occur (e.g., FIT, PIT) • Some exceptions are generated by external devices (e.g., CritInt) • Interrupts are automatic control transfers as a result of an exception • Execution of the current program is suspended after the current instruction • Some context info is saved so execution can return to the current program • Execution is transferred to the interrupt handler to service the interrupt • The interrupt handler must be registered • The interrupt must be enabled

  38. Hardware Interrupt Inputs • Two external inputs to the IBM PowerPC 405 processor core: • Critical interrupt • External interrupt • Enabled and disabled through the Machine State Register (MSR) • MSR(CE) and MSR(EE) • Default @RESET is disabled • FPGA design adds an interrupt controller for application-specific requirements • Supports 32 interrupts

  39. Exceptions and Interrupts Exception Code Entry Point Save State Call Handler HANDLER Restore State Return to Program Registered Handler

  40. Exceptions and Interrupts • Exception library function calls support: • void XExc_Init(void); • Initializes vector table, default handlers • void XExc_RegisterHandler (Xuint8 ExceptionId, XExceptionHandler Handler, void *DataPtr); • Allows the registration of a handler • void XExc_RemoveHandler (Xuint8 ExceptionId) • Replaces the current handler with a default handler • void XExc_mEnableExceptions (EnableMask); • Enables Crit, NonCrit interrupts • void XExc_mDisableExceptions (DisableMask); • Disables Crit, NonCrit interrupts

  41. Timer Facilities • Features: • Time base • Fixed Interval Timer (FIT) • Programmable Interval Timer (PIT) • Watchdog timer • These timers share the same time-base clock frequency • Uses: • Time-of-day • Data logging • Peripherals requiring periodic service • Recover from faulty hardware or firmware

  42. Internal Hardware Interrupt Handling Example • When the source of the interrupt or exception is internal to the PPC, you should explicitly perform the following tasks (using PIT Timer as an example) in the main() routine • Initialize exception in the handler’s vector space • XExc_Init(); • Register the interrupt handler • XExc_RegisterHandler(XEXC_ID_PIT_INT, (XExceptionHandler) pit_timer_int_handler, (void *) 0); • Initialize and enable the device • XTime_PITSetInterval( 0xffffff00 ); • XTime_PITEnableAutoReload(); • Arm the device • XTime_PITEnableInterrupt() ; • Enable PPC noncritical interrupts • XExc_mEnableExceptions(XEXC_NON_CRITICAL); • Develop an interrupt handler that will acknowledge the source of the interrupt (resetting flag) and perform a task it is supposed to do

  43. PowerPC: Sleep • Sleep BSP library function calls: • unsigned int usleep(unsigned int __useconds); • unsigned int sleep(unsigned int __seconds); • The sleep() or usleep() function in sleep.c delays the execution of a program by __seconds or __useconds seconds • Set CORE_CLOCK_FREQUENCY as sleep() and usleep() functions use it compute the delay

  44. PowerPC: Time • The xtime_l.c file and corresponding xtime_l.h include file provide access to the 64-bit time-base counter inside the PowerPC processor core • The counter increases by one every processor cycle • Declarations: • void XTime_SetTime(XTime xtime); • Sets the time-base register to the value in xtime • void XTime_GetTime(XTime *xtime); • Writes the current value of the time-base register to variable xtime • void XTime_TSRClearStatusBits(unsigned long Bitmask); • Used to clear bits in the Timer Status Register (TSR). The parameter Bitmask designates the bits to be cleared. A one in any position of the Bitmask parameter clears the corresponding bit in the TSR

  45. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  46. Interrupt Management With Interrupt Controller Present • The interrupt controller is required if more than one interrupting device is present or the only interrupting signal is not level sensitive • Connect peripheral’s interrupt requesting signals to the Intr port of the interrupt controller in the MHS file e.g. PORT Intr = RS232_Interrupt & interrupt_push & interrupt_timer • Connect interrupt controller output intc to a processor interrupt pin e.g. PORT Irq = interrupt_req • Define an external requesting signal in the global ports section of the MHS file e.g. PORT interrupt_in1 = interrupt_in1, DIR = IN, LEVEL = low, SIGIS = Interrupt • Define signals in MSS file to associate them to peripherals e.g. PARAMETER int_handler = uart_int_handler, int_port = Interrupt • Write interrupt handler functions for each interrupting requesting input

  47. Interrupt Management Without Interrupt Controller • The interrupt controller is not required when only one interrupting device is present and the interrupting pin and signal are level sensitive • The interrupt signal of the peripheral (or the external interrupt signal) must be connected to the interrupt input of the MicroBlaze processor in the MHS file • Define the signal in MSS file to associate them to peripherals e.g. PARAMETER int_handler = uart_int_handler, int_port = Interrupt • Write an interrupt handler routine to service the request • The base address of the peripheral instance can be accessed as XPAR_INSTANCE_NAME_BASEADDR

  48. MicroBlaze Interrupts • MicroBlaze processor functions • void microblaze_enable_interrupts(void) • This function enables interrupts on the MicroBlaze processor • When the MicroBlaze processor starts up, interrupts are disabled. Interrupts must be explicitly turned on by using this function • void microblaze_disable_interrupts(void) • This function disables interrupts on the MicroBlaze processor. This function may be called when entering a critical section of code where a context switch is undesirable

  49. Outline • Introduction • Software Settings • Software Platform Settings • Compiler Settings • GNU Tools: GCC, AS, LD, Binutils • Device Drivers • Level 0, Level 1 • PowerPC Processor: Exceptions, Sleep, and Time • MicroBlaze Processor: Interrupts • Integration in EDK • Libraries • BSP • Boot Files and Sequence

  50. Integration in EDK • When the interrupt generating device is connected to the processor interrupt pin, either through an opb interrupt controller or directly, only the interrupt handler function must be developed (i.e., you do not need to explicitly write code to set up the interrupt mechanism) • Double-click the peripheral to open the Software Platform Settings dialog • The Interrupt Handler Function section in Processor and Device Parameters tab provides an entry for the Interrupt function name associated with that peripheral

More Related