串口驱动子程序
路径:
home/widoraUboot/u-boot-mt7688/board/rt2880
高开始弄linux,一切都不是很清晰,需要把看过的程序几下来,
#include
#include "serial.h"
#include
#if defined(RT6855A_ASIC_BOARD) || defined(RT6855A_FPGA_BOARD)
static unsigned long uclk_20M[13]={ // 65000*(b*16*1)/2000000
59904, // Baud rate 115200
29952, // Baud rate 57600
19968, // Baud rate 38400
14976, // Baud rate 28800
9984, // Baud rate 19200
7488, // Baud rate 14400
4992, // Baud rate 9600
2496, // Baud rate 4800
1248, // Baud rate 2400
624, // Baud rate 1200
312, // Baud rate 600
156, // Baud rate 300
57 // Baud rate 110
};
void bbu_uart_init(void)
{
int i;
unsigned long div_x, div_y;
unsigned long word;
// Set FIFO controo enable, reset RFIFO, TFIFO, 16550 mode, watermark=0x00 (1 byte)
ra_outb(CR_UART_FCR, (0x0f|(0x0<<6)));
// Set modem control to 0
ra_outb(CR_UART_MCR, 0x0);
// Disable IRDA, Disable Power Saving Mode, RTS , CTS flow control
ra_outb(CR_UART_MISCC, 0x0);
// Set interrupt Enable to, enable Tx, Rx and Line status
/*ra_outb(CR_UART_IER, 0x01);*/
/* access the bardrate divider */
ra_outb(CR_UART_LCR, LCR_DLAB);
div_y = 65000;
div_x = uclk_20M[1];
word = (div_x<<16)|div_y;
ra_outl(CR_UART_XYD, word);
/* Set Baud Rate Divisor to 1*16 */
ra_outb(CR_UART_BRDL, 0x01);
ra_outb(CR_UART_BRDH, 0x00);
/* Set DLAB = 0, clength = 8, stop =1, no parity check */
ra_outb(CR_UART_LCR, LCR_WLS0 | LCR_WLS1);
}
#else
/* this function does not need to know the cpu and bus clock after RT3883. the clock is fix at 40Mhz */
void serial_setbrg (void)
{
//DECLARE_GLOBAL_DATA_PTR;
unsigned int clock_divisor = 0;
#if defined(RT2880_FPGA_BOARD) || defined(RT2880_ASIC_BOARD) || \
defined(RT3052_FPGA_BOARD) || defined(RT3052_ASIC_BOARD)
unsigned long mips_bus_feq;
u32 reg = 0, cpu_clock = 0;
u8 clk_sel;
u8 clk_sel2;
#endif
/*
* CPU_CLK_SEL (bit 21:20)
*/
#ifdef RT2880_FPGA_BOARD
cpu_clock = 25 * 1000 * 1000;
mips_bus_feq = cpu_clock / 2;
#elif defined (RT3052_FPGA_BOARD)
cpu_clock = 40 * 1000 * 1000;
mips_bus_feq = cpu_clock / 3;
#elif defined(RT3052_ASIC_BOARD)
#if defined(RT3350_ASIC_BOARD)
//MA10 is floating
cpu_clock = (320*1000*1000);
#else
reg = RALINK_REG(RT2880_SYSCFG_REG);
clk_sel = (reg>>18) & 0x01;
switch(clk_sel) {
case 0:
cpu_clock = (320*1000*1000);
break;
case 1:
cpu_clock = (384*1000*1000);
break;
}
#endif
mips_bus_feq = cpu_clock / 3;
#elif defined(RT2880_ASIC_BOARD)
reg = RALINK_REG(RT2880_SYSCFG_REG);
clk_sel = (reg>>20) & 0x03;
switch(clk_sel) {
#ifdef RT2880_MP
case 0:
cpu_clock = (250*1000*1000);
break;
case 1:
cpu_clock = (266*1000*1000);
break;
case 2:
cpu_clock = (280*1000*1000);
break;
case 3:
cpu_clock = (300*1000*1000);
break;
#else /* RT2880 SHUTTLE */
case 0:
cpu_clock = (233*1000*1000);
break;
case 1:
cpu_clock = (250*1000*1000);
break;
case 2:
cpu_clock = (266*1000*1000);
break;
case 3:
cpu_clock = (280*1000*1000);
break;
#endif
}
mips_bus_feq = cpu_clock / 2;
#endif
//reset uart lite and uart full
#if defined(RT2880_ASIC_BOARD) || defined(RT2880_FPGA_BOARD)
*(unsigned long *)(RALINK_SYSCTL_BASE + 0x0034) |= cpu_to_le32(1<<12);
*(unsigned long *)(RALINK_SYSCTL_BASE + 0x0034) &= ~(1<<12);
#elif defined(RT2883_ASIC_BOARD) || defined(RT2883_FPGA_BOARD) || \
defined(RT3052_ASIC_BOARD) || defined(RT3052_FPGA_BOARD) || \
defined(RT3352_ASIC_BOARD) || defined(RT3352_FPGA_BOARD) || \
defined(RT5350_ASIC_BOARD) || defined(RT5350_FPGA_BOARD) || \
defined(RT3883_ASIC_BOARD) || defined(RT3883_FPGA_BOARD) || \
defined(RT6855_ASIC_BOARD) || defined(RT6855_FPGA_BOARD) || \
defined(MT7620_ASIC_BOARD) || defined(MT7620_FPGA_BOARD) || \
defined(MT7628_ASIC_BOARD) || defined(MT7628_FPGA_BOARD)
*(unsigned long *)(RALINK_SYSCTL_BASE + 0x0034) |= cpu_to_le32(1<<19|1<<12);
/* RST Control change from W1C to W1W0 to reset, update 20080812 */
*(unsigned long *)(RALINK_SYSCTL_BASE + 0x0034) &= ~(1<<19|1<<12);
#if 0
u32 reg;
reg = *(unsigned long *)(RT2880_GPIOMODE_REG);
reg &= ~(0x7 << 2); //UARTF as UART mode
*(unsigned long *)(RT2880_GPIOMODE_REG) = reg;
#endif
#elif defined (MT7621_ASIC_BOARD) || defined (MT7621_FPGA_BOARD)
*(unsigned long *)(RALINK_SYSCTL_BASE + 0x0034) |= cpu_to_le32(1<<19|1<<20|1<<21);
*(unsigned long *)(RALINK_SYSCTL_BASE + 0x0034) &= ~(1<<19|1<<20|1<<21);
#if 0
u32 reg;
reg = ra_inl(RT2880_GPIOMODE_REG);
//UART2 as UART mode
reg &= ~(0x3 << 3);
//UART3 as UART mode
reg &= ~(0x3 << 5);
ra_outl(RT2880_GPIOMODE_REG, reg);
#endif
#elif defined(RT6855A_ASIC_BOARD) || defined(RT6855A_FPGA_BOARD)
//use bbu_init_uart insead and avoid the compiling error
#else
#error "undefined Platform"
#endif
/* RST Control change from W1C to W1W0 to reset, update 20080812 */
//*(unsigned long *)(RALINK_SYSCTL_BASE + 0x0034) = 0;
//clock_divisor = (CPU_CLOCK_RATE / SERIAL_CLOCK_DIVISOR / gd->baudrate);
#if defined(RT3883_ASIC_BOARD) || defined(RT3883_FPGA_BOARD) || \
defined(RT3352_ASIC_BOARD) || defined(RT3352_FPGA_BOARD) || \
defined(RT5350_ASIC_BOARD) || defined(RT5350_FPGA_BOARD) || \
defined(RT6855_ASIC_BOARD) || defined(RT6855_FPGA_BOARD) || \
defined(MT7620_ASIC_BOARD) || defined(MT7620_FPGA_BOARD) || \
defined(MT7628_ASIC_BOARD) || defined(MT7628_FPGA_BOARD)
clock_divisor = (40*1000*1000/ SERIAL_CLOCK_DIVISOR / CONFIG_BAUDRATE);
#elif defined(MT7621_ASIC_BOARD) || defined(MT7621_FPGA_BOARD)
clock_divisor = (50 * 1000*1000/ SERIAL_CLOCK_DIVISOR / CONFIG_BAUDRATE);
#else
clock_divisor = (mips_bus_feq/ SERIAL_CLOCK_DIVISOR / CONFIG_BAUDRATE);
#endif
IER(CFG_RT2880_CONSOLE) = 0; /* Disable for now */
FCR(CFG_RT2880_CONSOLE) = 0; /* No fifos enabled */
/* set baud rate */
LCR(CFG_RT2880_CONSOLE) = LCR_WLS0 | LCR_WLS1 | LCR_DLAB;
DLL(CFG_RT2880_CONSOLE) = clock_divisor & 0xff;
DLM(CFG_RT2880_CONSOLE) = clock_divisor >> 8;
LCR(CFG_RT2880_CONSOLE) = LCR_WLS0 | LCR_WLS1;
}
#endif // defined(RT6855A_ASIC_BOARD) || defined(RT6855A_FPGA_BOARD) //
/*
* Initialise the serial port with the given baudrate. The settings
* are always 8 data bits, no parity, 1 stop bit, no start bits.
*
*/
int serial_init (void)
{
#if defined(RT6855A_ASIC_BOARD) || defined(RT6855A_FPGA_BOARD)
bbu_uart_init();
#else
serial_setbrg ();
#endif
return (0);
}
/*
* Output a single byte to the serial port.
*/
void serial_putc (const char c)
{
#if defined (RT6855A_FPGA_BOARD) || defined (RT6855A_ASIC_BOARD)
while (!(ra_inb(CR_UART_LSR) & LSR_TEMT));
ra_outb(CR_UART_THR, c);
if (c == '\n')
serial_putc ('\r');
#else
/* wait for room in the tx FIFO on UART */
while ((LSR(CFG_RT2880_CONSOLE) & LSR_TEMT) == 0);
TBR(CFG_RT2880_CONSOLE) = c;
/* If \n, also do \r */
if (c == '\n')
serial_putc ('\r');
#endif
}
/*
* Read a single byte from the serial port. Returns 1 on success, 0
* otherwise. When the function is succesfull, the character read is
* written into its argument c.
*/
int serial_tstc (void)
{
#if defined (RT6855A_FPGA_BOARD) || defined (RT6855A_ASIC_BOARD)
return (ra_inb(CR_UART_LSR) & LSR_DR);
#else
return LSR(CFG_RT2880_CONSOLE) & LSR_DR;
#endif
}
/*
* Read a single byte from the serial port. Returns 1 on success, 0
* otherwise. When the function is succesfull, the character read is
* written into its argument c.
*/
int serial_getc (void)
{
#if defined (RT6855A_FPGA_BOARD) || defined (RT6855A_ASIC_BOARD)
while (!(ra_inb(CR_UART_LSR) & LSR_DR));
return (char) (ra_inb(CR_UART_RBR) & 0xff);
#else
while (!(LSR(CFG_RT2880_CONSOLE) & LSR_DR));
return (char) RBR(CFG_RT2880_CONSOLE) & 0xff;
#endif
}
void
serial_puts (const char *s)
{
while (*s) {
serial_putc (*s++);
}
}