L4Re Operating System Framework – Interface and Usage Documentation
Loading...
Searching...
No Matches
uart_pl011.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_pl011 : public Uart
20 {
21 public:
23 Uart_pl011(unsigned freq) : _freq(freq) {}
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 enable) 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 private:
37 void set_rate(Baud_rate r);
38 unsigned _freq;
39 };
40};
L4 low-level kernel interface.