Commit 922fbf87 authored by Alessandro Rubini's avatar Alessandro Rubini

Merge branch 'doc-update'

parents 1d140afe 52e8d4d1
......@@ -10,7 +10,7 @@
% =========================
%
% This file is a texinfo source. It isn't the binary file of some strange
% editor of mine. If you want ASCII, you should "make fine-delay.txt".
% editor of mine. If you want ASCII, you should "make wrpc.txt".
%
%------------------------------------------------------------------------------
......@@ -35,7 +35,7 @@
@setchapternewpage off
@set update-month August 2012
@set update-month October 2012
@set release 2.0
@set tagname wrpc-v2.0
@c WARNING: in @example I Can't use @value{tagname}, so please look for this
......@@ -45,7 +45,7 @@
@titlepage
@title White Rabbit PTP Core User's Manual
@subtitle @value{update-month} -- Release @value{release}
@subtitle @value{update-month}
@subtitle Building and Running
@author Grzegorz Daniluk (CERN BE-CO-HT)
@end titlepage
......@@ -67,30 +67,20 @@ want to get your hands dirty and prefer to use the binaries available at
@ref{Building the Core} and move forward directly to
@ref{Running and Configuring}.
@menu
* Software and hardware requirements::
* Building the Core::
* Running and Configuring
* Known bugs and missing features::
* Troubleshooting::
* Questions, reporting bugs::
@end menu
@c ##########################################################################
@node Software and hardware requirements
@chapter Software and hardware requirements
@menu
* Repositories and Releases
* Hardware needed
@end menu
@c ##########################################################################
@c ==========================================================================
@node Repositories and Releases
@section Repositories and Releases
This version of the White Rabbit PTP Core is release @value{release}.
The code and documentation is distributed in the following places:
This manual you are reading is not about an official release,
but a snapshot of the current master branch. The last release
we blessed is called @value{release}.
The code and documentation for the project is distributed in the
following places:
@table @code
......@@ -127,6 +117,8 @@ on the set of Manifest files.
@item http://www.ohwr.org/attachments/download/1133/lm32.tar.xz
LM32 toolchain used to compile the WRPC firmware (software).
This specific file is linked from the @i{files} tab of the
@code{wrpc-sw} project.
@end table
......@@ -139,7 +131,7 @@ repository (unless specified otherwise in this document).
Any official hot fixes, if any, for this release will live in the branch called
@code{@value{tagname}-fixes}, in each WRPC repository.
@c ##########################################################################
@c ==========================================================================
@node Hardware needed
@section Hardware needed
......@@ -167,12 +159,7 @@ FPGA that is later used by LM32 software to perform WR synchronization.
To perform the steps below you will need a computer running Linux.
@menu
* HDL synthesis
* LM32 software compilation
@end menu
@c ##########################################################################
@c ==========================================================================
@node HDL synthesis
@section HDL synthesis
......@@ -243,7 +230,11 @@ release is marked with @value{tagname} tag.
@end example
@b{Note:} alternatively you can get the release sources from the tarball
available in @uref{http://www.ohwr.org/projects/wr-cores/files}
available in the @i{files} tab of @code{wr-cores}:
@example
http://www.ohwr.org/projects/wr-cores/files
@end example
@sp 1
The subdirectory which contains the main synthesis Manifest.py for SPEC board
......@@ -284,7 +275,7 @@ everything from scratch you can use the following commands:
@i{ip_cores} subdirectory.
@end itemize
@c ##########################################################################
@c ==========================================================================
@node LM32 software compilation
@section LM32 software compilation
......@@ -306,19 +297,20 @@ from any directory:
@end example
To get the release sources of WRPC software please clone the @i{wrpc-sw} git
repository tagged with @value{tagname} tag:
repository tagged with @value{tagname} tag. Otherwise, you can use the current master
branch, with the latest improvements and fixes.
@example
@smallexample
$ git clone git://ohwr.org/hdl-core-lib/wr-cores/wrpc-sw.git <your_wrpcsw_location>
$ cd <your_wrpcsw_location>
$ git checkout wrpc-v2.0
@end example
$ git checkout wrpc-v2.0 # or "git checkout master"
@end smallexample
@b{Note:} alternatively you can get the release sources from the tarball
available in @uref{http://www.ohwr.org/projects/wr-cores/files}
available in the @i{files} tab of the @code{wr-cores} OHWR project.
@sp 1
The WRPC software repository contains a ptp-nosposix (that contains the WR PTP
The WRPC software repository contains a ptp-noposix (that contains the WR PTP
software daemon) in the form of a git submodule. Your fresh local copy cloned
from @i{ohwr.org} has therefore the @i{ptp-noposix} directory empty. To fetch
the ptp-noposix you have to execute the following git commands:
......@@ -332,17 +324,37 @@ First you have to compile the tools provided with WRPC software which are used
later during the software compilation:
@example
$ cd tools
$ make
$ cd ..
$ make -C tools
@end example
Now you have everything that is needed to build the software for WRPC,
but you need to make a few configuration choices. The package is using
@i{Kconfig} as a configuration engine, so you may run one of the
following commnads (the first is text-mode, the second uses a KDE GUI
and the third uses a Gnome GUI):
@example
$ make menuconfig
$ make xconfig
$ make gconfig
@end example
Now you have everything that is needed to build the software for WRPC. Before
compilation the decision can be made whether to turn on or not the software
support for Etherbone core that is integrated inside WRPC gateware for SPEC
board. By default it is disabled but can be turned on by setting the
@i{CONFIG_ETHERBONE} variable to @i{y} inside the Makefile. The compilation is made by
a simple command without any additional parameters:
Other @i{Kconfig} target applies, like @code{config}, @code{oldconfig}
and so on. A few default known-good configurations are found in
@file{./configs} and you choose them by @i{make}ing them by name
like this:
@example
$ make spec_defconfig
@end example
The most important configuration choice at this point in time is
whether to enable Etherbone or not. It is disabled by default in
@code{spec_defconfig} and enabled by default in
@code{etherbone_defconfig}.
After the package is configured, just run @code{make} without
parameters to build your binary file:
@example
$ make
......@@ -356,40 +368,37 @@ Core (@ref{Running and Configuring}).
@node Running and Configuring
@chapter Running and Configuring
@menu
* Downloading firmware to SPEC
* Writing EEPROM and calibration
* Running the Core
@end menu
@c ##########################################################################
@c ==========================================================================
@node Downloading firmware to SPEC
@section Downloading firmware to SPEC
There is a Software support for the SPEC board project in @i{ohwr.org}. It
contains a set of Linux kernel drivers and userspace tools written by
contains a set of Linux kernel drivers and user space tools written by
Alessandro Rubini and Tomasz Wlostowski that are used to communicate with the
SPEC board plugged into the PCI-Express port of the PC.
The instructions in this section are based on commit 27b4ad9 of @i{spec-sw}
repository and are limited to absolutely minimum required to load WRPC FPGA
and LM32 firmware. The full manual for @i{spec-sw} can be found on:
@uref{http://www.ohwr.org/attachments/download/1506/spec-sw-2012-08-08.pdf}.
If there will be a newer version of SPEC software support you would like to
and LM32 firmware. The full manual for @i{spec-sw} can be found at:
@example
http://www.ohwr.org/attachments/download/1506/spec-sw-2012-08-08.pdf
@end example
If there is a newer version of SPEC software support you would like to
use, the up-to-date documentation can always be found in @i{doc/} subdirectory
of @i{spec-sw} git repository.
@sp 1
First, please clone the git repository of SPEC software support package and
build the kernel driver and userspace tools:
build the kernel driver and user space tools:
@example
@smallexample
$ git clone git://ohwr.org/fmc-projects/spec/spec-sw.git <your_specsw_location>
$ cd <your_specsw_location>
$ git checkout 27b4ad9
$ make
@end example
@end smallexample
Then you have to copy the @i{spec_top.bin} to /lib/firmware/fmc/. changing its
name:
......@@ -403,7 +412,7 @@ name:
and after that you are ready to load the @i{spec.ko} driver that configures the
Spartan 6 FPGA on SPEC with a given bitstream (make sure you are in
<your_spacsw_location>:
<your_specsw_location>:
@example
$ sudo insmod kernel/spec.ko name=demo
......@@ -413,7 +422,7 @@ To check if the FPGA firmware file was found by the driver and correctly loaded
to FPGA the @i{dmesg} Linux command can be called. Among plenty of messages
you should be able to find something very similar to:
@example
@smallexample
@noindent
[99883.768214] spec_probe (device 0003:0000)
[99883.768220] spec_probe: current 8639 (insmod)
......@@ -423,7 +432,7 @@ you should be able to find something very similar to:
[99883.774842] spec_load_fpga: got binary file "fmc/spec-demo.bin",
1485512 (0x16aac8) bytes
[99883.966491] spec_load_submodule: load "fmc/spec-demo": 256
@end example
@end smallexample
If everything went right up to this moment you can write the LM32 binary
(@i{wrc.bin}) to the SPEC board. For this purpose, there is a @i{spec-cl} tool
......@@ -447,7 +456,7 @@ If you are able to see the WRPC Shell prompt @i{wrc#} that means the Core is up
and running on your SPEC. Congratulations !
@c ##########################################################################
@c ==========================================================================
@node Writing EEPROM and calibration
@section Writing EEPROM and calibration
......@@ -488,7 +497,7 @@ To check the content of the SFP database you can execute the @i{sfp show} shell
command.
The calibration procedure of WRPC is limited to absolutely minimum and is fully
automatized. It measures the t2/t4 phase transition point and stores the value
automatic. It measures the t2/t4 phase transition point and stores the value
into the FMC EEPROM so that the calibration would not have to be repeated every
time the Core starts. However, it is @b{*important*} to remember that this
calibration function should be executed only once but for @b{*every*} new FPGA
......@@ -511,11 +520,10 @@ PTP daemon before it starts (see init script examples).
@sp 1
The WR PTP Core's mode of operation (WR Master/WR Slave) can be set using the
@i{mode} shell command:
@i{mode} shell command in one of the following two ways:
@example
wrc# mode slave
or
wrc# mode master
@end example
......@@ -550,7 +558,7 @@ Almost exactly the same one can be used for running SPEC in WR Master mode. The
only difference would be of course @i{init add mode slave} vs. @i{init add mode
master}.
@c ##########################################################################
@c ==========================================================================
@node Running the Core
@section Running the Core
......@@ -671,7 +679,7 @@ measurement procedure form WRPC Shell:
If you have found a bug, you have problems with White Rabbit PTP Core or one
of the tools used to build and run it, you can write to our mailing list
@code{white-rabit-dev@@ohwr.org}
@code{white-rabbit-dev@@ohwr.org}
@c ##########################################################################
......@@ -748,4 +756,6 @@ daemon in new mode
@c LocalWords: gnudd titlepage iftex texinfo CERN documentlanguage settitle
@c LocalWords: documentencoding setfilename afourpaper paragraphindent FPGA
@c LocalWords: setchapternewpage finalout gateware ohwr modprobe insmod cset
@c LocalWords: smallexample ctrl timestamp fdelay struct spusa
@c LocalWords: smallexample ctrl timestamp fdelay struct spusa hdlmake Xilinx
@c LocalWords: bitstream wrpc init EEPROM grandmaster wrpcsw noposix http
@c LocalWords: tarball toolchain specsw sudo Etherbone
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment