diff options
| -rw-r--r-- | include/configs/davinci_dvevm.h | 3 | ||||
| -rw-r--r-- | include/configs/davinci_schmoogie.h | 3 | ||||
| -rw-r--r-- | include/configs/davinci_sffsdr.h | 3 | ||||
| -rw-r--r-- | include/configs/davinci_sonata.h | 3 | 
4 files changed, 4 insertions, 8 deletions
| diff --git a/include/configs/davinci_dvevm.h b/include/configs/davinci_dvevm.h index fae430ba6..9fe4072b4 100644 --- a/include/configs/davinci_dvevm.h +++ b/include/configs/davinci_dvevm.h @@ -56,7 +56,6 @@  /* SoC Configuration */  /*===================*/  #define CONFIG_ARM926EJS			/* arm926ejs CPU core */ -#define CONFIG_SYS_CLK_FREQ	297000000	/* Arm Clock frequency */  #define CONFIG_SYS_TIMERBASE		0x01c21400	/* use timer 0 */  #define CONFIG_SYS_HZ_CLOCK		27000000	/* Timer Input clock freq */  #define CONFIG_SYS_HZ			1000 @@ -87,7 +86,7 @@  #define CONFIG_SYS_NS16550_SERIAL  #define CONFIG_SYS_NS16550_REG_SIZE	-4	/* NS16550 register size, byteorder */  #define CONFIG_SYS_NS16550_COM1	0x01c20000	/* Base address of UART0 */ -#define CONFIG_SYS_NS16550_CLK		27000000	/* Input clock to NS16550 */ +#define CONFIG_SYS_NS16550_CLK	CONFIG_SYS_HZ_CLOCK	/* Input clock to NS16550 */  #define CONFIG_CONS_INDEX	1		/* use UART0 for console */  #define CONFIG_BAUDRATE		115200		/* Default baud rate */  #define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200 } diff --git a/include/configs/davinci_schmoogie.h b/include/configs/davinci_schmoogie.h index 923e4777b..a16ac391b 100644 --- a/include/configs/davinci_schmoogie.h +++ b/include/configs/davinci_schmoogie.h @@ -31,7 +31,6 @@  /* SoC Configuration */  /*===================*/  #define CONFIG_ARM926EJS			/* arm926ejs CPU core */ -#define CONFIG_SYS_CLK_FREQ	297000000	/* Arm Clock frequency */  #define CONFIG_SYS_TIMERBASE		0x01c21400	/* use timer 0 */  #define CONFIG_SYS_HZ_CLOCK		27000000	/* Timer Input clock freq */  #define CONFIG_SYS_HZ			1000 @@ -54,7 +53,7 @@  #define CONFIG_SYS_NS16550_SERIAL  #define CONFIG_SYS_NS16550_REG_SIZE	-4	/* NS16550 register size, byteorder */  #define CONFIG_SYS_NS16550_COM1	0x01c20000	/* Base address of UART0 */ -#define CONFIG_SYS_NS16550_CLK		27000000	/* Input clock to NS16550 */ +#define CONFIG_SYS_NS16550_CLK	CONFIG_SYS_HZ_CLOCK	/* Input clock to NS16550 */  #define CONFIG_CONS_INDEX	1		/* use UART0 for console */  #define CONFIG_BAUDRATE		115200		/* Default baud rate */  #define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200 } diff --git a/include/configs/davinci_sffsdr.h b/include/configs/davinci_sffsdr.h index 73a59db87..c2ebd97db 100644 --- a/include/configs/davinci_sffsdr.h +++ b/include/configs/davinci_sffsdr.h @@ -32,7 +32,6 @@  				 * powering ON the DSP. */  /* SoC Configuration */  #define CONFIG_ARM926EJS			/* arm926ejs CPU core */ -#define CONFIG_SYS_CLK_FREQ	297000000	/* Arm Clock frequency */  #define CONFIG_SYS_TIMERBASE		0x01c21400	/* use timer 0 */  #define CONFIG_SYS_HZ_CLOCK		27000000	/* Timer Input clock freq */  #define CONFIG_SYS_HZ			1000 @@ -56,7 +55,7 @@  #define CONFIG_SYS_NS16550_SERIAL  #define CONFIG_SYS_NS16550_REG_SIZE	-4	/* NS16550 register size, byteorder */  #define CONFIG_SYS_NS16550_COM1	0x01c20000	/* Base address of UART0 */ -#define CONFIG_SYS_NS16550_CLK		27000000	/* Input clock to NS16550 */ +#define CONFIG_SYS_NS16550_CLK	CONFIG_SYS_HZ_CLOCK	/* Input clock to NS16550 */  #define CONFIG_CONS_INDEX	1		/* use UART0 for console */  #define CONFIG_BAUDRATE		115200		/* Default baud rate */  #define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200 } diff --git a/include/configs/davinci_sonata.h b/include/configs/davinci_sonata.h index 70d2c7d0c..0fc6012ba 100644 --- a/include/configs/davinci_sonata.h +++ b/include/configs/davinci_sonata.h @@ -56,7 +56,6 @@  /* SoC Configuration */  /*===================*/  #define CONFIG_ARM926EJS			/* arm926ejs CPU core */ -#define CONFIG_SYS_CLK_FREQ	297000000	/* Arm Clock frequency */  #define CONFIG_SYS_TIMERBASE		0x01c21400	/* use timer 0 */  #define CONFIG_SYS_HZ_CLOCK		27000000	/* Timer Input clock freq */  #define CONFIG_SYS_HZ			1000 @@ -87,7 +86,7 @@  #define CONFIG_SYS_NS16550_SERIAL  #define CONFIG_SYS_NS16550_REG_SIZE	-4	/* NS16550 register size, byteorder */  #define CONFIG_SYS_NS16550_COM1	0x01c20000	/* Base address of UART0 */ -#define CONFIG_SYS_NS16550_CLK		27000000	/* Input clock to NS16550 */ +#define CONFIG_SYS_NS16550_CLK	CONFIG_SYS_HZ_CLOCK	/* Input clock to NS16550 */  #define CONFIG_CONS_INDEX	1		/* use UART0 for console */  #define CONFIG_BAUDRATE		115200		/* Default baud rate */  #define CONFIG_SYS_BAUDRATE_TABLE	{ 9600, 19200, 38400, 57600, 115200 } |