diff options
author | Tom Rini <trini@konsulko.com> | 2017-03-14 11:08:11 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2017-04-05 13:52:20 -0400 |
commit | 936478e797a87bcd4e002bf70430b6f58584b155 (patch) | |
tree | fa37ca333a77dd69d8ef8978d4f8ca59356d533c /include/grlib/apbuart.h | |
parent | ea3310e8aafad1da72d9a5e60568d725cbdefdbd (diff) |
SPARC: Remove
The SPARC architecture is currently unmaintained, remove.
Cc: Francois Retief <fgretief@spaceteq.co.za>
Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/grlib/apbuart.h')
-rw-r--r-- | include/grlib/apbuart.h | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/include/grlib/apbuart.h b/include/grlib/apbuart.h deleted file mode 100644 index 1e1eb9a77c..0000000000 --- a/include/grlib/apbuart.h +++ /dev/null @@ -1,47 +0,0 @@ -/* GRLIB APBUART definitions - * - * (C) Copyright 2010, 2015 - * Daniel Hellstrom, Cobham Gaisler, daniel@gaisler.com - * - * SPDX-License-Identifier: GPL-2.0+ - */ - -#ifndef __GRLIB_APBUART_H__ -#define __GRLIB_APBUART_H__ - -/* APBUART Register map */ -typedef struct { - volatile unsigned int data; - volatile unsigned int status; - volatile unsigned int ctrl; - volatile unsigned int scaler; -} ambapp_dev_apbuart; - -/* - * The following defines the bits in the LEON UART Status Registers. - */ - -#define APBUART_STATUS_DR 0x00000001 /* Data Ready */ -#define APBUART_STATUS_TSE 0x00000002 /* TX Send Register Empty */ -#define APBUART_STATUS_THE 0x00000004 /* TX Hold Register Empty */ -#define APBUART_STATUS_BR 0x00000008 /* Break Error */ -#define APBUART_STATUS_OE 0x00000010 /* RX Overrun Error */ -#define APBUART_STATUS_PE 0x00000020 /* RX Parity Error */ -#define APBUART_STATUS_FE 0x00000040 /* RX Framing Error */ -#define APBUART_STATUS_ERR 0x00000078 /* Error Mask */ - -/* - * The following defines the bits in the LEON UART Ctrl Registers. - */ - -#define APBUART_CTRL_RE 0x00000001 /* Receiver enable */ -#define APBUART_CTRL_TE 0x00000002 /* Transmitter enable */ -#define APBUART_CTRL_RI 0x00000004 /* Receiver interrupt enable */ -#define APBUART_CTRL_TI 0x00000008 /* Transmitter interrupt enable */ -#define APBUART_CTRL_PS 0x00000010 /* Parity select */ -#define APBUART_CTRL_PE 0x00000020 /* Parity enable */ -#define APBUART_CTRL_FL 0x00000040 /* Flow control enable */ -#define APBUART_CTRL_LB 0x00000080 /* Loop Back enable */ -#define APBUART_CTRL_DBG (1<<11) /* Debug Bit used by GRMON */ - -#endif |