⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 serial.c

📁 嵌入式ARM的一些源代码
💻 C
字号:
/*
 * Simple serial driver for Cogent motherboard serial ports
 * for use during boot
 */

#include <ppcboot.h>
#include <cogent/serial.h>

#if (CMA_MB_CAPS & CMA_MB_CAP_SERPAR) && \
    ((defined(CONFIG_8xx) && defined(CONFIG_8xx_CONS_NONE)) || \
     (defined(CONFIG_8260) && defined(CONFIG_CONS_NONE)))

#if CONFIG_CONS_INDEX == 1
#define CMA_MB_SERIAL_BASE	CMA_MB_SERIALA_BASE
#elif CONFIG_CONS_INDEX == 2
#define CMA_MB_SERIAL_BASE	CMA_MB_SERIALB_BASE
#elif CONFIG_CONS_INDEX == 3 && (CMA_MB_CAPS & CMA_MB_CAP_SER2)
#define CMA_MB_SERIAL_BASE	CMA_MB_SER2A_BASE
#elif CONFIG_CONS_INDEX == 4 && (CMA_MB_CAPS & CMA_MB_CAP_SER2)
#define CMA_MB_SERIAL_BASE	CMA_MB_SER2B_BASE
#else
#error CONFIG_CONS_INDEX must be configured for Cogent motherboard serial
#endif

void
serial_init(ulong cpu_clock, int baudrate)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_SERIAL_BASE;

    cma_mbio_reg_write(&mbsp->ser_ier, 0x00);	/* turn off interrupts */
    serial_setbrg(cpu_clock, baudrate);
    cma_mbio_reg_write(&mbsp->ser_lcr, 0x03);	/* 8 data, 1 stop, no parity */
    cma_mbio_reg_write(&mbsp->ser_mcr, 0x03);	/* RTS/DTR */
    cma_mbio_reg_write(&mbsp->ser_fcr, 0x07);	/* Clear & enable FIFOs */
}

void
serial_setbrg(ulong cpu_clock, int baudrate)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_SERIAL_BASE;
    unsigned int divisor;
    unsigned char lcr;

    if ((divisor = br_to_div(baudrate)) == 0)
	divisor = DEFDIV;

    lcr = cma_mbio_reg_read(&mbsp->ser_lcr);
    cma_mbio_reg_write(&mbsp->ser_lcr, lcr|0x80);/* Access baud rate(set DLAB)*/
    cma_mbio_reg_write(&mbsp->ser_brl, divisor & 0xff);
    cma_mbio_reg_write(&mbsp->ser_brh, (divisor >> 8) & 0xff);
    cma_mbio_reg_write(&mbsp->ser_lcr, lcr);	/* unset DLAB */
}

void
serial_putc(const char c)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_SERIAL_BASE;

    if (c == '\n')
	serial_putc('\r');

    while ((cma_mbio_reg_read(&mbsp->ser_lsr) & LSR_THRE) == 0)
	;

    cma_mbio_reg_write(&mbsp->ser_thr, c);
}

void
serial_puts(const char *s)
{
    while (*s != '\0')
	serial_putc(*s++);
}

int
serial_getc(void)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_SERIAL_BASE;

    while ((cma_mbio_reg_read(&mbsp->ser_lsr) & LSR_DR) == 0)
	;

    return ((int)cma_mbio_reg_read(&mbsp->ser_rhr) & 0x7f);
}

int
serial_tstc(void)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_SERIAL_BASE;

    return ((cma_mbio_reg_read(&mbsp->ser_lsr) & LSR_DR) != 0);
}

#endif /* CONFIG_8xx_CONS_NONE */

#if (CONFIG_COMMANDS & CFG_CMD_KGDB) && (CMA_MB_CAPS & CMA_MB_CAP_SERPAR)

#if CONFIG_KGDB_SER_INDEX == 1
#define CMA_MB_KGDB_SER_BASE	CMA_MB_SERIALA_BASE
#elif CONFIG_KGDB_SER_INDEX == 2
#define CMA_MB_KGDB_SER_BASE	CMA_MB_SERIALB_BASE
#elif CONFIG_KGDB_SER_INDEX == 3 && (CMA_MB_CAPS & CMA_MB_CAP_SER2)
#define CMA_MB_KGDB_SER_BASE	CMA_MB_SER2A_BASE
#elif CONFIG_KGDB_SER_INDEX == 4 && (CMA_MB_CAPS & CMA_MB_CAP_SER2)
#define CMA_MB_KGDB_SER_BASE	CMA_MB_SER2B_BASE
#else
#error CONFIG_KGDB_SER_INDEX must be configured for Cogent motherboard serial
#endif

void
kgdb_serial_init(void)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_KGDB_SER_BASE;
    unsigned int divisor;

    if ((divisor = br_to_div(CONFIG_KGDB_BAUDRATE)) == 0)
	divisor = DEFDIV;

    cma_mbio_reg_write(&mbsp->ser_ier, 0x00);	/* turn off interrupts */
    cma_mbio_reg_write(&mbsp->ser_lcr, 0x80);	/* Access baud rate(set DLAB)*/
    cma_mbio_reg_write(&mbsp->ser_brl, divisor & 0xff);
    cma_mbio_reg_write(&mbsp->ser_brh, (divisor >> 8) & 0xff);
    cma_mbio_reg_write(&mbsp->ser_lcr, 0x03);	/* 8 data, 1 stop, no parity */
    cma_mbio_reg_write(&mbsp->ser_mcr, 0x03);	/* RTS/DTR */
    cma_mbio_reg_write(&mbsp->ser_fcr, 0x07);	/* Clear & enable FIFOs */

    printf("[on cma10x serial port B] ");
}

void
putDebugChar(int c)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_KGDB_SER_BASE;

    while ((cma_mbio_reg_read(&mbsp->ser_lsr) & LSR_THRE) == 0)
	;

    cma_mbio_reg_write(&mbsp->ser_thr, c & 0xff);
}

void
putDebugStr(const char *str)
{
    while (*str != '\0') {
	if (*str == '\n')
	    putDebugChar('\r');
	putDebugChar(*str++);
    }
}

int
getDebugChar(void)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_KGDB_SER_BASE;

    while ((cma_mbio_reg_read(&mbsp->ser_lsr) & LSR_DR) == 0)
	;

    return ((int)cma_mbio_reg_read(&mbsp->ser_rhr) & 0x7f);
}

void
kgdb_interruptible(int yes)
{
    cma_mbio_serial *mbsp = (cma_mbio_serial *)CMA_MB_KGDB_SER_BASE;

    if (yes == 1) {
	printf("kgdb: turning serial ints on\n");
	cma_mbio_reg_write(&mbsp->ser_ier, 0xf);
    }
    else {
	printf("kgdb: turning serial ints off\n");
	cma_mbio_reg_write(&mbsp->ser_ier, 0x0);
    }
}

#endif /* CFG_CMD_KGDB */

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -