mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-12 21:46:05 -04:00
sh: SH7763 SCIF support
SH7763 has 3 SCIF channels. SCIF0 and 1 are same register constitution, but only SCIF2 is different. This patch work all SCIF channel. Signed-off-by: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com> Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
This commit is contained in:
parent
8155efbd7a
commit
08c5fabe18
@ -26,6 +26,8 @@
|
|||||||
#define SCIF_BASE SCIF0_BASE
|
#define SCIF_BASE SCIF0_BASE
|
||||||
#elif defined (CONFIG_CONS_SCIF1)
|
#elif defined (CONFIG_CONS_SCIF1)
|
||||||
#define SCIF_BASE SCIF1_BASE
|
#define SCIF_BASE SCIF1_BASE
|
||||||
|
#elif defined (CONFIG_CONS_SCIF2)
|
||||||
|
#define SCIF_BASE SCIF2_BASE
|
||||||
#else
|
#else
|
||||||
#error "Default SCIF doesn't set....."
|
#error "Default SCIF doesn't set....."
|
||||||
#endif
|
#endif
|
||||||
@ -54,6 +56,20 @@
|
|||||||
# define SCRER (vu_short *)(SCIF_BASE + 0x2C)
|
# define SCRER (vu_short *)(SCIF_BASE + 0x2C)
|
||||||
# define LSR_ORER 1
|
# define LSR_ORER 1
|
||||||
# define FIFOLEVEL_MASK 0xFF
|
# define FIFOLEVEL_MASK 0xFF
|
||||||
|
#elif defined(CONFIG_CPU_SH7763)
|
||||||
|
# if defined (CONFIG_CONS_SCIF2)
|
||||||
|
# define SCSPTR (vu_short *)(SCIF_BASE + 0x20)
|
||||||
|
# define SCLSR (vu_short *)(SCIF_BASE + 0x24)
|
||||||
|
# define LSR_ORER 1
|
||||||
|
# define FIFOLEVEL_MASK 0x1F
|
||||||
|
# else
|
||||||
|
# define SCRFDR (vu_short *)(SCIF_BASE + 0x20)
|
||||||
|
# define SCSPTR (vu_short *)(SCIF_BASE + 0x24)
|
||||||
|
# define SCLSR (vu_short *)(SCIF_BASE + 0x28)
|
||||||
|
# define SCRER (vu_short *)(SCIF_BASE + 0x2C)
|
||||||
|
# define LSR_ORER 1
|
||||||
|
# define FIFOLEVEL_MASK 0xFF
|
||||||
|
# endif
|
||||||
#elif defined(CONFIG_CPU_SH7750) || \
|
#elif defined(CONFIG_CPU_SH7750) || \
|
||||||
defined(CONFIG_CPU_SH7751) || \
|
defined(CONFIG_CPU_SH7751) || \
|
||||||
defined(CONFIG_CPU_SH7722)
|
defined(CONFIG_CPU_SH7722)
|
||||||
@ -65,7 +81,7 @@
|
|||||||
# define SCLSR (vu_short *)(SCIF_BASE + 0x24)
|
# define SCLSR (vu_short *)(SCIF_BASE + 0x24)
|
||||||
# define LSR_ORER 0x0200
|
# define LSR_ORER 0x0200
|
||||||
# define FIFOLEVEL_MASK 0x1F
|
# define FIFOLEVEL_MASK 0x1F
|
||||||
#elif defined(CONFIG_CPU_SH7710)
|
#elif defined(CONFIG_CPU_SH7710) || \
|
||||||
defined(CONFIG_CPU_SH7712)
|
defined(CONFIG_CPU_SH7712)
|
||||||
# define SCLSR SCFSR /* SCSSR */
|
# define SCLSR SCFSR /* SCSSR */
|
||||||
# define LSR_ORER 1
|
# define LSR_ORER 1
|
||||||
@ -93,16 +109,16 @@
|
|||||||
|
|
||||||
/*----------------------------------------------------------------------*/
|
/*----------------------------------------------------------------------*/
|
||||||
|
|
||||||
void serial_setbrg (void)
|
void serial_setbrg(void)
|
||||||
{
|
{
|
||||||
DECLARE_GLOBAL_DATA_PTR;
|
DECLARE_GLOBAL_DATA_PTR;
|
||||||
*SCBRR = SCBRR_VALUE(gd->baudrate,CONFIG_SYS_CLK_FREQ);
|
*SCBRR = SCBRR_VALUE(gd->baudrate, CONFIG_SYS_CLK_FREQ);
|
||||||
}
|
}
|
||||||
|
|
||||||
int serial_init (void)
|
int serial_init(void)
|
||||||
{
|
{
|
||||||
*SCSCR = (SCR_RE | SCR_TE);
|
*SCSCR = (SCR_RE | SCR_TE);
|
||||||
*SCSMR = 0 ;
|
*SCSMR = 0;
|
||||||
*SCSMR = 0;
|
*SCSMR = 0;
|
||||||
*SCFCR = (FCR_RFRST | FCR_TFRST);
|
*SCFCR = (FCR_RFRST | FCR_TFRST);
|
||||||
*SCFCR;
|
*SCFCR;
|
||||||
@ -112,16 +128,16 @@ int serial_init (void)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int serial_rx_fifo_level (void)
|
static int serial_rx_fifo_level(void)
|
||||||
{
|
{
|
||||||
#if defined(CONFIG_SH4A)
|
#if defined(SCRFDR)
|
||||||
return (*SCRFDR >> 0) & FIFOLEVEL_MASK;
|
return (*SCRFDR >> 0) & FIFOLEVEL_MASK;
|
||||||
#else
|
#else
|
||||||
return (*SCFDR >> 0) & FIFOLEVEL_MASK;
|
return (*SCFDR >> 0) & FIFOLEVEL_MASK;
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
void serial_raw_putc (const char c)
|
void serial_raw_putc(const char c)
|
||||||
{
|
{
|
||||||
unsigned int fsr_bits_to_clear;
|
unsigned int fsr_bits_to_clear;
|
||||||
|
|
||||||
@ -137,65 +153,67 @@ void serial_raw_putc (const char c)
|
|||||||
*SCFSR &= ~fsr_bits_to_clear;
|
*SCFSR &= ~fsr_bits_to_clear;
|
||||||
}
|
}
|
||||||
|
|
||||||
void serial_putc (const char c)
|
void serial_putc(const char c)
|
||||||
{
|
{
|
||||||
if (c == '\n')
|
if (c == '\n')
|
||||||
serial_raw_putc ('\r');
|
serial_raw_putc('\r');
|
||||||
serial_raw_putc (c);
|
serial_raw_putc(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
void serial_puts (const char *s)
|
void serial_puts(const char *s)
|
||||||
{
|
{
|
||||||
char c;
|
char c;
|
||||||
while ((c = *s++) != 0)
|
while ((c = *s++) != 0)
|
||||||
serial_putc (c);
|
serial_putc(c);
|
||||||
}
|
}
|
||||||
|
|
||||||
int serial_tstc (void)
|
int serial_tstc(void)
|
||||||
{
|
{
|
||||||
return serial_rx_fifo_level() ? 1 : 0;
|
return serial_rx_fifo_level()? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
#define FSR_ERR_CLEAR 0x0063
|
#define FSR_ERR_CLEAR 0x0063
|
||||||
#define RDRF_CLEAR 0x00fc
|
#define RDRF_CLEAR 0x00fc
|
||||||
void handle_error( void ){
|
void handle_error(void)
|
||||||
|
{
|
||||||
|
|
||||||
(void)*SCFSR ;
|
(void)*SCFSR;
|
||||||
*SCFSR = FSR_ERR_CLEAR ;
|
*SCFSR = FSR_ERR_CLEAR;
|
||||||
(void)*SCLSR ;
|
(void)*SCLSR;
|
||||||
*SCLSR = 0x00 ;
|
*SCLSR = 0x00;
|
||||||
}
|
}
|
||||||
|
|
||||||
int serial_getc_check( void ){
|
int serial_getc_check(void)
|
||||||
|
{
|
||||||
unsigned short status;
|
unsigned short status;
|
||||||
|
|
||||||
status = *SCFSR ;
|
status = *SCFSR;
|
||||||
|
|
||||||
if (status & (FSR_FER | FSR_FER | FSR_ER | FSR_BRK))
|
if (status & (FSR_FER | FSR_ER | FSR_BRK))
|
||||||
handle_error();
|
handle_error();
|
||||||
if( *SCLSR & LSR_ORER )
|
if (*SCLSR & LSR_ORER)
|
||||||
handle_error();
|
handle_error();
|
||||||
return (status & ( FSR_DR | FSR_RDF ));
|
return (status & (FSR_DR | FSR_RDF));
|
||||||
}
|
}
|
||||||
|
|
||||||
int serial_getc (void)
|
int serial_getc(void)
|
||||||
{
|
{
|
||||||
unsigned short status ;
|
unsigned short status;
|
||||||
char ch;
|
char ch;
|
||||||
while(!serial_getc_check());
|
while (!serial_getc_check()) ;
|
||||||
|
|
||||||
ch = *SCFRDR;
|
ch = *SCFRDR;
|
||||||
status = *SCFSR ;
|
status = *SCFSR;
|
||||||
|
|
||||||
*SCFSR = RDRF_CLEAR ;
|
*SCFSR = RDRF_CLEAR;
|
||||||
|
|
||||||
if (status & (FSR_FER | FSR_FER | FSR_ER | FSR_BRK))
|
if (status & (FSR_FER | FSR_FER | FSR_ER | FSR_BRK))
|
||||||
handle_error();
|
handle_error();
|
||||||
|
|
||||||
if( *SCLSR & LSR_ORER )
|
if (*SCLSR & LSR_ORER)
|
||||||
handle_error();
|
handle_error();
|
||||||
|
|
||||||
return ch ;
|
return ch;
|
||||||
}
|
}
|
||||||
|
|
||||||
#endif /* CFG_SCIF_CONSOLE */
|
#endif /* CFG_SCIF_CONSOLE */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user