source: soft/giet_vm/giet_libs/srl.h @ 261

Last change on this file since 261 was 258, checked in by alain, 11 years ago

This is a major release, including a deep restructuration of code.
The main evolutions are

  • use of the Tsar preloader to load the GIET boot-loader from disk
  • introduction of a FAT32 file system library,
  • use of this fat32 library by the boot-loader to load the map.bin data structure, and the various .elf files
  • reorganisation of drivers (one file per peripheral).
  • introduction of drivers for new peripherals: vci_chbuf_dma and vci_multi_ahci.
  • introduction of a new physical memory allocator in the boot code.

This release has been tested on the tsar_generic_iob architecture,
for the two following mappings: 4c_1p_iob_four.xml and 4c_1p_iob_sort.xml

  • Property svn:executable set to *
File size: 422 bytes
Line 
1#ifndef SRL_H_
2#define SRL_H_
3
4/**
5   @file
6   @module{SRL}
7   @short SRL Api main header
8 */
9
10#include "mapping_info.h"
11#include "stdio.h"
12#include "utils.h"
13
14#include "libsrl/srl_public_types.h"
15#include "libsrl/srl_lock.h"
16#include "libsrl/srl_mwmr.h"
17#include "libsrl/srl_log.h"
18#include "libsrl/srl_barrier.h"
19#include "libsrl/srl_memspace.h"
20#include "libsrl/srl_hw_helpers.h"
21#include "libsrl/srl_args.h"
22
23
24#endif
25
Note: See TracBrowser for help on using the repository browser.