source: soft/giet_vm/giet_libs/memspace.h @ 773

Last change on this file since 773 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: 625 bytes
Line 
1//////////////////////////////////////////////////////////////////////////////////
2// File     : memspace.h         
3// Date     : 12/02/2013
4// Author   : Quentin Meunier
5// Copyright (c) UPMC-LIP6
6///////////////////////////////////////////////////////////////////////////////////
7
8#ifndef _MEMSPACE_H_
9#define _MEMSPACE_H_
10
11///////////////////////////////////////////////////////////////////////////////////
12//  memspace structure
13///////////////////////////////////////////////////////////////////////////////////
14
15typedef struct _giet_memspace_s
16{
17    void * buffer;
18    unsigned int size;
19} giet_memspace_t;
20
21
22#endif
23
Note: See TracBrowser for help on using the repository browser.