renames TGCP environment
This commit is contained in:
32
env/TGCP/platform.h
vendored
Normal file
32
env/TGCP/platform.h
vendored
Normal file
@@ -0,0 +1,32 @@
|
||||
// See LICENSE for license details.
|
||||
|
||||
#ifndef _ISS_PLATFORM_H
|
||||
#define _ISS_PLATFORM_H
|
||||
|
||||
// Some things missing from the official encoding.h
|
||||
#define MCAUSE_INT 0x80000000
|
||||
#define MCAUSE_CAUSE 0x7FFFFFFF
|
||||
|
||||
#include "bits.h"
|
||||
/****************************************************************************
|
||||
* Platform definitions
|
||||
*****************************************************************************/
|
||||
|
||||
#define MEM_BASE_ADDR _AC(0x00000000,UL)
|
||||
|
||||
// Helper functions
|
||||
#define _REG32(p, i) (*(volatile uint32_t *) ((p) + (i)))
|
||||
#define _REG32P(p, i) ((volatile uint32_t *) ((p) + (i)))
|
||||
|
||||
// Misc
|
||||
|
||||
#include <stdint.h>
|
||||
|
||||
void init_pll(void);
|
||||
unsigned long get_cpu_freq(void);
|
||||
unsigned long get_timer_freq(void);
|
||||
uint64_t get_timer_value(void);
|
||||
int is_uart_ready(int uart_id);
|
||||
int try_write_uart_char(int uart_id, char);
|
||||
void write_uart_char(int uart_id, char);
|
||||
#endif /* _ISS_PLATFORM_H */
|
Reference in New Issue
Block a user