Embedded Linux Handson Tutorial ZedBoard
Embedded Linux Handson Tutorial ZedBoard
This Embedded Linux Hands-on Tutorial for the ZedBoard will provide step-by-step instructions for
customizing your hardware, compiling the Linux Kernel and writing driver and user applications. This
documentation intends to integrate knowledge and skills in FPGA logic circuit design, standalone
software programming, and Linux operating system and software development, and apply them to the
ZedBoard.
In this tutorial, we will start from the ZedBoard Linux Hardware Design (available on the ZedBoard
product page of the Digilent website). The system architecture for the ZedBoard Linux Hardware
Design is shown in Figure 1.
In the ZedBoard Linux Hardware Design, we connect UART1 to USB-UART, SD0 to the SD Card
Slot, USB0 to the USB-OTG port, Enet0 to the Giga-bit Ethernet Port, and Quad SPI to the on-board
QSPI Flash. These cores are hard IPs inside the Processing System (PS) and connect to on-board
peripherals via Multiplexed I/O (MIO) pins. The use of PS GPIO is a little bit more complicated. We
connect the lower bits of PS GPIO via MIOs to Button 8, 9, LED 9, and Pmod JE, while the higher bits
of PS-GPIO are connected via Extended MIOs (EMIO) to 5 push buttons, 8 LEDs, 8 slide switches,
Pmods JA to JD, and the on-board OLED module. In the Programmable Logic (PL), we have an HDMI
Tx Controller, VDMA, SPDIF, and IIC IP cores to talk to the ADV7511 HDMI Transmitter Chip and I2S
and IIC IP Cores for ADAU1761 Audio Codec. More details of the hardware design can be found in
the documentation inside the ZedBoard Linux Hardware Design package.
USB-UART
SD Card
USB-OTG
Gb Ethernet
UART1
SD0
USB0
Enet0
Quad SPI
QSPI Flash
NEON/FPU Engine
Pmod JE1
PS - GPIO - MIO
Btn 8, 9;
LED 9;
32KB I Cache
MMU
32KB D Cache
GIC
Cortex-A9
MPCore
CPU
32KB I Cache
32KB D Cache
256KB OCM
PS - GPIO - EMIO
Cortex-A9
MPCore
CPU
MMU
Push
Buttons
NEON/FPU Engine
Leds
Pmods
Switches
OLED
BootROM
VDMA
AXI_IIC
HDMI
SPDIF
AXI_I2S
AXI_IIC
Audio
page 1 of 47
Copyright Digilent, Inc. All rights reserved. Other product and company names mentioned may be trademarks of their respective owners.
Embedded Linux
Hands-on Tutorial -- ZedBoard
In this tutorial, we are going to detach the LEDs from the PS GPIO core and implement our own
myled core for it in PL, as shown in Figure 2. We will then add our own LED controller into the device
tree, write a driver for it, and develop user applications to control the status of the LEDs.
USB-UART
SD Card
USB-OTG
Gb Ethernet
UART1
SD0
USB0
Enet0
Quad SPI
QSPI Flash
NEON/FPU Engine
Cortex-A9
MPCore
CPU
Cortex-A9
MPCore
CPU
MMU
Pmod JE1
PS - GPIO - MIO
Btn 8, 9;
LED 9;
32KB I Cache
MMU
32KB D Cache
GIC
32KB I Cache
32KB D Cache
Push
Buttons
PS - GPIO - EMIO
NEON/FPU Engine
Pmods
Switches
OLED
256KB OCM
BootROM
VDMA
SPDIF
HDMI
AXI_IIC
AXI_I2S
AXI_IIC
Audio
My_Led
Leds
www.digilentinc.com
page 2 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Instructions
I-1 Download the ZedBoard Linux Hardware Design from the website and unzip it into our working
directory (our working directory is named tutorial throughout this tutorial). See Example 1. For
more information on the hardware design, please refer to Project Guide under doc folder.
Example 1.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ unzip ~/Downloads/ZedBoard_Linux_Design.zip
Archive: /home/tinghui.wang/Downloads/ZedBoard_Linux_Design.zip
inflating: ZedBoard_Linux_Design/sw/hw_platform/ps7_init.html
inflating: ZedBoard_Linux_Design/sw/hw_platform/ps7_init.tcl
inflating: ZedBoard_Linux_Design/sw/hw_platform/system.xml
creating: ZedBoard_Linux_Design/sw/zynq_fsbl/
creating: ZedBoard_Linux_Design/sw/zynq_fsbl/src/
inflating: ZedBoard_Linux_Design/sw/zynq_fsbl/src/main.c
[tinghui.wang@DIGILENT_LINUX Tutorial]$
I-2 Source Xilinx ISE 14.4 settings and open the design with Xilinx Platform Studio (XPS). See
Example 2. You will see the XPS window pop up as shown in Figure 3.
Note: There are four settings files available in the Xilinx toolset: settings64.sh for use on 64-bit
machines with bash; settings32.sh for use on 32-bit machines with bash; settings32.csh
for use on 32-bit machines with C Shell; and settings64.csh for use on 64-bit machines with C
Shell.
Example 2.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ source /opt/Xilinx/14.4/ISE_DS/settings64.sh
. /opt/Xilinx/14.4/ISE_DS/common/.settings64.sh /opt/Xilinx/14.4/ISE_DS/common
. /opt/Xilinx/14.4/ISE_DS/EDK/.settings64.sh /opt/Xilinx/14.4/ISE_DS/EDK
. /opt/Xilinx/14.4/ISE_DS/common/CodeSourcery/.settings64.sh
/opt/Xilinx/14.4/ISE_DS/common/CodeSourcery
. /opt/Xilinx/14.4/ISE_DS/PlanAhead/.settings64.sh /opt/Xilinx/14.4/ISE_DS/PlanAhead
. /opt/Xilinx/14.4/ISE_DS/../../Vivado/2012.4/.settings64.sh
/opt/Xilinx/14.4/ISE_DS/../../Vivado/2012.4
. /opt/Xilinx/14.4/ISE_DS/ISE/.settings64.sh /opt/Xilinx/14.4/ISE_DS/ISE
. /opt/Xilinx/14.4/ISE_DS/../../Vivado_HLS/2012.4/.settings64.sh
/opt/Xilinx/14.4/ISE_DS/../../Vivado_HLS/2012.4
[tinghui.wang@DIGILENT_LINUX Tutorial]$ xps ZedBoard_Linux_Design/hw/xps_proj/system.xmp &
[tinghui.wang@DIGILENT_LINUX Tutorial]$
www.digilentinc.com
page 3 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-3 We are going to detach LEDs from the GPIO core in the PS first. So, we need to click on the I/O
Peripherals (red circle in Figure 3), and a Zynq PS MIO Configuration window will pop up as
shown in Figure 4. We are going to change the width of GPIO on EMIO interface from 60 to 52 to
remove 8 LED pins, as shown in the red circle in Figure 4. However, we also need to refresh the
change in the External Ports section of the Ports tab. So, click Ports tab, expand
processing_system7_0, expand (IO_IF) GPIO_0, disconnect it from External Ports, and connect
it to External Ports again, and remove the _pin from the name (as shown in Figure 5). We will
handle the modification of external pin location configuration (ucf file) in later steps.
page 4 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
b. Expand GPIO
a. Expand processing_system7_0
www.digilentinc.com
page 5 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-5 In the Peripheral Flow, we select Create Templates for a New Peripheral (as shown in Figure 8).
Click Next.
www.digilentinc.com
page 6 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-6 We chose to store the IP core into this project folder (as shown in Figure 9). As a result, you will
find myled-1.00.a within the pcores folder. Click Next.
Figure 10. Fill in the name and description for the new IP Core
www.digilentinc.com
page 7 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-8 In Bus Interface, we will use AXI4-Lite. So, select AXI4-Lite and Click Next (As shown in Figure
11).
www.digilentinc.com
page 8 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-10 In our design, we only need 8 bits to control 8 LEDs. So, we only need One 32-bit register, and
we will use the lower 8-bits in our design. In User S/W Register Configuration, type 1 in the box
besides Number of software accessible registers (as shown in Figure 13). Click Next.
Figure 14. (OPTIONAL) Peripheral Implementation Support Configuration for Verilog Users
www.digilentinc.com
page 9 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-12 We are going to add our IP to our design. You will find the IP core in the IP Catalog Panel under
Project Local PCores -> USER -> MYLED 1.00.a. Right click on it and Click Add IP (as shown
in Figure 15.
www.digilentinc.com
page 10 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-14 The AXI4-Lite bus of myled IP Core needs to be connected to the processing system. So in
Instantiate and Connect IP window, check Select Processor Instance to Connect To, and
select processing_system7_0 in the drop down box (as shown in Figure 17). Click OK.
www.digilentinc.com
page 11 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-16 Now we are going to implement the circuit using HDL. The myled IP Core Template will generate
two HDL files corresponding to two modules: myled, and user_logic (as shown in Figure 19).
Module myled will always be in VHDL, and user_logic module will be in the language you
select in step I-13. This tutorial will present you with solutions in both VHDL and Verilog.
myled
User_logic
LEDs
LED[1]
slv_reg0[7:0]
LED[0]
LED[2]
LED[3]
LED[4]
LED[5]
LED[6]
LED[7]
www.digilentinc.com
page 12 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 3 Verilog.
54 module user_logic
55 (
56
// -- ADD USER PORTS BELOW THIS LINE -----------------57
// --USER ports added here
58
LED,
59
// -- ADD USER PORTS ABOVE THIS LINE -----------------...
74 );
...
86 // -- ADD USER PORTS BELOW THIS LINE ----------------87 // --USER ports added here
88 output
[7 : 0]
LED;
89 // -- ADD USER PORTS ABOVE THIS LINE ----------------...
120
// USER logic implementation added here
121
LED = slv_reg0[7:0];
122
I-18 (Both Verilog & VHDL) Right click on myled_0 and click Browse HDL Sources (as shown in
Figure 20). In the pop-up window locate source file myled.vhd under
xps_proj/pcores/myled_v1_00_a/hdl/vhdl/. In the declaration of the myled entity, add a
user port named LED and define it as output, std_logic_vector(7 downto 0). Connect
LED of user_logic to LED of myled, as shown in Example 4.
Example 4.
114 entity myled is
115
generic
116
(
...
136
);
137
port
138
(
139
-- ADD USER PORTS BELOW THIS LINE -----------------140
--USER ports added here
141
LED
: out std_logic_vector(7 downto 0);
142
-- ADD USER PORTS ABOVE THIS LINE -----------------...
166
);
...
292
USER_LOGIC_I : entity myled_v1_00_a.user_logic
293
generic map
294
(
...
301
)
302
port map
303
(
304
-- MAP USER PORTS BELOW THIS LINE -----------------305
--USER ports mapped here
306
LED
=> LED,
307
-- MAP USER PORTS ABOVE THIS LINE -----------------...
319
);
www.digilentinc.com
page 13 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
I-19 Right click on myled_0 and click View MPD, as shown in Figure 21. In the MPD (Microprocessor
Peripheral Definition), add a port declaration for LED (as shown in Example 5).
I-20 Click Project->Rescan User Repositories to make port LED show up in the Ports tab (as
shown in Figure 22). Switch to the Ports tab, expand myled_0, and connect LED to External
Ports (as shown in Figure 23). Its default name is myled_0_LED_pin.
www.digilentinc.com
page 14 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
############################
#
#
# On-board LED's
#
#
#
############################
net myled_0_LED_pin<0> LOC =
net myled_0_LED_pin<1> LOC =
net myled_0_LED_pin<2> LOC =
net myled_0_LED_pin<3> LOC =
net myled_0_LED_pin<4> LOC =
net myled_0_LED_pin<5> LOC =
net myled_0_LED_pin<6> LOC =
net myled_0_LED_pin<7> LOC =
T22
T21
U22
U21
V22
W22
U19
U14
|
|
|
|
|
|
|
|
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
=
=
=
=
=
=
=
=
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
www.digilentinc.com
#
#
#
#
#
#
#
#
LD0
LD1
LD2
LD3
LD4
LD5
LD6
LD7
page 15 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 6 (Cont.)
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
############################
#
#
# On-board Slide Switches #
#
#
############################
net processing_system7_0_GPIO<7>
net processing_system7_0_GPIO<8>
net processing_system7_0_GPIO<9>
net processing_system7_0_GPIO<10>
net processing_system7_0_GPIO<11>
net processing_system7_0_GPIO<12>
net processing_system7_0_GPIO<13>
net processing_system7_0_GPIO<14>
LOC
LOC
LOC
LOC
LOC
LOC
LOC
LOC
=
=
=
=
=
=
=
=
F22
G22
H22
F21
H19
H18
H17
M15
|
|
|
|
|
|
|
|
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
=
=
=
=
=
=
=
=
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
#
#
#
#
#
#
#
#
SW0
SW1
SW2
SW3
SW4
SW5
SW6
SW7
############################
#
#
# On-board Left, Right,
#
# Up, Down, and Select
#
# Pushbuttons
#
#
#
############################
net processing_system7_0_GPIO<15>
net processing_system7_0_GPIO<16>
net processing_system7_0_GPIO<17>
net processing_system7_0_GPIO<18>
net processing_system7_0_GPIO<19>
LOC
LOC
LOC
LOC
LOC
=
=
=
=
=
N15
R18
T18
R16
P16
|
|
|
|
|
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
=
=
=
=
=
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
#
#
#
#
#
BTNL
BTNR
BTNU
BTND
BTNS
############################
#
#
# Pmod JA
#
#
#
############################
net processing_system7_0_GPIO<20>
net processing_system7_0_GPIO<21>
net processing_system7_0_GPIO<22>
net processing_system7_0_GPIO<23>
net processing_system7_0_GPIO<24>
net processing_system7_0_GPIO<25>
net processing_system7_0_GPIO<26>
net processing_system7_0_GPIO<27>
LOC
LOC
LOC
LOC
LOC
LOC
LOC
LOC
=
=
=
=
=
=
=
=
Y11
AA11
Y10
AA9
AB11
AB10
AB9
AA8
#
#
#
#
#
#
#
#
JA1
JA2
JA3
JA4
JA7
JA8
JA9
JA10
############################
#
#
# Pmod JB
#
#
#
############################
net processing_system7_0_GPIO<28>
net processing_system7_0_GPIO<29>
net processing_system7_0_GPIO<30>
net processing_system7_0_GPIO<31>
net processing_system7_0_GPIO<32>
net processing_system7_0_GPIO<33>
net processing_system7_0_GPIO<34>
net processing_system7_0_GPIO<35>
LOC
LOC
LOC
LOC
LOC
LOC
LOC
LOC
=
=
=
=
=
=
=
=
W12
W11
V10
W8
V12
W10
V9
V8
#
#
#
#
#
#
#
#
JB1
JB2
JB3
JB4
JB7
JB8
JB9
JB10
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
www.digilentinc.com
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
=
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
page 16 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 6 (Cont.)
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
############################
#
#
# Pmod JC
#
#
#
############################
net processing_system7_0_GPIO<36>
net processing_system7_0_GPIO<37>
net processing_system7_0_GPIO<38>
net processing_system7_0_GPIO<39>
net processing_system7_0_GPIO<40>
net processing_system7_0_GPIO<41>
net processing_system7_0_GPIO<42>
net processing_system7_0_GPIO<43>
LOC
LOC
LOC
LOC
LOC
LOC
LOC
LOC
=
=
=
=
=
=
=
=
AB7
AB6
Y4
AA4
R6
T6
T4
U4
|
|
|
|
|
|
|
|
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
=
=
=
=
=
=
=
=
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
#
#
#
#
#
#
#
#
JC1_P
JC1_N
JC2_P
JC2_N
JC3_P
JC3_N
JC4_P
JC4_N
(JC1)
(JC2)
(JC3)
(JC4)
(JC7)
(JC8)
(JC9)
(JC10)
############################
#
#
# Pmod JD
#
#
#
############################
net processing_system7_0_GPIO<44>
net processing_system7_0_GPIO<45>
net processing_system7_0_GPIO<46>
net processing_system7_0_GPIO<47>
net processing_system7_0_GPIO<48>
net processing_system7_0_GPIO<49>
net processing_system7_0_GPIO<50>
net processing_system7_0_GPIO<51>
LOC
LOC
LOC
LOC
LOC
LOC
LOC
LOC
=
=
=
=
=
=
=
=
V7
W7
V5
V4
W6
W5
U6
U5
|
|
|
|
|
|
|
|
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
IOSTANDARD
=
=
=
=
=
=
=
=
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
LVCMOS33;
#
#
#
#
#
#
#
#
JD1_P
JD1_N
JD2_P
JD2_N
JD3_P
JD3_N
JD4_P
JD4_N
(JD1)
(JD2)
(JD3)
(JD4)
(JD7)
(JD8)
(JD9)
(JD10)
I-21 Regenerate the bit stream for the hardware design by clicking on Hardware -> Generate
Bitstream, as shown in Figure 25.
www.digilentinc.com
page 17 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Instructions
II-1 Get the source code for U-Boot from the Digilent git repository. There are two ways to retrieve the
source code:
a. Using git command: If you have git installed in your distribution, you can clone the repository
to your computer by command git clone https://github.com/Digilent/u-bootdigilent. The whole Git Repository is around 55MB, as shown in Example 7.
Example 7.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ git clone https://github.com/Digilent/u-boot-digilent
Initialized empty Git repository in
/home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/u-boot-digilent/.git/
remote: Counting objects: 190139, done.
remote: Compressing objects: 100% (36339/36339), done.
remote: Total 190139 (delta 153023), reused 188409 (delta 151293)
Receiving objects: 100% (190139/190139), 54.94 MiB | 158 KiB/s, done.
Resolving deltas: 100% (153023/153023), done.
[tinghui.wang@DIGILENT_LINUX Tutorial]$
b. Download a compressed package: If you only want to use u-boot once and do not want to
track the updates, you can also download a compressed package from github.com:
https://github.com/Digilent/u-boot-digilent. Click Tags on the top right corner of the page, and
the most recent tag is v2012.04-digilent-13.01.
page 18 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 9.
30
31
32
33
34
40
41
42
43
44
/* Default environment */
#define CONFIG_IPADDR
192.168.10.250
#define CONFIG_SERVERIP 192.168.10.1
#undef CONFIG_ZYNQ_XIL_LQSPI
...
#undef CONFIG_EXTRA_ENV_SETTINGS
#define CONFIG_EXTRA_ENV_SETTINGS
"ethaddr=00:0a:35:00:01:45\0"
"kernel_size=0x140000\0"
\
"ramdisk_size=0x200000\0"
\
\
\
II-3 To compile U-Boot, we need cross-compile tools which are provided by Xilinx ISE 14.4. Those
tools have a prefix arm-xilinx-linux-gnueabi- to the standard names for the GCC tool
chain. In order to use the cross-platform compilers, please make sure Xilinx ISE 14.4 settings
have been sourced. If not, please refer to step I-2. To configure and build U-Boot for ZedBoard,
follow Example 10.
Example 10.
[tinghui.wang@DIGILENT_LINUX u-boot-digilent]$ make CROSS_COMPILE=arm-xilinx-linux-gnueabizynq_zed_config
Configuring for zynq_zed board...
[tinghui.wang@DIGILENT_LINUX u-boot-digilent]$ make CROSS_COMPILE=arm-xilinx-linux-gnueabiGenerating include/autoconf.mk
Generating include/autoconf.mk.dep
arm-xilinx-linux-gnueabi-gcc -DDO_DEPS_ONLY \
...
make -C examples/api all
make[1]: Entering directory `/home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/uboot-digilent/examples/api'
make[1]: Nothing to be done for `all'.
make[1]: Leaving directory `/home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/uboot-digilent/examples/api'
[tinghui.wang@DIGILENT_LINUX u-boot-digilent]$
www.digilentinc.com
page 19 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
II-4 After the compilation, the ELF (Executable and Linkable File) generated is named u-boot. We
need to add a .elf extension to the file name so that Xilinx SDK can read the file layout and
generate BOOT.BIN. In this tutorial, we are going to move the u-boot.elf to boot_image
folder and substitute the u-boot.elf that comes along with ZedBoard Embedded Linux Design
Package, as shown in Example 11.
Example 11.
[tinghui.wang@DIGILENT_LINUX u-boot-digilent]$ cp u-boot
../ZedBoard_Linux_Design/boot_image/u-boot.elf
[tinghui.wang@DIGILENT_LINUX u-boot-digilent]$
www.digilentinc.com
page 20 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Instructions
III-1 Export the hardware design (after step I-21) to Xilinx SDK by clicking on Project -> Export
Hardware Design to SDK, as shown in Figure 27. In the pop-up window, click Export and
Launch SDK, as shown in Figure 28.
www.digilentinc.com
page 21 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
page 22 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
III-4 In the New Project window, select Xilinx->Application Project, and then Click Next (Figure 32).
www.digilentinc.com
page 23 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
III-6 Select Zynq FSBL as template, and click Finish (as shown in Figure 34).
FsblMeasurePerfTime(tCur,tEnd);
#endif
/* Reset the USB */
{
fsbl_printf(DEBUG_GENERAL, "Reset USB...\r\n");
/* Set data dir */
*(unsigned int *)0xe000a284 = 0x00000001;
/* Set OEN */
*(unsigned int *)0xe000a288 = 0x00000001;
Xil_DCacheFlush();
/* For REVB Set data value low for reset, then back high */
#ifdef ZED_REV_A
*(unsigned int *)0xe000a048 = 0x00000001;
Xil_DCacheFlush();
*(unsigned int *)0xe000a048 = 0x00000000;
Xil_DCacheFlush();
#else
*(unsigned int *)0xe000a048 = 0x00000000;
Xil_DCacheFlush();
*(unsigned int *)0xe000a048 = 0x00000001;
Xil_DCacheFlush();
#endif
}
www.digilentinc.com
page 24 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
III-8 After you have saved the changes to main.c, the project will rebuild itself automatically. If it does
not rebuild, Click Project->Clean to clean the project files, and Project->Build All to rebuild all
the projects. The compiled ELF file is located in
ZedBoard_Linux_Design/hw/xps_proj/SDK/SDK_Export/FSBL/Debug/FSBL.elf
III-9 Now, we have all the files ready to create BOOT.BIN. Click Xilinx Tools -> Create Zynq Boot
Image, as shown in Figure 35.
page 25 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
III-11 The created BIN file was named u-boot.bin. We need to rename it to BOOT.BIN (all in capital
letters) so that ZedBoard can find and load it after power up.
www.digilentinc.com
page 26 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Instructions
IV-1 Get the Linux kernel source code from Digilent git repository. There are two ways to retrieve the
source code:
a. Using git command: If you have git installed in your distribution, you can clone the repository
to your computer by command git clone https://github.com/Digilent/linuxdigilent. The whole Git Repository is around 550MB, as shown in Example 13.
Example 13.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ git clone https://github.com/Digilent/linux-digilent
Initialized empty Git repository in
/home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/linux-digilent/.git/
remote: Counting objects: 2640848, done.
remote: Compressing objects: 100% (425292/425292), done.
remote: Total 2640848 (delta 2210020), reused 2620443 (delta 2189623)
Receiving objects: 100% (2640848/2640848), 565.52 MiB | 641 KiB/s, done.
Resolving deltas: 100% (2210020/2210020), done.
Checking out files: 100% (40001/40001), done.
[tinghui.wang@DIGILENT_LINUX Tutorial]$
b. Download a compressed package: If you only want to use u-boot once and do not want to
track the updates, you can also download a compressed package from github.com:
https://github.com/Digilent/linux-digilent. Click Tags on the top right corner of the page.The
most recent tag is v3.6-digilent-13.01.
www.digilentinc.com
page 27 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
IV-3 We will change the configuration for the PmodOLED driver changing it from a built-in driver to a
loadable kernel module. To do this, we will start the configuration menu for the Linux kernel by
following Example 15. The configuration screen will show up in your terminal as Figure 37.
Example 15.
[tinghui.wang@DIGILENT_LINUX linux-digilent]$ make ARCH=arm CROSS_COMPILE=arm-xilinx-linuxgnueabi- menuconfig
page 28 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
IV-4 Browse to Device Driver-> PMOD Support -> PmodOLED1, press M to modularize the feature,
as shown in Figure 38, 39, and 40.
www.digilentinc.com
page 29 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
IV-5 Move the cursor to Exit to exit the Linux Kernel Configuration menu, as shown in Figure 41.
Choose YES to save the new configuration, as shown in Figure 42.
Figure 42. Chose Yes to save the new Linux Kernel Configuration
IV-6 Follow Example 16 to compile the Linux Kernel.
Example 16.
[tinghui.wang@DIGILENT_LINUX linux-digilent]$ make ARCH=arm CROSS_COMPILE=arm-xilinx-linuxgnueabiscripts/kconfig/conf --silentoldconfig Kconfig
WRAP
arch/arm/include/generated/asm/auxvec.h
WRAP
arch/arm/include/generated/asm/bitsperlong.h
WRAP
arch/arm/include/generated/asm/cputime.h
WRAP
arch/arm/include/generated/asm/emergency-restart.h
...
GEN
.version
CHK
include/generated/compile.h
UPD
include/generated/compile.h
CC
init/version.o
LD
init/built-in.o
KSYM
.tmp_kallsyms1.o
KSYM
.tmp_kallsyms2.o
LD
vmlinux
www.digilentinc.com
page 30 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 16 (Cont.).
SYSMAP System.map
OBJCOPY arch/arm/boot/Image
Kernel: arch/arm/boot/Image is ready
AS
arch/arm/boot/compressed/head.o
GZIP
arch/arm/boot/compressed/piggy.gzip
AS
arch/arm/boot/compressed/piggy.gzip.o
CC
arch/arm/boot/compressed/misc.o
CC
arch/arm/boot/compressed/decompress.o
CC
arch/arm/boot/compressed/string.o
SHIPPED arch/arm/boot/compressed/lib1funcs.S
AS
arch/arm/boot/compressed/lib1funcs.o
SHIPPED arch/arm/boot/compressed/ashldi3.S
AS
arch/arm/boot/compressed/ashldi3.o
LD
arch/arm/boot/compressed/vmlinux
OBJCOPY arch/arm/boot/zImage
Kernel: arch/arm/boot/zImage is ready
Building modules, stage 2.
MODPOST 23 modules
...
CC
drivers/pmods/pmodoled-gpio.mod.o
LD [M] drivers/pmods/pmodoled-gpio.ko
...
[tinghui.wang@DIGILENT_LINUX linux-digilent]$
www.digilentinc.com
page 31 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Instructions
V-1 To boot the Linux Operating System on the ZedBoard, you need BOOT.BIN, a Linux kernel
image (zImage), a device tree blob (DTB file), and a file system. BOOT.BIN has been created in
Section III and zImage has been compiled in Section IV. We will now compile the DTB file. The
default device tree source file is located in the Linux Kernel source at arch/arm/boot/dts/digilentzed.dts.
RAMDISK: modify the device tree source file according to Example 17.
LINARO FS: use the default device tree source as it is.
Example 17.
48
49
50
51
52
chosen {
/* bootargs = "console=ttyPS0,115200 root=/dev/mmcblk0p2 rw earlyprintk
rootfstype=ext4 rootwait devtmpfs.mount=1"; */
bootargs = "console=ttyPS0,115200 root=/dev/ram rw initrd=0x800000,8M
init=/init earlyprintk rootwait devtmpfs.mount=1";
linux,stdout-path = "/axi@0/serial@e0001000";
};
V-3 (RAMDISK) Copy BOOT.BIN, devicetree.dtb, zImage and ramdisk8M.tar.gz to the first partition
of an SD card, as shown in Example 19 RamDisk.
(LINARO FS) Follow Formatting the SD Card in Getting Started with Embedded Linux
ZedBoard to create the Linaro File System on the second partition of an SD Card. Copy
BOOT.BIN, devicetree.dtb, and zImage to the first partition of the SD card, as shown in Example
19 Linaro.
www.digilentinc.com
page 32 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
NOTE: In Example 19, the first partition of the SD card is mounted to /media/ZED_BOOT
Example 19 RamDisk.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ ls
devicetree.dtb linux-digilent u-boot-digilent ZedBoard_Linux_Design
[tinghui.wang@DIGILENT_LINUX Tutorial]$ cp ZedBoard_Linux_Design/boot_image/BOOT.BIN
/media/ZED_BOOT/
[tinghui.wang@DIGILENT_LINUX Tutorial]$ cp ZedBoard_Linux_Design/sd_image/ramdisk8M.image.gz
/BOOT.BIN /media/ZED_BOOT/
[tinghui.wang@DIGILENT_LINUX Tutorial]$ cp ./devicetree.dtb /media/ZED_BOOT/
[tinghui.wang@DIGILENT_LINUX Tutorial]$ cp linux-digilent/arch/arm/boot/zImage
/media/ZED_BOOT/
[tinghui.wang@DIGILENT_LINUX Tutorial]$
Example 19 Linaro.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ ls
devicetree.dtb linux-digilent u-boot-digilent ZedBoard_Linux_Design
[tinghui.wang@DIGILENT_LINUX Tutorial]$ cp ZedBoard_Linux_Design/boot_image/BOOT.BIN
/media/ZED_BOOT
[tinghui.wang@DIGILENT_LINUX Tutorial]$ cp ./devicetree.dtb /media/ZED_BOOT
[tinghui.wang@DIGILENT_LINUX Tutorial]$ cp linux-digilent/arch/arm/boot/zImage
/media/ZED_BOOT
[tinghui.wang@DIGILENT_LINUX Tutorial]$
V-4 Plug the SD Card into the ZedBoard. To boot from SD card, jumpers for MIO2, MIO3, MIO6 are
connected to GND, and jumpers for MIO4 and MIO5 are connected to 3V3. Jumper for JP6
needs to be connected. Connect UART port to PC with micro USB cable and set the UART
terminal on PC to 115200 baud rate, 8 data bits, 1 stop bit, no parity, and no flow control. After
powering on the board, the console (shown in Figure 43 RamDisk) should be seen at the
UART terminal if you use RamDisk, or you will see the graphic desktop on a monitor that is
connected to HDMI port if you use Linaro File system (shown in Figure 43 Linaro).
page 33 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
www.digilentinc.com
page 34 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Instructions
VI-1 Create a directory named drivers in the Tutorial folder, as shown in Example 20. Inside the
drivers directory, we will compose the driver for the myled controller.
Example 20.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ mkdir drivers
[tinghui.wang@DIGILENT_LINUX Tutorial]$ ls
devicetree.dtb drivers
inux-digilent u-boot-digilent
[tinghui.wang@DIGILENT_LINUX Tutorial]$
ZedBoard_Linux_Design
VI-2 We need a Makefile so that we can compile the driver. The Makefile is created in Example 21.
Example 21 Command Line.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ cd drivers
[tinghui.wang@DIGILENT_LINUX drivers]$ vim Makefile
Example 21 Makefile.
1 obj-m := myled.o
2
3 all:
4
make -C ../linux-digilent/ M=$(PWD) modules
5
6 clean:
7
make -C ../linux-digilent/ M=$(PWD) clean
VI-3 We will start with a simple driver that creates a file named myled under the Linux /proc file
system. The status of the on-board LEDs can be changed by writing a number to the file. The
driver is coded in Example 22.
Example 22 Command Line
[tinghui.wang@DIGILENT_LINUX drivers]$ vim myled.c
Example 22 myled.c
1
2
3
4
5
6
#include
#include
#include
#include
#include
#include
<linux/kernel.h>
<linux/module.h>
<asm/uaccess.h>
<asm/io.h>
<linux/proc_fs.h>
<linux/seq_file.h>
/*
/*
/*
/*
Needed
Needed
Needed
Needed
for
for
for
for
copy_from_user */
IO Read/Write Functions */
Proc File System Functions */
Sequence File Operations */
www.digilentinc.com
page 35 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
#include <linux/platform_device.h>
www.digilentinc.com
page 36 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
www.digilentinc.com
page 37 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
www.digilentinc.com
page 38 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
www.digilentinc.com
page 39 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
VI-4 Compile and generate the driver module using make (as shown in Example 23).
Example 23
[tinghui.wang@DIGILENT_LINUX drivers]$ make ARCH=arm CROSS_COMPILE=arm-xilinx-linux-gnueabimake -C ../linux-digilent/
M=/home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/drivers modules
make[1]: Entering directory
`/home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/linux-digilent'
CC [M] /home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/drivers/myled.o
Building modules, stage 2.
MODPOST 1 modules
CC
/home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/drivers/myled.mod.o
LD [M] /home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/drivers/myled.ko
make[1]: Leaving directory
`/home/tinghui.wang/Workspace/ZedBoard/Project/14_4/Tutorial/linux-digilent'
[tinghui.wang@DIGILENT_LINUX drivers]$
VI-5 We need to add the myled device node into the device tree. Make a copy of the default device
tree source in the drivers folder, and modify it according to Example 24. The compatibility
string of the node is the same as we define in the driver source code (myled.c: line 182). The reg
property defines the physical address space of the node. The address here should match with
the address of the myled IP core in the address tab of the EDK design, as shown in Figure 44.
www.digilentinc.com
page 40 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 24 digilent-zed.dts
549
550
551
552
553
554
555
556
557
558
559 };
spi-speed-hz = <4000000>;
spi-sclk-gpio = <&ps7_gpio_0 59 0>;
spi-sdin-gpio = <&ps7_gpio_0 60 0>;
};
myled {
compatible = "dglnt,myled-1.00.a";
reg = <0x7e400000 0x10000>;
};
};
VI-7 Copy these two files to the first partition of the SD card, as shown in Example 26. We are ready
to test our driver on-board now.
Example 26.
[tinghui.wang@DIGILENT_LINUX drivers]$ ls
devicetree.dtb
Makefile
Module.symvers myled.ko
myled.mod.o
digilent-zed.dts modules.order myled.c
myled.mod.c myled.o
[tinghui.wang@DIGILENT_LINUX drivers]$ cp myled.ko /media/ZED_BOOT/d
[tinghui.wang@DIGILENT_LINUX drivers]$ cp devicetree.dtb /media/ZED_BOOT/
[tinghui.wang@DIGILENT_LINUX drivers]$
VI-8 Plug the SD card into the ZedBoard, and we can start testing our driver. Use the insmod
command to install the driver module into the kernel. After the driver is installed, an entry named
myled will be created under the /proc file system. Writing 0x0F to /proc/myled will light up
LED 0~3, while writing 0xF0 will light up LED 4~7. You can either remove the driver with
command rmmod or power off the system by command poweroff. In both case, all the LEDs
will be turned off, as shown in Example 27. For instructions on using the terminal with the
ZedBoard, please refer to Step V-4 or Section Boot from SD in Getting Started with
Embedded Linux ZedBoard.
www.digilentinc.com
page 41 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 27 RAMDISK
U-Boot 2012.04.01-dirty (Feb 01 2013 - 12:52:36)
DRAM: 512 MiB
WARNING: Caches not enabled
MMC:
SDHCI: 0
Using default environment
...
reading zImage
2457328 bytes read
reading devicetree.dtb
9728 bytes read
reading ramdisk8M.image.gz
3694108 bytes read
## Starting application at 0x00008000 ...
Uncompressing Linux... done, booting the kernel.
[
0.000000] Booting Linux on physical CPU 0
[
0.000000] Linux version 3.6.0-digilent-13.01-00002-g06b3889
(tinghui.wang@DIGILENT_LINUX) (gcc version 4.6.3 (Sourcery CodeBench Lite 2012.03-79) ) #1
SMP PREEMPT Sun Feb 10 23:54:12 PST 2013
...
rcS Complete
zynq> mount /dev/mmcblk0p1 /mnt/
zynq> cd /mnt/
zynq> ls
BOOT.BIN
myled.ko
devicetree.dtb
zImage
ramdisk8M.image.gz
www.digilentinc.com
partitions
scsi
self
slabinfo
softirqs
stat
swaps
sys
sysvipc
timer_list
tty
uptime
version
vmallocinfo
vmstat
zoneinfo
page 42 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 27 Linaro FS
U-Boot 2012.04.01-dirty (Feb 01 2013 - 12:52:36)
DRAM: 512 MiB
WARNING: Caches not enabled
MMC:
SDHCI: 0
...
reading zImage
2457328 bytes read
reading devicetree.dtb
9728 bytes read
reading ramdisk8M.image.gz
3694108 bytes read
## Starting application at 0x00008000 ...
Uncompressing Linux... done, booting the kernel.
[
0.000000] Booting Linux on physical CPU 0
[
0.000000] Linux version 3.6.0-digilent-13.01-00002-g06b3889
(tinghui.wang@DIGILENT_LINUX) (gcc version 4.6.3 (Sourcery CodeBench Lite 2012.03-79) ) #1
SMP PREEMPT Sun Feb 10 23:54:12 PST 2013
...
Last login: Thu Jan 1 00:00:10 UTC 1970 on tty1
cat: /var/lib/update-notifier/fsck-at-reboot: No such file or directory
run-parts: /etc/update-motd.d/98-fsck-at-reboot exited with return code 1
Welcome to Linaro 12.11 (GNU/Linux 3.6.0-digilent-13.01-00002-g06b3889 armv7l)
* Documentation:
https://wiki.linaro.org/
www.digilentinc.com
pagetypeinfo
partitions
scsi
self
slabinfo
softirqs
stat
swaps
sys
sysvipc
timer_list
tty
uptime
version
vmallocinfo
vmstat
zoneinfo
page 43 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Instructions
VII-1 In this section, we will write a user application that makes the LEDs blink by writing to
/proc/myled. Create a directory named user_app in the Tutorial folder, as shown in Example 28.
Inside the user_app directory, we will compose the led_blink.c, as shown in Example 29.
Example 28.
[tinghui.wang@DIGILENT_LINUX Tutorial]$ mkdir user_app
[tinghui.wang@DIGILENT_LINUX Tutorial]$ ls
devicetree.dtb drivers
inux-digilent u-boot-digilent
[tinghui.wang@DIGILENT_LINUX Tutorial]$
user_app
ZedBoard_Linux_Design
Example 29 led_blink.c.
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
int main()
{
FILE* fp;
while(1) {
fp = fopen("/proc/myled", "w");
if(fp == NULL) {
printf("Cannot open /proc/myled for write\n");
return -1;
}
fputs("0x0F\n", fp);
fclose(fp);
sleep(1);
fp = fopen("/proc/myled", "w");
if(fp == NULL) {
printf("Cannot open /proc/myled for write\n");
return -1;
}
fputs("0x00\n", fp);
fclose(fp);
sleep(1);
}
return 0;
}
www.digilentinc.com
page 44 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
VII-2 Compose a Makefile and compile led_blink.c into led_blink.elf, as shown in Example 30.
Example 30 Command Line.
[tinghui.wang@DIGILENT_LINUX user_app]$ vim Makefile
Example 30 Makefile.
1
2
3
4
5
6
7
8
9
10
11
12
13
CC = arm-xilinx-linux-gnueabi-gcc
CFLAGS = -g
all : led_blink
led_blink : led_blink.o
${CC} ${CFLAGS} o $^ $@
clean :
rm rfv *.o
rm rfv led_blink
.PHONY : clean
VII-3 Insert the SD card into the computer, and copy the binary file led_blink onto the first partition of
SD card, as shown in Example 31.
Example 31.
[tinghui.wang@DIGILENT_LINUX user_app]$ cp led_blink /media/ZED_BOOT/
VII-4 Plug the SD card into the ZedBoard. Use the insmod command to install the driver module into
the kernel. Run led_blink and the LED will start blinking.
Example 32 RAMDISK
...
rcS Complete
zynq> mount /dev/mmcblk0p1 /mnt/
zynq> cd /mnt/
zynq> ls
BOOT.BIN
myled.ko
devicetree.dtb
ramdisk8M.image.gz
led_blink
zImage
www.digilentinc.com
page 45 of 47
Copyright Digilent, Inc.
Embedded Linux
Hands-on Tutorial -- ZedBoard
Example 32 Linaro FS
...
root@linaro-ubuntu-desktop:~# mount /dev/mmcblk0p1 /mnt/
root@linaro-ubuntu-desktop:~# cd /mnt/
root@linaro-ubuntu-desktop:/mnt# insmod myled.ko
root@linaro-ubuntu-desktop:/mnt# ./led_blink
^C
root@linaro-ubuntu-desktop:/mnt# rmmod myled
root@linaro-ubuntu-desktop:/mnt#
www.digilentinc.com
page 46 of 47
Copyright Digilent, Inc.