XILINX Zynq-7000 CPU Support Package

This package contains project templates and system files for the XILINX Zynq-7000.

CrossWorks Version 2 Installation Instructions

To install this support package
  1. Click the Tools > Package Manager menu option to open the package manager window.
  2. Right click on the XILINX Zynq-7000 CPU Support Package entry and select Install Selected Packages.
  3. Click Next to take you to the summary page.
  4. Click Next to install the package.
  5. Click Finish to close the package manager window.
  6. Click the Tools > Show Installed Packages.
  7. Click on the XILINX Zynq-7000 CPU Support Package link to view the package and its contents.
To manually install this support package
  1. Download the file Zynq_7000.hzq using your web browser.
  2. Click the Tools > Manually Install Packages menu option.
  3. Select the file you have just downloaded to install the package.
  4. Click the Tools > Show Installed Packages.
  5. Click on the XILINX Zynq-7000 CPU Support Package link to view the package and its contents.
To install this support package using other versions

Release Notes

3.1

3.0

1.0

Documentation

Creating Zynq-7000 Projects

To create a new Zynq-7000 project
To build and debug an application the runs in OCM RAM

Zynq-7000 Project Specifics

Target Processor

Once a project has been created you can select different target processors from the selected set by right clicking on the project node in the project explorer and selecting the Target property.

Selecting the target processor will specify the memory map that is used for the build and debug. You can view the selected memory map by right clicking on the project node in the project explorer and selecting Edit Memory Map. In the memory map files the memory segments defining the names, sizes and access types of the external memories are specified using macros which can be set using the Memory Map Macros project property.

Section Placement

CrossStudio for ARM supports Zynq-7000 projects running applications in a number of different memory configurations. You can select the memory configuration you require by right clicking on the project node in the project explorer and selecting the Placement property.

For Zynq-7000 projects the set of placements are:

Note that a CPU1 project must be run as a debug dependent project of a CPU0 project.

Target Startup Code

In the startup code Zynq_7000_Startup.s there are a set of preprocessor defines that configure the startup code and are documented in the startup file itself.

Target Reset Script

The reset script Zynq_7000_Target.js resets the target using the NSRST pin connected to the JTAG header and then stops it. You should always ensure that the board is configured to boot in JTAG mode to get a known reset state.

Memory Simulator

An memory simulator is provided that simulates the memories of the device. The memory simulation parameter (which is set by the Target Processor selection) contains macros that determine the sizes of the simulated memories and can be specified using the Memory Simulation Parameter Macros property.

CTL support

The file Zynq_7000_ctl.c implements the ctl_set_isr, ctl_unmask_isr and ctl_mask_isr functions by programming the GIC register groups.

If the vector parameter passed to these functions is greater than or equal to 32 it corresponds to the interrupt number as defined in the Zynq-7000 reference manual. If the vector is less than 32 then it corresponds to the interrupt sources defined in the CA9 reference manual.

The priority parameter to the ctl_set_isr is the GIC priority i.e. lower numbers have higher priorities. If nested interrupts are enabled for the irq_handler then the priority is a pre-emption priority i.e. interrupt handlers can be interrupted by higher priority interrupt handlers. The startup code Zynq_7000_Startup.s implements the irq_handler exception handler.

The file Zynq_7000_ctl.c also implements the ctl_start_timer function using the CA9 private timer.