Ignore:
Timestamp:
Dec 5, 2014, 4:23:45 PM (9 years ago)
Author:
alain
Message:

Introducing new configuration variables in giet_config.h

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_config.h

    r454 r463  
    2525
    2626#define GIET_DEBUG_FAT           0          /* trace fat accesses */
     27#define GIET_DEBUG_SYS_LOCK      0          /* trace kernel locks access */
    2728#define GIET_DEBUG_SWITCH        0          /* trace context switchs  */
    2829#define GIET_DEBUG_IRQS          0          /* trace interrupts */
     
    3031#define GIET_DEBUG_TTY_DRIVER    0          /* trace TTY accesses */
    3132#define GIET_DEBUG_DMA_DRIVER    0          /* trace DMA accesses */
     33#define GIET_DEBUG_NIC           0          /* trace NIC accesses */
    3234#define GIET_DEBUG_FBF_CMA       0          /* trace FBF_CMA accesses */
    33 #define GIET_DEBUG_MALLOC        0          /* trace remote_malloc library */
     35
     36#define GIET_DEBUG_MALLOC        0          /* trace malloc library */
    3437#define GIET_DEBUG_BARRIER       0          /* trace barrier library */
     38#define GIET_DEBUG_MWMR          0          /* trace mwmr library */
     39#define GIET_DEBUG_USER_LOCK     0          /* trace user locks access */
    3540
    3641#define CONFIG_SRL_VERBOSITY TRACE
     
    3843/* software parameters */
    3944
    40 #define GIET_ELF_BUFFER_SIZE     0x60000    /* buffer for .elf files in seg_boot_data */
     45#define GIET_ELF_BUFFER_SIZE     0x80000    /* buffer for .elf files in seg_boot_data */
    4146#define GIET_IDLE_TASK_PERIOD    0x10000000 /* Idle Task message period */
    4247#define GIET_OPEN_FILES_MAX      16         /* max simultaneously open files */
     
    4550#define GIET_USE_IOMMU           0          /* IOMMU activated when non zero */
    4651#define GIET_NO_HARD_CC          0          /* No hard cache coherence when non zero */
    47 #define GIET_NIC_CHBUF_NBUFS     2          /* Number of buffers for the NIC chbuf */
    48 #define GIET_NIC_CHBUF_SIZE      4096       /* Buffer size for the NIC chbuf */
    49 #define GIET_NIC_CHBUF_TIMEOUT   100000     /* Max number of iterations for chbuf access */
     52#define GIET_NIC_NBUFS           2          /* Number of buffers for the NIC chbuf */
     53#define GIET_NIC_NFAKE           6
     54#define GIET_NIC_BUFSIZE         4096       /* Buffer size for the NIC chbuf */
     55#define GIET_NIC_TIMEOUT         100        /* Max number of iterations for chbuf access */
     56#define GIET_NIC_MAC4            0x12345678 /* 32 LSB bits of the MAC address */
     57#define GIET_NIC_MAC2            0xBEBE     /* 16 MSB bits of the MAC address */
     58#define GIET_LOCK_MAX_TICKET     1000000    /* max ticket value for the file locks */
    5059
    5160#endif
Note: See TracChangeset for help on using the changeset viewer.