ReactOS 0.4.15-dev-7924-g5949c20
hwuart.c
Go to the documentation of this file.
1/*
2 * PROJECT: ReactOS Boot Loader
3 * LICENSE: BSD - See COPYING.ARM in the top level directory
4 * FILE: boot/armllb/hw/omap3-beagle/hwuart.c
5 * PURPOSE: LLB UART Initialization Routines for OMAP3 Beagle
6 * PROGRAMMERS: ReactOS Portable Systems Group
7 */
8
9#include "precomp.h"
10
11/* FUNCTIONS ******************************************************************/
12
13VOID
16{
17
18}
19
20VOID
23{
24
25}
26
30{
31 return FALSE;
32}
33
37{
38 if (Port == 1)
39 {
40 return 0x4806A000;
41 }
42 else if (Port == 2)
43 {
44 return 0x4806C000;
45 }
46 else if (Port == 3)
47 {
48 return 0x49020000;
49 }
50
51 return 0;
52}
53
54/* EOF */
unsigned char BOOLEAN
#define FALSE
Definition: types.h:117
CPPORT Port[4]
Definition: headless.c:35
VOID NTAPI LlbHwUartSendChar(IN CHAR Char)
Definition: hwuart.c:22
ULONG NTAPI LlbHwGetUartBase(IN ULONG Port)
Definition: hwuart.c:36
VOID NTAPI LlbHwOmap3UartInitialize(VOID)
Definition: hwuart.c:15
BOOLEAN NTAPI LlbHwUartTxReady(VOID)
Definition: hwuart.c:29
#define NTAPI
Definition: typedefs.h:36
#define IN
Definition: typedefs.h:39
uint32_t ULONG
Definition: typedefs.h:59
char CHAR
Definition: xmlstorage.h:175