|
|
 |
FPGA design from scratch. Part 17
Posted at 06:59 pm by svenand
Permalink
FPGA design from scratch. Part 16
IP creation overview
Any piece of IP you create must be compliant with the system that is in place. To ensure compliance, the following must occur:
- The interface required by your IP must be determined.
The bus to which your custom peripheral will attach must be identified. For example: a. Processor Local Bus (PLB). The PLB provides a high-speed interface between the processor and high-performance peripherals. b. On-chip Peripheral Bus (OPB). The OPB allows processor access to low-speed, low-performance system resources. - Functionality must be implemented and verified.
Your custom functionality must be implemented and verified, with awareness that common functionality available from the EDK peripherals library can be reused. Your stand-alone core must be verified. Isolating the core ensures easier debug in the future. - The IP must be imported to EDK.
Your peripheral must be copied to an EDK-appropriate directory, and the Platform Specification Format (PSF) interface files (MPD and PAO) must be created, so other EDK tools can recognize your peripheral. - Your peripheral must be added to the processor system created in XPS.
Create or import an user peripheral
One of the key advantages of building an embedded system in an FPGA is the ability to include customer IP and interface that IP to the processor. To start the Create and Import Peripheral Wizard select Hardware->Create or Import Peripheral.

Click the More Info button for more information. We will import an existing peripheral.


We will call our peripheral ETC (the name of the top module) and add a version to the name.

The peripheral is made up of Verilog files (.v).

We will use the ISE project file to define the Verilog source code.

Here are all the verilog source files.

The ETC peripheral will operate as an OPB slave (SOPB) and the OPB interface is already designed and verified. The On-chip Peripheral Bus (OPB) is an IBM standard and is also used in the Power PC processor.

The wizard tries to map the ETC interface names to the standard naming convention for OPB. All the names that don't match have to be manually inserted.

It seems like we are missing some of the optional OPB signals. I have to add these signals to the top module ETC.v. I will add the missing pins and also some parameter statements defining register and memory address ranges. Like this:
parameter REGISTER_BASE_ADDR = 32'h2000; parameter REGISTER_HIGH_ADDR = 32'h200c; parameter MEM_BANK0_BASE_ADDR = 32'h0; parameter MEM_BANK0_HIGH_ADDR = 32'hffc; parameter MEM_BANK1_BASE_ADDR = 32'h1000; parameter MEM_BANK1_HIGH_ADDR = 32'h1ffc;
In this window we have to select the right parameters defining the address range for registers and memory banks.

Here we define the interrupt signal and the operation of the interrupt.

Congratulations! We have added our peripheral to the current XPS project. Good work.

Here are all files in the pcores directory.

File description
XPS provides an interactive development environment that allows you to specify all aspects of your hardware platform. XPS maintains your hardware platform description in a high-level form, known as the Microprocessor Hardware Specification (MHS) file. The MHS, an editable text file, is the principal source file representing the hardware component of your embedded system. XPS synthesizes the MHS source file into Hardware Description Language (HDL) netlists ready for FPGA place and route.
The MHS File
The MHS file is integral to your design process. It contains all peripherals along with their parameters. The MHS file defines the configuration of the embedded processor system and includes information on the bus architecture, peripherals, processor, connectivity, and address space. For more detailed information on the MHS file, refer to the "Microprocessor Hardware Specification (MHS)" chapter of the Platform Specification Format Reference Manual, available at http://www.xilinx.com/ise/embedded/edk_docs.htm. XPS Project Files
Here are more information about the XPS project files used.
Xilinx IP center
There are many IP blocks available from Xilinx. Find out more in the Xilinx IP center.
Top Next Previous
Posted at 10:02 pm by svenand
Permalink
FPGA design from scratch. Part 15
EDK is a suite of tools and IP that enables you to design a complete embedded processor system for implementation in a Xilinx FPGA device. To run EDK, ISE must be installed as well. Think of it as an umbrella covering all things related to embedded processor systems and their design.
Xilinx Platform Studio (XPS)
XPS is the development environment or GUI used for designing the hardware portion of your embedded processor system.
Software Development Kit (SDK)
Platform Studio SDK is an integrated development environment, complimentary to XPS, that is used for C/C++ embedded software application creation and verification. SDK is built on the Eclipse™ open-source framework. Because many other software development tools are being built on the Eclipse infrastructure, this software development tool might already be familiar to you or members of your design team.
EDK includes other elements such as: • Hardware IP for the Xilinx embedded processors • Drivers and libraries for embedded software development • GNU Compiler and debugger for C/C++ software development targeting the MicroBlaze™ and PowerPC™ processors • Documentation • Sample projects
The utilities provided with EDK are designed to assist in all phases of the embedded design process.

