diff options
Diffstat (limited to 'bsp/env/freedom-e300-arty/init.c')
| -rw-r--r-- | bsp/env/freedom-e300-arty/init.c | 61 | 
1 files changed, 61 insertions, 0 deletions
| diff --git a/bsp/env/freedom-e300-arty/init.c b/bsp/env/freedom-e300-arty/init.c new file mode 100644 index 0000000..36272f7 --- /dev/null +++ b/bsp/env/freedom-e300-arty/init.c @@ -0,0 +1,61 @@ +#include <stdint.h> +#include <unistd.h> + +#include "platform.h" +#include "encoding.h" + +extern int main(int argc, char** argv); + +uint32_t get_cpu_freq() +{ +  return 65000000; +} + +static void uart_init(size_t baud_rate) +{ +  GPIO_REG(GPIO_IOF_SEL) &= ~IOF0_UART0_MASK; +  GPIO_REG(GPIO_IOF_EN) |= IOF0_UART0_MASK; +  UART0_REG(UART_REG_DIV) = get_cpu_freq() / baud_rate - 1; +  UART0_REG(UART_REG_TXCTRL) |= UART_TXEN; +} + + +#ifdef USE_PLIC +extern void handle_m_ext_interrupt(); +#endif + +#ifdef USE_M_TIME +extern void handle_m_time_interrupt(); +#endif + +uintptr_t handle_trap(uintptr_t mcause, uintptr_t epc) +{ +  if (0){ +#ifdef USE_PLIC +    // External Machine-Level interrupt from PLIC +  } else if ((mcause & MCAUSE_INT) && ((mcause & MCAUSE_CAUSE) == IRQ_M_EXT)) { +    handle_m_ext_interrupt(); +#endif +#ifdef USE_M_TIME +    // External Machine-Level interrupt from PLIC +  } else if ((mcause & MCAUSE_INT) && ((mcause & MCAUSE_CAUSE) == IRQ_M_TIMER)){ +    handle_m_time_interrupt(); +#endif +  } +  else { +    write(1, "trap\n", 5); +    _exit(1 + mcause); +  } +  return epc; +} + +void _init() +{ +  uart_init(115200); + +  printf("core freq at %d Hz\n", get_cpu_freq()); + +  write_csr(mtvec, &handle_trap); +   +  _exit(main(0, NULL)); +} | 
