Cygwin: pinfo: raise MAX_PID to 4194304
[newlib-cygwin.git] / libgloss / or1k / board.h
blobd6b51bf8a4a6ac9148c5402eae72cff32519354c
1 /* board.h -- board variable definitions for OpenRISC 1000.
3 * Copyright (c) 2014 Authors
5 * Contributor Stefan Wallentowitz <stefan.wallentowitz@tum.de>
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.
18 #ifndef __BOARD_H__
19 #define __BOARD_H__
21 #include <stdint.h>
23 extern void* _or1k_board_mem_base;
24 extern uint32_t _or1k_board_mem_size;
25 extern uint32_t _or1k_board_clk_freq;
27 extern uint32_t _or1k_board_uart_base;
28 extern uint32_t _or1k_board_uart_baud;
29 extern uint32_t _or1k_board_uart_IRQ;
31 extern void _or1k_board_exit(void);
32 extern void _or1k_board_init_early(void);
33 extern void _or1k_board_init(void);
35 #endif // __BOARD_H__