(Courtesy of Xilinx) Using Xilinx Platform Studio
This is going to be fun. Let's start xps. We will use the EDK 9.1 MicroBlaze Tutorial in Virtex-4 and the EDK 9.1i Concepts, Tools and Techniques Guide (CTTG) as we go along.
For more documents go to the Xilinx Platform Studio Documentation.
XPS Design checklist
This page provides a summary of all necessary steps and commonly used optional steps to complete an embedded processor system design.
==> cd $ETC_PROJECT ==> xps& [1] 4463 ==> Xilinx Platform Studio Xilinx EDK 9.1 Build EDK_J.19 Copyright (c) 1995-2007 Xilinx, Inc. All rights reserved.
Launching XPS GUI... Overriding Xilinx file <mdtgui/images/xps-splash-screen.bmp> with local file </home/svenand/cad/edk91i/data/mdtgui/images/xps-splash-screen.bmp>

We will create a new project using the Base System Builder wizard (see chapter 2 in CTTG).

First we have to create a new top-level project file (ETC_system.xmp). A Xilinx Microprocessor Project (XMP) file is the top-level file description of the embedded system under development. All XPS project information is saved in the XMP file, including the location of the Microprocessor Hardware Specification (MHS) and Microprocessor Software Specification (MSS) files. The MHS and MSS files are described in detail later.

When I click the OK button I get the following error message:
ERROR:PersonalityModule:7 - Unable to open Xilinx data file for Vendor/Device Module "qrvirtex2". Please make sure that it has been correctly installed before continuing.
I just realized there is a service pack 1 available for EDK 9.1i. I will download this sevice pack and see if it fixes the problem. The service pack fixed the problem. Sorry to bother you Xilinx.

We would like to create a new design for the ML403 evaluation board.

We will use the MicroBlaze soft processor.

We will use the 100MHz system clock available on the board, an active low reset signal and we will have an on-chip debug module. We don't need memory caches and a floating point unit.

In the next four pages we will select the peripherals to use:

We will change the baudrate to 57600 at a later stage.



The UART will be used for the serial communication between the board and the terminal.

Here are more information about available IO devices:

When we click the Generate button, we will start the generation of our embedded system.

We have now put together our embedded system. We can always go back and add or remove IO interfaces at a later stage. Here is the file tree generated from XPS.

- blkdiagram - contains the blockdiagram of our system that can be displayed in a web browser (ETC_system.html).
- data - contains the UCF (user constraints file) for the target board
- etc - contains system settings for JTAG configuration on the board that is used when downloading the bit file and the default parameters that are passed to the ISE tools
- pcores - is empty right now, but is utilized for custom peripherals
- TestApp_Memory - contains a user application in C code source, for testing the memory in the system
Look at project options
Select Project->Project Options to display the current project setup.

Generate a design report file
To generate a design report file select Project->Generate and view design report. The design report will be stored in the report directory and can be viewed in a web browser (ETC_system.html).
Now it's time to add our own IP block, the Embedded Test Controller (ETC). That is the subject of the next part.
Top Next Previous
Posted at 08:59 am by svenand
Permalink
FPGA design from scratch. Part 14
Putting it all together
Here is a simple overview of the simulation setup we are going to use when verifying the operation of the full system.

