2007-04-28 21:39:18 +02:00
|
|
|
/**************************************************************************
|
2009-04-12 01:19:09 +02:00
|
|
|
* arch/arm/src/dm320/dm320_lowputc.S
|
2007-04-28 21:39:18 +02:00
|
|
|
*
|
2021-03-24 09:18:50 +01:00
|
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
|
|
* this work for additional information regarding copyright ownership. The
|
|
|
|
* ASF licenses this file to you under the Apache License, Version 2.0 (the
|
|
|
|
* "License"); you may not use this file except in compliance with the
|
|
|
|
* License. You may obtain a copy of the License at
|
2007-04-28 21:39:18 +02:00
|
|
|
*
|
2021-03-24 09:18:50 +01:00
|
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
2007-04-28 21:39:18 +02:00
|
|
|
*
|
2021-03-24 09:18:50 +01:00
|
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
|
|
* License for the specific language governing permissions and limitations
|
|
|
|
* under the License.
|
2007-04-28 21:39:18 +02:00
|
|
|
*
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Included Files
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
#include <nuttx/config.h>
|
2009-12-28 23:49:08 +01:00
|
|
|
|
|
|
|
#include "chip.h"
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
/**************************************************************************
|
2015-04-08 16:04:12 +02:00
|
|
|
* Pre-processor Definitions
|
2007-04-28 21:39:18 +02:00
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Private Types
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Private Function Prototypes
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
2015-10-03 01:42:29 +02:00
|
|
|
* Public Data
|
2007-04-28 21:39:18 +02:00
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
2016-02-22 01:06:09 +01:00
|
|
|
* Private Data
|
2007-04-28 21:39:18 +02:00
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Private Functions
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
|
|
|
* Public Functions
|
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/**************************************************************************
|
2020-05-01 16:50:23 +02:00
|
|
|
* Name: arm_lowputc
|
2007-04-28 21:39:18 +02:00
|
|
|
**************************************************************************/
|
|
|
|
|
|
|
|
/* This assembly language version has the advantage that it can does not
|
|
|
|
* require a C stack and uses only r0-r1. Hence it can be used during
|
|
|
|
* early boot phases.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.text
|
2020-05-01 16:50:23 +02:00
|
|
|
.global arm_lowputc
|
|
|
|
.type arm_lowputc, function
|
|
|
|
arm_lowputc:
|
2007-04-28 21:39:18 +02:00
|
|
|
/* On entry, r0 holds the character to be printed */
|
|
|
|
|
2007-11-20 21:32:33 +01:00
|
|
|
#ifdef CONFIG_UART1_SERIAL_CONSOLE
|
2007-04-28 21:39:18 +02:00
|
|
|
ldr r2, =DM320_UART1_REGISTER_BASE /* r2=UART1 base */
|
2007-11-20 21:32:33 +01:00
|
|
|
#else
|
|
|
|
ldr r2, =DM320_UART0_REGISTER_BASE /* r2=UART0 base */
|
2007-04-28 21:39:18 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Poll the TX fifo trigger level bit of the UART_SSR
|
|
|
|
* register. When the bit is non-zero, the TX FIFO is no
|
|
|
|
* longer full
|
|
|
|
*/
|
|
|
|
|
|
|
|
1: ldrh r1, [r2, #UART_SR]
|
|
|
|
tst r1, #UART_SR_TFTI
|
|
|
|
beq 1b
|
|
|
|
|
|
|
|
/* Send the character by writing it into the UART_DTRR
|
|
|
|
* register.
|
|
|
|
*/
|
|
|
|
|
|
|
|
strh r0, [r2, #UART_DTRR]
|
|
|
|
|
2020-02-23 09:50:23 +01:00
|
|
|
/* Wait for the tranmsit register to be emptied. This is
|
|
|
|
* determined when TX register empty bit of the SR is zero.
|
2007-04-28 21:39:18 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
2: ldrh r1, [r2, #UART_SR]
|
|
|
|
tst r1, #UART_SR_TREF
|
|
|
|
bne 2b
|
|
|
|
|
|
|
|
/* If the character that we just sent was a linefeed,
|
|
|
|
* then send a carriage return as well.
|
|
|
|
*/
|
|
|
|
|
2021-04-01 12:12:05 +02:00
|
|
|
teq r0, #'\n'
|
|
|
|
moveq r0, #'\r'
|
|
|
|
beq 1b
|
2007-04-28 21:39:18 +02:00
|
|
|
|
|
|
|
/* And return */
|
|
|
|
|
2021-04-01 12:12:05 +02:00
|
|
|
mov pc, lr
|