📄 serial.c
字号:
/* * Jz47xx UART support * * Options hardcoded to 8N1 * * Copyright (c) 2005 * Ingenic Semiconductor, <jlwei@ingenic.cn> * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as * published by the Free Software Foundation; either version 2 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 * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place, Suite 330, Boston, * MA 02111-1307 USA */#include "config.h"#include "jz4730.h"#undef UART_BASE#ifndef CFG_UART_BASE#define UART_BASE UART0_BASE#else#define UART_BASE CFG_UART_BASE#endif/******************************************************************************** serial_init - initialize a channel** This routine initializes the number of data bits, parity* and set the selected baud rate. Interrupts are disabled.* Set the modem control signals if the option is selected.** RETURNS: N/A*/static void serial_setbrg (void){ volatile u8 *uart_lcr = (volatile u8 *)(UART_BASE + OFF_LCR); volatile u8 *uart_dlhr = (volatile u8 *)(UART_BASE + OFF_DLHR); volatile u8 *uart_dllr = (volatile u8 *)(UART_BASE + OFF_DLLR); u32 baud_div, tmp; baud_div = CFG_EXTAL / 16 / CONFIG_BAUDRATE; tmp = *uart_lcr; tmp |= UART_LCR_DLAB; *uart_lcr = tmp; *uart_dlhr = (baud_div >> 8) & 0xff; *uart_dllr = baud_div & 0xff; tmp &= ~UART_LCR_DLAB; *uart_lcr = tmp;}int serial_init (void){ volatile u8 *uart_fcr = (volatile u8 *)(UART_BASE + OFF_FCR); volatile u8 *uart_lcr = (volatile u8 *)(UART_BASE + OFF_LCR); volatile u8 *uart_ier = (volatile u8 *)(UART_BASE + OFF_IER); volatile u8 *uart_sircr = (volatile u8 *)(UART_BASE + OFF_SIRCR); /* Disable port interrupts while changing hardware */ *uart_ier = 0; /* Disable UART unit function */ *uart_fcr = ~UART_FCR_UUE; /* Set both receiver and transmitter in UART mode (not SIR) */ *uart_sircr = ~(SIRCR_RSIRE | SIRCR_TSIRE); /* Set databits, stopbits and parity. (8-bit data, 1 stopbit, no parity) */ *uart_lcr = UART_LCR_WLEN_8 | UART_LCR_STOP_1; /* Set baud rate */ serial_setbrg(); /* Enable UART unit, enable and clear FIFO */ *uart_fcr = UART_FCR_UUE | UART_FCR_FE | UART_FCR_TFLS | UART_FCR_RFLS; return 0;}void serial_putc (const char c){ volatile u8 *uart_lsr = (volatile u8 *)(UART_BASE + OFF_LSR); volatile u8 *uart_tdr = (volatile u8 *)(UART_BASE + OFF_TDR); if (c == '\n') serial_putc ('\r'); /* Wait for fifo to shift out some bytes */ while ( !((*uart_lsr & (UART_LSR_TDRQ | UART_LSR_TEMT)) == 0x60) ); *uart_tdr = (u8)c;}void serial_puts (const char *s){ while (*s) { serial_putc (*s++); }}#if 0int serial_getc (void){ volatile u8 *uart_rdr = (volatile u8 *)(UART_BASE + OFF_RDR); while (!serial_tstc()); return *uart_rdr;}int serial_tstc (void){ volatile u8 *uart_lsr = (volatile u8 *)(UART_BASE + OFF_LSR); if (*uart_lsr & UART_LSR_DR) { /* Data in rfifo */ return (1); } return 0;}#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -