source: soft/giet_vm/giet_libs/libsrl/srl_mwmr.h @ 258

Last change on this file since 258 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: 516 bytes
Line 
1#ifndef SRL_MWMR_H_
2#define SRL_MWMR_H_
3
4#include "mwmr_channel.h"
5
6typedef  mwmr_channel_t * srl_mwmr_t;
7
8#define srl_mwmr_write(a, b, c) mwmr_write(a, (unsigned int *) b, (unsigned int) c)
9#define srl_mwmr_read(a, b, c) mwmr_read(a, (unsigned int *) b, (unsigned int) c)
10
11
12#endif //fin de SRL_MWMR_H_
13
14// Local Variables:
15// tab-width: 4
16// c-basic-offset: 4
17// c-file-offsets:((innamespace . 0)(inline-open . 0))
18// indent-tabs-mode: nil
19// End:
20// vim: filetype=c:expandtab:shiftwidth=4:tabstop=4:softtabstop=4
21
Note: See TracBrowser for help on using the repository browser.