Ignore:
Timestamp:
Feb 8, 2015, 1:12:23 PM (9 years ago)
Author:
alain
Message:

1) Introduce access functions to MMC intrumentation registers.
2) Use _printf for error or debug messages.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • soft/giet_vm/giet_drivers/bdv_driver.c

    r469 r496  
    2727///////////////////////////////////////////////////////////////////////////////
    2828
     29__attribute__((section(".kdata")))
    2930spin_lock_t  _bdv_lock __attribute__((aligned(64)));
     31
     32__attribute__((section(".kdata")))
    3033unsigned int _bdv_status;
     34
     35__attribute__((section(".kdata")))
    3136unsigned int _bdv_gtid;
    3237
     
    132137_puts(",");
    133138_putd( p );
    134 _puts("] launch transfer in polling mode\n");
     139_puts("] launch transfer in polling mode at cycle ");
     140_putd( _get_proctime() );
     141_puts("\n");
    135142#endif
    136143        unsigned int status;
     
    196203_puts(",");
    197204_putd( p );
    198 _puts("] launch transfer in nterrupt mode\n");
     205_puts("] launch transfer in interrupt mode at cycle ");
     206_putd( _get_proctime() );
     207_puts("\n");
    199208#endif
    200209
     
    350359_putd(remote_x );
    351360_puts(",");
    352 _putd(remore_y );
     361_putd(remote_y );
    353362_puts(",");
    354363_putd(remote_p );
Note: See TracChangeset for help on using the changeset viewer.