1 /* Blackfin Universal Asynchronous Receiver/Transmitter (UART) model.
2 For "old style" UARTs on BF53x/etc... parts.
4 Copyright (C) 2010-2020 Free Software Foundation, Inc.
5 Contributed by Analog Devices, Inc.
7 This file is part of simulators.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
22 #ifndef DV_BFIN_UART_H
23 #define DV_BFIN_UART_H
26 bu16
bfin_uart_get_next_byte (struct hw
*, bu16
, bu16
, bool *fresh
);
27 bu16
bfin_uart_write_byte (struct hw
*, bu16
, bu16
);
28 bu16
bfin_uart_get_status (struct hw
*);
29 unsigned bfin_uart_write_buffer (struct hw
*, const unsigned char *, unsigned);
30 unsigned bfin_uart_read_buffer (struct hw
*, unsigned char *, unsigned);
31 void bfin_uart_reschedule (struct hw
*);
47 #define ERBFI (1 << 0)
48 #define ETBEI (1 << 1)
56 #define LOOP_ENA (1 << 4)
57 #define FCPOL (1 << 5)