From: Anup Patel <apatel@ventanamicro.com>
To: opensbi@lists.infradead.org
Subject: [PATCH v3] lib: utils/serial: Update Shakti UART based on latest implementation
Date: Fri, 8 Jul 2022 17:22:44 +0530 [thread overview]
Message-ID: <20220708115244.556074-1-apatel@ventanamicro.com> (raw)
From: Prasanna T <ptprasanna@gmail.com>
The age old version of Shakti UART was upgraded long back, but we missed
updating the driver in OpenSBI. The old version of UART is not supported
anymore, hence removed the inline comment which is also outdated now.
Signed-off-by: Prasanna T <ptprasanna@gmail.com>
Signed-off-by: Anup Patel <apatel@ventanamicro.com>
---
Changes since v2:
- Updated patch subject and description
- Minor fix in shakti_uart_getc()
---
lib/utils/serial/shakti-uart.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/lib/utils/serial/shakti-uart.c b/lib/utils/serial/shakti-uart.c
index 5f2fe75..3556935 100644
--- a/lib/utils/serial/shakti-uart.c
+++ b/lib/utils/serial/shakti-uart.c
@@ -19,21 +19,21 @@
#define REG_RX_THRES 0x20
#define UART_TX_FULL 0x2
+#define UART_RX_NOT_EMPTY 0x4
#define UART_RX_FULL 0x8
static volatile char *uart_base;
static void shakti_uart_putc(char ch)
{
- while((readw(uart_base + REG_STATUS) & UART_TX_FULL))
+ while ((readb(uart_base + REG_STATUS) & UART_TX_FULL))
;
writeb(ch, uart_base + REG_TX);
}
static int shakti_uart_getc(void)
{
- u16 status = readw(uart_base + REG_STATUS);
- if (status & UART_RX_FULL)
+ if (readb(uart_base + REG_STATUS) & UART_RX_NOT_EMPTY)
return readb(uart_base + REG_RX);
return -1;
}
--
2.34.1
next reply other threads:[~2022-07-08 11:52 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-07-08 11:52 Anup Patel [this message]
2022-07-08 12:06 ` [PATCH v3] lib: utils/serial: Update Shakti UART based on latest implementation Xiang W
2022-07-08 17:41 ` Jessica Clarke
2022-07-08 17:49 ` Anup Patel
2022-07-09 16:43 ` Prasanna Thandabani
2022-07-20 4:42 ` Anup Patel
2022-07-21 6:59 ` Prasanna Thandabani
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220708115244.556074-1-apatel@ventanamicro.com \
--to=apatel@ventanamicro.com \
--cc=opensbi@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.