Memory Architecture
MicroBlaze is implemented with a Harvard memory architecture, i.e. instruction and data accesses are done in separate address spaces. Each address space has a 32 bit range (i.e. handles up to 4 gigabytes of instructions and data memory respectively). The instruction and data memory ranges can be made to overlap by mapping them both to the same physical memory. The latter is useful for software debugging. Both instruction and data interfaces of MicroBlaze are 32 bit wide and use big endian, bit-reversed format. MicroBlaze supports word, halfword, and byte accesses to data memory.
MicroBlaze does not separate data accesses to I/O and memory (i.e. it uses memory mapped I/O). The processor has up to three interfaces for memory accesses: Local Memory Bus (LMB), On-Chip Peripheral Bus (OPB), and Xilinx CacheLink (XCL). The LMB memory address range must not overlap with OPB or XCL ranges.
In our simulation setup we will use two memory modules, one for storing the control program (instruction memory) and one for storing data (ETC test program and test result). The Embedded Test Controller will be connected to the DOPB bus using a reserved address space.
We need help
We have to figure out how to connect everything and we need help. We will take a look at the Xilinix tutorial web page to see if we can find some help there. EDK 9.1 MicroBlaze Tutorial Virtex-4 seems like a good start. This tutorial demonstrates the process of creating and testing a MicroBlaze system design using the Embedded Development Kit (EDK). The tutorial contains these sections:
- System Requirements
- MicroBlaze System Description
- Tutorial Steps
The tutorial illustrates an Windows XP setup but we will use Ubuntu Linux.
Xilinx Platform Studio
The Xilinx Platform Studio (XPS) integrated development environment contains a wide variety of embedded tools, IP, libraries, wizards, and design generators to quickly facilitate the creation of a custom embedded platform. Sounds good, let's try it.
==> xps $XILINX does not point to an iSE 8.1 installation
Press enter to close.
Software upgrade
Here is the answer to the question I asked in part 1. It is not possible to run different versions of ISE and EDK. After talking to Xilinx I decided to upgrade to ISE WebPACK 9.1i. Now we will find out how easy an upgrade is. First we will visit the Xilinx Download Center to download ISE WebPACK 9.1i. You will be asked for a Product ID and you must use the one specified. I was confused and changed it to the Product ID for my old ISE 8.1i WebPACK DVD and I was not able to download anything. To download ISE WebPACK 9.1i follow the instructions here. When I started the installation I got the following error message: Archive could not be located
Here is the answer from Xilinx's Answer Database #23669:
This message is normally seen when WebInstall cannot connect to the Xilinx Web site. Please verify that your proxy settings are correct. If you have chosen to use IE proxy settings on Windows, try setting the proxy address and port manually in the WebInstaller instead. Additionally, you can work around the issue by: - Downloading the Single File Download version of WebPACK. or - Ordering a WebPACK DVD for a nominal fee.
It was not as easy as we thought. Let's try the single file download instead (1.4GB). Two hours later the file WebPACK_SFD_91i.zip is downloaded.
- Create a temporary directory: mkdir temp
- cd temp
- unzip WebPACK_SFD_91i.zip
- Become root : sudo -i
- ./setup to start installation
We will install ISE 9.1i in a new directory (xilinx91i) and leave the old ISE 8.2 installation until we know that the new one works.
When the installation has finished we can remove the temp directory and the WebPACK_SFD_91.i.zip file. Before we when can start ISE 9.1 we have to change to the new setting.sh file in our .bashrc startup script. Now we are ready to start ISE.
==> cd /home/svenand/root/projects/ETC ==> ise &

There is no turning back. Let's click the yes button.
Downloading the latest Service Pack.
When we thought we were finished it is time to download the latest Service Pack. We have to visit the Xilinx Download Center again and download the file 9_1_03i_lin.zip (468MB).
One hour later the file 9_1_03i_lin.zip is downloaded.
- Create a temporary directory: mkdir temp
- cd temp
- unzip 9_1_03i_lin.zip
- Become root : sudo -i
- ./setup to start installation of Service Pack 3

