global: Migrate CONFIG_USART_BASE to CFG
Perform a simple rename of CONFIG_USART_BASE to CFG_USART_BASE Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
e7cebff656
commit
805482d187
@ -72,13 +72,13 @@ static void atmel_serial_activate(atmel_usart3_t *usart)
|
||||
|
||||
static void atmel_serial_setbrg(void)
|
||||
{
|
||||
atmel_serial_setbrg_internal((atmel_usart3_t *)CONFIG_USART_BASE,
|
||||
atmel_serial_setbrg_internal((atmel_usart3_t *)CFG_USART_BASE,
|
||||
CONFIG_USART_ID, gd->baudrate);
|
||||
}
|
||||
|
||||
static int atmel_serial_init(void)
|
||||
{
|
||||
atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
|
||||
atmel_usart3_t *usart = (atmel_usart3_t *)CFG_USART_BASE;
|
||||
|
||||
atmel_serial_init_internal(usart);
|
||||
serial_setbrg();
|
||||
@ -89,7 +89,7 @@ static int atmel_serial_init(void)
|
||||
|
||||
static void atmel_serial_putc(char c)
|
||||
{
|
||||
atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
|
||||
atmel_usart3_t *usart = (atmel_usart3_t *)CFG_USART_BASE;
|
||||
|
||||
if (c == '\n')
|
||||
serial_putc('\r');
|
||||
@ -100,7 +100,7 @@ static void atmel_serial_putc(char c)
|
||||
|
||||
static int atmel_serial_getc(void)
|
||||
{
|
||||
atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
|
||||
atmel_usart3_t *usart = (atmel_usart3_t *)CFG_USART_BASE;
|
||||
|
||||
while (!(readl(&usart->csr) & USART3_BIT(RXRDY)))
|
||||
schedule();
|
||||
@ -109,7 +109,7 @@ static int atmel_serial_getc(void)
|
||||
|
||||
static int atmel_serial_tstc(void)
|
||||
{
|
||||
atmel_usart3_t *usart = (atmel_usart3_t *)CONFIG_USART_BASE;
|
||||
atmel_usart3_t *usart = (atmel_usart3_t *)CFG_USART_BASE;
|
||||
return (readl(&usart->csr) & USART3_BIT(RXRDY)) != 0;
|
||||
}
|
||||
|
||||
|
@ -28,7 +28,7 @@
|
||||
#define CFG_SYS_AT91_MAIN_CLOCK 12000000 /* from 12 MHz crystal */
|
||||
|
||||
/* serial console */
|
||||
#define CONFIG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CFG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CONFIG_USART_ID ATMEL_ID_SYS
|
||||
|
||||
/* SDRAM */
|
||||
|
@ -13,7 +13,7 @@
|
||||
#define CFG_SYS_AT91_SLOW_CLOCK 32768
|
||||
#define CFG_SYS_AT91_MAIN_CLOCK 24000000 /* 24 MHz crystal */
|
||||
|
||||
#define CONFIG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CFG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CONFIG_USART_ID 0 /* ignored in arm */
|
||||
|
||||
/* SDRAM */
|
||||
|
@ -14,7 +14,7 @@
|
||||
#define CFG_SYS_AT91_SLOW_CLOCK 32768
|
||||
#define CFG_SYS_AT91_MAIN_CLOCK 24000000 /* 24 MHz crystal */
|
||||
|
||||
#define CONFIG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CFG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CONFIG_USART_ID 0 /* ignored in arm */
|
||||
|
||||
/*
|
||||
|
@ -61,7 +61,7 @@
|
||||
#define CFG_SYS_NAND_READY_PIN AT91_PIN_PC13
|
||||
|
||||
/* serial console */
|
||||
#define CONFIG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CFG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CONFIG_USART_ID ATMEL_ID_SYS
|
||||
|
||||
/* DFU class support */
|
||||
|
@ -34,7 +34,7 @@
|
||||
|
||||
/* Misc CPU related */
|
||||
|
||||
#define CONFIG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CFG_USART_BASE ATMEL_BASE_DBGU
|
||||
#define CONFIG_USART_ID ATMEL_ID_SYS
|
||||
|
||||
/*
|
||||
|
@ -17,7 +17,7 @@
|
||||
/* The value in the common file is too far away for the VInCo platform */
|
||||
|
||||
/* serial console */
|
||||
#define CONFIG_USART_BASE 0xfc00c000
|
||||
#define CFG_USART_BASE 0xfc00c000
|
||||
#define CONFIG_USART_ID 30
|
||||
|
||||
/* Timer */
|
||||
|
Loading…
Reference in New Issue
Block a user