From 1abb6002ddc84dd6f2dc01e76475480445fa4271 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Tue, 21 Apr 2015 09:28:39 +0200 Subject: broadcom/cygnus: Fix missing writel->write32 transformation cygnus' serial driver wasn't part of the tree when the big transformation was done, so follow up. Change-Id: Ic1a53bea9bcaf1e568b50b9c2ad7782e65e36328 Signed-off-by: Patrick Georgi Reviewed-on: http://review.coreboot.org/9852 Tested-by: build bot (Jenkins) Reviewed-by: Stefan Reinauer --- src/soc/broadcom/cygnus/ns16550.c | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) (limited to 'src/soc') diff --git a/src/soc/broadcom/cygnus/ns16550.c b/src/soc/broadcom/cygnus/ns16550.c index d1ef843c87..3005ad2331 100644 --- a/src/soc/broadcom/cygnus/ns16550.c +++ b/src/soc/broadcom/cygnus/ns16550.c @@ -50,39 +50,39 @@ static void ns16550_init(void) { int baud_divisor = calc_divisor(); - while (!(readl(®s->lsr) & UART_LSR_TEMT)) + while (!(read32(®s->lsr) & UART_LSR_TEMT)) ; - writel(0, ®s->ier); - writel(UART_LCR_BKSE | UART_LCR_8N1, ®s->lcr); - writel(0, ®s->dll); - writel(0, ®s->dlm); - writel(UART_LCR_8N1, ®s->lcr); - writel(UART_MCR_DTR | UART_MCR_RTS, ®s->mcr); + write32(®s->ier, 0); + write32(®s->lcr, UART_LCR_BKSE | UART_LCR_8N1); + write32(®s->dll, 0); + write32(®s->dlm, 0); + write32(®s->lcr, UART_LCR_8N1); + write32(®s->mcr, UART_MCR_DTR | UART_MCR_RTS); /* clear & enable FIFOs */ - writel(UART_FCR_FIFO_EN | UART_FCR_RXSR | UART_FCR_TXSR, ®s->fcr); - writel(UART_LCR_BKSE | UART_LCR_8N1, ®s->lcr); - writel(baud_divisor & 0xff, ®s->dll); - writel((baud_divisor >> 8) & 0xff, ®s->dlm); - writel(UART_LCR_8N1, ®s->lcr); + write32(®s->fcr, UART_FCR_FIFO_EN | UART_FCR_RXSR | UART_FCR_TXSR); + write32(®s->lcr, UART_LCR_BKSE | UART_LCR_8N1); + write32(®s->dll, baud_divisor & 0xff); + write32(®s->dlm, (baud_divisor >> 8) & 0xff); + write32(®s->lcr, UART_LCR_8N1); } static void ns16550_tx_byte(unsigned char data) { - while ((readl(®s->lsr) & UART_LSR_THRE) == 0) + while ((read32(®s->lsr) & UART_LSR_THRE) == 0) ; - writel(data, ®s->thr); + write32(®s->thr, data); } static void ns16550_tx_flush(void) { - while (!(readl(®s->lsr) & UART_LSR_TEMT)) + while (!(read32(®s->lsr) & UART_LSR_TEMT)) ; } static int ns16550_tst_byte(void) { - return (readl(®s->lsr) & UART_LSR_DR) != 0; + return (read32(®s->lsr) & UART_LSR_DR) != 0; } static unsigned char ns16550_rx_byte(void) @@ -91,7 +91,7 @@ static unsigned char ns16550_rx_byte(void) while (i-- && !ns16550_tst_byte()) udelay(1); if (i) - return readl(®s->rbr); + return read32(®s->rbr); else return 0x0; } -- cgit v1.2.3