2022-11-10 22:22:48 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright : (C) 2022 Phytium Information Technology, Inc.
|
|
|
|
|
* All Rights Reserved.
|
|
|
|
|
*
|
|
|
|
|
* This program is OPEN SOURCE software: you can redistribute it and/or modify it
|
|
|
|
|
* under the terms of the Phytium Public License as published by the Phytium Technology Co.,Ltd,
|
|
|
|
|
* either version 1.0 of the License, or (at your option) any later version.
|
|
|
|
|
*
|
|
|
|
|
* This program is distributed in the hope that it will be useful,but WITHOUT ANY WARRANTY;
|
|
|
|
|
* without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
* See the Phytium Public License for more details.
|
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* FilePath: fpl011_hw.c
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* Date: 2021-11-02 14:53:42
|
2022-11-10 22:22:48 +08:00
|
|
|
|
* LastEditTime: 2022-02-18 09:05:56
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* Description: This file is for uart register function
|
2022-11-10 22:22:48 +08:00
|
|
|
|
*
|
|
|
|
|
* Modify History:
|
|
|
|
|
* Ver Who Date Changes
|
|
|
|
|
* ----- ------ -------- --------------------------------------
|
2023-05-11 10:25:21 +08:00
|
|
|
|
* 1.0 huanghe 2021/11/2 first commit
|
|
|
|
|
* 1.1 liushengming 2022/02/18 add file head
|
2022-11-10 22:22:48 +08:00
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
/***************************** Include Files *********************************/
|
|
|
|
|
|
|
|
|
|
#include "fpl011_hw.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/************************** Constant Definitions *****************************/
|
|
|
|
|
|
|
|
|
|
/**************************** Type Definitions *******************************/
|
|
|
|
|
|
|
|
|
|
/************************** Variable Definitions *****************************/
|
|
|
|
|
|
|
|
|
|
/***************** Macros (Inline Functions) Definitions *********************/
|
|
|
|
|
|
|
|
|
|
/************************** Function Prototypes ******************************/
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @name: FPl011SendByte
|
|
|
|
|
* @msg: This function sends one byte using the device.This function operates in polled mode and blocks
|
|
|
|
|
* until the data has been put into the TX FIFO register.
|
|
|
|
|
* @param addr contains the base address of the device.
|
|
|
|
|
* @param Byte contains the byte to be sent.
|
|
|
|
|
*/
|
2023-05-11 10:25:21 +08:00
|
|
|
|
void FPl011SendByte(uintptr addr, u8 byte)
|
2022-11-10 22:22:48 +08:00
|
|
|
|
{
|
|
|
|
|
|
|
|
|
|
while (FUART_ISTRANSMITFULL(addr))
|
|
|
|
|
{
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
FUART_WRITEREG32(addr, FPL011DR_OFFSET, (u32)byte);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @name: FPl011RecvByte
|
|
|
|
|
* @msg: This function receives a byte from the device. It operates in polled mode
|
|
|
|
|
* and blocks until a byte has received.
|
|
|
|
|
* @param addr contains the base address of the device.
|
|
|
|
|
*/
|
2023-05-11 10:25:21 +08:00
|
|
|
|
u8 FPl011RecvByte(uintptr addr)
|
2022-11-10 22:22:48 +08:00
|
|
|
|
{
|
|
|
|
|
u32 recieved_byte;
|
|
|
|
|
|
2023-05-11 10:25:21 +08:00
|
|
|
|
while (FUART_RECEIVEDATAEMPTY(addr))
|
2022-11-10 22:22:48 +08:00
|
|
|
|
{
|
|
|
|
|
;
|
|
|
|
|
}
|
|
|
|
|
recieved_byte = FUART_READREG32(addr, FPL011DR_OFFSET);
|
|
|
|
|
return recieved_byte;
|
|
|
|
|
}
|
|
|
|
|
|