]> rtime.felk.cvut.cz Git - l4.git/blob - kernel/fiasco/src/kern/arm/bsp/omap3/uart-arm-omap.cpp
update
[l4.git] / kernel / fiasco / src / kern / arm / bsp / omap3 / uart-arm-omap.cpp
1 IMPLEMENTATION [arm && omap3_evm]: // -------------------------------------
2
3 #include "arm/uart_omap35x.h"
4
5 IMPLEMENT L4::Uart *Uart::uart()
6 {
7   static L4::Uart_omap35x uart(72, 72);
8   return &uart;
9 }
10
11 IMPLEMENTATION [arm && omap3_beagleboard]: // -----------------------------
12
13 #include "arm/uart_omap35x.h"
14
15 IMPLEMENT L4::Uart *Uart::uart()
16 {
17   static L4::Uart_omap35x uart(74, 74);
18   return &uart;
19 }
20
21 IMPLEMENTATION [arm && omap4_pandaboard]: // -----------------------------
22
23 #include "arm/uart_omap35x.h"
24
25 IMPLEMENT L4::Uart *Uart::uart()
26 {
27   static L4::Uart_omap35x uart(32 + 74, 32 + 74);
28   return &uart;
29 }