Last change
on this file since 546 was
444,
checked in by satin@…, 6 years ago
|
add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc
|
File size:
1.2 KB
|
Line | |
---|
1 | /* board.h -- board variable definitions for OpenRISC 1000. |
---|
2 | * |
---|
3 | * Copyright (c) 2014 Authors |
---|
4 | * |
---|
5 | * Contributor Stefan Wallentowitz <stefan.wallentowitz@tum.de> |
---|
6 | * |
---|
7 | * The authors hereby grant permission to use, copy, modify, distribute, |
---|
8 | * and license this software and its documentation for any purpose, provided |
---|
9 | * that existing copyright notices are retained in all copies and that this |
---|
10 | * notice is included verbatim in any distributions. No written agreement, |
---|
11 | * license, or royalty fee is required for any of the authorized uses. |
---|
12 | * Modifications to this software may be copyrighted by their authors |
---|
13 | * and need not follow the licensing terms described here, provided that |
---|
14 | * the new terms are clearly indicated on the first page of each file where |
---|
15 | * they apply. |
---|
16 | */ |
---|
17 | |
---|
18 | #ifndef __BOARD_H__ |
---|
19 | #define __BOARD_H__ |
---|
20 | |
---|
21 | #include <stdint.h> |
---|
22 | |
---|
23 | extern void* _or1k_board_mem_base; |
---|
24 | extern uint32_t _or1k_board_mem_size; |
---|
25 | extern uint32_t _or1k_board_clk_freq; |
---|
26 | |
---|
27 | extern uint32_t _or1k_board_uart_base; |
---|
28 | extern uint32_t _or1k_board_uart_baud; |
---|
29 | extern uint32_t _or1k_board_uart_IRQ; |
---|
30 | |
---|
31 | extern void _or1k_board_exit(void); |
---|
32 | extern void _or1k_board_init_early(void); |
---|
33 | extern void _or1k_board_init(void); |
---|
34 | |
---|
35 | #endif // __BOARD_H__ |
---|
Note: See
TracBrowser
for help on using the repository browser.