The installation takes time. Be patient.

When the installation is finished we start ISE and see the following startup window. We have the latest version of ISE installed. It took us half a day to fix.

Upgrading from EDK 8.1 to EDK 9.1i
Here is the last part of our upgrading odyssey. Let's first find out what's new in EDK 9.1i. It looks like a lot of good stuff, especially the new version (v6.0) of MicroBlaze is interesting to us. The only problem is that I can't find a place to download EDK v9.1i. I have looked all over Xilinx's web page but nowhere I can find a download page for EDK 9.1i. Read more.
When I can't find EDK 9.1i I will try to download EDK 8.2 instead. When I click the EDK 8.2 download link I am transfered to the Electronic Fulfillment page. Here is what the electronic fulfillment is all about:
Electronic Fulfillment is an online software delivery service provided by Xilinx to in-maintenance ISE™ and EDK design tool customers. Xilinx Electronic Fulfillment provides you with: - Email notifications and online access to software.
- Personalized download site for in-warranty customers.
- 24x7 access with four secure file transfer options.
- Immediate access to your software and registration ID.
Electronic Fulfillment is a service provided to in-maintenance customers only; new customers are not eligible. Electronic Fulfillment does not replace regular product update shipments, which will still be mailed to all in-warranty customers. When I proceed to the Electronic Fulfillment Download Center I get the following message: We encountered a problem with your request. Our system records indicate you are not entitled to access the Xilinx Download at this time. This is a case for Xilinx WebCase. Before we can start using WebCase we have to register and get an approval from Xilinx. One working day later I get an email telling me I can start using WebCase. Here are the questions I am going to send to Xilinx:
1. I bought a PowerPC and MicroBlaze development kit DO-ML403-EDK-ISE-USB-EC from Avnet including the software ISE WebPACK and EDK 8.1. Shouldn't I be entitled to a one year in-maintenance for this product.
2. Are all software updates distributed on DVD. Why haven't I received the EDK 8.2 DVD.
3. When will EDK 9.1i be available from the download center.
4. How can I extend the in-maintenance period after one year.
I am sitting here waiting for an answer. I can't continue my design. I can't use IES 9.1 together with EDK 8.1 and I can't download a newer version of EDK. I am stuck.
All of a sudden (on Good Friday) I received the following email from Xilinx: Dear Valued Customer,
Thank you for choosing the Xilinx Embedded Development Kit (EDK) as your embedded hardware and software development solution for Virtex(tm)-5, Virtex-4, Virtex-II Pro and Spartan(tm) Series PowerPC(tm) and MicroBlaze(tm) processing systems. Your Xilinx EDK 9.1i software is now available for download!*
The Xilinx EDK software is built from much the same core technology as the industry's favorite FPGA design environment, Xilinx ISE(tm). The graphical user interface for EDK, DesignVision Award winning Xilinx Platform Studio(tm)(XPS), is the technology that integrates all the processes from design entry to debug and verification, helping you quickly get started with your embedded designs.
Please be aware that EDK 9.1i requires a valid installation of ISE 9.1i, including ISE Service Pack 1, to function properly.
You can navigate to your XEF site through the Software Download Center at the following link:
http://www.xilinx.com/xlnx/xil_sw_updates_home.jsp
Thanks Shelly. Here we go again! Let's start the download. This time nothing stops us.

We will download EDK 9.1i

