L4Re Operating System Framework – Interface and Usage Documentation
Loading...
Searching...
No Matches
uart_omap35x.h
1/* SPDX-License-Identifier: GPL-2.0-only OR License-Ref-kk-custom */
2/*
3 * Copyright (C) 2023 Kernkonzept GmbH.
4 */
5/*
6 * (c) 2009 Adam Lackorzynski <adam@os.inf.tu-dresden.de>
7 * economic rights: Technische Universität Dresden (Germany)
8 *
9 * This file is part of TUD:OS and distributed under the terms of the
10 * GNU General Public License 2.
11 * Please see the COPYING-GPL-2 file for details.
12 */
13#pragma once
14
15#include "uart_base.h"
16
17namespace L4
18{
19 class Uart_omap35x : public Uart
20 {
21 public:
22 explicit Uart_omap35x() {}
23 explicit Uart_omap35x(unsigned /*base_rate*/) {}
24 bool startup(Io_register_block const *) override;
25 void shutdown() override;
26 bool change_mode(Transfer_mode m, Baud_rate r) override;
27 bool enable_rx_irq(bool) override;
28 int get_char(bool blocking = true) const override;
29 int char_avail() const override;
30 int tx_avail() const;
31 void wait_tx_done() const;
32 inline void out_char(char c) const;
33 int write(char const *s, unsigned long count,
34 bool blocking = true) const override;
35 };
36};
L4 low-level kernel interface.