Changes between Initial Version and Version 1 of TBR/BSP/EZKit533


Ignore:
Timestamp:
10/25/06 20:51:51 (18 years ago)
Author:
Alani
Comment:

Inital Version

Legend:

Unmodified
Added
Removed
Modified
  • TBR/BSP/EZKit533

    v1 v1  
     1= EZKit533 =
     2
     3
     4This is an evaluation Board from Analog Devices for the Blackfin 533 CPU.
     5Information can be found here :
     6http://www.analog.com/en/prod/0%2C2877%2CBF533%25252DHARDWARE%2C00.html
     7
     8This BSP has a Console Driver for a the builtin Uart which supports
     9polling or interrupted mode. It does also have a driver for core
     10clock and timer. The BSP runs in supervisor mode.
     11
     12The BSP executes on real hardware as well as on the skyeye simulator.
     13= Skyeye Simulator =
     14
     15The Skyeye Simulator supports Timer and UART. The used skyeye configuration
     16file is :
     17
     18{{{
     19arch:blackfin
     20}}}
     21
     22(25 October 2006)To the current CVS version needs the following patch to execute this BSP.
     23= Toolchain =
     24
     25Due to some issues in GCC there is not yet an official RTEMS Toolchain for Blackfin. User who
     26wan't to try this BSP have to build their own Toolchain. The Patches needed can be found
     27in the CVS in contrib/crossrpms/patches.
     28
     29The following configure parameters combined with the above mentioned patches have lead to
     30a working toolchain.
     31
     32{{{
     33configure --target=bfin-rtems4.8 --prefix=$PREFIX --without-newlib
     34}}}
     35{{{
     36configure --target=bfin-rtems4.8 --prefix=$PREFIX --disable-libstdcxx-pch \
     37      --disable-symvers --disable-libssp --enable-version-specific-runtime-libs \
     38      --enable-threads=rtems --enable-languages=c,c++
     39}}}
     40= Hardware Debugging =
     41
     42
     43During devolping of this BSP the Icebear JTAG adaptor has proved to be very helpful.
     44http://www.section5.ch/icebear
     45= Wishlist =
     46
     47 * Proper support for Data and Instruction Cache
     48 * Filesystem support for the on-board flash
     49 * GDB Stub for debugging via Serial Port
     50= Test Reports =
     51
     52
     53CVS head -- (25 October 2006) Alain Schäfer reports sucessful execution of Hello, Ticker, Paranoia and other tests
     54on the Hardware as well as on Skyeye