One hour later the file EDK91.zip is downloaded.
- Create a temporary directory: mkdir temp
- cd temp
- unzip EDK91.zip
- Become root : sudo -i
- cd /home/svenand/temp/EDK
- ./setup to start installation of the Linux version of EDK 9.1i
- When finished source the file install_dir/setting.sh
After installing new software versions of ISE and EDK we have to compile all simulation libraries again. See part 13 Compiling everything for instructions.
We are now ready to start using EDK 9.1i and the Xilinx Platform Studio. Read part 15 to find out more.
Top Next Previous
Posted at 09:49 am by svenand
Permalink
Links to information about wild skating
Links to information in English Links to information in SwedishIce Tour arrangements (guided tours) Wild skating clubs in Sweden Wild skating around the world Races Links to equipment manufacturer Links to outdoor equipment stores in Sweden Equipment rentals in Stockholm Maps Weather forecasts Top
Posted at 03:43 pm by svenand
Permalink
Wild skating books, photos, films and videos
Books Magazines PhotosFilmsVideos (YouTube)

Top
Posted at 09:12 am by svenand
Permalink
Porting a Unix program to Mac OS X
Posted at 03:40 pm by svenand
Permalink
FPGA design from scratch. Index
A Assembly code and hex machine codeB Bitstream generationBitstream, downloadingC Cable drivers, installingC application program, creatingC header filesC prgram examplesC-program, access ETC registersConfigurable Logic Block (CLB) D Design objectDigital Clock Manager (DCM)DDR SDRAM, addingDownload program E EDK 8.1 to EDK 9.1 upgradingEmbedded Development Kit (EDK) installationEmbedded Test Controller (ETC), addingEthernet MAC F Field Programmable Gate Array (FPGA)Floorplanner, Xilinx G Generating memory blocksGmakeGNU Compiler Tools (GCC) H Hardware setupHDL Analysis and Lint (HAL)Hello World, programHello World, finished I iMPACT, FPGA configuration tooliMPACT, usingImplementing the hardware platformIntroductionIntegrated Software Environment (ISE)IP center, XilinxIP, import or createJ JTAG, IEEE 1149.1K
L Learning-by-doingLet's get startedLCD display controller, addingLCD driver, simulationLCD driver, timingLibgenLogic cellM MicroBlaze soft processorMicroBlaze program execution simulationML403 evaluation boardML403 Reference Systems on the CDMongooseMongoose setupMongoose user buttonsN Netlist generation (ETC)NCSIM, cds.lib fileNCSIM, compiling ETCNCSIM, elaborationNCSIM, first simulationNCSIM system simulationO On-chip Peripheral Bus (OPB), debugging P PACE, Pin Area Constraints EditorParallels DesktopPin assingment closurePin constraints, specifyingPlanAhead, XilinxPower calculationsPowerPC processor blockProgram disassemblyQ
R Register softwareRegression testingRunning a programS Service pack, downloadingSimgenSimulation, compiling everythingSimulation environmentSimulation debuggingSimulation debugging, MicroBlaze resetSimulation, generate HDL filesSimulation librariesSimulation processSimulating the designSoftware Development Kit (SDK), usingSoftware installation (ISE)Software setupSynthesis contraints, addingSynthesizing the designSystem simulationsSystem simualtion, DDR SDRAM controllerSystem simualtion, LED display and push buttonsSystem simualtion, Embedded Test Controller T Testbench designTestbench bodyTiming constraints (synthesis)Timing constraints, implementationTopi, Top Code Generator, usingU Using ISEV Verilog testbench generationVerilog testcaseVerilog task filesVirtex-4 FPGA familyVMware FusionW
X XFlowXilinx Microprocessor Debugger (XMD)Xilinx Platform Studio (XPS)XPS, usingXilinx software upgradeXPowerXtremeDSP Slices Y
Z
Top
Posted at 07:50 am by svenand
Permalink
Skiing in Kittelfjäll Lapland
It is January 17th and the winter has not come to Stockholm. I call my brother and ask him if he would like to come skiing with me. Where are we going he asks? Let's go to Kittelfjäll in Lapland. They have more than one meter of snow and they are famous for their off-pist skiing. I take the train to Hudiksvall close to where my brother lives and from his house we take the car. A 520 km drive will take us to Kittelfjäll in southern Lapland (latitude 65.25, longitude 15.50). We have booked a room at hotel Granen (The Spruce) only 3 km from the lift station. We start our trip at 9:30 in the morning and 7 hours later we arrive in Kittelfjäll after a long drive through a wintry Sweden. If you don't want to drive you can take the night bus from Stockholm to Kittelfjäll. You can also fly with Skyways from Stockholm Arlanda to Vilhelmina where you can rent a car and drive the last 140 km to Kittelfjäll or take the transfer bus.
Kittelfjäll is an off-pist paradise. There are only a few prepared slopes, everything else is left for off-pist skiing. The heli-skiing is one of the best in Sweden and it is cheap. We missed the heli-skiing this time, it starts first week of February. But there are a lot of other things you can discover in this wide off-pist ski area. You can ski almost everywhere in the woods, down in the ravines Storgrova and Konsumravinen and if you like you can join a guided tour up to one of the nearby mountain tops. When we were here it had snowed for a couple of days and we found unspoiled snow everywhere. We had a lot of fun.

Here are some more photos from Kittelfjäll.

Read more about Kittelfjäll in Skidguiden and Åka Skidor (in Swedish).
Posted at 09:43 pm by svenand
Permalink
FPGA design from scratch. Table of content
Part 1
Introduction Ordering the MicroBlaze development kit Installing the Integrated Software Environment (ISE) Running a board demo test
Part 2
Design object description
Part 3
Setting up the ISE design software Running the ISE design software
Part 4
Adding Verilog source code Generating memories using Coregen Synthesizing the design Simulating the design (Introduction)
Part 5
Setting up the simulation environment using Mongoose
Part 6
The simulation process Compiling macro libraries Compiling the design Compiling the testbench Elaborating everything
Part 7Testbench description
Part 8
Using HAL the HDL analysis and linting tool from Cadence
Part 9
Regression testing using Mongoose
Part 10
Synthesis using timing constraints (Introduction)
Part 11The Field Programmable Gate Array (FPGA) description
Part 12 Adding synthesis constraints
Part 13
The MicroBlaze soft processor core Compiling simulation libraries using compedklib
Part 14Putting everything together Installing ISE WebPack 9.1i Installing EDK 9.1i Part 15Xilinx Platform Studio XPS Software Development Kit SDK Create a new project in XPS Generate a design report file
Part 16 Create or import an user peripheral The MHS file XPS project files Xilinx IP center
Part 17 Adding the ETC IP Generate the system netlist using platgen What happend during the netlist generation Generate simulation HDL files
Part 18 Putting together a system simulation environment The simulation database The cds.lib file Compiling the ETC IP Compiling the block RAM Compiling Verilog wrappers Compiling VHDL wrappers Elaborating the design Warning messages
Part 19 Generating a Verilog testbench
Part 20 Running our first simulation Adding the DDR SDRAM Suppressing assert messages in IEEE packages
Part 21 Debugging the simulation testbench The reset logic
Part 22 Using the XPS software development kit (SDK) Software development flow GNU compiler collection (gcc) Running SDK Creating a new C appilcation project
Part 23 Simulating program execution in the MicroBlaze processor Verification strategy Verification flow Writing a simple c program Loading the program Running an NCSIM simulation Simulation result Compile and build the program inside SDK Generate assembly code and hex code Make a NCSIM memory load file Running a simulation
Part 24 System simulations DDR SDRAM controller LED displays and push buttons OPB GPIO registers Embedded test controller Debugging the On-Chip Peripheral bus
Part 25 Implementing the hardware platform User constraints file Setting up our constraints file Specify pin constraints Specify timing constraints The implementation directory Start bitstrem generation Bitstream generation flow Scriptfile to run XFlow Bitstream generation result Configuration of the FPGA Using the platform cable USB ML403 evaluation board ML403 block diagram Installing cable drivers Xilinx JTAG tools on Linux without proprietary kernel modules Setting up the USB cable iMPACT FPGA configuration tool Starting iMPACT
Part 26 Using the iMPACT configuration tool Boundary Scan and JTAG configuration IEE standard 1149.1 (JTAG) The identification register Read IDCODE Read the FPGA status register Device configuration Using Xilinx Platform Studio
Part 27 Pin assignment closure process PACE Pin and Area Constraint Editor Running PACE Topi the Top Code Generator Topi setup Using Topi to modify the Xilinx user constraints file Xilinx Floorplanner Viewing pin placement Xilinx PlanAhead
Part 28 Power calculations XPower Low power consumption
Part 29 Hardware setup Software setup Download and execute a simple program Download the bitstream Get program size Running the program
Part 30 Running demonstration software applications ML403 Reference Systemson the CD
Part 31 Adding a 16x2 character LCD display Set address range Connecting ports The easy way to add a new block Configure the IP block The LCD driver LCD display timing 8-bit write operation Programming sequence Display setup More reading Signal wiring on the ML403 board Adding constraints Generate netlist Generate bitstream
Part 32 Writing the "Hello World" program SDK platform settings C program build C header files The GPIO API definitions C program examples Device configuartion in SDK
Part 33 Simulating the LCD driver C program Program execution (Waveform plot) Generating the software libraries and BSPs GNU compiler tools Input files Output files Output from SDK build process Display program size
Part 34 Program disassembly MicroBlaze software reference guide System memory layout Reset sequence ELF file content Startup files First stage initialization files Second stage initialization files
Part 35 Generate simulation HDL files Simgen Data2MEM memory tool ETC_system_sim.bmm ETC_system_init.vhd ETC_system_tb.vhd Modifying the testbench file Compiling the BRAM initialization file Compiling the testbench Simulating program execution
Part 36 The LCD driver (once more) Editing the user constraints file Generate new bitstream Device configuration Application program Displaying "Hello World"
Part 37 Debugging our design Xilinx microprocessor debugger and GNU software debugging tools Xilinx microprocessor debugger (XMD) MicroBlaze processor target MicroBlaze MDM hardware setup Debug session Reading registers in MicroBlaze Load program Set breakpoint Remove breakpoint Display breakpoints Start program execution Single step Stop program execution Display program code Getting help Using XMD in Xilinx Platform Studio
Part 38 Writing software for our embedded system Writing a software device driver Software development overview Device driver programmer guide Platform specification format reference manual Microprocessor Driver Definition (MDD) Libraries and driver generation Device driver architecture xparameters.h Software driver source code Source code repository Software device drivers used SDK project directory Header source files
Part 39 Fixing our software driver etc_v2_1_0.tcl etc_v2_1_0.mdd Makefile xetc_g.c xetc.h xetc_l.h Writing an application program Print statements Printout from program Generate HDL simulation files Generating the BRAM initialization file Running a simulation
Part 40 Debugging our hardware design ChipScope Pro Trying out ChipScope Pro ChipScope installation
Part 41 Adding an interrupt controller Finding an interrupt controller OPB_INTC Register map Configuring the interrupt controller Making connections Software setup xparameters.h xintc_l.h Generate a software interrupt Generate a hardware interrupt MicroBlaze interrupt handling MicroBlaze interrupt timing
Part 42 Adding a timer Connect the interrupt signal OPB Timer/Counter Register address map Library generation Application program Simulation results
Part 43 Installing a Linux OS Why using a Linux OS Embedded Linux OS µClinux Finding a linux OS Choosing a Linux OS PetaLinux
Part 44 Adding an external memory controller Generate addresses Software platform settings OPB External Memory Controller
Part 45 A computer cache Enabling MicroBlaze caches Specify cacheable memory segment Instruction cache operation Data cache operation Xilinx cachelink XCL Adding the MCH_OPB_DDR_SDRAM controller Connect IXCL and DXCL Connecting ports ETC_system.mhs
Part 46 Installing and running the Linux OSDisassembly of the Linux kernel Download the Linux kernel
Top
Posted at 07:38 am by svenand
Permalink
|